-- MariaDB dump 10.19  Distrib 10.5.15-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: akps5268_pkp
-- ------------------------------------------------------
-- Server version	10.5.15-MariaDB-cll-lve

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `access_keys`
--

DROP TABLE IF EXISTS `access_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `access_keys` (
  `access_key_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context` varchar(40) NOT NULL,
  `key_hash` varchar(40) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `expiry_date` datetime NOT NULL,
  PRIMARY KEY (`access_key_id`),
  KEY `access_keys_hash` (`key_hash`,`user_id`,`context`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `access_keys`
--

LOCK TABLES `access_keys` WRITE;
/*!40000 ALTER TABLE `access_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `access_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `announcement_settings`
--

DROP TABLE IF EXISTS `announcement_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `announcement_settings` (
  `announcement_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `announcement_settings_pkey` (`announcement_id`,`locale`,`setting_name`),
  KEY `announcement_settings_announcement_id` (`announcement_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcement_settings`
--

LOCK TABLES `announcement_settings` WRITE;
/*!40000 ALTER TABLE `announcement_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcement_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `announcement_type_settings`
--

DROP TABLE IF EXISTS `announcement_type_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `announcement_type_settings` (
  `type_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `announcement_type_settings_pkey` (`type_id`,`locale`,`setting_name`),
  KEY `announcement_type_settings_type_id` (`type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcement_type_settings`
--

LOCK TABLES `announcement_type_settings` WRITE;
/*!40000 ALTER TABLE `announcement_type_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcement_type_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `announcement_types`
--

DROP TABLE IF EXISTS `announcement_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `announcement_types` (
  `type_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` smallint(6) DEFAULT NULL,
  `assoc_id` bigint(20) NOT NULL,
  PRIMARY KEY (`type_id`),
  KEY `announcement_types_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcement_types`
--

LOCK TABLES `announcement_types` WRITE;
/*!40000 ALTER TABLE `announcement_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcement_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `announcements`
--

DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `announcements` (
  `announcement_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` smallint(6) DEFAULT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `type_id` bigint(20) DEFAULT NULL,
  `date_expire` datetime DEFAULT NULL,
  `date_posted` datetime NOT NULL,
  PRIMARY KEY (`announcement_id`),
  KEY `announcements_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `announcements`
--

LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `article_notes`
--

DROP TABLE IF EXISTS `article_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `article_notes` (
  `note_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `article_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `title` varchar(255) NOT NULL,
  `note` text DEFAULT NULL,
  `file_id` bigint(20) NOT NULL,
  PRIMARY KEY (`note_id`),
  KEY `article_notes_article_id` (`article_id`),
  KEY `article_notes_user_id` (`user_id`),
  KEY `article_notes_file_id` (`file_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `article_notes`
--

LOCK TABLES `article_notes` WRITE;
/*!40000 ALTER TABLE `article_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `article_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `auth_sources`
--

DROP TABLE IF EXISTS `auth_sources`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auth_sources` (
  `auth_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `title` varchar(60) NOT NULL,
  `plugin` varchar(32) NOT NULL,
  `auth_default` tinyint(4) NOT NULL DEFAULT 0,
  `settings` text DEFAULT NULL,
  PRIMARY KEY (`auth_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `auth_sources`
--

LOCK TABLES `auth_sources` WRITE;
/*!40000 ALTER TABLE `auth_sources` DISABLE KEYS */;
/*!40000 ALTER TABLE `auth_sources` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `author_settings`
--

DROP TABLE IF EXISTS `author_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `author_settings` (
  `author_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `author_settings_pkey` (`author_id`,`locale`,`setting_name`),
  KEY `author_settings_author_id` (`author_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `author_settings`
--

LOCK TABLES `author_settings` WRITE;
/*!40000 ALTER TABLE `author_settings` DISABLE KEYS */;
INSERT INTO `author_settings` VALUES (1,'en_US','biography','','string'),(1,'en_US','affiliation','','string'),(2,'en_US','biography','','string'),(2,'en_US','affiliation','','string'),(3,'en_US','biography','','string'),(3,'en_US','affiliation','','string'),(4,'en_US','biography','','string'),(4,'en_US','affiliation','','string'),(6,'en_US','biography','','string'),(6,'en_US','affiliation','','string'),(7,'en_US','biography','','string'),(7,'en_US','affiliation','','string'),(8,'en_US','biography','','string'),(8,'en_US','affiliation','','string'),(9,'en_US','biography','','string'),(9,'en_US','affiliation','','string'),(10,'en_US','biography','','string'),(10,'en_US','affiliation','','string'),(11,'en_US','biography','','string'),(11,'en_US','affiliation','','string'),(12,'en_US','biography','','string'),(12,'en_US','affiliation','','string'),(13,'en_US','biography','','string'),(13,'en_US','affiliation','','string'),(14,'en_US','biography','','string'),(14,'en_US','affiliation','','string'),(17,'en_US','biography','','string'),(17,'en_US','affiliation','','string'),(18,'en_US','biography','','string'),(18,'en_US','affiliation','','string'),(21,'en_US','biography','','string'),(21,'en_US','affiliation','','string'),(22,'en_US','biography','','string'),(22,'en_US','affiliation','','string'),(27,'en_US','biography','','string'),(27,'en_US','affiliation','','string'),(28,'en_US','biography','','string'),(28,'en_US','affiliation','','string'),(29,'en_US','biography','','string'),(29,'en_US','affiliation','','string'),(30,'en_US','biography','','string'),(30,'en_US','affiliation','','string'),(31,'en_US','biography','','string'),(31,'en_US','affiliation','','string'),(32,'en_US','biography','','string'),(32,'en_US','affiliation','','string'),(33,'en_US','biography','','string'),(33,'en_US','affiliation','','string'),(35,'en_US','biography','','string'),(35,'en_US','affiliation','','string'),(38,'en_US','biography','','string'),(38,'en_US','affiliation','','string'),(39,'en_US','biography','','string'),(39,'en_US','affiliation','','string'),(40,'en_US','biography','','string'),(40,'en_US','affiliation','','string'),(43,'en_US','biography','','string'),(43,'en_US','affiliation','','string'),(44,'en_US','biography','','string'),(44,'en_US','affiliation','','string'),(45,'en_US','biography','','string'),(45,'en_US','affiliation','','string'),(46,'en_US','biography','','string'),(46,'en_US','affiliation','','string'),(47,'en_US','biography','','string'),(47,'en_US','affiliation','','string'),(48,'en_US','biography','','string'),(48,'en_US','affiliation','','string'),(49,'en_US','biography','','string'),(49,'en_US','affiliation','','string'),(50,'en_US','biography','','string'),(50,'en_US','affiliation','','string'),(51,'en_US','biography','','string'),(51,'en_US','affiliation','','string'),(52,'en_US','biography','a','string'),(52,'en_US','affiliation','a','string'),(53,'en_US','biography','','string'),(53,'en_US','affiliation','','string'),(54,'en_US','biography','','string'),(54,'en_US','affiliation','','string'),(55,'en_US','biography','','string'),(55,'en_US','affiliation','','string'),(56,'en_US','biography','','string'),(56,'en_US','affiliation','','string'),(57,'en_US','biography','','string'),(57,'en_US','affiliation','','string'),(58,'en_US','biography','asdasdasdasdas','string'),(58,'en_US','affiliation','asdasdasdasdas','string'),(59,'en_US','biography','','string'),(59,'en_US','affiliation','','string'),(60,'en_US','biography','','string'),(60,'en_US','affiliation','','string'),(61,'en_US','biography','','string'),(61,'en_US','affiliation','','string'),(63,'en_US','biography','','string'),(63,'en_US','affiliation','','string'),(64,'en_US','biography','','string'),(64,'en_US','affiliation','','string'),(65,'en_US','biography','','string'),(65,'en_US','affiliation','','string'),(66,'en_US','biography','','string'),(66,'en_US','affiliation','','string'),(67,'en_US','biography','','string'),(67,'en_US','affiliation','','string'),(68,'en_US','biography','','string'),(68,'en_US','affiliation','','string'),(69,'en_US','biography','','string'),(69,'en_US','affiliation','','string'),(70,'en_US','biography','','string'),(70,'en_US','affiliation','','string'),(71,'en_US','biography','','string'),(71,'en_US','affiliation','','string'),(72,'en_US','biography','','string'),(72,'en_US','affiliation','','string'),(73,'en_US','biography','','string'),(73,'en_US','affiliation','','string'),(74,'en_US','biography','','string'),(74,'en_US','affiliation','','string'),(75,'en_US','biography','','string'),(75,'en_US','affiliation','','string'),(76,'en_US','biography','','string'),(76,'en_US','affiliation','','string'),(77,'en_US','biography','','string'),(77,'en_US','affiliation','','string'),(78,'en_US','biography','','string'),(78,'en_US','affiliation','','string'),(79,'en_US','biography','','string'),(79,'en_US','affiliation','','string'),(80,'en_US','biography','','string'),(80,'en_US','affiliation','','string'),(81,'en_US','biography','','string'),(81,'en_US','affiliation','','string'),(82,'en_US','biography','','string'),(82,'en_US','affiliation','','string'),(83,'en_US','biography','','string'),(83,'en_US','affiliation','','string'),(84,'en_US','biography','ggh','string'),(84,'en_US','affiliation','fakyuhhh','string'),(85,'en_US','biography','ggh','string'),(85,'en_US','affiliation','fakyuhhh','string'),(86,'en_US','biography','ew','string'),(86,'en_US','affiliation','ew','string'),(101,'en_US','biography','','string'),(90,'en_US','biography','','string'),(90,'en_US','affiliation','','string'),(92,'en_US','biography','','string'),(92,'en_US','affiliation','','string'),(93,'en_US','biography','','string'),(93,'en_US','affiliation','','string'),(139,'en_US','biography','','string'),(138,'','orcid','','string'),(101,'en_US','affiliation','','string'),(101,'','orcid','','string'),(102,'en_US','biography','','string'),(102,'en_US','affiliation','','string'),(102,'','orcid','','string'),(103,'en_US','biography','','string'),(103,'en_US','affiliation','','string'),(103,'','orcid','','string'),(104,'en_US','biography','','string'),(104,'en_US','affiliation','','string'),(104,'','orcid','','string'),(105,'en_US','biography','','string'),(105,'en_US','affiliation','','string'),(105,'','orcid','','string'),(106,'en_US','biography','','string'),(106,'en_US','affiliation','','string'),(106,'','orcid','','string'),(107,'en_US','biography','','string'),(107,'en_US','affiliation','','string'),(107,'','orcid','','string'),(108,'en_US','biography','','string'),(108,'en_US','affiliation','','string'),(108,'','orcid','','string'),(109,'en_US','biography','','string'),(109,'en_US','affiliation','','string'),(109,'','orcid','','string'),(110,'en_US','biography','','string'),(110,'en_US','affiliation','','string'),(110,'','orcid','','string'),(111,'en_US','biography','','string'),(111,'en_US','affiliation','','string'),(111,'','orcid','','string'),(112,'en_US','biography','','string'),(112,'en_US','affiliation','','string'),(112,'','orcid','','string'),(113,'en_US','biography','','string'),(113,'en_US','affiliation','','string'),(113,'','orcid','','string'),(114,'en_US','biography','','string'),(114,'en_US','affiliation','','string'),(114,'','orcid','','string'),(115,'en_US','biography','','string'),(115,'en_US','affiliation','','string'),(115,'','orcid','','string'),(116,'en_US','biography','','string'),(116,'en_US','affiliation','','string'),(116,'','orcid','','string'),(117,'en_US','biography','','string'),(117,'en_US','affiliation','','string'),(117,'','orcid','','string'),(118,'en_US','biography','','string'),(118,'en_US','affiliation','','string'),(118,'','orcid','','string'),(119,'en_US','biography','','string'),(119,'en_US','affiliation','','string'),(119,'','orcid','','string'),(120,'en_US','biography','','string'),(120,'en_US','affiliation','','string'),(120,'','orcid','','string'),(121,'en_US','biography','','string'),(121,'en_US','affiliation','','string'),(121,'','orcid','','string'),(122,'en_US','biography','','string'),(122,'en_US','affiliation','','string'),(122,'','orcid','','string'),(123,'en_US','biography','','string'),(123,'en_US','affiliation','','string'),(123,'','orcid','','string'),(124,'en_US','biography','','string'),(124,'en_US','affiliation','','string'),(124,'','orcid','','string'),(125,'en_US','biography','','string'),(125,'en_US','affiliation','','string'),(125,'','orcid','','string'),(126,'en_US','biography','','string'),(126,'en_US','affiliation','','string'),(126,'','orcid','','string'),(127,'en_US','biography','','string'),(127,'en_US','affiliation','','string'),(127,'','orcid','','string'),(128,'en_US','biography','','string'),(128,'en_US','affiliation','','string'),(128,'','orcid','','string'),(129,'en_US','biography','','string'),(129,'en_US','affiliation','','string'),(129,'','orcid','','string'),(137,'en_US','biography','','string'),(137,'en_US','affiliation','','string'),(131,'en_US','affiliation','Poltekkes Kemenkes Semarang','string'),(132,'en_US','affiliation','Poltekkes Kemenkes Semarang','string'),(133,'en_US','affiliation','RSK NGESTI WALUYO','string'),(134,'en_US','biography','','string'),(134,'en_US','affiliation','','string'),(134,'','orcid','','string'),(138,'en_US','affiliation','','string'),(138,'en_US','biography','','string'),(137,'','orcid','','string'),(136,'en_US','biography','','string'),(136,'en_US','affiliation','','string'),(136,'','orcid','','string'),(139,'en_US','affiliation','','string'),(139,'','orcid','','string'),(158,'en_US','affiliation','','string'),(153,'','orcid','','string'),(154,'en_US','biography','','string'),(154,'en_US','affiliation','','string'),(154,'','orcid','','string'),(156,'','orcid','','string'),(153,'en_US','biography','','string'),(153,'en_US','affiliation','','string'),(147,'en_US','affiliation','','string'),(147,'en_US','biography','','string'),(147,'','orcid','','string'),(149,'en_US','affiliation','','string'),(149,'en_US','biography','','string'),(149,'','orcid','','string'),(156,'en_US','affiliation','','string'),(156,'en_US','biography','','string'),(158,'en_US','biography','','string'),(158,'','orcid','','string'),(160,'en_US','affiliation','','string'),(160,'en_US','biography','','string'),(160,'','orcid','','string'),(161,'en_US','biography','','string'),(161,'en_US','affiliation','','string'),(161,'','orcid','','string'),(162,'en_US','biography','','string'),(162,'en_US','affiliation','','string'),(162,'','orcid','','string'),(164,'en_US','biography','','string'),(164,'en_US','affiliation','','string'),(164,'','orcid','','string'),(166,'en_US','affiliation','Kebidanan','string'),(167,'en_US','biography','','string'),(167,'en_US','affiliation','','string'),(167,'','orcid','','string'),(168,'en_US','biography','','string'),(168,'en_US','affiliation','','string'),(168,'','orcid','','string'),(169,'en_US','biography','','string'),(169,'en_US','affiliation','','string'),(169,'','orcid','','string'),(170,'en_US','affiliation','sadaadsd','string'),(171,'en_US','affiliation','ASAs','string'),(172,'en_US','biography','','string'),(172,'en_US','affiliation','','string'),(172,'','orcid','','string'),(173,'en_US','biography','','string'),(173,'en_US','affiliation','','string'),(173,'','orcid','','string'),(174,'en_US','biography','','string'),(174,'en_US','affiliation','','string'),(174,'','orcid','','string'),(175,'en_US','biography','','string'),(175,'en_US','affiliation','','string'),(175,'','orcid','','string'),(176,'en_US','biography','','string'),(176,'en_US','affiliation','','string'),(176,'','orcid','','string'),(177,'en_US','biography','','string'),(177,'en_US','affiliation','','string'),(177,'','orcid','','string'),(178,'en_US','biography','','string'),(178,'en_US','affiliation','','string'),(178,'','orcid','','string'),(179,'en_US','biography','','string'),(179,'en_US','affiliation','','string'),(179,'','orcid','','string'),(180,'en_US','biography','','string'),(180,'en_US','affiliation','','string'),(180,'','orcid','','string'),(181,'en_US','biography','','string'),(181,'en_US','affiliation','','string'),(181,'','orcid','','string'),(182,'en_US','affiliation','asd','string'),(183,'en_US','affiliation','asas','string'),(184,'en_US','biography','','string'),(184,'en_US','affiliation','','string'),(184,'','orcid','','string'),(188,'en_US','biography','','string'),(188,'en_US','affiliation','','string'),(186,'en_US','biography','','string'),(186,'en_US','affiliation','','string'),(186,'','orcid','','string'),(188,'','orcid','','string'),(190,'en_US','biography','','string'),(190,'en_US','affiliation','','string'),(190,'','orcid','','string'),(191,'en_US','biography','','string'),(191,'en_US','affiliation','','string'),(191,'','orcid','','string'),(192,'en_US','biography','','string'),(192,'en_US','affiliation','','string'),(192,'','orcid','','string'),(194,'en_US','biography','','string'),(194,'en_US','affiliation','','string'),(194,'','orcid','','string'),(199,'en_US','affiliation','','string'),(196,'en_US','biography','','string'),(196,'en_US','affiliation','','string'),(196,'','orcid','','string'),(199,'en_US','biography','','string'),(198,'en_US','biography','','string'),(198,'en_US','affiliation','','string'),(198,'','orcid','','string'),(199,'','orcid','','string'),(212,'en_US','affiliation','asasf','string'),(210,'en_US','affiliation','raizen','string'),(201,'en_US','biography','','string'),(201,'en_US','affiliation','','string'),(201,'','orcid','','string'),(202,'en_US','biography','','string'),(202,'en_US','affiliation','','string'),(202,'','orcid','','string'),(211,'en_US','affiliation','produk','string'),(204,'en_US','biography','','string'),(204,'en_US','affiliation','','string'),(204,'','orcid','','string'),(206,'en_US','biography','','string'),(206,'en_US','affiliation','','string'),(206,'','orcid','','string'),(208,'en_US','biography','','string'),(208,'en_US','affiliation','','string'),(208,'','orcid','','string'),(209,'en_US','biography','','string'),(209,'en_US','affiliation','','string'),(209,'','orcid','','string'),(236,'','orcid','','string'),(237,'en_US','biography','','string'),(214,'en_US','biography','','string'),(214,'en_US','affiliation','','string'),(214,'','orcid','','string'),(215,'en_US','biography','','string'),(215,'en_US','affiliation','','string'),(215,'','orcid','','string'),(237,'en_US','affiliation','','string'),(217,'en_US','biography','','string'),(217,'en_US','affiliation','','string'),(217,'','orcid','','string'),(219,'en_US','biography','','string'),(219,'en_US','affiliation','','string'),(219,'','orcid','','string'),(236,'en_US','biography','','string'),(236,'en_US','affiliation','','string'),(238,'en_US','biography','','string'),(238,'en_US','affiliation','','string'),(223,'en_US','biography','','string'),(223,'en_US','affiliation','','string'),(223,'','orcid','','string'),(238,'','orcid','','string'),(227,'en_US','affiliation','','string'),(227,'en_US','biography','','string'),(226,'en_US','biography','','string'),(226,'en_US','affiliation','','string'),(226,'','orcid','','string'),(227,'','orcid','','string'),(228,'en_US','biography','','string'),(228,'en_US','affiliation','','string'),(228,'','orcid','','string'),(229,'en_US','biography','','string'),(229,'en_US','affiliation','','string'),(229,'','orcid','','string'),(237,'','orcid','','string'),(231,'en_US','biography','','string'),(231,'en_US','affiliation','','string'),(231,'','orcid','','string'),(232,'en_US','biography','','string'),(232,'en_US','affiliation','','string'),(232,'','orcid','','string'),(239,'en_US','affiliation','sayang','string'),(234,'en_US','biography','','string'),(234,'en_US','affiliation','','string'),(234,'','orcid','','string'),(235,'en_US','biography','','string'),(235,'en_US','affiliation','','string'),(235,'','orcid','','string'),(240,'en_US','affiliation','UNISA Yogyakarta','string'),(242,'en_US','biography','','string'),(242,'en_US','affiliation','','string'),(242,'','orcid','','string'),(243,'en_US','biography','','string'),(243,'en_US','affiliation','','string'),(243,'','orcid','','string'),(244,'en_US','biography','','string'),(244,'en_US','affiliation','','string'),(244,'','orcid','','string'),(245,'en_US','biography','','string'),(245,'en_US','affiliation','','string'),(245,'','orcid','','string'),(246,'en_US','biography','','string'),(246,'en_US','affiliation','','string'),(246,'','orcid','','string'),(247,'en_US','biography','','string'),(247,'en_US','affiliation','','string'),(247,'','orcid','','string'),(248,'en_US','biography','','string'),(248,'en_US','affiliation','','string'),(248,'','orcid','','string'),(249,'en_US','biography','','string'),(249,'en_US','affiliation','','string'),(249,'','orcid','','string'),(250,'en_US','biography','','string'),(250,'en_US','affiliation','','string'),(250,'','orcid','','string'),(1,'en_US','givenName','Siswanto','string'),(2,'en_US','givenName','Sugiyarto','string'),(3,'en_US','givenName','Tatik','string'),(4,'en_US','givenName','Nunuk','string'),(8,'en_US','givenName','Siti','string'),(6,'en_US','givenName','Tatik','string'),(7,'en_US','givenName','Nunuk','string'),(9,'en_US','givenName','Sunaryo','string'),(10,'en_US','givenName','Sugiyarto','string'),(11,'en_US','givenName','Diyono','string'),(12,'en_US','givenName','Dinar','string'),(13,'en_US','givenName','Tunjung','string'),(14,'en_US','givenName','Ratna','string'),(18,'en_US','givenName','Dinar','string'),(17,'en_US','givenName','Diyono','string'),(27,'en_US','givenName','Diyono,','string'),(21,'en_US','givenName','Siti Nur Solikah','string'),(22,'en_US','givenName','Saka Suminar','string'),(28,'en_US','givenName','Ratna Indriati','string'),(29,'en_US','givenName','Tunjung','string'),(30,'en_US','givenName','Dinar Ariasti','string'),(31,'en_US','givenName','Endang Dwi Ningsih','string'),(32,'en_US','givenName','Ratna Indriati','string'),(33,'en_US','givenName','Siswanto','string'),(35,'en_US','givenName','endang','string'),(38,'en_US','givenName','Siti','string'),(39,'en_US','givenName','Tatik Trisnowati, S.Kep, Ns, M.Kes','string'),(40,'en_US','givenName','Sri Lestari, S.kep, Ns, M.Kes','string'),(45,'en_US','givenName','Treistiana','string'),(44,'en_US','givenName','Suyati','string'),(43,'en_US','givenName','Andriyani','string'),(46,'en_US','givenName','Nunuk','string'),(47,'en_US','givenName','Danik','string'),(48,'en_US','givenName','xx','string'),(49,'en_US','givenName','mantu','string'),(50,'en_US','givenName','a','string'),(51,'en_US','givenName','kuu','string'),(52,'en_US','givenName','Endang Dwi','string'),(53,'en_US','givenName','jwiadjiawj','string'),(54,'en_US','givenName','Ditya','string'),(55,'en_US','givenName','a','string'),(56,'en_US','givenName','a','string'),(57,'en_US','givenName','a a','string'),(58,'en_US','givenName','asdad asdad','string'),(59,'en_US','givenName','Tatik','string'),(60,'en_US','givenName','Truly Dian','string'),(61,'en_US','givenName','Ervin','string'),(63,'en_US','givenName','Eka','string'),(64,'en_US','givenName','Sholaikhah','string'),(65,'en_US','givenName','Hanifa','string'),(66,'en_US','givenName','Sholaikhah','string'),(67,'en_US','givenName','Luluk Khusnul','string'),(68,'en_US','givenName','Hanifa','string'),(69,'en_US','givenName','Stefania','string'),(70,'en_US','givenName','Ina','string'),(71,'en_US','givenName','Rista','string'),(72,'en_US','givenName','Titin','string'),(73,'en_US','givenName','Fitria Siswi','string'),(74,'en_US','givenName','Sulistyaningsih','string'),(75,'en_US','givenName','Eka','string'),(76,'en_US','givenName','Umu','string'),(77,'en_US','givenName','Stefania Dai','string'),(78,'en_US','givenName','Ina','string'),(79,'en_US','givenName','Rista','string'),(80,'en_US','givenName','Dheska Arthyka','string'),(81,'en_US','givenName','Sri','string'),(82,'en_US','givenName','Vitrianingsih','string'),(83,'en_US','givenName','Hartini','string'),(84,'en_US','givenName','h h','string'),(85,'en_US','givenName','h h','string'),(86,'en_US','givenName','x x','string'),(153,'en_US','givenName','Tyas Sari','string'),(138,'en_US','givenName','Sri','string'),(101,'en_US','givenName','Tatik','string'),(90,'en_US','givenName','Ririn','string'),(139,'en_US','givenName','Noveri','string'),(92,'en_US','givenName','Ririn Wahyu','string'),(93,'en_US','givenName','Ririn Wahyu','string'),(137,'en_US','givenName','Sholaikhah','string'),(160,'en_US','givenName','Nurwahida','string'),(161,'en_US','givenName','Saka','string'),(99,'en_US','givenName','admininsada','string'),(102,'en_US','givenName','Sri','string'),(103,'en_US','givenName','Ririn Wahyu','string'),(104,'en_US','givenName','Sunaryo Joko','string'),(105,'en_US','givenName','Saka','string'),(106,'en_US','givenName','Sri','string'),(107,'en_US','givenName','Siti Nur','string'),(108,'en_US','givenName','Siti Nur','string'),(109,'en_US','givenName','Tatik','string'),(110,'en_US','givenName','Siti Nur','string'),(111,'en_US','givenName','Tatik','string'),(112,'en_US','givenName','Belian Anugrah','string'),(113,'en_US','givenName','Nurbita','string'),(114,'en_US','givenName','Mufdlilah','string'),(115,'en_US','givenName','Nidatul','string'),(116,'en_US','givenName','Dewi','string'),(117,'en_US','givenName','Putri','string'),(118,'en_US','givenName','Putri','string'),(119,'en_US','givenName','Saka','string'),(120,'en_US','givenName','Sri','string'),(121,'en_US','givenName','Alfiah','string'),(122,'en_US','givenName','Andri Nur','string'),(123,'en_US','givenName','Catur','string'),(124,'en_US','givenName','Anita Dewi','string'),(125,'en_US','givenName','Ajeng Novita','string'),(126,'en_US','givenName','Lilik','string'),(127,'en_US','givenName','Lailatuz','string'),(128,'en_US','givenName','Ian Rossalia Pradita','string'),(129,'en_US','givenName','Farida','string'),(158,'en_US','givenName','Luluk Khusnul','string'),(131,'en_US','givenName','Artialita Harda','string'),(132,'en_US','givenName','Mudafiqoh Awaliyatul','string'),(133,'en_US','givenName','Yustin','string'),(134,'en_US','givenName','admininsada','string'),(136,'en_US','givenName','admininsada','string'),(154,'en_US','givenName','admininsada','string'),(147,'en_US','givenName','Luluk Khusnul','string'),(149,'en_US','givenName','Luluk Khusnul','string'),(156,'en_US','givenName','Tyas Sari','string'),(162,'en_US','givenName','Novella Ulvinainy','string'),(164,'en_US','givenName','Luluk Khusnul','string'),(166,'en_US','givenName','Ririn Wahyu','string'),(167,'en_US','givenName','admininsada','string'),(168,'en_US','givenName','Tyas','string'),(169,'en_US','givenName','Tyas','string'),(170,'en_US','givenName','sadasd','string'),(171,'en_US','givenName','sssaSAsa','string'),(172,'en_US','givenName','Tyas Sari','string'),(173,'en_US','givenName','admin','string'),(174,'en_US','givenName','Tyas Sari','string'),(175,'en_US','givenName','admininsada','string'),(176,'en_US','givenName','Ratna Kusuma','string'),(177,'en_US','givenName','Ganik','string'),(178,'en_US','givenName','admininsada','string'),(179,'en_US','givenName','admininsada','string'),(180,'en_US','givenName','admininsada','string'),(181,'en_US','givenName','admininsada','string'),(182,'en_US','givenName','asd','string'),(183,'en_US','givenName','sinon','string'),(184,'en_US','givenName','admininsada','string'),(188,'en_US','givenName','Andri Nur','string'),(186,'en_US','givenName','Wahyuningsih Rizka','string'),(190,'en_US','givenName','Annisa','string'),(191,'en_US','givenName','Wahyu','string'),(192,'en_US','givenName','Siswanto','string'),(194,'en_US','givenName','Belian Anugrah','string'),(199,'en_US','givenName','Sri','string'),(196,'en_US','givenName','Tyas Sari','string'),(198,'en_US','givenName','RR. Catur Leny','string'),(210,'en_US','givenName','raizen','string'),(201,'en_US','givenName','RR. Catur Leny','string'),(202,'en_US','givenName','Sri','string'),(204,'en_US','givenName','Istri','string'),(206,'en_US','givenName','Istri','string'),(208,'en_US','givenName','Endang','string'),(209,'en_US','givenName','Sri','string'),(211,'en_US','givenName','yuda','string'),(212,'en_US','givenName','Muhamad','string'),(214,'en_US','givenName','Intan Putri','string'),(215,'en_US','givenName','Istri','string'),(217,'en_US','givenName','Suyani','string'),(219,'en_US','givenName','Joko Tri','string'),(237,'en_US','givenName','Tri','string'),(236,'en_US','givenName','Aris','string'),(223,'en_US','givenName','Endang Zulaicha','string'),(238,'en_US','givenName','Kartika Dian','string'),(227,'en_US','givenName','Made Mahaguan','string'),(226,'en_US','givenName','Aris','string'),(228,'en_US','givenName','Putu Agus Winduyasa','string'),(229,'en_US','givenName','Joko Tri','string'),(239,'en_US','givenName','kucing','string'),(231,'en_US','givenName','Isnani','string'),(232,'en_US','givenName','Anas Rahmad','string'),(234,'en_US','givenName','Natalia Ratna','string'),(235,'en_US','givenName','Ester','string'),(240,'en_US','givenName','Ririn Wahyu','string'),(242,'en_US','givenName','admininsada','string'),(243,'en_US','givenName','admininsada','string'),(244,'en_US','givenName','admininsada','string'),(245,'en_US','givenName','admininsada','string'),(246,'en_US','givenName','admininsada','string'),(247,'en_US','givenName','admininsada','string'),(248,'en_US','givenName','admininsada','string'),(249,'en_US','givenName','admininsada','string'),(250,'en_US','givenName','admininsada','string'),(1,'en_US','familyName','-','string'),(2,'en_US','familyName','-','string'),(3,'en_US','familyName','Trisnowati','string'),(4,'en_US','familyName','Rekyan Poncowati','string'),(8,'en_US','familyName','Nur Solikah','string'),(6,'en_US','familyName','Trisnowati','string'),(7,'en_US','familyName','Rekyan Poncowati','string'),(9,'en_US','familyName','Joko Waluyo','string'),(10,'en_US','familyName','-','string'),(11,'en_US','familyName','-','string'),(12,'en_US','familyName','Ariasti','string'),(13,'en_US','familyName','Sri Yulianti','string'),(14,'en_US','familyName','Indriati','string'),(18,'en_US','familyName','Ariasti','string'),(17,'en_US','familyName','-','string'),(27,'en_US','familyName','S.Kep., Ns., M.Kes','string'),(21,'en_US','familyName','S. Kep., Ns.M.Ke','string'),(22,'en_US','familyName','S.Kep,M.Kes','string'),(28,'en_US','familyName',', A.,M.Kes','string'),(29,'en_US','familyName','Sri Yulianti','string'),(30,'en_US','familyName','-','string'),(31,'en_US','familyName','-','string'),(32,'en_US','familyName','-','string'),(33,'en_US','familyName','-','string'),(35,'en_US','familyName','Dwi Ningsih','string'),(38,'en_US','familyName','Muliawati','string'),(39,'en_US','familyName','-','string'),(40,'en_US','familyName','-','string'),(45,'en_US','familyName','Prahesti, SST, M.Kes','string'),(44,'en_US','familyName','SST, M.Kes','string'),(43,'en_US','familyName','Puji Hastuti, SST, M.Kes','string'),(46,'en_US','familyName','Rekyan Poncowati','string'),(47,'en_US','familyName','Dwiyanti','string'),(48,'en_US','familyName','xx','string'),(49,'en_US','familyName','mbem','string'),(50,'en_US','familyName','a','string'),(51,'en_US','familyName','haku','string'),(52,'en_US','familyName','Ningsih','string'),(53,'en_US','familyName','jwdiajdwiaj','string'),(54,'en_US','familyName','Yankusuma S','string'),(55,'en_US','familyName','a','string'),(56,'en_US','familyName','a','string'),(57,'en_US','familyName','a','string'),(58,'en_US','familyName','asdasdasd','string'),(59,'en_US','familyName','Trisnowati','string'),(60,'en_US','familyName','Anggraini','string'),(61,'en_US','familyName','Awanda I','string'),(63,'en_US','familyName','Fitriyanti','string'),(64,'en_US','familyName','Sulistyaningtyas','string'),(65,'en_US','familyName','Andisetyana Putri','string'),(66,'en_US','familyName','Sulistyoningtyas','string'),(67,'en_US','familyName','Dwihestie','string'),(68,'en_US','familyName','Andisetyana Putri','string'),(69,'en_US','familyName','Dai Doni','string'),(70,'en_US','familyName','Kuswanti','string'),(71,'en_US','familyName','Novitasari','string'),(72,'en_US','familyName','Aryani','string'),(73,'en_US','familyName','Utami','string'),(74,'en_US','familyName','-','string'),(75,'en_US','familyName','Fitriyanti','string'),(76,'en_US','familyName','Hani','string'),(77,'en_US','familyName','Doni','string'),(78,'en_US','familyName','Kuswanti','string'),(79,'en_US','familyName','Novitasari','string'),(80,'en_US','familyName','Palifiana','string'),(81,'en_US','familyName','Wulandari','string'),(82,'en_US','familyName','-','string'),(83,'en_US','familyName','-','string'),(84,'en_US','familyName','f','string'),(85,'en_US','familyName','f','string'),(86,'en_US','familyName','x','string'),(153,'en_US','familyName','Ratnaningrum','string'),(138,'en_US','familyName','Wahyuni','string'),(101,'en_US','familyName','Trisnowati','string'),(90,'en_US','familyName','Wahyu Hidayati','string'),(139,'en_US','familyName','Aisyaroh','string'),(92,'en_US','familyName','Hidayati','string'),(93,'en_US','familyName','Hidayati','string'),(137,'en_US','familyName','Sulistyoningtyas','string'),(160,'en_US','familyName','Puspitasari','string'),(161,'en_US','familyName','Suminar','string'),(99,'en_US','familyName','','string'),(102,'en_US','familyName','Lestari','string'),(103,'en_US','familyName','Hidayati','string'),(104,'en_US','familyName','Waluyo','string'),(105,'en_US','familyName','Suminar','string'),(106,'en_US','familyName','Lestari','string'),(107,'en_US','familyName','Solikah','string'),(108,'en_US','familyName','Solikah','string'),(109,'en_US','familyName','Trisnowati','string'),(110,'en_US','familyName','Solikah','string'),(111,'en_US','familyName','Trisnowati','string'),(112,'en_US','familyName','Estri','string'),(113,'en_US','familyName','Fajarini','string'),(114,'en_US','familyName','a','string'),(115,'en_US','familyName','Khofiyah','string'),(116,'en_US','familyName','Rokhanawati','string'),(117,'en_US','familyName','Rahmasari','string'),(118,'en_US','familyName','Rahmasari','string'),(119,'en_US','familyName','Suminar','string'),(120,'en_US','familyName','Wahyuni','string'),(121,'en_US','familyName','Rahmawati','string'),(122,'en_US','familyName','Sholihah','string'),(123,'en_US','familyName','Setyorini','string'),(124,'en_US','familyName','Lieskusumastuti','string'),(125,'en_US','familyName','Sari','string'),(126,'en_US','familyName','Hanifah','string'),(127,'en_US','familyName','Zaidah','string'),(128,'en_US','familyName','Puteri','string'),(129,'en_US','familyName','Arintasari','string'),(158,'en_US','familyName','Dwihestie','string'),(131,'en_US','familyName','Oktaviani','string'),(132,'en_US','familyName','Kasanah','string'),(133,'en_US','familyName','Saptiningsih','string'),(134,'en_US','familyName','a','string'),(136,'en_US','familyName','a','string'),(154,'en_US','familyName','a','string'),(147,'en_US','familyName','Dwihestie','string'),(149,'en_US','familyName','Dwihestie','string'),(156,'en_US','familyName','Ratnaningrum','string'),(162,'en_US','familyName','Faudu','string'),(164,'en_US','familyName','Dwihestie','string'),(166,'en_US','familyName','Hidayati','string'),(167,'en_US','familyName','a','string'),(168,'en_US','familyName','Sari Ratnaningrum','string'),(169,'en_US','familyName','Sari Ratnaningrum','string'),(170,'en_US','familyName','adssad','string'),(171,'en_US','familyName','AsaSA','string'),(172,'en_US','familyName','Ratnaningrum','string'),(173,'en_US','familyName','insada','string'),(174,'en_US','familyName','Ratnaningrum','string'),(175,'en_US','familyName','a','string'),(176,'en_US','familyName','Astuti','string'),(177,'en_US','familyName','Sakitri','string'),(178,'en_US','familyName','a','string'),(179,'en_US','familyName','a','string'),(180,'en_US','familyName','a','string'),(181,'en_US','familyName','a','string'),(182,'en_US','familyName','asd','string'),(183,'en_US','familyName','x','string'),(184,'en_US','familyName','a','string'),(188,'en_US','familyName','Sholihah','string'),(186,'en_US','familyName','Fatmawati','string'),(190,'en_US','familyName','Andriyani','string'),(191,'en_US','familyName','Purwaningsih','string'),(192,'en_US','familyName','S.Kp, Ns, M.Kes','string'),(194,'en_US','familyName','Estri','string'),(199,'en_US','familyName','Wahyuni','string'),(196,'en_US','familyName','Ratna Ningrum','string'),(198,'en_US','familyName','Wulandari','string'),(210,'en_US','familyName','raizen','string'),(201,'en_US','familyName','Wulandari','string'),(202,'en_US','familyName','Wahyuni','string'),(204,'en_US','familyName','Utami','string'),(206,'en_US','familyName','Utami','string'),(208,'en_US','familyName','Surani','string'),(209,'en_US','familyName','Wahyuni','string'),(211,'en_US','familyName','susanto','string'),(212,'en_US','familyName','Bagus','string'),(214,'en_US','familyName','Utami','string'),(215,'en_US','familyName','Utami','string'),(217,'en_US','familyName','s','string'),(219,'en_US','familyName','Atmojo','string'),(237,'en_US','familyName','Yuniarti','string'),(236,'en_US','familyName','Widiyanto','string'),(223,'en_US','familyName','Susilaningsih','string'),(238,'en_US','familyName','Listyaningsih','string'),(227,'en_US','familyName','Putra','string'),(226,'en_US','familyName','Widiyanto','string'),(228,'en_US','familyName','Bukian','string'),(229,'en_US','familyName','Atmojo','string'),(239,'en_US','familyName','kejepit','string'),(231,'en_US','familyName','Nurhayati','string'),(232,'en_US','familyName','Hidayat','string'),(234,'en_US','familyName','Yulianti','string'),(235,'en_US','familyName','Krisnawati','string'),(240,'en_US','familyName','Hidayati','string'),(242,'en_US','familyName','a','string'),(243,'en_US','familyName','a','string'),(244,'en_US','familyName','a','string'),(245,'en_US','familyName','a','string'),(246,'en_US','familyName','a','string'),(247,'en_US','familyName','a','string'),(248,'en_US','familyName','a','string'),(249,'en_US','familyName','a','string'),(250,'en_US','familyName','a','string'),(251,'en_US','biography','','string'),(251,'en_US','affiliation','','string'),(251,'en_US','givenName','admininsada','string'),(251,'en_US','familyName','a','string'),(251,'','orcid','','string'),(252,'en_US','biography','','string'),(252,'en_US','affiliation','','string'),(252,'en_US','givenName','admininsada','string'),(252,'en_US','familyName','a','string'),(252,'','orcid','','string'),(253,'en_US','biography','','string'),(253,'en_US','affiliation','','string'),(253,'en_US','givenName','admininsada','string'),(253,'en_US','familyName','a','string'),(253,'','orcid','','string'),(254,'en_US','biography','','string'),(254,'en_US','affiliation','','string'),(254,'en_US','givenName','admininsada','string'),(254,'en_US','familyName','a','string'),(254,'','orcid','','string'),(258,'en_US','givenName','admininsada','string'),(258,'en_US','affiliation','','string'),(258,'en_US','biography','','string'),(256,'en_US','biography','','string'),(256,'en_US','affiliation','','string'),(256,'en_US','givenName','Tri Utami','string'),(256,'en_US','familyName','','string'),(256,'en_US','preferredPublicName','','string'),(256,'','orcid','','string'),(257,'en_US','biography','','string'),(257,'en_US','affiliation','','string'),(257,'en_US','givenName','Ganik Sakitri','string'),(257,'en_US','familyName','','string'),(257,'en_US','preferredPublicName','','string'),(257,'','orcid','','string'),(258,'en_US','familyName','a','string'),(258,'','orcid','','string'),(259,'en_US','biography','','string'),(259,'en_US','affiliation','','string'),(259,'en_US','givenName','Tri Utami','string'),(259,'en_US','familyName','','string'),(259,'en_US','preferredPublicName','','string'),(259,'','orcid','','string'),(260,'en_US','biography','','string'),(260,'en_US','affiliation','','string'),(260,'en_US','givenName','Ganik Sakitri','string'),(260,'en_US','familyName','','string'),(260,'en_US','preferredPublicName','','string'),(260,'','orcid','','string'),(264,'en_US','givenName','admininsada','string'),(264,'en_US','affiliation','','string'),(264,'en_US','biography','','string'),(262,'en_US','biography','','string'),(262,'en_US','affiliation','','string'),(262,'en_US','givenName','Hana Rosiana Ulfah','string'),(262,'en_US','familyName','','string'),(262,'en_US','preferredPublicName','','string'),(262,'','orcid','','string'),(263,'en_US','biography','','string'),(263,'en_US','affiliation','','string'),(263,'en_US','givenName','Farid Setyo Nugroho','string'),(263,'en_US','familyName','','string'),(263,'en_US','preferredPublicName','','string'),(263,'','orcid','','string'),(264,'en_US','familyName','a','string'),(264,'','orcid','','string'),(284,'en_US','familyName','tatik','string'),(285,'en_US','affiliation','lecturer','string'),(284,'en_US','affiliation','Akper Insan Husada Surakarta','string'),(266,'en_US','biography','','string'),(266,'en_US','affiliation','','string'),(266,'en_US','givenName','Fitri Nur Indah','string'),(266,'en_US','familyName','','string'),(266,'en_US','preferredPublicName','','string'),(266,'','orcid','','string'),(267,'en_US','biography','','string'),(267,'en_US','affiliation','','string'),(267,'en_US','givenName','Istri Utami','string'),(267,'en_US','familyName','','string'),(267,'en_US','preferredPublicName','','string'),(267,'','orcid','','string'),(284,'en_US','givenName','tatik trisnowati','string'),(269,'en_US','biography','','string'),(269,'en_US','affiliation','','string'),(269,'en_US','givenName','Siswanto','string'),(269,'en_US','familyName','','string'),(269,'en_US','preferredPublicName','','string'),(269,'','orcid','','string'),(270,'en_US','biography','','string'),(270,'en_US','affiliation','','string'),(270,'en_US','givenName','Wahyu Purwaningsih','string'),(270,'en_US','familyName','','string'),(270,'en_US','preferredPublicName','','string'),(270,'','orcid','','string'),(272,'en_US','biography','','string'),(272,'en_US','affiliation','','string'),(272,'en_US','givenName','Devi Ratna Putri','string'),(272,'en_US','familyName','','string'),(272,'en_US','preferredPublicName','','string'),(272,'','orcid','','string'),(273,'en_US','biography','','string'),(273,'en_US','affiliation','','string'),(273,'en_US','givenName','Ratna Kusuma Astuti','string'),(273,'en_US','familyName','','string'),(273,'en_US','preferredPublicName','','string'),(273,'','orcid','','string'),(278,'en_US','biography','','string'),(275,'en_US','biography','','string'),(275,'en_US','affiliation','','string'),(275,'en_US','givenName','Siti Nur Solikah','string'),(275,'en_US','familyName','','string'),(275,'en_US','preferredPublicName','','string'),(275,'','orcid','','string'),(276,'en_US','biography','','string'),(276,'en_US','affiliation','','string'),(276,'en_US','givenName','Sunaryo Joko Waluyo','string'),(276,'en_US','familyName','','string'),(276,'en_US','preferredPublicName','','string'),(276,'','orcid','','string'),(278,'en_US','affiliation','','string'),(278,'en_US','givenName','Ni\'mah Hidayatul Laili','string'),(278,'en_US','familyName','','string'),(278,'en_US','preferredPublicName','','string'),(278,'','orcid','','string'),(279,'en_US','biography','','string'),(279,'en_US','affiliation','','string'),(279,'en_US','givenName','Vivi Nurul Laily','string'),(279,'en_US','familyName','','string'),(279,'en_US','preferredPublicName','','string'),(279,'','orcid','','string'),(281,'en_US','biography','','string'),(281,'en_US','affiliation','','string'),(281,'en_US','givenName','Danik Riawati','string'),(281,'en_US','familyName','','string'),(281,'en_US','preferredPublicName','','string'),(281,'','orcid','','string'),(282,'en_US','biography','','string'),(282,'en_US','affiliation','','string'),(282,'en_US','givenName','Titis Wahyuono','string'),(282,'en_US','familyName','','string'),(282,'en_US','preferredPublicName','','string'),(282,'','orcid','','string'),(283,'en_US','biography','','string'),(283,'en_US','affiliation','','string'),(283,'en_US','givenName','Dewi Anggraini Kartika','string'),(283,'en_US','familyName','','string'),(283,'en_US','preferredPublicName','','string'),(283,'','orcid','','string'),(285,'en_US','givenName','Irna','string'),(285,'en_US','familyName','Kartina','string'),(286,'en_US','affiliation','akademi keperawatan insan husada surakarta','string'),(286,'en_US','givenName','sunaryo joko','string'),(286,'en_US','familyName','waluyo','string'),(287,'en_US','affiliation','Universitas Aisyiyah Yogyakarta','string'),(287,'en_US','givenName','Kustiningsih','string'),(287,'en_US','familyName','','string'),(288,'en_US','affiliation','N','string'),(288,'en_US','givenName','Jj','string'),(288,'en_US','familyName','Nn','string'),(289,'en_US','affiliation','N','string'),(289,'en_US','givenName','Jj','string'),(289,'en_US','familyName','Nn','string'),(312,'','orcid','','string'),(312,'en_US','familyName','a','string'),(312,'en_US','givenName','admininsada','string'),(291,'en_US','biography','','string'),(291,'en_US','affiliation','','string'),(291,'en_US','givenName','Innez Karunia ','string'),(291,'en_US','familyName','Mustikarani','string'),(291,'en_US','preferredPublicName','','string'),(291,'','orcid','','string'),(292,'en_US','biography','','string'),(292,'en_US','affiliation','','string'),(292,'en_US','givenName','Martina ','string'),(292,'en_US','familyName','Ekacahyaningtyas','string'),(292,'en_US','preferredPublicName','','string'),(292,'','orcid','','string'),(293,'en_US','biography','','string'),(293,'en_US','affiliation','','string'),(293,'en_US','givenName','Nur ','string'),(293,'en_US','familyName','Rakhmawati','string'),(293,'en_US','preferredPublicName','','string'),(293,'','orcid','','string'),(312,'en_US','affiliation','','string'),(295,'en_US','biography','','string'),(295,'en_US','affiliation','','string'),(295,'en_US','givenName','Martina ','string'),(295,'en_US','familyName','Ekacahyaningtyas','string'),(295,'en_US','preferredPublicName','','string'),(295,'','orcid','','string'),(296,'en_US','biography','','string'),(296,'en_US','affiliation','','string'),(296,'en_US','givenName','Innez Karunia ','string'),(296,'en_US','familyName','Mustikarani','string'),(296,'en_US','preferredPublicName','','string'),(296,'','orcid','','string'),(297,'en_US','biography','','string'),(297,'en_US','affiliation','','string'),(297,'en_US','givenName','Ratih Dwilestari Puji ','string'),(297,'en_US','familyName','Utami','string'),(297,'en_US','preferredPublicName','','string'),(297,'','orcid','','string'),(312,'en_US','biography','','string'),(299,'en_US','biography','','string'),(299,'en_US','affiliation','','string'),(299,'en_US','givenName','Suri ','string'),(299,'en_US','familyName','Salmiyati','string'),(299,'en_US','preferredPublicName','','string'),(299,'','orcid','','string'),(300,'en_US','biography','','string'),(300,'en_US','affiliation','','string'),(300,'en_US','givenName','Lutfi Nurdian ','string'),(300,'en_US','familyName','Asnindari','string'),(300,'en_US','preferredPublicName','','string'),(300,'','orcid','','string'),(302,'en_US','biography','','string'),(302,'en_US','affiliation','','string'),(302,'en_US','givenName','Ratih ','string'),(302,'en_US','familyName','Prananingrum','string'),(302,'en_US','preferredPublicName','','string'),(302,'','orcid','','string'),(306,'en_US','biography','','string'),(304,'en_US','biography','','string'),(304,'en_US','affiliation','','string'),(304,'en_US','givenName','Kustiningsih','string'),(304,'en_US','familyName','','string'),(304,'en_US','preferredPublicName','','string'),(304,'','orcid','','string'),(306,'en_US','affiliation','','string'),(306,'en_US','givenName','Ratih Dwilestari Puji ','string'),(306,'en_US','familyName','utami','string'),(306,'en_US','preferredPublicName','','string'),(306,'','orcid','','string'),(307,'en_US','biography','','string'),(307,'en_US','affiliation','','string'),(307,'en_US','givenName','Nur ','string'),(307,'en_US','familyName','Rahmawati','string'),(307,'en_US','preferredPublicName','','string'),(307,'','orcid','','string'),(308,'en_US','biography','','string'),(308,'en_US','affiliation','','string'),(308,'en_US','givenName','Martina Eka ','string'),(308,'en_US','familyName','Cahyaningtyas','string'),(308,'en_US','preferredPublicName','','string'),(308,'','orcid','','string'),(310,'en_US','biography','','string'),(310,'en_US','affiliation','','string'),(310,'en_US','givenName','Sunaryo Joko ','string'),(310,'en_US','familyName','Waluyo','string'),(310,'en_US','preferredPublicName','','string'),(310,'','orcid','','string'),(311,'en_US','biography','','string'),(311,'en_US','affiliation','','string'),(311,'en_US','givenName','Siti Nur ','string'),(311,'en_US','familyName','Solikah','string'),(311,'en_US','preferredPublicName','','string'),(311,'','orcid','','string'),(317,'en_US','familyName','B','string'),(317,'en_US','affiliation','N','string'),(317,'en_US','givenName','N','string'),(314,'en_US','biography','','string'),(314,'en_US','affiliation','','string'),(314,'en_US','givenName','Nur ','string'),(314,'en_US','familyName','Rakhmawati','string'),(314,'en_US','preferredPublicName','','string'),(314,'','orcid','','string'),(315,'en_US','biography','','string'),(315,'en_US','affiliation','','string'),(315,'en_US','givenName','Ratih Dwilestari Puji ','string'),(315,'en_US','familyName','Utami','string'),(315,'en_US','preferredPublicName','','string'),(315,'','orcid','','string'),(316,'en_US','biography','','string'),(316,'en_US','affiliation','','string'),(316,'en_US','givenName','Innez Karunia ','string'),(316,'en_US','familyName','Mustikarani','string'),(316,'en_US','preferredPublicName','','string'),(316,'','orcid','','string'),(318,'en_US','affiliation','N','string'),(318,'en_US','givenName','J','string'),(318,'en_US','familyName','J','string'),(319,'en_US','affiliation','Ffff','string'),(319,'en_US','givenName','Aass','string'),(319,'en_US','familyName','','string'),(320,'en_US','affiliation','fdfdf','string'),(320,'en_US','givenName','Maria','string'),(320,'en_US','familyName','Aguirre','string'),(321,'en_US','affiliation','Poltekkes Kemenkes Jayapura','string'),(321,'en_US','givenName','Sri','string'),(321,'en_US','familyName','Wahyuni','string'),(322,'en_US','affiliation','poltekkes jayapura','string'),(322,'en_US','givenName','ika wijayanti','string'),(322,'en_US','familyName','','string'),(323,'en_US','affiliation','Jsj','string'),(323,'en_US','givenName','Rois','string'),(323,'en_US','familyName','Nkdj','string'),(324,'en_US','affiliation','Jsj','string'),(324,'en_US','givenName','Rois','string'),(324,'en_US','familyName','Nkdj','string'),(325,'en_US','affiliation','Jsj','string'),(325,'en_US','givenName','Rois','string'),(325,'en_US','familyName','Nkdj','string'),(353,'en_US','givenName','jsjsjs','string'),(347,'en_US','biography','','string'),(353,'en_US','affiliation','dmdmdmdm','string'),(352,'en_US','familyName','Y','string'),(327,'en_US','biography','','string'),(327,'en_US','affiliation','','string'),(327,'en_US','givenName','Sri ','string'),(327,'en_US','familyName','Wahyuni','string'),(327,'en_US','preferredPublicName','','string'),(327,'','orcid','','string'),(328,'en_US','biography','','string'),(328,'en_US','affiliation','','string'),(328,'en_US','givenName','Syahriyanti','string'),(328,'en_US','familyName','','string'),(328,'en_US','preferredPublicName','','string'),(328,'','orcid','','string'),(352,'en_US','affiliation','Y','string'),(330,'en_US','biography','','string'),(330,'en_US','affiliation','','string'),(330,'en_US','givenName','Sri ','string'),(330,'en_US','familyName','Wahyuni','string'),(330,'en_US','preferredPublicName','','string'),(330,'','orcid','','string'),(331,'en_US','biography','','string'),(331,'en_US','affiliation','','string'),(331,'en_US','givenName','Ika ','string'),(331,'en_US','familyName','Wijayanti','string'),(331,'en_US','preferredPublicName','','string'),(331,'','orcid','','string'),(332,'en_US','biography','','string'),(332,'en_US','affiliation','','string'),(332,'en_US','givenName','Wena ','string'),(332,'en_US','familyName','Betsy Maran','string'),(332,'en_US','preferredPublicName','','string'),(332,'','orcid','','string'),(352,'en_US','givenName','Y','string'),(334,'en_US','biography','','string'),(334,'en_US','affiliation','','string'),(334,'en_US','givenName','Tiwi ','string'),(334,'en_US','familyName','Sudyasih','string'),(334,'en_US','preferredPublicName','','string'),(334,'','orcid','','string'),(335,'en_US','biography','','string'),(335,'en_US','affiliation','','string'),(335,'en_US','givenName','Lutfi ','string'),(335,'en_US','familyName','Nurdian Asnindari','string'),(335,'en_US','preferredPublicName','','string'),(335,'','orcid','','string'),(340,'en_US','biography','','string'),(337,'en_US','biography','','string'),(337,'en_US','affiliation','','string'),(337,'en_US','givenName','Siswanto','string'),(337,'en_US','familyName','','string'),(337,'en_US','preferredPublicName','','string'),(337,'','orcid','','string'),(338,'en_US','biography','','string'),(338,'en_US','affiliation','','string'),(338,'en_US','givenName','Pandu ','string'),(338,'en_US','familyName','Aseta','string'),(338,'en_US','preferredPublicName','','string'),(338,'','orcid','','string'),(340,'en_US','affiliation','','string'),(340,'en_US','givenName','Syarifah','string'),(340,'en_US','familyName','','string'),(340,'en_US','preferredPublicName','','string'),(340,'','orcid','','string'),(341,'en_US','biography','','string'),(341,'en_US','affiliation','','string'),(341,'en_US','givenName','Barli ','string'),(341,'en_US','familyName','Shodiq','string'),(341,'en_US','preferredPublicName','','string'),(341,'','orcid','','string'),(343,'en_US','biography','','string'),(343,'en_US','affiliation','','string'),(343,'en_US','givenName','Ika ','string'),(343,'en_US','familyName','Wijayanti','string'),(343,'en_US','preferredPublicName','','string'),(343,'','orcid','','string'),(344,'en_US','biography','','string'),(344,'en_US','affiliation','','string'),(344,'en_US','givenName','Sri ','string'),(344,'en_US','familyName','Wahyuni','string'),(344,'en_US','preferredPublicName','','string'),(344,'','orcid','','string'),(345,'en_US','biography','','string'),(345,'en_US','affiliation','','string'),(345,'en_US','givenName','Peny ','string'),(345,'en_US','familyName','Wena Betsy Maran','string'),(345,'en_US','preferredPublicName','','string'),(345,'','orcid','','string'),(347,'en_US','affiliation','','string'),(347,'en_US','givenName','Ruth ','string'),(347,'en_US','familyName','Yogi','string'),(347,'en_US','preferredPublicName','','string'),(347,'','orcid','','string'),(348,'en_US','biography','','string'),(348,'en_US','affiliation','','string'),(348,'en_US','givenName','Eka ','string'),(348,'en_US','familyName','Setyaning Suci','string'),(348,'en_US','preferredPublicName','','string'),(348,'','orcid','','string'),(349,'en_US','biography','','string'),(349,'en_US','affiliation','','string'),(349,'en_US','givenName','Sri ','string'),(349,'en_US','familyName','Wahyuni','string'),(349,'en_US','preferredPublicName','','string'),(349,'','orcid','','string'),(351,'en_US','biography','','string'),(351,'en_US','affiliation','','string'),(351,'en_US','givenName','Ratih','string'),(351,'en_US','familyName','Prananingrum','string'),(351,'en_US','preferredPublicName','','string'),(351,'','orcid','','string'),(353,'en_US','familyName','dkdkmdms','string'),(371,'en_US','preferredPublicName','','string'),(371,'en_US','familyName','Trisnowati','string'),(371,'en_US','givenName','Tatik','string'),(355,'en_US','biography','','string'),(355,'en_US','affiliation','ITS PKU Muhammadiyah Surakarta','string'),(355,'en_US','givenName','Ratih','string'),(355,'en_US','familyName','Prananingrum','string'),(355,'en_US','preferredPublicName','','string'),(355,'','orcid','','string'),(371,'en_US','affiliation','Politeknik Insan Husada Surakarta','string'),(357,'en_US','biography','','string'),(357,'en_US','affiliation','ITS PKU Muhammadiyah Surakarta','string'),(357,'en_US','givenName','Ratih','string'),(357,'en_US','familyName','Prananingrum','string'),(357,'en_US','preferredPublicName','','string'),(357,'','orcid','','string'),(359,'en_US','biography','','string'),(359,'en_US','affiliation','Politeknik Insan Husada Surakarta','string'),(359,'en_US','givenName','Ratna','string'),(359,'en_US','familyName','Kusuma Astuti','string'),(359,'en_US','preferredPublicName','','string'),(359,'','orcid','','string'),(371,'en_US','biography','','string'),(374,'en_US','familyName','Nur Solikah','string'),(374,'en_US','preferredPublicName','','string'),(374,'','orcid','','string'),(362,'en_US','biography','','string'),(362,'en_US','affiliation','Jurusan Keperawatan Politeknik Insan Husada Surakarta','string'),(362,'en_US','givenName','Anggi Nur','string'),(362,'en_US','familyName','Icha Afiatantri ','string'),(362,'en_US','preferredPublicName','','string'),(362,'','orcid','','string'),(374,'en_US','givenName','Siti','string'),(374,'en_US','affiliation','D3 Keperawatan Politeknik Insan Husada Surakarta','string'),(374,'en_US','biography','','string'),(364,'en_US','biography','','string'),(364,'en_US','affiliation','','string'),(364,'en_US','givenName','admininsada','string'),(364,'en_US','familyName','a','string'),(364,'','orcid','','string'),(373,'en_US','familyName','','string'),(373,'en_US','preferredPublicName','','string'),(373,'','orcid','','string'),(366,'en_US','biography','','string'),(366,'en_US','affiliation','','string'),(366,'en_US','givenName','Pandu','string'),(366,'en_US','familyName','Aseta','string'),(366,'en_US','preferredPublicName','','string'),(366,'','orcid','','string'),(373,'en_US','givenName','Siswanto','string'),(373,'en_US','affiliation','','string'),(373,'en_US','biography','','string'),(375,'en_US','preferredPublicName','','string'),(375,'','orcid','','string'),(375,'en_US','familyName','Lestari','string'),(369,'en_US','biography','','string'),(369,'en_US','affiliation','Prodi D3 Keperawatan Politeknik Insan Husada Surakarta','string'),(369,'en_US','givenName','Pupung','string'),(369,'en_US','familyName','Kristika','string'),(369,'en_US','preferredPublicName','','string'),(369,'','orcid','','string'),(375,'en_US','affiliation','Prodi D3 Keperawatan Politeknik Insan Husada Surakarta','string'),(375,'en_US','givenName','Sri','string'),(375,'en_US','biography','','string'),(371,'','orcid','','string'),(372,'en_US','affiliation','Djdndn','string'),(372,'en_US','givenName','Snsnn','string'),(372,'en_US','familyName','Dndn','string'),(376,'en_US','affiliation','asd','string'),(376,'en_US','givenName','mhmed','string'),(376,'en_US','familyName','hasaneen','string'),(379,'en_US','givenName','Maryam','string'),(379,'en_US','biography','','string'),(379,'en_US','affiliation','','string'),(378,'en_US','biography','','string'),(378,'en_US','affiliation','','string'),(378,'en_US','givenName','Siana','string'),(378,'en_US','familyName','Dondi','string'),(378,'en_US','preferredPublicName','','string'),(378,'','orcid','','string'),(379,'en_US','familyName','','string'),(379,'en_US','preferredPublicName','','string'),(379,'','orcid','','string'),(380,'en_US','biography','','string'),(380,'en_US','affiliation','','string'),(380,'en_US','givenName','admininsada','string'),(380,'en_US','familyName','a','string'),(380,'','orcid','','string'),(384,'en_US','affiliation','','string'),(384,'en_US','givenName','Maryam','string'),(384,'en_US','familyName','','string'),(384,'en_US','preferredPublicName','','string'),(385,'en_US','familyName','Dondi','string'),(385,'en_US','affiliation','','string'),(385,'en_US','givenName','Siana','string'),(385,'en_US','biography','','string'),(380,'en_US','preferredPublicName','','string'),(384,'','orcid','','string'),(384,'en_US','biography','','string'),(385,'en_US','preferredPublicName','','string'),(385,'','orcid','','string'),(387,'en_US','biography','','string'),(387,'en_US','affiliation','','string'),(387,'en_US','givenName','Tri','string'),(387,'en_US','familyName','Nurjanah','string'),(387,'en_US','preferredPublicName','','string'),(387,'','orcid','','string'),(388,'en_US','biography','','string'),(388,'en_US','affiliation','','string'),(388,'en_US','givenName','Tatik','string'),(388,'en_US','familyName','Trisnowati','string'),(388,'en_US','preferredPublicName','','string'),(388,'','orcid','','string'),(389,'en_US','biography','','string'),(389,'en_US','affiliation','','string'),(389,'en_US','givenName','Ratna','string'),(389,'en_US','familyName','Kusuma Astuti','string'),(389,'en_US','preferredPublicName','','string'),(389,'','orcid','','string'),(419,'','orcid','','string'),(390,'en_US','biography','','string'),(390,'en_US','affiliation','','string'),(390,'en_US','givenName','admininsada','string'),(390,'en_US','familyName','a','string'),(390,'','orcid','','string'),(391,'en_US','biography','','string'),(391,'en_US','affiliation','','string'),(391,'en_US','givenName','Pandu','string'),(391,'en_US','familyName','Aseta','string'),(391,'en_US','preferredPublicName','','string'),(391,'','orcid','','string'),(392,'en_US','biography','','string'),(392,'en_US','affiliation','','string'),(392,'en_US','givenName','Tatik','string'),(392,'en_US','familyName','Trisnowati','string'),(392,'en_US','preferredPublicName','','string'),(392,'','orcid','','string'),(393,'en_US','biography','','string'),(393,'en_US','affiliation','','string'),(393,'en_US','givenName','Siswanto','string'),(393,'en_US','familyName','','string'),(393,'en_US','preferredPublicName','','string'),(393,'','orcid','','string'),(390,'en_US','preferredPublicName','','string'),(394,'en_US','biography','','string'),(394,'en_US','affiliation','','string'),(394,'en_US','givenName','admininsada','string'),(394,'en_US','familyName','a','string'),(394,'','orcid','','string'),(394,'en_US','preferredPublicName','','string'),(395,'en_US','biography','','string'),(395,'en_US','affiliation','','string'),(395,'en_US','givenName','Agung','string'),(395,'en_US','familyName','Widiastuti','string'),(395,'en_US','preferredPublicName','','string'),(395,'','orcid','','string'),(396,'en_US','biography','','string'),(396,'en_US','affiliation','','string'),(396,'en_US','givenName','Muzaroah','string'),(396,'en_US','familyName','Ermawati Ulkhasanah','string'),(396,'en_US','preferredPublicName','','string'),(396,'','orcid','','string'),(397,'en_US','biography','','string'),(397,'en_US','affiliation','','string'),(397,'en_US','givenName','admininsada','string'),(397,'en_US','familyName','a','string'),(397,'','orcid','','string'),(398,'en_US','biography','','string'),(398,'en_US','affiliation','','string'),(398,'en_US','givenName','admininsada','string'),(398,'en_US','familyName','a','string'),(398,'','orcid','','string'),(399,'en_US','biography','','string'),(399,'en_US','affiliation','','string'),(399,'en_US','givenName','Selina','string'),(399,'en_US','familyName','Boseren','string'),(399,'en_US','preferredPublicName','','string'),(399,'','orcid','','string'),(398,'en_US','preferredPublicName','','string'),(419,'en_US','familyName','Ariani Sulistyowati','string'),(419,'en_US','affiliation','','string'),(419,'en_US','givenName','Dwi ','string'),(401,'en_US','biography','','string'),(401,'en_US','affiliation','','string'),(401,'en_US','givenName','Muzaroah','string'),(401,'en_US','familyName','Ermawati Ulkhasanah','string'),(401,'en_US','preferredPublicName','','string'),(401,'','orcid','','string'),(402,'en_US','biography','','string'),(402,'en_US','affiliation','','string'),(402,'en_US','givenName','Agung','string'),(402,'en_US','familyName','Widiastuti','string'),(402,'en_US','preferredPublicName','','string'),(402,'','orcid','','string'),(403,'en_US','biography','','string'),(403,'en_US','affiliation','','string'),(403,'en_US','givenName','Fakhrudin','string'),(403,'en_US','familyName','Nasrul Sani','string'),(403,'en_US','preferredPublicName','','string'),(403,'','orcid','','string'),(419,'en_US','biography','','string'),(404,'en_US','biography','','string'),(404,'en_US','affiliation','','string'),(404,'en_US','givenName','admininsada','string'),(404,'en_US','familyName','a','string'),(404,'','orcid','','string'),(404,'en_US','preferredPublicName','','string'),(405,'en_US','biography','','string'),(405,'en_US','affiliation','','string'),(405,'en_US','givenName','Yumi','string'),(405,'en_US','familyName','Abimulyani','string'),(405,'en_US','preferredPublicName','','string'),(405,'','orcid','','string'),(406,'en_US','biography','','string'),(406,'en_US','affiliation','','string'),(406,'en_US','givenName','Esther','string'),(406,'en_US','familyName','Theresia Worengga','string'),(406,'en_US','preferredPublicName','','string'),(406,'','orcid','','string'),(408,'en_US','biography','','string'),(408,'en_US','affiliation','','string'),(408,'en_US','givenName','Pandu','string'),(408,'en_US','familyName','Aseta','string'),(408,'en_US','preferredPublicName','','string'),(408,'','orcid','','string'),(409,'en_US','biography','','string'),(409,'en_US','affiliation','','string'),(409,'en_US','givenName','Tatik','string'),(409,'en_US','familyName','Trisnowati','string'),(409,'en_US','preferredPublicName','','string'),(409,'','orcid','','string'),(410,'en_US','biography','','string'),(410,'en_US','affiliation','','string'),(410,'en_US','givenName','Siswanto','string'),(410,'en_US','familyName','','string'),(410,'en_US','preferredPublicName','','string'),(410,'','orcid','','string'),(412,'en_US','biography','','string'),(412,'en_US','affiliation','','string'),(412,'en_US','givenName','Agung','string'),(412,'en_US','familyName','Widiastuti','string'),(412,'en_US','preferredPublicName','','string'),(412,'','orcid','','string'),(413,'en_US','biography','','string'),(413,'en_US','affiliation','','string'),(413,'en_US','givenName','Muzaroah','string'),(413,'en_US','familyName','Ermawati Ulkhasanah','string'),(413,'en_US','preferredPublicName','','string'),(413,'','orcid','','string'),(415,'en_US','biography','','string'),(415,'en_US','affiliation','','string'),(415,'en_US','givenName','Selina','string'),(415,'en_US','familyName','Boseren','string'),(415,'en_US','preferredPublicName','','string'),(415,'','orcid','','string'),(417,'en_US','biography','','string'),(417,'en_US','affiliation','','string'),(417,'en_US','givenName','Yumi','string'),(417,'en_US','familyName','Abimulyani','string'),(417,'en_US','preferredPublicName','','string'),(417,'','orcid','','string'),(418,'en_US','biography','','string'),(418,'en_US','affiliation','','string'),(418,'en_US','givenName','Esther','string'),(418,'en_US','familyName','Theresia Worengga','string'),(418,'en_US','preferredPublicName','','string'),(418,'','orcid','','string');
/*!40000 ALTER TABLE `author_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `authors`
--

DROP TABLE IF EXISTS `authors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authors` (
  `author_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `primary_contact` tinyint(4) NOT NULL DEFAULT 0,
  `seq` double NOT NULL DEFAULT 0,
  `country` varchar(90) DEFAULT NULL,
  `email` varchar(90) NOT NULL,
  `url` varchar(2047) DEFAULT NULL,
  `user_group_id` bigint(20) DEFAULT NULL,
  `include_in_browse` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`author_id`),
  KEY `authors_submission_id` (`submission_id`)
) ENGINE=MyISAM AUTO_INCREMENT=420 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authors`
--

LOCK TABLES `authors` WRITE;
/*!40000 ALTER TABLE `authors` DISABLE KEYS */;
INSERT INTO `authors` VALUES (1,1,1,1,'','akper.insada@gmail.com','',14,1),(2,1,0,2,'','akper.insada@gmail.com','',14,1),(3,2,1,1,'','tatiktris@gmail.com','',14,1),(4,2,0,2,'','nunuk@gmail.com','',14,1),(8,5,1,1,'','noercolikhah85@gmail.com','',14,1),(6,4,1,1,'','akper.insada@gmail.com','',14,1),(7,4,0,2,'','nunuk@gmail.com','',14,1),(9,6,1,1,'','akper.insada@gmail.com','',14,1),(10,6,0,2,'','sugiyarto@gmail.com','',14,1),(11,7,1,1,'','akper.insada@gmail.com','',14,1),(12,7,0,2,'','dinarariasti@gmail.com','',14,1),(13,8,1,1,'','akper.insada@gmail.com','',14,1),(14,8,0,2,'','ratnaindri@gmail.com','',14,1),(18,11,0,2,'','dinarariasti@gmail.com','',14,1),(17,11,1,1,'','akper.insada@gmail.com','',14,1),(27,19,1,1,'','akper.insada@gmail.com','',14,1),(21,14,1,1,'','akper.insada@gmail.com','',14,1),(22,14,0,2,'','sakasuminar@gmail.com','',14,1),(28,19,0,2,'','ratnaindri@gmail.com','',14,1),(29,20,1,1,'','akper.insada@gmail.com','',14,1),(30,20,0,2,'','dinarariasti@gmail.com','',14,1),(31,21,1,1,'','akper.insada@gmail.com','',14,1),(32,21,0,2,'','ratnaindri@gmail.com','',14,1),(33,22,1,1,'','akper.insada@gmail.com','',14,1),(35,24,1,1,'','endanginsada@gmail.com','',14,1),(38,27,1,1,'','sitimul@akbidcm.ac.id','',14,1),(39,28,1,1,'','akper.insada@gmail.com','',14,1),(40,28,0,2,'','akper.insada@gmail.com','',14,1),(45,33,1,1,'','akbidyappi@yahoo.com','',14,1),(44,32,1,1,'','akper.insada@gmail.com','',14,1),(43,31,1,1,'','akper.insada@gmail.com','',14,1),(46,34,1,1,'','akper.insada@gmail.com','',14,1),(47,35,1,1,'','danikdwiyanti@ymail.com','',14,1),(48,36,1,1,'','ranggerpower078@gmail.com','',14,1),(49,37,1,1,'','dancoeg9@yahoo.com','',14,1),(50,38,1,1,'','asuy@gmail.com','',14,1),(51,39,1,1,'','kuuhaku221@how.com','',14,1),(52,40,1,1,'BD','akper.insada@gmail.com','',14,1),(53,41,1,1,'','ajwidjawidja@gmail.com','',14,1),(54,40,0,2,'','akper.insada@gmail.com','',14,1),(55,42,1,1,'','ssss@gmail.com','',14,1),(56,43,1,1,'','ssss@gmail.com','',14,1),(57,44,1,1,'','sas@gmail.com','',14,1),(58,45,1,1,'ID','lawyeenzdotid@gmail.com','http://xnxx.go.id',14,1),(59,46,1,1,'','akperppni.solojateng@gmail.com','',14,1),(60,47,1,1,'','truly_24hours@yahoo.co.id','',14,1),(61,47,0,2,'','truly_24hours@yahoo.co.id','',14,1),(63,49,1,1,'','ekamifka@yahoo.com','',14,1),(64,49,0,2,'','tyaslauzah11@gmail.com','',14,1),(65,50,1,1,'','hanifaaputri.90@gmail.com','',14,1),(66,51,1,1,'','Tyaslauzah11@gmail.com','',14,1),(67,52,1,1,'','akper.insada@gmail.com','',14,1),(68,52,0,2,'','akper.insada@gmail.com','',14,1),(69,53,1,1,'','inna.nugroho@gmail.com','',14,1),(70,53,0,2,'','inna.nugroho@gmail.com','',14,1),(71,53,0,3,'','inna.nugroho@gmail.com','',14,1),(72,54,1,1,'','titinaryani@yahoo.co.id','',14,1),(73,54,0,2,'','titinaryani@yahoo.co.id','',14,1),(74,54,0,3,'','titinaryani@yahoo.co.id','',14,1),(75,55,1,1,'','akper.insada@gmail.com','',14,1),(76,56,1,1,'','uhen_dimyati@yahoo.co.id','',14,1),(77,57,1,1,'','inna.nugroho@gmail.com','',14,1),(78,57,0,2,'','inna.nugroho@gmail.com','',14,1),(79,57,0,3,'','inna.nugroho@gmail.com','',14,1),(80,58,1,1,'','dheska87@gmail.com','',14,1),(81,58,0,2,'','dheska87@gmail.com','',14,1),(82,59,1,1,'','vee.three080589@gmail.com','',14,1),(83,59,0,2,'','vee.three080589@gmail.com','',14,1),(84,60,1,1,'','bbaseng048@gmail.com','',14,1),(85,61,1,1,'','bbaseng048@gmail.com','',14,1),(86,62,1,1,'AS','anonproxy29@gmail.com','http://a.com',14,1),(153,109,1,1,'ID','tyassariratnaningrum@unisayogya.ac.id','',14,1),(138,100,1,1,'ID','sriwahyunimkeb@unissula.ac.id','',14,1),(101,76,0,1,'ID','tatiktrisnowati@yahoo.co.id','',14,1),(90,66,1,1,'','ririnwahyu22@gmail.com','',14,1),(139,100,0,2,'ID','noveri@unissula.ac.id','',14,1),(92,68,1,1,'','ririnwahyu22@gmail.com','',14,1),(93,69,1,1,'','ririnwahyu22@gmail.com','',14,1),(137,99,1,1,'ID','Sholaikhahtyas@unisayogya.ac.id','',14,1),(160,113,0,1,'ID','nurwahidapuspitasari@unisayogya.ac.id','',14,1),(161,114,1,1,'ID','sakasuminar@akperinsada.ac.id','',14,1),(99,74,1,1,NULL,'akper.insada@gmail.com',NULL,14,1),(102,76,1,2,'ID','akperinsada@gmail.com','',14,1),(103,77,1,1,'ID','ririnwahyu22@gmail.com','',14,1),(104,78,1,1,'ID','jokowa.73@gmail.com','',14,1),(105,78,0,2,'ID','akperinsada@gmail.com','',14,1),(106,79,1,1,'ID','srilestarijs@yahoo.com','',14,1),(107,79,0,2,'ID','akperinsada@gmail.com','',14,1),(108,80,1,1,'ID','noercolikah85@gmail.com','',14,1),(109,80,0,2,'ID','akperinsada@gmail.com','',14,1),(110,81,1,1,'ID','noercolikah85@gmail.com','',14,1),(111,81,0,2,'ID','akperinsada@gmail.com','',14,1),(112,82,1,1,'ID','belianestry@gmail.com','',14,1),(113,82,0,2,'ID','akperinsada@gmail.com','',14,1),(114,82,0,3,'ID','akperinsada@gmail.com','',14,1),(115,83,1,1,'ID','nida.midwf@gmail.com','',14,1),(116,83,0,2,'ID','akperinsada@gmail.com','',14,1),(117,83,0,3,'ID','akperinsada@gmail.com','',14,1),(118,84,1,1,'ID','putrialzam@gmail.com','',14,1),(119,85,1,1,'ID','sakasuminar555@gmail.com','',14,1),(120,86,1,1,'ID','sriwahyunimkep@unissula.ac.id','',14,1),(121,86,0,2,'ID','akperinsada@gmail.com','',14,1),(122,87,1,1,'ID','andrisholihah@unisayogya.ac.id','',14,1),(123,88,1,1,'ID','info@stikesmus.ac.id','',14,1),(124,88,0,2,'ID','info@stikesmus.ac.id','',14,1),(125,89,1,1,'ID','info@stikesmus.ac.id','',14,1),(126,89,0,2,'ID','info@stikesmus.ac.id','',14,1),(127,90,1,1,'ID','lailafisioterapis@yahoo.com','',14,1),(128,91,1,1,'ID','bonjem040811@gmail.com','',14,1),(129,91,0,2,'ID','bonjem040811@gmail.com','',14,1),(158,112,1,1,'ID','lulukhusnul@unisayogya.ac.id','',14,1),(131,93,1,1,'ID','hardaoktaviani@yahoo.com',NULL,14,1),(132,94,1,1,'ID','afiawaliya110@gmail.com',NULL,14,1),(133,95,1,1,'ID','yustinsapti3@gmail.com',NULL,14,1),(134,96,1,1,'','akper.insada@gmail.com','',14,1),(136,98,1,1,'','akper.insada@gmail.com','',14,1),(154,110,1,1,'','akper.insada@gmail.com','',14,1),(147,105,1,1,'ID','lulukhusnul@unisayogya.ac.id','',14,1),(149,106,1,1,'ID','lulukhusnul@unisayogya.ac.id','',14,1),(156,111,1,1,'ID','tyassariratnaningrum@unisayogya.ac.id','',14,1),(162,113,1,2,'ID','NovellaUlvinainyFaudu@unisayogya.ac.id','',14,1),(164,115,1,1,'ID','lulukhusnul@unisayogya.ac.id','',14,1),(166,117,1,1,'ID','ririnwahyu@unisayogya.ac.id',NULL,14,1),(167,118,1,1,'','akper.insada@gmail.com','',14,1),(168,118,0,2,'ID','tyassariratnaningrum@unisayogya.ac.id','',14,1),(169,119,1,1,'ID','tyassariratnaningrum@unisayogya.ac.id','',14,1),(170,120,1,1,'BH','caesarevan231@gmail.com',NULL,14,1),(171,121,1,1,'AF','retasbro.01@gmail.com',NULL,14,1),(172,122,1,1,'ID','tyassariratnaningrum@unisayogya.ac.id','',14,1),(173,123,0,1,'ID','akper.insada@gmail.com','',14,1),(174,123,1,2,'ID','tyassariratnaningrum@unisayogya.ac.id','',14,1),(175,124,1,1,'','akper.insada@gmail.com','',14,1),(176,125,1,1,'ID','ratnakusuma@akperinsada.ac.id','',14,1),(177,125,0,2,'ID','ganiksakitri@akperinsada.ac.id','',14,1),(178,126,1,1,'','akper.insada@gmail.com','',14,1),(179,127,1,1,'','akper.insada@gmail.com','',14,1),(180,128,1,1,'','akper.insada@gmail.com','',14,1),(181,129,1,1,'','akper.insada@gmail.com','',14,1),(182,130,1,1,'AF','newbiepentest@gmail.com',NULL,14,1),(183,131,1,1,'DZ','a@y.co',NULL,14,1),(184,132,1,1,'','akper.insada@gmail.com','',14,1),(188,134,1,1,'ID','andrisholihah@unisayogya.ac.id','',14,1),(186,133,1,1,'ID','rizkafatmawati@stikespku.ac.id','',14,1),(190,135,0,1,'ID','annisa7117@gmail.com','',14,1),(191,135,1,2,'ID','wahyuikd@gmail.com','',14,1),(192,135,0,3,'ID','siswantoarizal@gmail.com','',14,1),(194,136,1,1,'ID','belianestri@unisayogya.ac.id','',14,1),(199,138,1,1,'ID','sriwahyunimkeb@unissula.ac.id','',14,1),(196,137,1,1,'ID','tyassariratnaningrum@unisayogya.ac.id','',14,1),(198,138,0,2,'ID','caturleny@unissula.ac.id','',14,1),(210,143,1,1,'BY','raipriv28@gmail.com',NULL,14,1),(201,139,1,1,'ID','caturleny@unissula.ac.id','',14,1),(202,139,0,2,'ID','sriwahyunimkeb@unissula.ac.id','',14,1),(204,140,1,1,'ID','istriutami@unisayogya.ac.id','',14,1),(206,141,1,1,'ID','istriutami@unisayogya.ac.id','',14,1),(208,142,1,1,'ID','surani@unissula.ac.id','',14,1),(209,142,0,2,'ID','sriwahyunimkeb@unissula.ac.id','',14,1),(211,144,1,1,'ID','jayasenur@gmail.com',NULL,14,1),(212,145,1,1,'ID','mhmdbgs1337@gmail.com',NULL,14,1),(214,146,1,1,'ID','utamiintanp@gmail.com','',14,1),(215,146,0,2,'ID','istriutami@unisayogya.ac.id','',14,1),(217,147,1,1,'ID','suyanibasyar@unisayogya.ac.id','',14,1),(219,148,1,1,'ID','jokotriatmojo1@gmail.com','',14,1),(237,148,0,3,'ID','jokotriatmojo1@gmail.com','',14,1),(236,148,0,2,'ID','jokotriatmojo1@gmail.com','',14,1),(223,149,1,1,'ID','endang.zulaicha.s@gmail.com','',14,1),(238,149,0,2,'ID','Tika.listya21@gmail.com','',14,1),(227,150,0,1,'ID','md.mahagunaputra@gmail.com','',14,1),(226,150,1,2,'ID','md.mahagunaputra@gmail.com','',14,1),(228,150,0,3,'ID','md.mahagunaputra@gmail.com','',14,1),(229,150,0,4,'ID','md.mahagunaputra@gmail.com','',14,1),(239,153,1,1,'ID','nagixapay@doc-mail.net',NULL,14,1),(231,151,1,1,'ID','isna@stikesmus.co.id','',14,1),(232,151,0,2,'ID','isna@stikesmus.co.id','',14,1),(234,152,1,1,'ID','natalia.r.yulianti@gmail.com','',14,1),(235,152,0,2,'ID','natalia.r.yulianti@gmail.com','',14,1),(240,154,1,1,'ID','ririnwahyu22@gmail.com',NULL,14,1),(242,156,1,1,'','akper.insada@gmail.com','',14,1),(243,157,1,1,'','akper.insada@gmail.com','',14,1),(244,158,1,1,'','akper.insada@gmail.com','',14,1),(245,159,1,1,'','akper.insada@gmail.com','',14,1),(246,160,1,1,'','akper.insada@gmail.com','',14,1),(247,161,1,1,'','akper.insada@gmail.com','',14,1),(248,162,1,1,'','akper.insada@gmail.com','',14,1),(249,163,1,1,'','akper.insada@gmail.com','',14,1),(250,164,1,1,'','akper.insada@gmail.com','',14,1),(251,165,1,1,'','akper.insada@gmail.com','',2,1),(252,166,1,1,'','akper.insada@gmail.com','',14,1),(253,167,1,1,'','akper.insada@gmail.com','',14,1),(254,168,1,1,'','akper.insada@gmail.com','',3,1),(258,170,0,1,'','akper.insada@gmail.com','',14,1),(256,169,1,1,'ID','triutami@gmail.com','',14,1),(257,169,0,2,'ID','ganiksakitri2312@gmail.com','',14,1),(259,170,1,2,'ID','triutami@gmail.com','',14,1),(260,170,0,3,'ID','ganiksakitri2312@gmail.com','',14,1),(264,172,1,1,'','akper.insada@gmail.com','',2,1),(262,171,1,1,'ID','hana_afnan@yahoo.co.id','',14,1),(263,171,0,2,'ID','faridsetyo25@gmail.com','',14,1),(284,179,1,1,'ID','tatiktris12@gmail.com',NULL,14,1),(266,173,1,1,'ID','fitrinurindah1998@gmail.com','',14,1),(267,173,0,2,'ID','istriutami@unisayogya.ac.id','',14,1),(269,174,1,1,'ID','siswantoarizal@gmail.com','',14,1),(270,174,0,2,'ID','wahyuikd@gmail.com','',14,1),(272,175,1,1,'ID','akper.insada@gmail.com','',14,1),(273,175,0,2,'ID','nana_100389@yahoo.co.id','',14,1),(275,176,1,1,'ID','sitinurs@akperinsada.ac.id','',14,1),(276,176,0,2,'ID','akper.insada@gmail.com','',14,1),(278,177,1,1,'ID','nimahhidayatullaili@yahoo.com','',14,1),(279,177,0,2,'ID','nimahhidayatullaili@yahoo.com','',14,1),(281,178,1,1,'ID','riawatidanik81@gmail.com','',14,1),(282,178,0,2,'ID','titis_wy@yahoo.co.id','',14,1),(283,178,0,3,'ID','dewisari2404@gmail.com','',14,1),(285,180,1,1,'ID','irnakartinakh@gmail.com',NULL,14,1),(286,181,1,1,'ID','jokowa73@gmail.com',NULL,14,1),(287,182,1,1,'ID','kustiningsih_ning@yahoo.com',NULL,14,1),(288,183,1,1,'AS','koj@gmail.com',NULL,14,1),(289,184,1,1,'AS','koj@gmail.com',NULL,14,1),(312,192,1,1,'','akper.insada@gmail.com','',14,1),(291,185,1,1,'ID','innez.km@ukh.ac.id','',14,1),(292,185,0,2,'ID','innez.km@ukh.ac.id','',14,1),(293,185,0,3,'ID','innez.km@ukh.ac.id','',14,1),(295,186,1,1,'ID','mekacahyaningtyas@ukh.ac.id','',14,1),(296,186,0,2,'ID','mekacahyaningtyas@ukh.ac.id','',14,1),(297,186,0,3,'ID','mekacahyaningtyas@ukh.ac.id','',14,1),(299,187,1,1,'ID','suri_salmiyati@unisayogya.ac.id','',14,1),(300,187,0,2,'ID','lutfi.asnindari@unisayogya.ac.id','',14,1),(302,188,1,1,'ID','ratihprananingrum@gmail.com','',14,1),(304,189,1,1,'ID','kustiningsih_ning@yahoo.com','',14,1),(306,190,1,1,'ID','ratihaccey@gmail.com','',14,1),(307,190,0,2,'ID','ratihaccey@gmail.com','',14,1),(308,190,0,3,'ID','ratihaccey@gmail.com','',14,1),(310,191,1,1,'ID','jokow@akperinsanhusada.ac.id','',14,1),(311,191,0,2,'ID','sitinurs@akperinsanhusada.ac.id','',14,1),(317,194,1,1,'AI','pierrkun@gmail.com',NULL,14,1),(314,193,1,1,'ID','nurrakhmawati_ikmuns@yahoo.co.id','',14,1),(315,193,0,2,'ID','nurrakhmawati_ikmuns@yahoo.co.id','',14,1),(316,193,0,3,'ID','nurrakhmawati_ikmuns@yahoo.co.id','',14,1),(318,195,1,1,'AQ','kkontol@gmail.com',NULL,14,1),(319,196,1,1,'AI','dfyf@gmail.com',NULL,14,1),(320,197,1,1,'GT','dadauya404@gmail.com',NULL,14,1),(321,198,1,1,'ID','sriwahyunijayus@gmail.com',NULL,14,1),(322,199,1,1,'ID','ika.midwifery@gmail.com',NULL,14,1),(323,200,1,1,'AS','kang.roisul@gmail.com',NULL,14,1),(324,201,1,1,'AS','kang.roisul@gmail.com',NULL,14,1),(325,202,1,1,'AS','kang.roisul@gmail.com',NULL,14,1),(352,211,1,1,'AF','gopressxploits@gmail.com',NULL,14,1),(327,203,1,1,'ID','sriwahyunijayus@gmail.com','',14,1),(328,203,0,2,'ID','sriwahyunijayus@gmail.com','',14,1),(330,204,1,1,'ID','sriwahyunijayus@gmail.com','',14,1),(331,204,0,2,'ID','sriwahyunijayus@gmail.com','',14,1),(332,204,0,3,'ID','sriwahyunijayus@gmail.com','',14,1),(334,205,1,1,'ID','tiwisudyasih@unisayogya.ac.id','',14,1),(335,205,0,2,'ID','lutfi.asnindari@unisayogya.ac.id','',14,1),(337,206,1,1,'ID','siswantowp@gmail.com','',14,1),(338,206,0,2,'ID','siswantowp@gmail.com','',14,1),(340,207,1,1,'ID','syarifah@akbara.ac.id','',14,1),(341,207,0,2,'ID','barlyshodiq26@gmail.com','',14,1),(343,208,1,1,'ID','ika.midwifery@gmail.com','',14,1),(344,208,0,2,'ID','ika.midwifery@gmail.com','',14,1),(345,208,0,3,'ID','ika.midwifery@gmail.com','',14,1),(347,209,1,1,'ID','ruthyogi8@gmail.com','',14,1),(348,209,0,2,'ID','ruthyogi8@gmail.com','',14,1),(349,209,0,3,'ID','ruthyogi8@gmail.com','',14,1),(351,210,1,1,'ID','ratihprananingrum@gmail.com','',14,1),(353,212,1,1,'CA','andikabintang11@gmail.com',NULL,14,1),(355,213,1,1,'ID','ratihprananingrum@gmail.com','',14,1),(357,214,1,1,'ID','ratihprananingrum@gmail.com','',14,1),(359,215,1,2,'ID','nana100389@gmail.com','',14,1),(371,215,0,2,'ID','tatiktrisnowati@yahoo.co.id','',14,1),(362,216,1,2,'ID','sitinurs@akperinsanhusada.ic.id','',14,1),(374,216,0,2,'ID','sitinurs@akperinsanhusada.ic.id','',14,1),(364,217,1,1,'','akper.insada@gmail.com','',2,1),(366,218,1,2,'ID','panduaseta4@gmail.com','',14,1),(373,218,0,2,'ID','akper.insada@gmail.com','',14,1),(369,219,1,2,'ID','akper.insada@gmail.com','',14,1),(375,219,0,2,'ID','Lestari.srri@gmail.com','',14,1),(372,220,1,1,'AL','Tes@tes.tes',NULL,14,1),(376,221,1,1,'AF','mhmedhasaneen@gmail.com',NULL,14,1),(379,222,0,2,'ID','akper.insada@gmail.com','',14,1),(378,222,1,1,'ID','dondisiana26@gmail.com','',14,1),(380,223,0,1,'ID','akper.insada@gmail.com','',14,0),(384,223,0,3,'ID','akper.insada@gmail.com','',14,1),(385,223,0,2,'ID','akper.insada@gmail.com','',14,1),(387,224,0,1,'ID','akper.insada@gmail.com','',14,1),(388,224,1,2,'ID','akper.insada@gmail.com','',14,1),(389,224,0,3,'ID','akper.insada@gmail.com','',14,1),(390,225,0,1,'ID','akper.insada@gmail.com','',14,0),(391,225,1,2,'ID','akper.insada@gmail.com','',14,1),(392,225,0,3,'ID','akper.insada@gmail.com','',14,1),(393,225,0,4,'ID','akper.insada@gmail.com','',14,1),(394,226,0,1,'ID','akper.insada@gmail.com','',14,0),(395,226,0,2,'ID','akper.insada@gmail.com','',14,1),(396,226,0,3,'ID','akper.insada@gmail.com','',14,1),(397,227,1,1,'','akper.insada@gmail.com','',14,1),(398,228,0,1,'ID','akper.insada@gmail.com','',14,0),(399,228,1,2,'ID','selinaboseren@gmail.com','',14,1),(419,235,1,1,'ID','dwiariani1971@gmail.com','',14,1),(401,229,1,1,'ID','muzaroah_ermawati@udb.ac.id','',14,1),(402,229,0,2,'ID','muzaroah_ermawati@udb.ac.id','',14,1),(403,229,0,3,'ID','muzaroah_ermawati@udb.ac.id','',14,1),(404,230,0,1,'ID','akper.insada@gmail.com','',14,0),(405,230,1,2,'ID','yumiabimulyanigom@gmail.com','',14,1),(406,230,0,3,'ID','yumiabimulyanigom@gmail.com','',14,1),(408,231,1,1,'ID','panduaseta4@gmail.com','',14,1),(409,231,0,2,'ID','panduaseta4@gmail.com','',14,1),(410,231,0,3,'ID','panduaseta4@gmail.com','',14,1),(412,232,1,1,'ID','agung_widiastuti@udb.ac.id','',14,1),(413,232,0,2,'ID','muzaroah_ermawati@udb.ac.id','',14,1),(415,233,1,1,'ID','selinaboseren@gmail.com','',14,1),(417,234,1,1,'ID','yumiabimulyanigom@gmail.com','',14,1),(418,234,0,2,'ID','yumiabimulyanigom@gmail.com','',14,1);
/*!40000 ALTER TABLE `authors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `books_for_review`
--

DROP TABLE IF EXISTS `books_for_review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `books_for_review` (
  `book_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `journal_id` bigint(20) NOT NULL,
  `status` smallint(6) NOT NULL,
  `author_type` smallint(6) NOT NULL,
  `publisher` varchar(255) NOT NULL,
  `year` smallint(6) NOT NULL,
  `language` varchar(10) NOT NULL DEFAULT 'en',
  `copy` tinyint(4) NOT NULL DEFAULT 0,
  `url` varchar(255) DEFAULT NULL,
  `edition` tinyint(4) DEFAULT NULL,
  `pages` smallint(6) DEFAULT NULL,
  `isbn` varchar(30) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_requested` datetime DEFAULT NULL,
  `date_assigned` datetime DEFAULT NULL,
  `date_mailed` datetime DEFAULT NULL,
  `date_due` datetime DEFAULT NULL,
  `date_submitted` datetime DEFAULT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `editor_id` bigint(20) DEFAULT NULL,
  `submission_id` bigint(20) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`book_id`),
  KEY `bfr_id` (`book_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `books_for_review`
--

LOCK TABLES `books_for_review` WRITE;
/*!40000 ALTER TABLE `books_for_review` DISABLE KEYS */;
/*!40000 ALTER TABLE `books_for_review` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `books_for_review_authors`
--

DROP TABLE IF EXISTS `books_for_review_authors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `books_for_review_authors` (
  `author_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `book_id` bigint(20) NOT NULL,
  `seq` double NOT NULL DEFAULT 0,
  `first_name` varchar(40) NOT NULL,
  `middle_name` varchar(40) DEFAULT NULL,
  `last_name` varchar(90) NOT NULL,
  PRIMARY KEY (`author_id`),
  KEY `bfr_book_id` (`book_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `books_for_review_authors`
--

LOCK TABLES `books_for_review_authors` WRITE;
/*!40000 ALTER TABLE `books_for_review_authors` DISABLE KEYS */;
/*!40000 ALTER TABLE `books_for_review_authors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `books_for_review_settings`
--

DROP TABLE IF EXISTS `books_for_review_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `books_for_review_settings` (
  `book_id` bigint(20) NOT NULL,
  `locale` varchar(5) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `bfr_settings_pkey` (`book_id`,`locale`,`setting_name`),
  KEY `bfr_settings_book_id` (`book_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `books_for_review_settings`
--

LOCK TABLES `books_for_review_settings` WRITE;
/*!40000 ALTER TABLE `books_for_review_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `books_for_review_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `captchas`
--

DROP TABLE IF EXISTS `captchas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `captchas` (
  `captcha_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `session_id` varchar(128) NOT NULL,
  `value` varchar(20) NOT NULL,
  `date_created` datetime NOT NULL,
  PRIMARY KEY (`captcha_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `captchas`
--

LOCK TABLES `captchas` WRITE;
/*!40000 ALTER TABLE `captchas` DISABLE KEYS */;
/*!40000 ALTER TABLE `captchas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
  `category_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `parent_id` bigint(20) NOT NULL,
  `seq` bigint(20) DEFAULT NULL,
  `path` varchar(255) NOT NULL,
  `image` text DEFAULT NULL,
  PRIMARY KEY (`category_id`),
  UNIQUE KEY `category_path` (`context_id`,`path`),
  KEY `category_context_id` (`context_id`,`parent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `category_settings`
--

DROP TABLE IF EXISTS `category_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `category_settings` (
  `category_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `category_settings_pkey` (`category_id`,`locale`,`setting_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `category_settings`
--

LOCK TABLES `category_settings` WRITE;
/*!40000 ALTER TABLE `category_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `category_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `citation_settings`
--

DROP TABLE IF EXISTS `citation_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `citation_settings` (
  `citation_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `citation_settings_pkey` (`citation_id`,`locale`,`setting_name`),
  KEY `citation_settings_citation_id` (`citation_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `citation_settings`
--

LOCK TABLES `citation_settings` WRITE;
/*!40000 ALTER TABLE `citation_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `citation_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `citations`
--

DROP TABLE IF EXISTS `citations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `citations` (
  `citation_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL DEFAULT 0,
  `raw_citation` text DEFAULT NULL,
  `seq` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`citation_id`),
  UNIQUE KEY `citations_submission_seq` (`submission_id`,`seq`),
  KEY `citations_submission` (`submission_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `citations`
--

LOCK TABLES `citations` WRITE;
/*!40000 ALTER TABLE `citations` DISABLE KEYS */;
/*!40000 ALTER TABLE `citations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `comments`
--

DROP TABLE IF EXISTS `comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `comments` (
  `comment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `parent_comment_id` bigint(20) DEFAULT NULL,
  `num_children` int(11) NOT NULL DEFAULT 0,
  `user_id` bigint(20) DEFAULT NULL,
  `poster_ip` varchar(15) NOT NULL,
  `poster_name` varchar(90) DEFAULT NULL,
  `poster_email` varchar(90) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `body` text DEFAULT NULL,
  `date_posted` datetime DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`comment_id`),
  KEY `comments_submission_id` (`submission_id`),
  KEY `comments_parent_comment_id` (`parent_comment_id`),
  KEY `comments_user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `comments`
--

LOCK TABLES `comments` WRITE;
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `completed_payments`
--

DROP TABLE IF EXISTS `completed_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `completed_payments` (
  `completed_payment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `payment_type` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `amount` double NOT NULL,
  `currency_code_alpha` varchar(3) DEFAULT NULL,
  `payment_method_plugin_name` varchar(80) DEFAULT NULL,
  PRIMARY KEY (`completed_payment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `completed_payments`
--

LOCK TABLES `completed_payments` WRITE;
/*!40000 ALTER TABLE `completed_payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `completed_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `controlled_vocab_entries`
--

DROP TABLE IF EXISTS `controlled_vocab_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controlled_vocab_entries` (
  `controlled_vocab_entry_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `controlled_vocab_id` bigint(20) NOT NULL,
  `seq` double DEFAULT NULL,
  PRIMARY KEY (`controlled_vocab_entry_id`),
  KEY `controlled_vocab_entries_cv_id` (`controlled_vocab_id`,`seq`)
) ENGINE=MyISAM AUTO_INCREMENT=231 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `controlled_vocab_entries`
--

LOCK TABLES `controlled_vocab_entries` WRITE;
/*!40000 ALTER TABLE `controlled_vocab_entries` DISABLE KEYS */;
INSERT INTO `controlled_vocab_entries` VALUES (1,1,0),(2,1,1),(3,1,2),(4,1,3),(5,2,0),(6,2,0),(7,2,0),(8,2,0),(9,2,0),(10,2,0),(11,2,0),(12,3,0),(13,3,0),(14,3,0),(15,3,0),(16,3,0),(17,3,0),(18,3,0),(19,4,0),(20,4,0),(21,4,0),(22,4,0),(23,4,0),(24,4,0),(25,4,0),(26,4,0),(27,4,0),(28,4,0),(29,4,0),(30,4,0),(31,4,0),(32,4,0),(33,4,0),(34,4,0),(35,4,0),(36,4,0),(37,4,0),(38,4,0),(39,4,0),(40,4,0),(41,4,0),(42,4,0),(43,4,0),(44,4,0),(45,4,0),(46,4,0),(47,4,0),(48,4,0),(49,4,0),(50,4,0),(51,4,0),(52,4,0),(100,100,1),(101,100,2),(102,100,3),(110,101,1),(111,101,2),(112,101,3),(113,101,4),(114,101,5),(115,101,6),(116,101,7),(120,102,1),(121,102,2),(122,102,3),(130,103,1),(131,103,2),(132,103,3),(133,103,4),(134,103,5),(135,103,6),(136,103,7),(137,103,8),(138,103,9),(139,103,10),(140,103,11),(141,103,12),(150,104,1),(151,104,2),(152,105,1),(153,106,1),(154,107,1),(155,108,1),(156,109,1),(157,110,1),(158,111,1),(159,112,1),(160,113,1),(161,114,1),(162,115,1),(163,116,1),(164,117,1),(165,118,1),(166,119,1),(167,120,1),(168,121,1),(169,122,1),(170,123,1),(171,124,1),(172,125,1),(173,126,1),(174,127,1),(175,128,1),(176,129,1),(177,130,1),(178,131,1),(179,132,1),(180,133,1),(181,134,1),(182,135,1),(183,136,1),(184,137,1),(212,4,0),(186,139,1),(187,140,1),(188,141,1),(189,142,1),(190,143,1),(191,144,1),(192,145,1),(193,146,1),(194,147,1),(195,148,1),(196,149,1),(197,150,1),(198,151,1),(199,152,1),(211,4,0),(203,156,1),(206,159,1),(213,4,0),(214,4,0),(215,4,0),(216,4,0),(217,4,0),(218,4,0),(219,4,0),(220,4,0),(221,4,0),(222,4,0),(223,4,0),(224,4,0),(225,4,0),(226,4,0),(227,4,0),(228,4,0),(229,4,0),(230,4,0);
/*!40000 ALTER TABLE `controlled_vocab_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `controlled_vocab_entry_settings`
--

DROP TABLE IF EXISTS `controlled_vocab_entry_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controlled_vocab_entry_settings` (
  `controlled_vocab_entry_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `c_v_e_s_pkey` (`controlled_vocab_entry_id`,`locale`,`setting_name`),
  KEY `c_v_e_s_entry_id` (`controlled_vocab_entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `controlled_vocab_entry_settings`
--

LOCK TABLES `controlled_vocab_entry_settings` WRITE;
/*!40000 ALTER TABLE `controlled_vocab_entry_settings` DISABLE KEYS */;
INSERT INTO `controlled_vocab_entry_settings` VALUES (1,'','name','journal','string'),(2,'','name','book','string'),(3,'','name','conf-proc','string'),(4,'','name','thesis','string'),(5,'','name','journal','string'),(6,'','name','issue','string'),(7,'','name','article','string'),(8,'','name','proceeding','string'),(9,'','name','conference','string'),(10,'','name','preprint','string'),(11,'','name','unknown','string'),(12,'','name','book','string'),(13,'','name','bookitem','string'),(14,'','name','conference','string'),(15,'','name','proceeding','string'),(16,'','name','report','string'),(17,'','name','document','string'),(18,'','name','unknown','string'),(19,'','interest','admin','string'),(20,'','interest','Ð•ÑÐ»Ð¸ Ð´ÑƒÐ¼Ð°ÐµÑ‚Ðµ ÐºÑƒÐ¿Ð¸Ñ‚ÑŒ Ñ‰ÐµÐ½ÐºÐ°','string'),(21,'','interest','http://youtu.be/1Zd-_eJAZV8 ÐºÑƒÐ¿Ð¸Ñ‚ÑŒ ÑÐ¾Ð±Ð°ÐºÑƒ Ð¸ Ð² Ð¿Ð¾Ð¸ÑÐºÐµ Ð²Ð±Ð¸Ð²Ð°ÐµÑ‚Ðµ Ñ‰ÐµÐ½Ð¾Ðº Ñ†ÐµÐ½Ð°','string'),(22,'','interest','Ð¿Ð¾Ñ€Ð¾Ð´Ð° ÑÐ¾Ð±Ð°ÐºÐ°','string'),(23,'','interest','Ñ‚Ð¾ Ð²Ð°Ñˆ Ð²Ñ‹Ð±Ð¾Ñ€ Ñ…Ð°ÑÐºÐ¸! ÐšÑƒÐ¿Ð¸Ñ‚ÑŒ Ñ…Ð°ÑÐºÐ¸','string'),(24,'','interest','ÐºÑƒÐ¿Ð¸Ñ‚ÑŒ Ð¼Ð°Ð»Ð°Ð¼ÑƒÑ‚Ð°','string'),(25,'','interest','Ñ…Ð°ÑÐºÐ¸ Ñ†ÐµÐ½Ð°','string'),(26,'','interest','Ñ†ÐµÐ½Ð°Ñ… Ñ…Ð°ÑÐºÐ¸','string'),(27,'','interest','Ñ†ÐµÐ½Ð° Ð¼Ð°Ð»Ð°Ð¼ÑƒÑ‚Ð°','string'),(28,'','interest','ÐºÑƒÐ¿Ð¸Ñ‚ÑŒ Ñ…Ð°ÑÐºÐ¸ Ð¸ Ð¼Ð°Ð»Ð°Ð¼ÑƒÑ‚Ð° ! \r\nÐžÑ‡ÐµÐ½ÑŒ Ð¼Ð¸Ð»Ð¾Ðµ Ð²Ð¸Ð´ÐµÐ¾ Ð½Ð° ÑÐ°Ð¼Ð¾Ð¼ Ñ…Ð¾Ñ€Ð¾ÑˆÐµÐ¼ Ð²Ð¸Ð´ÐµÐ¾ ÐºÐ°Ð½Ð°Ð»Ðµ Ð¾ ÑÐ¾Ð±Ð°ÐºÐ°Ñ…','string'),(29,'','interest','Ð½Ð° ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¼ Ð²Ð¸Ð´ÐµÐ¾ Ð¾ Ñ…Ð°ÑÐºÐ¸','string'),(30,'','interest','Ð´Ñ€ÐµÑÑÐ¸Ñ€Ð¾Ð²ÐºÐ° Ñ…Ð°ÑÐºÐ¸','string'),(31,'','interest','Ð¾Ð±ÑƒÑ‡ÐµÐ½Ð¸Ðµ Ñ…Ð°ÑÐºÐ¸','string'),(32,'','interest','Ñ…Ð°ÑÐºÐ¸ ÑˆÐ¾Ñƒ','string'),(33,'','interest','Ñ…Ð°ÑÐºÐ¸ Ð¿Ð¾Ñ‘Ñ‚ Ð¸ Ñ…Ð°ÑÐºÐ¸ Ñ€Ð°Ð·Ð³Ð¾Ð²Ð°Ñ€Ð¸Ð²Ð°ÐµÑ‚','string'),(34,'','interest','Ñ…Ð°ÑÐºÐ¸ Ð¸ Ð¼Ð°Ð»Ð°Ð¼ÑƒÑ‚','string'),(35,'','interest','ÑÐ¸Ð±Ð¸Ñ€ÑÐºÐ¸Ð¹ Ñ…Ð°ÑÐºÐ¸','string'),(36,'','interest','Ð°Ð»ÑÑÐºÐ¸Ð½ÑÐºÐ¸Ð¹ Ð¼Ð°Ð»Ð°Ð¼ÑƒÑ‚','string'),(37,'','interest','Ñ…Ð°ÑÐºÐ¸ Ð¿Ð¾Ñ€Ð¾Ð´Ð° Ð¸ ÐºÐ°Ðº ÐºÑƒÐ¿Ð¸Ñ‚ÑŒ Ñ‰ÐµÐ½ÐºÐ° Ñ…Ð°ÑÐºÐ¸','string'),(38,'','interest','Ñ…Ð°ÑÐºÐ¸ Ñ†ÐµÐ½Ð° Ð¸ Ð²ÑÑ‘ Ð¾ Ñ…Ð°ÑÐºÐ¸','string'),(39,'','interest','Ð½Ð° ÑÑ‚Ð¾Ð¼ Ð²Ð¸Ð´ÐµÐ¾ Ñ…Ð°ÑÐºÐ¸ Ñ€Ð¾Ð¶Ð°ÐµÑ‚ Ð¾Ñ‡ÐµÐ½ÑŒ ÐºÑ€ÑƒÑ‚Ñ‹Ñ… Ñ‰ÐµÐ½ÐºÐ¾Ð² Ñ…Ð°ÑÐºÐ¸ http://youtu.be/NW-e2uBgk1w ÑÐ¼Ð¾Ñ‚Ñ€ÐµÑ‚ÑŒ Ñ…Ð°ÑÐºÐ¸ Ð±ÐµÑÐ¿Ð»Ð°Ñ‚Ð½Ð¾ ! Ð²Ð¸Ð´ÐµÐ¾ Ñ…Ð°ÑÐºÐ¸ Ð´Ð»Ñ Ð²ÑÐµÑ… Ð»ÑŽÐ¸Ñ‚ÐµÐ»ÐµÐ¹ ÑÐ¾Ð±Ð°Ðº','string'),(40,'','interest','ÑÐ°Ð¼Ñ‹Ðµ ÐºÑ€ÑƒÑ‚Ñ‹Ðµ ÐµÐ·Ð´Ð¾Ð²Ñ‹Ðµ ÑÐ¾Ð±Ð°ÐºÐ¸ ÑÐ¸Ð±Ð¸Ñ€ÑÐºÐ¸Ð¹ Ñ…Ð°ÑÐºÐ¸','string'),(41,'','interest','Ñ…Ð°ÑÐºÐµ Ñ…Ð°ÑÐºÐ¸. \r\nHusky puppies free video husky in this video with Huskies http://youtu.be/1Zd-_eJAZV8 and on the other video of this channel about dogs you will see these videos','string'),(42,'','interest','how husky show','string'),(43,'','interest','Siberian Husky and Alaskan Malamute','string'),(44,'','interest','Husky sings and Husky talking','string'),(45,'','interest','Husky training','string'),(46,'','interest','Husky puppies','string'),(47,'','interest','the best breed of husky dogs','string'),(48,'','interest','training teams Huskies','string'),(49,'','interest','funny and cute video jokes Huskies. \r\n<a href=http://radikal.ru><img>http://s018.radikal.ru/i527/1611/90/7fb389ede0f1.jpg</img></a> \r\nÐ›ÑƒÑ‡ÑˆÐµÐµ','string'),(50,'','interest','Ñ‡Ñ‚Ð¾ Ñ Ð²Ð¸Ð´ÐµÐ»Ð°','string'),(51,'','interest','ÑÐ¼Ð¾Ñ‚Ñ€Ð¸ ÑÑ‚Ð¾ Ð²Ð¸Ð´ÐµÐ¾ http://youtu.be/1Zd-_eJAZV8','string'),(52,'','interest','www.ngentod.com','string'),(100,'','name','personal','string'),(101,'','name','corporate','string'),(102,'','name','conference','string'),(110,'','name','aut','string'),(110,'','description','Author','string'),(111,'','name','ctb','string'),(111,'','description','Contributor','string'),(112,'','name','edt','string'),(112,'','description','Editor','string'),(113,'','name','ill','string'),(113,'','description','Illustrator','string'),(114,'','name','pht','string'),(114,'','description','Photographer','string'),(115,'','name','spn','string'),(115,'','description','Sponsor','string'),(116,'','name','trl','string'),(116,'','description','Translator','string'),(120,'','name','multimedia','string'),(121,'','name','still image','string'),(122,'','name','text','string'),(130,'','name','article','string'),(131,'','name','book','string'),(132,'','name','conference publication','string'),(133,'','name','issue','string'),(134,'','name','journal','string'),(135,'','name','newspaper','string'),(136,'','name','picture','string'),(137,'','name','review','string'),(138,'','name','periodical','string'),(139,'','name','series','string'),(140,'','name','thesis','string'),(141,'','name','web site','string'),(150,'','name','electronic','string'),(151,'','name','print','string'),(152,'en_US','submissionLanguage','en','string'),(153,'en_US','submissionLanguage','en','string'),(154,'en_US','submissionLanguage','en','string'),(155,'en_US','submissionLanguage','en','string'),(156,'en_US','submissionLanguage','en','string'),(157,'en_US','submissionLanguage','en','string'),(158,'en_US','submissionLanguage','en','string'),(159,'en_US','submissionLanguage','en','string'),(160,'en_US','submissionLanguage','en','string'),(161,'en_US','submissionLanguage','en','string'),(162,'en_US','submissionLanguage','en','string'),(163,'en_US','submissionLanguage','en','string'),(164,'en_US','submissionLanguage','en','string'),(165,'en_US','submissionLanguage','en','string'),(166,'en_US','submissionLanguage','en','string'),(167,'en_US','submissionLanguage','en','string'),(168,'en_US','submissionLanguage','en','string'),(169,'en_US','submissionLanguage','en','string'),(170,'en_US','submissionLanguage','en','string'),(171,'en_US','submissionLanguage','en','string'),(172,'en_US','submissionLanguage','en','string'),(173,'en_US','submissionLanguage','en','string'),(174,'en_US','submissionLanguage','en','string'),(175,'en_US','submissionLanguage','en','string'),(176,'en_US','submissionLanguage','en','string'),(177,'en_US','submissionLanguage','en','string'),(178,'en_US','submissionLanguage','en','string'),(179,'en_US','submissionLanguage','en','string'),(180,'en_US','submissionLanguage','en','string'),(181,'en_US','submissionLanguage','en','string'),(182,'en_US','submissionLanguage','en','string'),(183,'en_US','submissionLanguage','en','string'),(184,'en_US','submissionLanguage','en','string'),(186,'en_US','submissionLanguage','en','string'),(187,'en_US','submissionLanguage','en','string'),(188,'en_US','submissionLanguage','en','string'),(189,'en_US','submissionLanguage','en','string'),(190,'en_US','submissionLanguage','en','string'),(191,'en_US','submissionLanguage','en','string'),(192,'en_US','submissionLanguage','en','string'),(193,'en_US','submissionLanguage','en','string'),(194,'en_US','submissionLanguage','en','string'),(195,'en_US','submissionLanguage','en','string'),(196,'en_US','submissionLanguage','en','string'),(197,'en_US','submissionLanguage','en','string'),(198,'en_US','submissionLanguage','en','string'),(199,'en_US','submissionLanguage','en','string'),(211,'','interest','Wonderfull','string'),(212,'','interest','saya ingin bergabung','string'),(203,'en_US','submissionLanguage','en','string'),(206,'en_US','submissionLanguage','en','string'),(213,'','interest','Pediatric Nursing','string'),(214,'','interest','end of life care','string'),(215,'','interest','research in nursing','string'),(216,'','interest','3xploi7.blogspot.com','string'),(217,'','interest','asf','string'),(218,'','interest','mohon konfirmasi bisa terbit kapan ya?','string'),(219,'','interest','Mental Health Nursing','string'),(220,'','interest','Holistic Nursing','string'),(221,'','interest','Ye','string'),(222,'','interest','Yrs','string'),(223,'','interest','Yes','string'),(224,'','interest','Nursing','string'),(225,'','interest','health','string'),(226,'','interest','neuro','string'),(227,'','interest','Hh','string'),(228,'','interest','nsns','string'),(229,'','interest','Ok','string'),(230,'','interest','neero123','string');
/*!40000 ALTER TABLE `controlled_vocab_entry_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `controlled_vocabs`
--

DROP TABLE IF EXISTS `controlled_vocabs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `controlled_vocabs` (
  `controlled_vocab_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `symbolic` varchar(64) NOT NULL,
  `assoc_type` bigint(20) NOT NULL DEFAULT 0,
  `assoc_id` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`controlled_vocab_id`),
  UNIQUE KEY `controlled_vocab_symbolic` (`symbolic`,`assoc_type`,`assoc_id`)
) ENGINE=MyISAM AUTO_INCREMENT=938 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `controlled_vocabs`
--

LOCK TABLES `controlled_vocabs` WRITE;
/*!40000 ALTER TABLE `controlled_vocabs` DISABLE KEYS */;
INSERT INTO `controlled_vocabs` VALUES (1,'nlm30-publication-types',0,0),(2,'openurl10-journal-genres',0,0),(3,'openurl10-book-genres',0,0),(4,'interest',0,0),(100,'mods34-name-types',0,0),(101,'mods34-name-role-roleTerms-marcrelator',0,0),(102,'mods34-typeOfResource',0,0),(103,'mods34-genre-marcgt',0,0),(104,'mods34-physicalDescription-form-marcform',0,0),(105,'submissionLanguage',1048585,1),(106,'submissionLanguage',1048585,2),(107,'submissionLanguage',1048585,5),(108,'submissionLanguage',1048585,4),(109,'submissionLanguage',1048585,6),(110,'submissionLanguage',1048585,7),(111,'submissionLanguage',1048585,8),(112,'submissionLanguage',1048585,19),(113,'submissionLanguage',1048585,11),(114,'submissionLanguage',1048585,14),(115,'submissionLanguage',1048585,20),(116,'submissionLanguage',1048585,21),(117,'submissionLanguage',1048585,22),(118,'submissionLanguage',1048585,24),(119,'submissionLanguage',1048585,27),(120,'submissionLanguage',1048585,28),(121,'submissionLanguage',1048585,33),(122,'submissionLanguage',1048585,32),(123,'submissionLanguage',1048585,31),(124,'submissionLanguage',1048585,34),(125,'submissionLanguage',1048585,35),(126,'submissionLanguage',1048585,36),(127,'submissionLanguage',1048585,37),(128,'submissionLanguage',1048585,38),(129,'submissionLanguage',1048585,39),(130,'submissionLanguage',1048585,40),(131,'submissionLanguage',1048585,41),(132,'submissionLanguage',1048585,42),(133,'submissionLanguage',1048585,43),(134,'submissionLanguage',1048585,44),(135,'submissionLanguage',1048585,45),(136,'submissionLanguage',1048585,46),(137,'submissionLanguage',1048585,47),(388,'submissionAgency',1048585,109),(139,'submissionLanguage',1048585,49),(140,'submissionLanguage',1048585,50),(141,'submissionLanguage',1048585,51),(142,'submissionLanguage',1048585,52),(143,'submissionLanguage',1048585,53),(144,'submissionLanguage',1048585,54),(145,'submissionLanguage',1048585,55),(146,'submissionLanguage',1048585,56),(147,'submissionLanguage',1048585,57),(148,'submissionLanguage',1048585,58),(149,'submissionLanguage',1048585,59),(150,'submissionLanguage',1048585,60),(151,'submissionLanguage',1048585,61),(152,'submissionLanguage',1048585,62),(385,'submissionSubject',1048585,109),(340,'submissionSubject',1048585,100),(221,'submissionLanguage',1048585,76),(156,'submissionLanguage',1048585,66),(341,'submissionKeyword',1048585,100),(158,'submissionLanguage',1048585,68),(159,'submissionLanguage',1048585,69),(335,'submissionSubject',1048585,99),(336,'submissionKeyword',1048585,99),(337,'submissionDiscipline',1048585,99),(164,'submissionKeyword',1048585,54),(165,'submissionKeyword',1048585,58),(166,'submissionKeyword',1048585,31),(167,'submissionKeyword',1048585,32),(168,'submissionKeyword',1048585,6),(169,'submissionKeyword',1048585,56),(170,'submissionKeyword',1048585,51),(171,'submissionKeyword',1048585,40),(172,'submissionKeyword',1048585,33),(173,'submissionKeyword',1048585,4),(174,'submissionKeyword',1048585,47),(175,'submissionKeyword',1048585,14),(176,'submissionKeyword',1048585,55),(177,'submissionKeyword',1048585,46),(178,'submissionKeyword',1048585,52),(179,'submissionKeyword',1048585,35),(180,'submissionKeyword',1048585,7),(181,'submissionKeyword',1048585,34),(182,'submissionKeyword',1048585,57),(183,'submissionKeyword',1048585,49),(184,'submissionKeyword',1048585,59),(185,'submissionKeyword',1048585,50),(186,'submissionKeyword',1048585,53),(187,'submissionKeyword',1048585,28),(188,'submissionKeyword',1048585,19),(189,'submissionKeyword',1048585,20),(190,'submissionKeyword',1048585,21),(191,'submissionKeyword',1048585,22),(192,'submissionKeyword',1048585,1),(193,'submissionKeyword',1048585,5),(194,'submissionKeyword',1048585,8),(195,'submissionSubject',1048585,74),(196,'submissionKeyword',1048585,74),(197,'submissionDiscipline',1048585,74),(198,'submissionAgency',1048585,74),(199,'submissionLanguage',1048585,74),(217,'submissionSubject',1048585,76),(218,'submissionKeyword',1048585,76),(219,'submissionDiscipline',1048585,76),(220,'submissionAgency',1048585,76),(205,'submissionSubject',1048585,69),(206,'submissionKeyword',1048585,69),(207,'submissionDiscipline',1048585,69),(208,'submissionAgency',1048585,69),(209,'submissionSubject',1048585,66),(210,'submissionKeyword',1048585,66),(211,'submissionDiscipline',1048585,66),(212,'submissionAgency',1048585,66),(222,'submissionSubject',1048585,68),(223,'submissionKeyword',1048585,68),(224,'submissionDiscipline',1048585,68),(225,'submissionAgency',1048585,68),(226,'submissionSubject',1048585,77),(227,'submissionKeyword',1048585,77),(228,'submissionDiscipline',1048585,77),(229,'submissionAgency',1048585,77),(230,'submissionLanguage',1048585,77),(231,'submissionSubject',1048585,78),(232,'submissionKeyword',1048585,78),(233,'submissionDiscipline',1048585,78),(234,'submissionAgency',1048585,78),(235,'submissionLanguage',1048585,78),(236,'submissionSubject',1048585,79),(237,'submissionKeyword',1048585,79),(238,'submissionDiscipline',1048585,79),(239,'submissionAgency',1048585,79),(240,'submissionLanguage',1048585,79),(241,'submissionSubject',1048585,80),(242,'submissionKeyword',1048585,80),(243,'submissionDiscipline',1048585,80),(244,'submissionAgency',1048585,80),(245,'submissionLanguage',1048585,80),(246,'submissionSubject',1048585,81),(247,'submissionKeyword',1048585,81),(248,'submissionDiscipline',1048585,81),(249,'submissionAgency',1048585,81),(250,'submissionLanguage',1048585,81),(251,'submissionSubject',1048585,82),(252,'submissionKeyword',1048585,82),(253,'submissionDiscipline',1048585,82),(254,'submissionAgency',1048585,82),(255,'submissionLanguage',1048585,82),(256,'submissionSubject',1048585,83),(257,'submissionKeyword',1048585,83),(258,'submissionDiscipline',1048585,83),(259,'submissionAgency',1048585,83),(260,'submissionLanguage',1048585,83),(261,'submissionSubject',1048585,84),(262,'submissionKeyword',1048585,84),(263,'submissionDiscipline',1048585,84),(264,'submissionAgency',1048585,84),(265,'submissionLanguage',1048585,84),(266,'submissionSubject',1048585,85),(267,'submissionKeyword',1048585,85),(268,'submissionDiscipline',1048585,85),(269,'submissionAgency',1048585,85),(270,'submissionLanguage',1048585,85),(271,'submissionSubject',1048585,86),(272,'submissionKeyword',1048585,86),(273,'submissionDiscipline',1048585,86),(274,'submissionAgency',1048585,86),(275,'submissionLanguage',1048585,86),(276,'submissionSubject',1048585,87),(277,'submissionKeyword',1048585,87),(278,'submissionDiscipline',1048585,87),(279,'submissionAgency',1048585,87),(280,'submissionLanguage',1048585,87),(281,'submissionSubject',1048585,88),(282,'submissionKeyword',1048585,88),(283,'submissionDiscipline',1048585,88),(284,'submissionAgency',1048585,88),(285,'submissionLanguage',1048585,88),(286,'submissionSubject',1048585,89),(287,'submissionKeyword',1048585,89),(288,'submissionDiscipline',1048585,89),(289,'submissionAgency',1048585,89),(290,'submissionLanguage',1048585,89),(291,'submissionSubject',1048585,90),(292,'submissionKeyword',1048585,90),(293,'submissionDiscipline',1048585,90),(294,'submissionAgency',1048585,90),(295,'submissionLanguage',1048585,90),(296,'submissionSubject',1048585,91),(297,'submissionKeyword',1048585,91),(298,'submissionDiscipline',1048585,91),(299,'submissionAgency',1048585,91),(300,'submissionLanguage',1048585,91),(301,'submissionSubject',1048585,93),(302,'submissionKeyword',1048585,93),(303,'submissionDiscipline',1048585,93),(304,'submissionAgency',1048585,93),(305,'submissionLanguage',1048585,93),(306,'submissionSubject',1048585,94),(307,'submissionKeyword',1048585,94),(308,'submissionDiscipline',1048585,94),(309,'submissionAgency',1048585,94),(310,'submissionLanguage',1048585,94),(311,'submissionSubject',1048585,95),(312,'submissionKeyword',1048585,95),(313,'submissionDiscipline',1048585,95),(314,'submissionAgency',1048585,95),(315,'submissionLanguage',1048585,95),(316,'submissionSubject',1048585,96),(317,'submissionKeyword',1048585,96),(318,'submissionDiscipline',1048585,96),(319,'submissionAgency',1048585,96),(320,'submissionLanguage',1048585,96),(386,'submissionKeyword',1048585,109),(387,'submissionDiscipline',1048585,109),(389,'submissionLanguage',1048585,109),(338,'submissionAgency',1048585,99),(339,'submissionLanguage',1048585,99),(342,'submissionDiscipline',1048585,100),(330,'submissionSubject',1048585,98),(331,'submissionKeyword',1048585,98),(332,'submissionDiscipline',1048585,98),(333,'submissionAgency',1048585,98),(334,'submissionLanguage',1048585,98),(343,'submissionAgency',1048585,100),(344,'submissionLanguage',1048585,100),(406,'submissionKeyword',1048585,113),(407,'submissionDiscipline',1048585,113),(409,'submissionLanguage',1048585,113),(408,'submissionAgency',1048585,113),(401,'submissionKeyword',1048585,112),(394,'submissionLanguage',1048585,110),(395,'submissionSubject',1048585,111),(396,'submissionKeyword',1048585,111),(397,'submissionDiscipline',1048585,111),(398,'submissionAgency',1048585,111),(399,'submissionLanguage',1048585,111),(400,'submissionSubject',1048585,112),(390,'submissionSubject',1048585,110),(391,'submissionKeyword',1048585,110),(392,'submissionDiscipline',1048585,110),(393,'submissionAgency',1048585,110),(365,'submissionSubject',1048585,105),(366,'submissionKeyword',1048585,105),(367,'submissionDiscipline',1048585,105),(368,'submissionAgency',1048585,105),(369,'submissionLanguage',1048585,105),(370,'submissionSubject',1048585,106),(371,'submissionKeyword',1048585,106),(372,'submissionDiscipline',1048585,106),(373,'submissionAgency',1048585,106),(374,'submissionLanguage',1048585,106),(402,'submissionDiscipline',1048585,112),(403,'submissionAgency',1048585,112),(405,'submissionSubject',1048585,113),(404,'submissionLanguage',1048585,112),(410,'submissionSubject',1048585,114),(411,'submissionKeyword',1048585,114),(412,'submissionDiscipline',1048585,114),(413,'submissionAgency',1048585,114),(414,'submissionLanguage',1048585,114),(415,'submissionSubject',1048585,115),(416,'submissionKeyword',1048585,115),(417,'submissionDiscipline',1048585,115),(418,'submissionAgency',1048585,115),(419,'submissionLanguage',1048585,115),(420,'submissionSubject',1048585,55),(421,'submissionDiscipline',1048585,55),(422,'submissionAgency',1048585,55),(423,'submissionSubject',1048585,116),(424,'submissionKeyword',1048585,116),(425,'submissionDiscipline',1048585,116),(426,'submissionAgency',1048585,116),(427,'submissionLanguage',1048585,116),(428,'submissionSubject',1048585,117),(429,'submissionKeyword',1048585,117),(430,'submissionDiscipline',1048585,117),(431,'submissionAgency',1048585,117),(432,'submissionLanguage',1048585,117),(433,'submissionSubject',1048585,118),(434,'submissionKeyword',1048585,118),(435,'submissionDiscipline',1048585,118),(436,'submissionAgency',1048585,118),(437,'submissionLanguage',1048585,118),(438,'submissionSubject',1048585,119),(439,'submissionKeyword',1048585,119),(440,'submissionDiscipline',1048585,119),(441,'submissionAgency',1048585,119),(442,'submissionLanguage',1048585,119),(443,'submissionSubject',1048585,121),(444,'submissionKeyword',1048585,121),(445,'submissionDiscipline',1048585,121),(446,'submissionAgency',1048585,121),(447,'submissionLanguage',1048585,121),(448,'submissionSubject',1048585,122),(449,'submissionKeyword',1048585,122),(450,'submissionDiscipline',1048585,122),(451,'submissionAgency',1048585,122),(452,'submissionLanguage',1048585,122),(453,'submissionSubject',1048585,123),(454,'submissionKeyword',1048585,123),(455,'submissionDiscipline',1048585,123),(456,'submissionAgency',1048585,123),(457,'submissionLanguage',1048585,123),(458,'submissionSubject',1048585,124),(459,'submissionKeyword',1048585,124),(460,'submissionDiscipline',1048585,124),(461,'submissionAgency',1048585,124),(462,'submissionLanguage',1048585,124),(463,'submissionSubject',1048585,125),(464,'submissionKeyword',1048585,125),(465,'submissionDiscipline',1048585,125),(466,'submissionAgency',1048585,125),(467,'submissionLanguage',1048585,125),(468,'submissionSubject',1048585,127),(469,'submissionKeyword',1048585,127),(470,'submissionDiscipline',1048585,127),(471,'submissionAgency',1048585,127),(472,'submissionLanguage',1048585,127),(473,'submissionSubject',1048585,129),(474,'submissionKeyword',1048585,129),(475,'submissionDiscipline',1048585,129),(476,'submissionAgency',1048585,129),(477,'submissionLanguage',1048585,129),(478,'submissionSubject',1048585,133),(479,'submissionKeyword',1048585,133),(480,'submissionDiscipline',1048585,133),(481,'submissionAgency',1048585,133),(482,'submissionLanguage',1048585,133),(483,'submissionSubject',1048585,134),(484,'submissionKeyword',1048585,134),(485,'submissionDiscipline',1048585,134),(486,'submissionAgency',1048585,134),(487,'submissionLanguage',1048585,134),(488,'submissionSubject',1048585,135),(489,'submissionKeyword',1048585,135),(490,'submissionDiscipline',1048585,135),(491,'submissionAgency',1048585,135),(492,'submissionLanguage',1048585,135),(493,'submissionSubject',1048585,136),(494,'submissionKeyword',1048585,136),(495,'submissionDiscipline',1048585,136),(496,'submissionAgency',1048585,136),(497,'submissionLanguage',1048585,136),(498,'submissionSubject',1048585,137),(499,'submissionKeyword',1048585,137),(500,'submissionDiscipline',1048585,137),(501,'submissionAgency',1048585,137),(502,'submissionLanguage',1048585,137),(503,'submissionSubject',1048585,138),(504,'submissionKeyword',1048585,138),(505,'submissionDiscipline',1048585,138),(506,'submissionAgency',1048585,138),(507,'submissionLanguage',1048585,138),(508,'submissionSubject',1048585,139),(509,'submissionKeyword',1048585,139),(510,'submissionDiscipline',1048585,139),(511,'submissionAgency',1048585,139),(512,'submissionLanguage',1048585,139),(513,'submissionSubject',1048585,140),(514,'submissionKeyword',1048585,140),(515,'submissionDiscipline',1048585,140),(516,'submissionAgency',1048585,140),(517,'submissionLanguage',1048585,140),(518,'submissionSubject',1048585,141),(519,'submissionKeyword',1048585,141),(520,'submissionDiscipline',1048585,141),(521,'submissionAgency',1048585,141),(522,'submissionLanguage',1048585,141),(523,'submissionSubject',1048585,142),(524,'submissionKeyword',1048585,142),(525,'submissionDiscipline',1048585,142),(526,'submissionAgency',1048585,142),(527,'submissionLanguage',1048585,142),(528,'submissionSubject',1048585,143),(529,'submissionKeyword',1048585,143),(530,'submissionDiscipline',1048585,143),(531,'submissionAgency',1048585,143),(532,'submissionLanguage',1048585,143),(533,'submissionSubject',1048585,144),(534,'submissionKeyword',1048585,144),(535,'submissionDiscipline',1048585,144),(536,'submissionAgency',1048585,144),(537,'submissionLanguage',1048585,144),(538,'submissionSubject',1048585,145),(539,'submissionKeyword',1048585,145),(540,'submissionDiscipline',1048585,145),(541,'submissionAgency',1048585,145),(542,'submissionLanguage',1048585,145),(543,'submissionSubject',1048585,146),(544,'submissionKeyword',1048585,146),(545,'submissionDiscipline',1048585,146),(546,'submissionAgency',1048585,146),(547,'submissionLanguage',1048585,146),(548,'submissionSubject',1048585,147),(549,'submissionKeyword',1048585,147),(550,'submissionDiscipline',1048585,147),(551,'submissionAgency',1048585,147),(552,'submissionLanguage',1048585,147),(553,'submissionSubject',1048585,148),(554,'submissionKeyword',1048585,148),(555,'submissionDiscipline',1048585,148),(556,'submissionAgency',1048585,148),(557,'submissionLanguage',1048585,148),(558,'submissionSubject',1048585,149),(559,'submissionKeyword',1048585,149),(560,'submissionDiscipline',1048585,149),(561,'submissionAgency',1048585,149),(562,'submissionLanguage',1048585,149),(563,'submissionSubject',1048585,150),(564,'submissionKeyword',1048585,150),(565,'submissionDiscipline',1048585,150),(566,'submissionAgency',1048585,150),(567,'submissionLanguage',1048585,150),(568,'submissionSubject',1048585,151),(569,'submissionKeyword',1048585,151),(570,'submissionDiscipline',1048585,151),(571,'submissionAgency',1048585,151),(572,'submissionLanguage',1048585,151),(573,'submissionSubject',1048585,152),(574,'submissionKeyword',1048585,152),(575,'submissionDiscipline',1048585,152),(576,'submissionAgency',1048585,152),(577,'submissionLanguage',1048585,152),(578,'submissionSubject',1048585,154),(579,'submissionKeyword',1048585,154),(580,'submissionDiscipline',1048585,154),(581,'submissionAgency',1048585,154),(582,'submissionLanguage',1048585,154),(583,'submissionSubject',1048585,156),(584,'submissionKeyword',1048585,156),(585,'submissionDiscipline',1048585,156),(586,'submissionAgency',1048585,156),(587,'submissionLanguage',1048585,156),(588,'submissionSubject',1048585,157),(589,'submissionKeyword',1048585,157),(590,'submissionDiscipline',1048585,157),(591,'submissionAgency',1048585,157),(592,'submissionLanguage',1048585,157),(593,'submissionSubject',1048585,158),(594,'submissionKeyword',1048585,158),(595,'submissionDiscipline',1048585,158),(596,'submissionAgency',1048585,158),(597,'submissionLanguage',1048585,158),(598,'submissionSubject',1048585,159),(599,'submissionKeyword',1048585,159),(600,'submissionDiscipline',1048585,159),(601,'submissionAgency',1048585,159),(602,'submissionLanguage',1048585,159),(603,'submissionSubject',1048585,160),(604,'submissionKeyword',1048585,160),(605,'submissionDiscipline',1048585,160),(606,'submissionAgency',1048585,160),(607,'submissionLanguage',1048585,160),(608,'submissionSubject',1048585,161),(609,'submissionKeyword',1048585,161),(610,'submissionDiscipline',1048585,161),(611,'submissionAgency',1048585,161),(612,'submissionLanguage',1048585,161),(613,'submissionSubject',1048585,162),(614,'submissionKeyword',1048585,162),(615,'submissionDiscipline',1048585,162),(616,'submissionAgency',1048585,162),(617,'submissionLanguage',1048585,162),(618,'submissionSubject',1048585,163),(619,'submissionKeyword',1048585,163),(620,'submissionDiscipline',1048585,163),(621,'submissionAgency',1048585,163),(622,'submissionLanguage',1048585,163),(623,'submissionSubject',1048585,164),(624,'submissionKeyword',1048585,164),(625,'submissionDiscipline',1048585,164),(626,'submissionAgency',1048585,164),(627,'submissionLanguage',1048585,164),(628,'submissionSubject',1048585,165),(629,'submissionKeyword',1048585,165),(630,'submissionDiscipline',1048585,165),(631,'submissionAgency',1048585,165),(632,'submissionLanguage',1048585,165),(633,'submissionSubject',1048585,166),(634,'submissionKeyword',1048585,166),(635,'submissionDiscipline',1048585,166),(636,'submissionAgency',1048585,166),(637,'submissionLanguage',1048585,166),(638,'submissionSubject',1048585,167),(639,'submissionKeyword',1048585,167),(640,'submissionDiscipline',1048585,167),(641,'submissionAgency',1048585,167),(642,'submissionLanguage',1048585,167),(643,'submissionSubject',1048585,168),(644,'submissionKeyword',1048585,168),(645,'submissionDiscipline',1048585,168),(646,'submissionAgency',1048585,168),(647,'submissionLanguage',1048585,168),(648,'submissionSubject',1048585,169),(649,'submissionKeyword',1048585,169),(650,'submissionDiscipline',1048585,169),(651,'submissionAgency',1048585,169),(652,'submissionLanguage',1048585,169),(653,'submissionSubject',1048585,170),(654,'submissionKeyword',1048585,170),(655,'submissionDiscipline',1048585,170),(656,'submissionAgency',1048585,170),(657,'submissionLanguage',1048585,170),(658,'submissionSubject',1048585,171),(659,'submissionKeyword',1048585,171),(660,'submissionDiscipline',1048585,171),(661,'submissionAgency',1048585,171),(662,'submissionLanguage',1048585,171),(663,'submissionSubject',1048585,172),(664,'submissionKeyword',1048585,172),(665,'submissionDiscipline',1048585,172),(666,'submissionAgency',1048585,172),(667,'submissionLanguage',1048585,172),(668,'submissionSubject',1048585,173),(669,'submissionKeyword',1048585,173),(670,'submissionDiscipline',1048585,173),(671,'submissionAgency',1048585,173),(672,'submissionLanguage',1048585,173),(673,'submissionSubject',1048585,174),(674,'submissionKeyword',1048585,174),(675,'submissionDiscipline',1048585,174),(676,'submissionAgency',1048585,174),(677,'submissionLanguage',1048585,174),(678,'submissionSubject',1048585,175),(679,'submissionKeyword',1048585,175),(680,'submissionDiscipline',1048585,175),(681,'submissionAgency',1048585,175),(682,'submissionLanguage',1048585,175),(683,'submissionSubject',1048585,176),(684,'submissionKeyword',1048585,176),(685,'submissionDiscipline',1048585,176),(686,'submissionAgency',1048585,176),(687,'submissionLanguage',1048585,176),(688,'submissionSubject',1048585,177),(689,'submissionKeyword',1048585,177),(690,'submissionDiscipline',1048585,177),(691,'submissionAgency',1048585,177),(692,'submissionLanguage',1048585,177),(693,'submissionSubject',1048585,178),(694,'submissionKeyword',1048585,178),(695,'submissionDiscipline',1048585,178),(696,'submissionAgency',1048585,178),(697,'submissionLanguage',1048585,178),(698,'submissionSubject',1048585,182),(699,'submissionKeyword',1048585,182),(700,'submissionDiscipline',1048585,182),(701,'submissionAgency',1048585,182),(702,'submissionLanguage',1048585,182),(703,'submissionSubject',1048585,185),(704,'submissionKeyword',1048585,185),(705,'submissionDiscipline',1048585,185),(706,'submissionAgency',1048585,185),(707,'submissionLanguage',1048585,185),(708,'submissionSubject',1048585,186),(709,'submissionKeyword',1048585,186),(710,'submissionDiscipline',1048585,186),(711,'submissionAgency',1048585,186),(712,'submissionLanguage',1048585,186),(713,'submissionSubject',1048585,187),(714,'submissionKeyword',1048585,187),(715,'submissionDiscipline',1048585,187),(716,'submissionAgency',1048585,187),(717,'submissionLanguage',1048585,187),(718,'submissionSubject',1048585,188),(719,'submissionKeyword',1048585,188),(720,'submissionDiscipline',1048585,188),(721,'submissionAgency',1048585,188),(722,'submissionLanguage',1048585,188),(723,'submissionSubject',1048585,189),(724,'submissionKeyword',1048585,189),(725,'submissionDiscipline',1048585,189),(726,'submissionAgency',1048585,189),(727,'submissionLanguage',1048585,189),(728,'submissionSubject',1048585,190),(729,'submissionKeyword',1048585,190),(730,'submissionDiscipline',1048585,190),(731,'submissionAgency',1048585,190),(732,'submissionLanguage',1048585,190),(733,'submissionSubject',1048585,191),(734,'submissionKeyword',1048585,191),(735,'submissionDiscipline',1048585,191),(736,'submissionAgency',1048585,191),(737,'submissionLanguage',1048585,191),(738,'submissionSubject',1048585,192),(739,'submissionKeyword',1048585,192),(740,'submissionDiscipline',1048585,192),(741,'submissionAgency',1048585,192),(742,'submissionLanguage',1048585,192),(743,'submissionSubject',1048585,193),(744,'submissionKeyword',1048585,193),(745,'submissionDiscipline',1048585,193),(746,'submissionAgency',1048585,193),(747,'submissionLanguage',1048585,193),(748,'submissionSubject',1048585,198),(749,'submissionKeyword',1048585,198),(750,'submissionDiscipline',1048585,198),(751,'submissionAgency',1048585,198),(752,'submissionLanguage',1048585,198),(753,'submissionSubject',1048585,1),(754,'submissionSubject',1048585,4),(755,'submissionSubject',1048585,5),(756,'submissionSubject',1048585,6),(757,'submissionSubject',1048585,7),(758,'submissionSubject',1048585,8),(759,'submissionSubject',1048585,14),(760,'submissionSubject',1048585,19),(761,'submissionSubject',1048585,20),(762,'submissionSubject',1048585,21),(763,'submissionSubject',1048585,22),(764,'submissionSubject',1048585,28),(765,'submissionSubject',1048585,31),(766,'submissionSubject',1048585,32),(767,'submissionSubject',1048585,33),(768,'submissionSubject',1048585,34),(769,'submissionSubject',1048585,35),(770,'submissionSubject',1048585,40),(771,'submissionSubject',1048585,46),(772,'submissionSubject',1048585,47),(773,'submissionSubject',1048585,49),(774,'submissionSubject',1048585,50),(775,'submissionSubject',1048585,51),(776,'submissionSubject',1048585,52),(777,'submissionSubject',1048585,53),(778,'submissionSubject',1048585,54),(779,'submissionSubject',1048585,56),(780,'submissionSubject',1048585,57),(781,'submissionSubject',1048585,58),(782,'submissionSubject',1048585,59),(783,'submissionSubject',1048585,199),(784,'submissionKeyword',1048585,199),(785,'submissionDiscipline',1048585,199),(786,'submissionAgency',1048585,199),(787,'submissionLanguage',1048585,199),(788,'submissionSubject',1048585,202),(789,'submissionKeyword',1048585,202),(790,'submissionDiscipline',1048585,202),(791,'submissionAgency',1048585,202),(792,'submissionLanguage',1048585,202),(793,'submissionSubject',1048585,203),(794,'submissionKeyword',1048585,203),(795,'submissionDiscipline',1048585,203),(796,'submissionAgency',1048585,203),(797,'submissionLanguage',1048585,203),(798,'submissionSubject',1048585,204),(799,'submissionKeyword',1048585,204),(800,'submissionDiscipline',1048585,204),(801,'submissionAgency',1048585,204),(802,'submissionLanguage',1048585,204),(803,'submissionSubject',1048585,205),(804,'submissionKeyword',1048585,205),(805,'submissionDiscipline',1048585,205),(806,'submissionAgency',1048585,205),(807,'submissionLanguage',1048585,205),(808,'submissionSubject',1048585,206),(809,'submissionKeyword',1048585,206),(810,'submissionDiscipline',1048585,206),(811,'submissionAgency',1048585,206),(812,'submissionLanguage',1048585,206),(813,'submissionSubject',1048585,207),(814,'submissionKeyword',1048585,207),(815,'submissionDiscipline',1048585,207),(816,'submissionAgency',1048585,207),(817,'submissionLanguage',1048585,207),(818,'submissionSubject',1048585,208),(819,'submissionKeyword',1048585,208),(820,'submissionDiscipline',1048585,208),(821,'submissionAgency',1048585,208),(822,'submissionLanguage',1048585,208),(823,'submissionSubject',1048585,209),(824,'submissionKeyword',1048585,209),(825,'submissionDiscipline',1048585,209),(826,'submissionAgency',1048585,209),(827,'submissionLanguage',1048585,209),(828,'submissionSubject',1048585,210),(829,'submissionKeyword',1048585,210),(830,'submissionDiscipline',1048585,210),(831,'submissionAgency',1048585,210),(832,'submissionLanguage',1048585,210),(833,'submissionSubject',1048585,213),(834,'submissionKeyword',1048585,213),(835,'submissionDiscipline',1048585,213),(836,'submissionAgency',1048585,213),(837,'submissionLanguage',1048585,213),(838,'submissionSubject',1048585,214),(839,'submissionKeyword',1048585,214),(840,'submissionDiscipline',1048585,214),(841,'submissionAgency',1048585,214),(842,'submissionLanguage',1048585,214),(843,'submissionSubject',1048585,215),(844,'submissionKeyword',1048585,215),(845,'submissionDiscipline',1048585,215),(846,'submissionAgency',1048585,215),(847,'submissionLanguage',1048585,215),(848,'submissionSubject',1048585,216),(849,'submissionKeyword',1048585,216),(850,'submissionDiscipline',1048585,216),(851,'submissionAgency',1048585,216),(852,'submissionLanguage',1048585,216),(853,'submissionSubject',1048585,218),(854,'submissionKeyword',1048585,218),(855,'submissionDiscipline',1048585,218),(856,'submissionAgency',1048585,218),(857,'submissionLanguage',1048585,218),(858,'submissionSubject',1048585,219),(859,'submissionKeyword',1048585,219),(860,'submissionDiscipline',1048585,219),(861,'submissionAgency',1048585,219),(862,'submissionLanguage',1048585,219),(863,'submissionSubject',1048585,220),(864,'submissionKeyword',1048585,220),(865,'submissionDiscipline',1048585,220),(866,'submissionAgency',1048585,220),(867,'submissionLanguage',1048585,220),(868,'submissionSubject',1048585,222),(869,'submissionKeyword',1048585,222),(870,'submissionDiscipline',1048585,222),(871,'submissionAgency',1048585,222),(872,'submissionLanguage',1048585,222),(873,'submissionSubject',1048585,223),(874,'submissionKeyword',1048585,223),(875,'submissionDiscipline',1048585,223),(876,'submissionAgency',1048585,223),(877,'submissionLanguage',1048585,223),(878,'submissionSubject',1048585,224),(879,'submissionKeyword',1048585,224),(880,'submissionDiscipline',1048585,224),(881,'submissionAgency',1048585,224),(882,'submissionLanguage',1048585,224),(883,'submissionSubject',1048585,225),(884,'submissionKeyword',1048585,225),(885,'submissionDiscipline',1048585,225),(886,'submissionAgency',1048585,225),(887,'submissionLanguage',1048585,225),(888,'submissionSubject',1048585,226),(889,'submissionKeyword',1048585,226),(890,'submissionDiscipline',1048585,226),(891,'submissionAgency',1048585,226),(892,'submissionLanguage',1048585,226),(893,'submissionSubject',1048585,227),(894,'submissionKeyword',1048585,227),(895,'submissionDiscipline',1048585,227),(896,'submissionAgency',1048585,227),(897,'submissionLanguage',1048585,227),(898,'submissionSubject',1048585,228),(899,'submissionKeyword',1048585,228),(900,'submissionDiscipline',1048585,228),(901,'submissionAgency',1048585,228),(902,'submissionLanguage',1048585,228),(903,'submissionSubject',1048585,229),(904,'submissionKeyword',1048585,229),(905,'submissionDiscipline',1048585,229),(906,'submissionAgency',1048585,229),(907,'submissionLanguage',1048585,229),(908,'submissionSubject',1048585,230),(909,'submissionKeyword',1048585,230),(910,'submissionDiscipline',1048585,230),(911,'submissionAgency',1048585,230),(912,'submissionLanguage',1048585,230),(913,'submissionSubject',1048585,231),(914,'submissionKeyword',1048585,231),(915,'submissionDiscipline',1048585,231),(916,'submissionAgency',1048585,231),(917,'submissionLanguage',1048585,231),(918,'submissionSubject',1048585,232),(919,'submissionKeyword',1048585,232),(920,'submissionDiscipline',1048585,232),(921,'submissionAgency',1048585,232),(922,'submissionLanguage',1048585,232),(923,'submissionSubject',1048585,233),(924,'submissionKeyword',1048585,233),(925,'submissionDiscipline',1048585,233),(926,'submissionAgency',1048585,233),(927,'submissionLanguage',1048585,233),(928,'submissionSubject',1048585,234),(929,'submissionKeyword',1048585,234),(930,'submissionDiscipline',1048585,234),(931,'submissionAgency',1048585,234),(932,'submissionLanguage',1048585,234),(933,'submissionSubject',1048585,235),(934,'submissionKeyword',1048585,235),(935,'submissionDiscipline',1048585,235),(936,'submissionAgency',1048585,235),(937,'submissionLanguage',1048585,235);
/*!40000 ALTER TABLE `controlled_vocabs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `custom_issue_orders`
--

DROP TABLE IF EXISTS `custom_issue_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_issue_orders` (
  `issue_id` bigint(20) NOT NULL,
  `journal_id` bigint(20) NOT NULL,
  `seq` double NOT NULL DEFAULT 0,
  UNIQUE KEY `custom_issue_orders_pkey` (`issue_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `custom_issue_orders`
--

LOCK TABLES `custom_issue_orders` WRITE;
/*!40000 ALTER TABLE `custom_issue_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_issue_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `custom_section_orders`
--

DROP TABLE IF EXISTS `custom_section_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_section_orders` (
  `issue_id` bigint(20) NOT NULL,
  `section_id` bigint(20) NOT NULL,
  `seq` double NOT NULL DEFAULT 0,
  UNIQUE KEY `custom_section_orders_pkey` (`issue_id`,`section_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `custom_section_orders`
--

LOCK TABLES `custom_section_orders` WRITE;
/*!40000 ALTER TABLE `custom_section_orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `custom_section_orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `data_object_tombstone_oai_set_objects`
--

DROP TABLE IF EXISTS `data_object_tombstone_oai_set_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `data_object_tombstone_oai_set_objects` (
  `object_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `tombstone_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  PRIMARY KEY (`object_id`),
  KEY `data_object_tombstone_oai_set_objects_tombstone_id` (`tombstone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=169 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `data_object_tombstone_oai_set_objects`
--

LOCK TABLES `data_object_tombstone_oai_set_objects` WRITE;
/*!40000 ALTER TABLE `data_object_tombstone_oai_set_objects` DISABLE KEYS */;
INSERT INTO `data_object_tombstone_oai_set_objects` VALUES (167,84,256,1),(168,84,530,1);
/*!40000 ALTER TABLE `data_object_tombstone_oai_set_objects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `data_object_tombstone_settings`
--

DROP TABLE IF EXISTS `data_object_tombstone_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `data_object_tombstone_settings` (
  `tombstone_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `data_object_tombstone_settings_pkey` (`tombstone_id`,`locale`,`setting_name`),
  KEY `data_object_tombstone_settings_tombstone_id` (`tombstone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `data_object_tombstone_settings`
--

LOCK TABLES `data_object_tombstone_settings` WRITE;
/*!40000 ALTER TABLE `data_object_tombstone_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `data_object_tombstone_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `data_object_tombstones`
--

DROP TABLE IF EXISTS `data_object_tombstones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `data_object_tombstones` (
  `tombstone_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `data_object_id` bigint(20) NOT NULL,
  `date_deleted` datetime NOT NULL,
  `set_spec` varchar(255) NOT NULL,
  `set_name` varchar(255) NOT NULL,
  `oai_identifier` varchar(255) NOT NULL,
  PRIMARY KEY (`tombstone_id`),
  KEY `data_object_tombstones_data_object_id` (`data_object_id`)
) ENGINE=MyISAM AUTO_INCREMENT=85 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `data_object_tombstones`
--

LOCK TABLES `data_object_tombstones` WRITE;
/*!40000 ALTER TABLE `data_object_tombstones` DISABLE KEYS */;
INSERT INTO `data_object_tombstones` VALUES (84,213,'2021-08-02 09:37:31','insada:ART','Articles','oai:ojs.pkp.sfu.ca:article/213');
/*!40000 ALTER TABLE `data_object_tombstones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dataverse_files`
--

DROP TABLE IF EXISTS `dataverse_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dataverse_files` (
  `dvfile_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `supp_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `study_id` bigint(20) NOT NULL DEFAULT 0,
  `content_source_uri` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`dvfile_id`),
  KEY `dataverse_files_supp_id` (`supp_id`),
  KEY `dataverse_files_submission_id` (`submission_id`),
  KEY `dataverse_files_study_id` (`study_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dataverse_files`
--

LOCK TABLES `dataverse_files` WRITE;
/*!40000 ALTER TABLE `dataverse_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `dataverse_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `dataverse_studies`
--

DROP TABLE IF EXISTS `dataverse_studies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `dataverse_studies` (
  `study_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `edit_uri` varchar(255) NOT NULL,
  `edit_media_uri` varchar(255) NOT NULL,
  `statement_uri` varchar(255) NOT NULL,
  `persistent_uri` varchar(255) NOT NULL,
  `data_citation` text DEFAULT NULL,
  PRIMARY KEY (`study_id`),
  KEY `dataverse_studies_submission_id` (`submission_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `dataverse_studies`
--

LOCK TABLES `dataverse_studies` WRITE;
/*!40000 ALTER TABLE `dataverse_studies` DISABLE KEYS */;
/*!40000 ALTER TABLE `dataverse_studies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `edit_assignments`
--

DROP TABLE IF EXISTS `edit_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `edit_assignments` (
  `edit_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `article_id` bigint(20) NOT NULL,
  `editor_id` bigint(20) NOT NULL,
  `can_edit` tinyint(4) NOT NULL DEFAULT 1,
  `can_review` tinyint(4) NOT NULL DEFAULT 1,
  `date_assigned` datetime DEFAULT NULL,
  `date_notified` datetime DEFAULT NULL,
  `date_underway` datetime DEFAULT NULL,
  PRIMARY KEY (`edit_id`),
  KEY `edit_assignments_article_id` (`article_id`),
  KEY `edit_assignments_editor_id` (`editor_id`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `edit_assignments`
--

LOCK TABLES `edit_assignments` WRITE;
/*!40000 ALTER TABLE `edit_assignments` DISABLE KEYS */;
INSERT INTO `edit_assignments` VALUES (1,1,1,1,1,NULL,'2016-06-29 16:09:11','2016-06-29 16:09:12'),(2,2,1,1,1,NULL,'2016-06-30 08:22:30','2016-06-30 08:22:32'),(3,4,1,1,1,NULL,'2016-06-30 09:45:41','2016-06-30 09:45:44'),(4,5,1,1,1,NULL,'2016-06-30 10:38:04','2016-06-30 10:38:05'),(5,6,1,1,1,NULL,'2016-06-30 10:40:49','2016-06-30 10:40:51'),(6,7,1,1,1,NULL,'2016-06-30 10:43:05','2016-06-30 10:43:06'),(7,8,1,1,1,NULL,'2016-06-30 10:45:07','2016-06-30 10:45:08'),(8,11,1,1,1,NULL,'2016-06-30 10:52:32','2016-06-30 10:52:34'),(9,14,1,1,1,NULL,'2016-06-30 12:37:25','2016-06-30 12:37:26'),(10,19,1,1,1,NULL,'2016-06-30 12:49:11','2016-06-30 12:49:13'),(11,20,1,1,1,NULL,'2016-06-30 12:54:48','2016-06-30 12:54:49'),(12,21,1,1,1,NULL,'2016-06-30 12:57:13','2016-06-30 12:57:14'),(13,22,1,1,1,NULL,'2016-06-30 13:00:30','2016-06-30 13:00:32'),(14,27,1,1,1,NULL,'2016-07-02 11:13:13','2016-07-02 11:13:14'),(15,28,1,1,1,NULL,'2016-09-07 12:39:12','2016-09-07 12:39:14'),(16,31,1,1,1,NULL,'2016-09-07 13:00:53','2016-09-07 13:00:54'),(17,32,1,1,1,NULL,'2016-09-07 13:06:07','2016-09-07 13:06:12'),(18,33,1,1,1,NULL,'2016-09-07 13:09:36','2016-09-07 13:09:38'),(19,34,1,1,1,NULL,'2016-09-07 13:12:38','2016-09-07 13:12:40'),(20,35,1,1,1,NULL,'2016-09-07 13:16:11','2016-09-07 13:16:12'),(21,40,1,1,1,NULL,'2017-02-20 10:43:40','2017-02-20 10:43:42'),(22,46,1,1,1,NULL,'2017-03-29 10:08:13','2017-03-29 10:08:15'),(23,47,1,1,1,NULL,'2017-03-29 10:11:37','2017-03-29 10:11:39'),(24,49,1,1,1,NULL,'2017-03-29 10:13:54','2017-03-29 10:13:56'),(25,50,1,1,1,NULL,'2017-03-29 10:17:45','2017-03-29 10:17:46'),(26,51,1,1,1,NULL,'2017-03-29 10:28:01','2017-03-29 10:28:02'),(27,52,1,1,1,NULL,'2017-03-29 10:30:29','2017-03-29 10:30:30'),(28,53,1,1,1,NULL,'2017-03-29 10:34:38','2017-03-29 10:34:40'),(29,54,1,1,1,NULL,'2017-03-29 10:54:17','2017-03-29 10:54:19'),(30,55,1,1,1,NULL,'2017-03-29 10:57:45','2017-03-29 10:57:46'),(31,56,1,1,1,NULL,'2017-03-29 10:59:47','2017-03-29 10:59:48'),(32,57,1,1,1,NULL,'2017-03-29 11:01:31','2017-03-29 11:01:33'),(33,58,1,1,1,NULL,'2017-03-29 11:04:21','2017-03-29 11:04:22'),(34,59,1,1,1,NULL,'2017-03-29 11:06:04','2017-03-29 11:06:06');
/*!40000 ALTER TABLE `edit_assignments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `edit_decisions`
--

DROP TABLE IF EXISTS `edit_decisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `edit_decisions` (
  `edit_decision_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `round` tinyint(4) NOT NULL,
  `editor_id` bigint(20) NOT NULL,
  `decision` tinyint(4) NOT NULL,
  `date_decided` datetime NOT NULL,
  `review_round_id` bigint(20) DEFAULT NULL,
  `stage_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`edit_decision_id`),
  KEY `edit_decisions_submission_id` (`submission_id`),
  KEY `edit_decisions_editor_id` (`editor_id`)
) ENGINE=MyISAM AUTO_INCREMENT=279 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `edit_decisions`
--

LOCK TABLES `edit_decisions` WRITE;
/*!40000 ALTER TABLE `edit_decisions` DISABLE KEYS */;
INSERT INTO `edit_decisions` VALUES (1,1,1,1,1,'2016-06-29 16:09:45',1,3),(2,4,1,1,1,'2016-06-30 09:46:02',2,3),(3,5,1,1,1,'2016-06-30 10:38:23',3,3),(4,6,1,1,1,'2016-06-30 10:41:14',4,3),(5,7,1,1,1,'2016-06-30 10:43:25',5,3),(6,8,1,1,1,'2016-06-30 10:45:41',6,3),(7,11,1,1,1,'2016-06-30 10:53:36',7,3),(8,14,1,1,1,'2016-06-30 12:37:44',8,3),(9,19,1,1,1,'2016-06-30 12:49:35',9,3),(10,20,1,1,1,'2016-06-30 12:55:03',10,3),(11,21,1,1,1,'2016-06-30 12:57:31',11,3),(12,22,1,1,1,'2016-06-30 13:00:56',12,3),(13,2,1,1,1,'2016-06-30 14:19:39',13,3),(14,27,1,1,1,'2016-07-02 11:26:09',14,3),(15,31,1,1,1,'2016-09-07 13:01:18',15,3),(16,32,1,1,1,'2016-09-07 13:06:32',16,3),(17,33,1,1,1,'2016-09-07 13:09:57',17,3),(18,34,1,1,1,'2016-09-07 13:12:58',18,3),(19,35,1,1,1,'2016-09-07 13:16:35',19,3),(20,40,1,1,1,'2017-02-20 10:48:33',20,3),(21,46,1,1,1,'2017-03-29 10:08:31',21,3),(22,47,1,1,1,'2017-03-29 10:11:51',22,3),(23,49,1,1,1,'2017-03-29 10:14:08',23,3),(24,50,1,1,1,'2017-03-29 10:17:57',24,3),(25,51,1,1,1,'2017-03-29 10:28:14',25,3),(26,52,1,1,1,'2017-03-29 10:30:48',26,3),(27,53,1,1,1,'2017-03-29 10:35:00',27,3),(28,53,1,1,1,'2017-03-29 10:35:13',27,3),(29,54,1,1,1,'2017-03-29 10:54:35',28,3),(30,55,1,1,1,'2017-03-29 10:57:59',29,3),(31,56,1,1,1,'2017-03-29 11:00:00',30,3),(32,57,1,1,1,'2017-03-29 11:01:49',31,3),(33,58,1,1,1,'2017-03-29 11:04:32',32,3),(34,59,1,1,1,'2017-03-29 11:06:17',33,3),(35,1,0,1,8,'2016-06-29 16:09:45',0,1),(36,4,0,1,8,'2016-06-30 09:46:02',0,1),(37,5,0,1,8,'2016-06-30 10:38:23',0,1),(38,6,0,1,8,'2016-06-30 10:41:14',0,1),(39,7,0,1,8,'2016-06-30 10:43:25',0,1),(40,8,0,1,8,'2016-06-30 10:45:41',0,1),(41,11,0,1,8,'2016-06-30 10:53:36',0,1),(42,14,0,1,8,'2016-06-30 12:37:44',0,1),(43,19,0,1,8,'2016-06-30 12:49:35',0,1),(44,20,0,1,8,'2016-06-30 12:55:03',0,1),(45,21,0,1,8,'2016-06-30 12:57:31',0,1),(46,22,0,1,8,'2016-06-30 13:00:56',0,1),(47,2,0,1,8,'2016-06-30 14:19:39',0,1),(48,27,0,1,8,'2016-07-02 11:26:09',0,1),(49,31,0,1,8,'2016-09-07 13:01:18',0,1),(50,32,0,1,8,'2016-09-07 13:06:32',0,1),(51,33,0,1,8,'2016-09-07 13:09:57',0,1),(52,34,0,1,8,'2016-09-07 13:12:58',0,1),(53,35,0,1,8,'2016-09-07 13:16:35',0,1),(54,40,0,1,8,'2017-02-20 10:48:33',0,1),(55,46,0,1,8,'2017-03-29 10:08:31',0,1),(56,47,0,1,8,'2017-03-29 10:11:51',0,1),(57,49,0,1,8,'2017-03-29 10:14:08',0,1),(58,50,0,1,8,'2017-03-29 10:17:57',0,1),(59,51,0,1,8,'2017-03-29 10:28:14',0,1),(60,52,0,1,8,'2017-03-29 10:30:48',0,1),(61,53,0,1,8,'2017-03-29 10:35:00',0,1),(62,54,0,1,8,'2017-03-29 10:54:35',0,1),(63,55,0,1,8,'2017-03-29 10:57:59',0,1),(64,56,0,1,8,'2017-03-29 11:00:00',0,1),(65,57,0,1,8,'2017-03-29 11:01:49',0,1),(66,58,0,1,8,'2017-03-29 11:04:32',0,1),(67,59,0,1,8,'2017-03-29 11:06:17',0,1),(68,74,0,4,1,'2018-05-22 21:23:00',0,1),(69,74,0,4,7,'2018-05-22 21:23:44',0,4),(70,74,0,4,1,'2018-05-22 21:26:25',0,5),(71,74,0,4,7,'2018-05-22 21:27:06',0,4),(75,76,0,1,7,'2018-05-25 13:57:14',0,3),(74,76,0,1,8,'2018-05-25 13:54:12',0,1),(76,77,0,1,1,'2018-05-25 14:21:34',0,1),(77,77,0,1,7,'2018-05-25 14:22:00',0,4),(78,78,0,1,1,'2018-05-25 14:31:13',0,1),(79,78,0,1,7,'2018-05-25 14:31:36',0,4),(80,79,0,1,1,'2018-05-27 20:46:39',0,1),(81,79,0,1,1,'2018-05-27 20:48:02',0,4),(82,79,0,1,8,'2018-05-27 20:49:11',0,4),(83,79,0,1,7,'2018-05-27 20:51:24',0,3),(84,80,0,1,1,'2018-05-27 20:58:52',0,1),(85,80,0,1,8,'2018-05-27 20:59:23',0,4),(86,80,0,1,8,'2018-05-27 21:03:50',0,3),(87,80,0,1,1,'2018-05-27 21:05:50',0,3),(88,80,0,1,9,'2018-05-27 21:07:38',0,1),(89,80,0,1,8,'2018-05-27 21:08:35',0,4),(90,80,0,1,1,'2018-05-27 21:09:22',0,3),(91,81,0,1,1,'2018-05-27 21:15:56',0,1),(92,81,0,1,8,'2018-05-27 21:16:52',0,4),(93,81,0,1,7,'2018-05-27 21:18:33',0,3),(94,82,0,1,8,'2018-05-27 21:28:14',0,1),(95,82,0,1,8,'2018-05-27 21:29:38',0,3),(96,82,0,1,7,'2018-05-27 21:32:07',0,3),(97,83,0,1,1,'2018-05-27 21:41:24',0,1),(98,83,0,1,8,'2018-05-27 21:42:46',0,4),(99,83,0,1,8,'2018-05-27 21:43:59',0,3),(100,83,0,1,7,'2018-05-27 21:44:33',0,3),(101,54,0,1,7,'2018-05-27 21:57:45',0,4),(102,78,0,1,1,'2018-05-27 22:23:35',0,5),(103,78,0,1,7,'2018-05-27 22:24:12',0,4),(104,78,0,1,8,'2018-05-27 22:28:49',0,5),(105,78,0,1,7,'2018-05-27 22:31:48',0,3),(106,84,0,1,8,'2018-05-30 08:45:36',0,1),(107,84,0,1,1,'2018-05-30 08:46:16',0,3),(108,84,0,1,7,'2018-05-30 08:46:40',0,4),(109,85,0,1,1,'2018-05-30 09:18:25',0,1),(110,85,0,1,8,'2018-05-30 09:19:08',0,4),(111,85,0,1,7,'2018-05-30 09:20:02',0,3),(112,86,0,1,8,'2018-05-30 10:37:34',0,1),(113,86,0,1,1,'2018-05-30 10:38:29',0,3),(114,86,0,1,7,'2018-05-30 10:38:47',0,4),(115,87,0,1,8,'2018-05-30 10:57:03',0,1),(116,87,0,1,1,'2018-05-30 10:57:21',0,3),(117,87,0,1,1,'2018-05-30 10:58:12',0,4),(118,87,0,1,7,'2018-05-30 10:58:35',0,4),(119,88,0,1,8,'2018-05-30 11:56:37',0,1),(120,88,0,1,1,'2018-05-30 12:08:29',0,3),(121,88,0,1,7,'2018-05-30 12:08:44',0,4),(122,89,0,1,8,'2018-05-30 12:21:00',0,1),(123,89,0,1,1,'2018-05-30 12:22:18',0,3),(124,89,0,1,1,'2018-05-30 12:23:07',0,4),(125,89,0,1,7,'2018-05-30 12:24:48',0,4),(126,90,0,1,8,'2018-05-30 13:24:28',0,1),(127,90,0,1,1,'2018-05-30 13:24:56',0,3),(128,90,0,1,7,'2018-05-30 13:25:51',0,4),(129,90,0,1,7,'2018-05-30 13:26:12',0,5),(130,90,0,1,7,'2018-05-30 13:26:27',0,5),(131,91,0,1,8,'2018-05-30 13:34:01',0,1),(132,91,0,1,1,'2018-05-30 13:34:34',0,3),(133,91,0,1,7,'2018-05-30 13:39:27',0,4),(134,98,0,1,8,'2018-11-06 21:09:31',0,1),(135,98,0,1,8,'2018-11-06 21:14:22',0,3),(136,99,0,1,8,'2018-11-07 11:27:50',0,1),(137,99,0,1,7,'2018-11-07 11:46:28',0,3),(138,100,0,1,1,'2018-11-07 12:05:35',0,1),(139,100,0,1,7,'2018-11-07 12:06:09',0,4),(140,105,0,1,1,'2018-11-07 15:35:04',0,1),(141,106,0,1,1,'2018-11-07 15:42:00',0,1),(142,112,0,1,1,'2018-11-09 15:17:45',0,1),(143,113,0,1,1,'2018-11-09 15:27:33',0,1),(144,113,0,1,7,'2018-11-09 15:28:04',0,4),(145,114,0,1,8,'2018-11-09 15:28:35',0,1),(146,114,0,1,1,'2018-11-09 15:30:04',0,3),(147,114,0,1,7,'2018-11-09 15:30:31',0,4),(148,115,0,1,1,'2018-11-09 15:34:38',0,1),(149,115,0,1,7,'2018-11-09 15:34:55',0,4),(150,19,0,1,7,'2018-12-22 05:27:39',0,4),(151,125,0,1,8,'2019-02-08 09:38:19',0,1),(152,125,0,1,7,'2019-02-08 09:40:10',0,3),(153,133,0,1,8,'2019-05-13 13:52:30',0,1),(154,133,1,1,1,'2019-05-13 13:54:08',60,3),(155,133,0,1,7,'2019-05-13 13:54:38',0,4),(156,134,0,1,8,'2019-05-13 14:00:55',0,1),(157,134,1,1,1,'2019-05-13 14:04:06',61,3),(158,134,0,1,7,'2019-05-13 14:04:29',0,4),(159,134,0,1,7,'2019-05-13 14:04:50',0,5),(160,135,0,1,8,'2019-05-13 14:12:10',0,1),(161,135,0,1,8,'2019-05-13 14:14:08',0,3),(162,135,0,1,7,'2019-05-13 14:14:56',0,3),(163,136,0,1,8,'2019-05-13 14:21:57',0,1),(164,136,0,1,7,'2019-05-13 14:23:44',0,3),(165,137,0,1,8,'2019-05-14 10:06:08',0,1),(166,137,0,1,7,'2019-05-14 10:09:11',0,3),(167,138,0,1,1,'2019-05-14 10:19:32',0,1),(168,139,0,1,8,'2019-05-14 10:25:25',0,1),(169,139,0,1,7,'2019-05-14 10:28:09',0,3),(170,140,0,1,8,'2019-05-14 11:41:39',0,1),(171,141,0,1,8,'2019-05-14 11:47:20',0,1),(172,141,0,1,7,'2019-05-14 11:52:07',0,3),(173,142,0,1,8,'2019-05-14 12:26:11',0,1),(174,142,0,1,7,'2019-05-14 13:02:10',0,3),(175,142,0,1,7,'2019-05-14 13:02:47',0,5),(176,146,0,1,8,'2019-08-30 10:25:04',0,1),(177,146,0,1,7,'2019-08-30 10:27:46',0,3),(178,147,0,1,8,'2019-08-30 10:39:03',0,1),(179,147,0,1,7,'2019-08-30 10:41:06',0,3),(180,148,0,1,8,'2019-08-30 10:55:11',0,1),(181,149,0,1,8,'2019-08-30 11:07:49',0,1),(182,150,0,1,8,'2019-08-30 11:22:13',0,1),(183,151,0,1,8,'2019-08-30 11:30:29',0,1),(184,152,0,1,8,'2019-08-30 11:44:10',0,1),(185,152,0,1,7,'2019-08-30 11:46:29',0,3),(186,148,0,1,7,'2019-08-30 11:48:51',0,3),(187,149,0,1,7,'2019-08-30 11:51:28',0,3),(188,150,0,1,7,'2019-08-30 11:53:16',0,3),(189,151,0,1,7,'2019-08-30 11:54:50',0,3),(190,169,0,1,8,'2020-02-12 10:10:17',0,1),(191,169,0,1,7,'2020-02-12 10:15:27',0,3),(192,171,0,1,8,'2020-02-12 10:54:11',0,1),(193,171,0,1,7,'2020-02-12 10:57:56',0,3),(194,173,0,1,8,'2020-02-12 11:24:46',0,1),(195,173,0,1,7,'2020-02-12 11:26:41',0,3),(196,174,0,1,8,'2020-02-12 11:39:30',0,1),(197,174,0,1,7,'2020-02-12 11:42:32',0,3),(198,175,0,1,8,'2020-02-12 11:53:40',0,1),(199,175,0,1,7,'2020-02-12 11:55:30',0,3),(200,176,0,1,8,'2020-02-12 12:34:24',0,1),(201,176,0,1,7,'2020-02-12 12:36:08',0,3),(202,177,0,1,8,'2020-02-12 12:48:54',0,1),(203,177,0,1,7,'2020-02-12 12:51:20',0,3),(204,178,0,1,8,'2020-02-12 13:00:48',0,1),(205,178,0,1,7,'2020-02-12 13:02:16',0,3),(206,185,0,1,8,'2020-07-29 10:41:08',0,1),(207,185,0,1,7,'2020-07-29 10:43:26',0,3),(208,186,0,1,8,'2020-07-29 10:55:02',0,1),(209,186,0,1,7,'2020-07-29 10:56:49',0,3),(210,187,0,1,8,'2020-07-29 11:05:58',0,1),(211,187,0,1,7,'2020-07-29 11:07:30',0,3),(212,188,0,1,8,'2020-07-29 11:17:11',0,1),(213,188,0,1,7,'2020-07-29 11:18:42',0,3),(214,189,0,1,8,'2020-07-29 11:26:14',0,1),(215,189,0,1,7,'2020-07-29 11:27:28',0,3),(216,190,0,1,8,'2020-07-29 11:35:39',0,1),(217,190,0,1,7,'2020-07-29 11:36:56',0,3),(218,191,0,1,8,'2020-07-29 11:42:39',0,1),(219,191,0,1,7,'2020-07-29 11:43:59',0,3),(220,193,0,1,8,'2020-07-29 11:57:10',0,1),(221,193,0,1,7,'2020-07-29 11:58:26',0,3),(222,203,0,1,8,'2021-02-17 15:08:55',0,1),(223,203,0,1,7,'2021-02-17 15:16:20',0,3),(224,204,0,1,8,'2021-02-17 15:26:07',0,1),(225,204,0,1,7,'2021-02-17 15:32:38',0,3),(226,205,0,1,8,'2021-02-17 15:41:19',0,1),(227,205,0,1,7,'2021-02-17 15:46:24',0,3),(228,206,0,1,8,'2021-02-18 09:31:12',0,1),(229,206,0,1,7,'2021-02-18 09:34:10',0,3),(230,207,0,1,8,'2021-02-18 10:15:23',0,1),(231,207,0,1,7,'2021-02-18 10:18:34',0,3),(232,208,0,1,8,'2021-02-18 10:39:52',0,1),(233,208,0,1,7,'2021-02-18 10:44:43',0,3),(234,209,0,1,8,'2021-02-18 10:53:00',0,1),(235,209,0,1,7,'2021-02-18 11:04:02',0,3),(236,210,0,1,8,'2021-02-18 11:09:12',0,1),(237,210,0,1,7,'2021-02-18 11:11:24',0,3),(238,206,0,1,8,'2021-02-18 11:25:30',0,5),(239,214,0,4,7,'2021-08-09 15:17:03',0,1),(240,214,0,1,8,'2021-08-09 15:26:55',0,5),(241,215,0,1,1,'2021-08-10 10:29:03',0,1),(242,214,0,1,1,'2021-08-10 10:31:04',0,3),(243,216,0,1,1,'2021-08-10 10:32:30',0,1),(244,218,0,1,1,'2021-08-10 10:33:59',0,1),(245,219,0,1,1,'2021-08-10 10:35:17',0,1),(246,214,0,1,7,'2021-08-10 10:39:50',0,4),(247,223,0,4,8,'2022-02-03 14:47:04',0,1),(248,223,0,4,8,'2022-02-03 14:48:06',0,3),(249,224,0,4,8,'2022-02-03 14:51:22',0,1),(250,224,1,4,1,'2022-02-03 14:52:01',105,3),(251,225,0,4,8,'2022-02-03 14:52:56',0,1),(252,226,0,4,8,'2022-02-03 14:53:35',0,1),(253,228,0,4,8,'2022-02-03 14:54:13',0,1),(254,229,0,4,8,'2022-02-03 14:54:52',0,1),(255,230,0,4,8,'2022-02-03 14:55:27',0,1),(256,223,2,4,4,'2022-02-04 09:01:51',104,3),(257,223,2,4,4,'2022-02-04 09:02:20',104,3),(258,225,1,4,4,'2022-02-04 09:03:24',106,3),(259,228,1,4,4,'2022-02-04 09:03:54',108,3),(260,230,1,4,4,'2022-02-04 09:04:21',110,3),(261,226,1,4,4,'2022-02-04 09:04:46',107,3),(262,224,1,4,1,'2022-02-04 09:12:09',105,3),(263,224,0,4,7,'2022-02-04 09:12:46',0,4),(264,222,0,4,8,'2022-02-04 09:14:41',0,1),(265,222,1,4,1,'2022-02-04 09:16:08',111,3),(266,222,0,4,7,'2022-02-04 09:17:47',0,4),(267,229,0,4,8,'2022-02-04 09:22:48',0,3),(268,229,2,4,1,'2022-02-04 09:23:37',112,3),(269,229,0,4,7,'2022-02-04 09:24:28',0,4),(270,230,0,4,9,'2022-02-04 09:28:49',0,1),(271,231,0,4,8,'2022-02-04 09:58:55',0,1),(272,232,0,4,8,'2022-02-04 10:00:41',0,1),(273,233,0,4,8,'2022-02-04 10:01:31',0,1),(274,234,0,4,8,'2022-02-04 10:02:20',0,1),(275,231,0,4,7,'2022-02-04 10:17:08',0,3),(276,232,0,4,7,'2022-02-04 10:19:50',0,3),(277,233,0,4,7,'2022-02-04 10:24:12',0,3),(278,234,0,4,7,'2022-02-04 10:25:53',0,3);
/*!40000 ALTER TABLE `edit_decisions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_log`
--

DROP TABLE IF EXISTS `email_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_log` (
  `log_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `sender_id` bigint(20) NOT NULL,
  `date_sent` datetime NOT NULL,
  `ip_address` varchar(39) DEFAULT NULL,
  `event_type` bigint(20) DEFAULT NULL,
  `assoc_type` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `from_address` varchar(255) DEFAULT NULL,
  `recipients` text DEFAULT NULL,
  `cc_recipients` text DEFAULT NULL,
  `bcc_recipients` text DEFAULT NULL,
  `subject` varchar(255) DEFAULT NULL,
  `body` text DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `email_log_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_log`
--

LOCK TABLES `email_log` WRITE;
/*!40000 ALTER TABLE `email_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_log_users`
--

DROP TABLE IF EXISTS `email_log_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_log_users` (
  `email_log_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  UNIQUE KEY `email_log_user_id` (`email_log_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_log_users`
--

LOCK TABLES `email_log_users` WRITE;
/*!40000 ALTER TABLE `email_log_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_log_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_templates`
--

DROP TABLE IF EXISTS `email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_templates` (
  `email_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email_key` varchar(64) NOT NULL,
  `assoc_type` bigint(20) DEFAULT 0,
  `assoc_id` bigint(20) DEFAULT 0,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`email_id`),
  UNIQUE KEY `email_templates_email_key` (`email_key`,`assoc_type`,`assoc_id`),
  KEY `email_templates_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates`
--

LOCK TABLES `email_templates` WRITE;
/*!40000 ALTER TABLE `email_templates` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_templates_data`
--

DROP TABLE IF EXISTS `email_templates_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_templates_data` (
  `email_key` varchar(64) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT 'en_US',
  `assoc_type` bigint(20) DEFAULT 0,
  `assoc_id` bigint(20) DEFAULT 0,
  `subject` varchar(120) NOT NULL,
  `body` text DEFAULT NULL,
  UNIQUE KEY `email_templates_data_pkey` (`email_key`,`locale`,`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates_data`
--

LOCK TABLES `email_templates_data` WRITE;
/*!40000 ALTER TABLE `email_templates_data` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_templates_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_templates_default`
--

DROP TABLE IF EXISTS `email_templates_default`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_templates_default` (
  `email_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email_key` varchar(64) NOT NULL,
  `can_disable` tinyint(4) NOT NULL DEFAULT 1,
  `can_edit` tinyint(4) NOT NULL DEFAULT 1,
  `from_role_id` bigint(20) DEFAULT NULL,
  `to_role_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`email_id`),
  KEY `email_templates_default_email_key` (`email_key`)
) ENGINE=MyISAM AUTO_INCREMENT=107 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates_default`
--

LOCK TABLES `email_templates_default` WRITE;
/*!40000 ALTER TABLE `email_templates_default` DISABLE KEYS */;
INSERT INTO `email_templates_default` VALUES (1,'NOTIFICATION',0,1,NULL,NULL),(2,'NOTIFICATION_MAILLIST',0,1,NULL,NULL),(3,'NOTIFICATION_MAILLIST_WELCOME',0,1,NULL,NULL),(97,'REVIEW_REQUEST_REMIND_AUTO',0,1,NULL,4096),(5,'PASSWORD_RESET_CONFIRM',0,1,NULL,NULL),(6,'PASSWORD_RESET',0,1,NULL,NULL),(7,'USER_REGISTER',0,1,NULL,NULL),(8,'USER_VALIDATE',0,1,NULL,NULL),(9,'REVIEWER_REGISTER',0,1,NULL,NULL),(10,'PUBLISH_NOTIFY',0,1,NULL,NULL),(11,'LOCKSS_EXISTING_ARCHIVE',0,1,NULL,NULL),(12,'LOCKSS_NEW_ARCHIVE',0,1,NULL,NULL),(13,'SUBMISSION_ACK',1,1,NULL,65536),(14,'SUBMISSION_UNSUITABLE',1,1,512,65536),(15,'SUBMISSION_COMMENT',0,1,NULL,NULL),(16,'SUBMISSION_DECISION_REVIEWERS',0,1,512,4096),(17,'EDITOR_ASSIGN',1,1,256,512),(18,'REVIEW_CANCEL',1,1,512,4096),(19,'REVIEW_REQUEST',1,1,512,4096),(20,'REVIEW_REQUEST_ONECLICK',1,1,512,4096),(21,'REVIEW_REQUEST_ATTACHED',0,1,512,4096),(22,'REVIEW_CONFIRM',1,1,4096,512),(23,'REVIEW_DECLINE',1,1,4096,512),(24,'REVIEW_COMPLETE',1,1,4096,512),(25,'REVIEW_ACK',1,1,512,4096),(26,'REVIEW_REMIND',0,1,512,4096),(27,'REVIEW_REMIND_AUTO',0,1,NULL,4096),(28,'REVIEW_REMIND_ONECLICK',0,1,512,4096),(29,'REVIEW_REMIND_AUTO_ONECLICK',0,1,NULL,4096),(30,'EDITOR_DECISION_ACCEPT',0,1,512,65536),(31,'EDITOR_DECISION_REVISIONS',0,1,512,65536),(32,'EDITOR_DECISION_RESUBMIT',0,1,512,65536),(33,'EDITOR_DECISION_DECLINE',0,1,512,65536),(34,'COPYEDIT_REQUEST',1,1,512,8192),(35,'COPYEDIT_COMPLETE',1,1,8192,65536),(36,'COPYEDIT_ACK',1,1,512,8192),(37,'COPYEDIT_AUTHOR_REQUEST',1,1,512,65536),(38,'COPYEDIT_AUTHOR_COMPLETE',1,1,65536,512),(39,'COPYEDIT_AUTHOR_ACK',1,1,512,65536),(40,'COPYEDIT_FINAL_REQUEST',1,1,512,8192),(41,'COPYEDIT_FINAL_COMPLETE',1,1,8192,512),(42,'COPYEDIT_FINAL_ACK',1,1,512,8192),(43,'LAYOUT_REQUEST',1,1,512,768),(44,'LAYOUT_COMPLETE',1,1,768,512),(45,'LAYOUT_ACK',1,1,512,768),(46,'PROOFREAD_AUTHOR_REQUEST',1,1,512,65536),(47,'PROOFREAD_AUTHOR_COMPLETE',1,1,65536,512),(48,'PROOFREAD_AUTHOR_ACK',1,1,512,65536),(49,'PROOFREAD_REQUEST',1,1,512,12288),(50,'PROOFREAD_COMPLETE',1,1,12288,512),(51,'PROOFREAD_ACK',1,1,512,12288),(52,'PROOFREAD_LAYOUT_REQUEST',1,1,512,768),(53,'PROOFREAD_LAYOUT_COMPLETE',1,1,768,512),(54,'PROOFREAD_LAYOUT_ACK',1,1,512,768),(55,'EMAIL_LINK',0,1,1048576,NULL),(56,'SUBSCRIPTION_NOTIFY',0,1,NULL,1048576),(57,'OPEN_ACCESS_NOTIFY',0,1,NULL,1048576),(58,'SUBSCRIPTION_BEFORE_EXPIRY',0,1,NULL,1048576),(59,'SUBSCRIPTION_AFTER_EXPIRY',0,1,NULL,1048576),(60,'SUBSCRIPTION_AFTER_EXPIRY_LAST',0,1,NULL,1048576),(61,'SUBSCRIPTION_PURCHASE_INDL',0,1,NULL,2097152),(62,'SUBSCRIPTION_PURCHASE_INSTL',0,1,NULL,2097152),(63,'SUBSCRIPTION_RENEW_INDL',0,1,NULL,2097152),(64,'SUBSCRIPTION_RENEW_INSTL',0,1,NULL,2097152),(65,'CITATION_EDITOR_AUTHOR_QUERY',0,1,NULL,NULL),(66,'SWORD_DEPOSIT_NOTIFICATION',0,1,NULL,NULL),(67,'BFR_REVIEW_REMINDER',0,1,256,65536),(68,'BFR_REVIEW_REMINDER_LATE',0,1,256,65536),(69,'BFR_BOOK_ASSIGNED',0,1,256,65536),(70,'BFR_BOOK_DENIED',0,1,256,65536),(71,'BFR_BOOK_REQUESTED',0,1,65536,256),(72,'BFR_BOOK_MAILED',0,1,256,65536),(73,'BFR_REVIEWER_REMOVED',0,1,256,65536),(74,'THESIS_ABSTRACT_CONFIRM',0,1,NULL,NULL),(75,'MANUAL_PAYMENT_NOTIFICATION',0,1,NULL,NULL),(76,'PAYPAL_INVESTIGATE_PAYMENT',0,1,NULL,NULL),(103,'EDITOR_RECOMMENDATION',0,1,17,16),(102,'EDITOR_DECISION_INITIAL_DECLINE',0,1,512,65536),(104,'REVISED_VERSION_NOTIFY',0,1,NULL,512),(81,'REVIEW_REQUEST_ONECLICK_SUBSEQUENT',1,1,512,4096),(82,'REVIEW_REQUEST_ATTACHED_SUBSEQUENT',0,1,512,4096),(83,'REVIEW_REQUEST_SUBSEQUENT',1,1,512,4096),(98,'REVIEW_REQUEST_REMIND_AUTO_ONECLICK',0,1,NULL,4096),(86,'OFR_REVIEW_REMINDER',0,1,256,65536),(87,'OFR_REVIEW_REMINDER_LATE',0,1,256,65536),(88,'OFR_OBJECT_ASSIGNED',0,1,256,65536),(89,'OFR_OBJECT_DENIED',0,1,256,65536),(90,'OFR_OBJECT_REQUESTED',0,1,65536,256),(91,'OFR_OBJECT_MAILED',0,1,256,65536),(92,'OFR_REVIEWER_REMOVED',0,1,256,65536),(93,'LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION',1,1,NULL,NULL),(94,'LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION',1,1,NULL,NULL),(95,'LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION',1,1,NULL,NULL),(96,'NOTIFICATION_CENTER_DEFAULT',0,1,NULL,NULL),(99,'EDITOR_DECISION_SEND_TO_EXTERNAL',0,1,17,65536),(100,'EDITOR_DECISION_SEND_TO_PRODUCTION',0,1,17,65536),(101,'SUBMISSION_ACK_NOT_USER',1,1,NULL,65536),(105,'ORCID_COLLECT_AUTHOR_ID',0,1,NULL,NULL),(106,'ORCID_REQUEST_AUTHOR_AUTHORIZATION',0,1,NULL,NULL);
/*!40000 ALTER TABLE `email_templates_default` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_templates_default_data`
--

DROP TABLE IF EXISTS `email_templates_default_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_templates_default_data` (
  `email_key` varchar(64) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT 'en_US',
  `subject` varchar(120) NOT NULL,
  `body` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  UNIQUE KEY `email_templates_default_data_pkey` (`email_key`,`locale`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates_default_data`
--

LOCK TABLES `email_templates_default_data` WRITE;
/*!40000 ALTER TABLE `email_templates_default_data` DISABLE KEYS */;
INSERT INTO `email_templates_default_data` VALUES ('NOTIFICATION','en_US','New notification from {$siteTitle}','You have a new notification from {$siteTitle}:<br />\n<br />\n{$notificationContents}<br />\n<br />\nLink: {$url}<br />\n<br />\n{$principalContactSignature}','The email is sent to registered users that have selected to have this type of notification emailed to them.'),('NOTIFICATION_MAILLIST','en_US','New notification from {$siteTitle}','You have a new notification from {$siteTitle}:<br />\n--<br />\n{$notificationContents}<br />\n<br />\nLink: {$url}<br />\n--<br />\n<br />\nIf you wish to stop receiving notification emails, please go to {$unsubscribeLink} and enter your email address and password.<br />\n<br />\n{$principalContactSignature}','This email is sent to unregistered users on the notification mailing list.'),('NOTIFICATION_MAILLIST_WELCOME','en_US','Welcome to the the {$siteTitle} mailing list!','You have signed up to receive notifications from {$siteTitle}.<br />\n			<br />\nPlease click on this link to confirm your request and add your email address to the mailing list: {$confirmLink}<br />\n<br />\nIf you wish to stop receiving notification emails, please go to {$unsubscribeLink} and enter your email address and password.<br />\n<br />\nYour password for disabling notification emails is: {$password}<br />\n<br />\n{$principalContactSignature}','This email is sent to an unregistered user who just registered with the notification mailing list.'),('REVIEW_REQUEST_REMIND_AUTO','ar_IQ','Ø¥Ù„ØªÙ…Ø§Ø³ ØªØ­ÙƒÙŠÙ… Ù…Ø¤Ù„ÙŽÙ‘Ù','{$reviewerName}:<br />\n<br />\nÙƒÙ„ÙŠ Ø«Ù‚Ø© Ø¨Ø£Ù†Ùƒ Ø³ØªÙƒÙˆÙ† Ù…Ø­ÙƒÙ…Ø§Ù‹ Ù…ØªÙ…ÙŠØ²Ø§Ù‹ Ù„Ù„Ù…Ø¤Ù„ÙŽÙ‘Ù Ø§Ù„Ù…ÙˆØ³ÙˆÙ… \"{$submissionTitle}ØŒ\" ÙˆØ§Ù„Ø°ÙŠ Ø£ÙØ±Ø³Ù„ Ø·Ù„Ø¨ Ù„Ù†Ø´Ø±Ù‡ Ø¥Ù„Ù‰ {$contextName}. Ø¥Ù† Ù…Ù„Ø®Øµ Ù…ÙˆØ¶ÙˆØ¹Ù‡ Ù…Ø¨ÙŠÙ† Ø£Ø¯Ù†Ø§Ù‡ØŒ ÙˆØ£Ù†Ø§ Ø£Ø±Ø¬Ùˆ Ø£Ù†Ùƒ Ø³ØªØ£Ø®Ø° Ø¹Ù„Ù‰ Ø¹Ø§ØªÙ‚Ùƒ Ø¥Ù†Ø¬Ø§Ø² Ù‡Ø°Ù‡ Ø§Ù„Ù…Ù‡Ù…Ø© Ù„Ù…Ø¬Ù„ØªÙ†Ø§.<br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ø£Ø¯Ø®Ù„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© Ø¨Ø¹Ø¯ Ù…Ø±ÙˆØ± {$responseDueDate} Ø£Ø³Ø¨ÙˆØ¹/Ø£Ø³Ø§Ø¨ÙŠØ¹ Ù„ØªØ¨ÙŠÙ† Ù„Ù†Ø§ ÙÙŠÙ…Ø§ Ù„Ùˆ Ø£Ù†Ùƒ Ù…ÙˆØ§ÙÙ‚ Ø¹Ù„Ù‰ Ù‡Ø°Ø§ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø£Ù… Ù„Ø§ØŒ ÙƒÙ…Ø§ ÙŠÙ…ÙƒÙ†Ùƒ Ø£ÙŠØ¶Ø§Ù‹ Ø¹Ø¨Ø± Ø§Ù„Ø±Ø§Ø¨Ø· Ø£Ø¯Ù†Ø§Ù‡ Ø§Ù„ÙˆØµÙˆÙ„ Ø¥Ù„Ù‰ Ù…ØªØ¹Ù„Ù‚Ø§Øª Ø·Ù„Ø¨ Ø§Ù„Ù†Ø´Ø± Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ ÙˆØªØ«Ø¨ÙŠØª ØªÙ‚ÙŠÙŠÙ…Ùƒ Ù„Ù‡ ÙˆÙ…Ù„Ø§Ø­Ø¸Ø§ØªÙƒ Ø¨Ø´Ø£Ù†Ù‡. Ø§Ù„Ø±Ø§Ø¨Ø· Ù‡Ùˆ: {$contextUrl}<br />\n<br />\nØ£Ù…Ø§ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù†ÙØ³Ù‡ØŒ ÙØ¥Ù† Ù…ÙˆØ¹Ø¯Ù‡ Ø§Ù„Ù†Ù‡Ø§Ø¦ÙŠ Ø³ÙŠÙƒÙˆÙ†: {$reviewDueDate}.<br />\n<br />\nØ¥Ù† Ù„Ù… ÙŠÙƒÙ† Ø§Ø³Ù… Ø§Ù„Ø¯Ø®ÙˆÙ„ ÙˆÙƒÙ„Ù…Ø© Ø§Ù„Ù…Ø±ÙˆØ± Ù…ØªÙˆÙØ±ÙŠÙ† Ø¨ÙŠÙ† ÙŠØ¯ÙŠÙƒ Ù„ØªØªÙ…ÙƒÙ† Ù…Ù† Ø§Ù„ÙˆÙ„ÙˆØ¬ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø©ØŒ Ø¨Ø¥Ù…ÙƒØ§Ù†Ùƒ Ø§ØªØ¨Ø§Ø¹ Ø§Ù„Ø±Ø§Ø¨Ø· Ø£Ø¯Ù†Ø§Ù‡ Ù„Ø¥Ø¹Ø§Ø¯Ø© ØªØ¹ÙŠÙŠÙ† ÙƒÙ„Ù…Ø© Ù…Ø±ÙˆØ±Ùƒ (Ø§Ù„ØªÙŠ Ø¹Ù†Ø¯Ù‡Ø§ Ø³ØªÙØ±Ø³Ù„ Ø¥Ù„ÙŠÙƒ Ù…Ø¹ Ø§Ø³Ù… Ø§Ù„Ø¯Ø®ÙˆÙ„) Ø¹Ø¨Ø± Ø§Ù„Ø¨Ø±ÙŠØ¯ Ø§Ù„Ø§Ù„ÙƒØªØ±ÙˆÙ†ÙŠ. {$passwordResetUrl}<br />\n<br />\nØ±Ø§Ø¨Ø· Ø·Ù„Ø¨ Ø§Ù„ØªÙ‚Ø¯ÙŠÙ…: {$submissionReviewUrl}<br />\n<br />\nÙ†Ø´ÙƒØ± Ù„Ùƒ Ø§Ù‡ØªÙ…Ø§Ù…Ùƒ Ø¨Ø§Ù„ØªÙ…Ø§Ø³Ù†Ø§ Ù‡Ø°Ø§.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ±Ø³Ù„Ù‡Ø§ Ù…Ø­Ø±Ø± Ù‚Ø³Ù… Ø§Ù„Ù…Ø¬Ù„Ø© Ø¥Ù„Ù‰ Ø£Ø­Ø¯ Ø§Ù„Ù…Ø­ÙƒÙ…ÙŠÙ† Ù„ÙŠÙ„ØªÙ…Ø³ Ù…Ù†Ù‡ Ù‚Ø¨ÙˆÙ„ Ù…Ù‡Ù…Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø£Ùˆ Ø±ÙØ¶Ù‡Ø§. ÙˆÙ‡ÙŠ ØªÙˆÙØ± Ù…Ø¹Ù„ÙˆÙ…Ø§Øª Ù…ØªØ¹Ù„Ù‚Ø© Ø¨Ø·Ù„Ø¨ Ø§Ù„Ù†Ø´Ø± Ù…Ù† Ø¹Ù†ÙˆØ§Ù†Ù‡ ÙˆÙ…Ù„Ø®ØµÙ‡ØŒ ÙØ¶Ù„Ø§Ù‹ Ø¹Ù† Ù…ÙˆØ¹Ø¯ Ø§Ø³ØªÙŠØ¬Ø§Ø¨ Ø§Ù„ØªØ­ÙƒÙŠÙ… ÙˆØ±Ø§Ø¨Ø· Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ø§Ù„Ù…ÙˆÙ‚Ø¹ Ù„Ù„Ø§Ø·Ù„Ø§Ø¹ Ø¹Ù„Ù‰ Ø§Ù„Ø·Ù„Ø¨ Ù†ÙØ³Ù‡. Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªØ³ØªØ¹Ù…Ù„ Ø¹Ù†Ø¯Ù…Ø§ ÙŠÙƒÙˆÙ† Ø§Ù„ØªØ­ÙƒÙŠÙ… ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø© Ù…ØªØ¨Ø¹Ø§Ù‹ Ù„Ø¹Ù…Ù„ÙŠØ© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø§Ù„Ù‚ÙŠØ§Ø³ÙŠØ© ÙˆØ°Ù„Ùƒ Ø¹Ø¨Ø± ØªÙØ¹ÙŠÙ„Ù‡ Ø¶Ù…Ù† Ø¥Ø¹Ø¯Ø§Ø¯Ø§Øª Ø§Ù„Ù…Ø¬Ù„Ø©ØŒ Ø§Ù„Ù…Ø±Ø­Ù„Ø© (2) Ù…Ù†Ù‡Ø§. (Ø¨Ø®Ù„Ø§Ù Ø°Ù„Ùƒ Ø£Ù†Ø¸Ø± REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('PASSWORD_RESET_CONFIRM','en_US','Password Reset Confirmation','We have received a request to reset your password for the {$siteTitle} web site.<br />\n<br />\nIf you did not make this request, please ignore this email and your password will not be changed. If you wish to reset your password, click on the below URL.<br />\n<br />\nReset my password: {$url}<br />\n<br />\n{$principalContactSignature}','This email is sent to a registered user when they indicate that they have forgotten their password or are unable to login. It provides a URL they can follow to reset their password.'),('PASSWORD_RESET','en_US','Password Reset','Your password has been successfully reset for use with the {$siteTitle} web site. Please retain this username and password, as it is necessary for all work with the journal.<br />\n<br />\nYour username: {$username}<br />\nYour new password: {$password}<br />\n<br />\n{$principalContactSignature}','This email is sent to a registered user when they have successfully reset their password following the process described in the PASSWORD_RESET_CONFIRM email.'),('USER_REGISTER','en_US','Journal Registration','{$userFullName}<br />\n<br />\nYou have now been registered as a user with {$contextName}. We have included your username and password in this email, which are needed for all work with this journal through its website. At any point, you can ask to be removed from the journal\'s list of users by contacting me.<br />\n<br />\nUsername: {$username}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$principalContactSignature}','This email is sent to a newly registered user to welcome them to the system and provide them with a record of their username and password.'),('USER_VALIDATE','en_US','Validate Your Account','{$userFullName}<br />\n<br />\nYou have created an account with {$contextName}, but before you can start using it, you need to validate your email account. To do this, simply follow the link below:<br />\n<br />\n{$activateUrl}<br />\n<br />\nThank you,<br />\n{$principalContactSignature}','This email is sent to a newly registered user to welcome them to the system and provide them with a record of their username and password.'),('REVIEWER_REGISTER','en_US','Registration as Reviewer with {$contextName}','In light of your expertise, we have taken the liberty of registering your name in the reviewer database for {$contextName}. This does not entail any form of commitment on your part, but simply enables us to approach you with a submission to possibly review. On being invited to review, you will have an opportunity to see the title and abstract of the paper in question, and you\'ll always be in a position to accept or decline the invitation. You can also ask at any point to have your name removed from this reviewer list.<br />\n<br />\nWe are providing you with a username and password, which is used in all interactions with the journal through its website. You may wish, for example, to update your profile, including your reviewing interests.<br />\n<br />\nUsername: {$username}<br />\nPassword: {$password}<br />\n<br />\nThank you,<br />\n{$principalContactSignature}','This email is sent to a newly registered reviewer to welcome them to the system and provide them with a record of their username and password.'),('PUBLISH_NOTIFY','en_US','New Issue Published','Readers:<br />\n<br />\n{$contextName} has just published its latest issue at {$contextUrl}. We invite you to review the Table of Contents here and then visit our web site to review articles and items of interest.<br />\n<br />\nThanks for the continuing interest in our work,<br />\n{$editorialContactSignature}','This email is sent to registered readers via the \"Notify Users\" link in the Editor\'s User Home. It notifies readers of a new issue and invites them to visit the journal at a supplied URL.'),('LOCKSS_EXISTING_ARCHIVE','en_US','Archiving Request for {$contextName}','Dear [University Librarian]<br />\n<br />\n{$contextName} <{$contextUrl}>, is a journal for which a member of your faculty, [name of member], serves as a [title of position]. The journal is seeking to establish a LOCKSS (Lots of Copies Keep Stuff Safe) compliant archive with this and other university libraries.<br />\n<br />\n[Brief description of journal]<br />\n<br />\nThe URL to the LOCKSS Publisher Manifest for our journal is: {$contextUrl}/gateway/lockss<br />\n<br />\nWe understand that you are already participating in LOCKSS. If we can provide any additional metadata for purposes of registering our journal with your version of LOCKSS, we would be happy to provide it.<br />\n<br />\nThank you,<br />\n{$principalContactSignature}','This email requests the keeper of a LOCKSS archive to consider including this journal in their archive. It provides the URL to the journal\'s LOCKSS Publisher Manifest.'),('LOCKSS_NEW_ARCHIVE','en_US','Archiving Request for {$contextName}','Dear [University Librarian]<br />\n<br />\n{$contextName} <{$contextUrl}>, is a journal for which a member of your faculty, [name of member] serves as a [title of position]. The journal is seeking to establish a LOCKSS (Lots of Copies Keep Stuff Safe) compliant archive with this and other university libraries.<br />\n<br />\n[Brief description of journal]<br />\n<br />\nThe LOCKSS Program <http://lockss.org/>, an international library/publisher initiative, is a working example of a distributed preservation and archiving repository, additional details are below. The software, which runs on an ordinary personal computer is free; the system is easily brought on-line; very little ongoing maintenance is required.<br />\n<br />\nTo assist in the archiving of our journal, we invite you to become a member of the LOCKSS community, to help collect and preserve titles produced by your faculty and by other scholars worldwide. To do so, please have someone on your staff visit the LOCKSS site for information on how this system operates. I look forward to hearing from you on the feasibility of providing this archiving support for this journal.<br />\n<br />\nThank you,<br />\n{$principalContactSignature}','This email encourages the recipient to participate in the LOCKSS initiative and include this journal in the archive. It provides information about the LOCKSS initiative and ways to become involved.'),('SUBMISSION_ACK','en_US','Submission Acknowledgement','{$authorName}:<br />\n<br />\nThank you for submitting the manuscript, \"{$submissionTitle}\" to {$contextName}. With the online journal management system that we are using, you will be able to track its progress through the editorial process by logging in to the journal web site:<br />\n<br />\nManuscript URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$authorUsername}<br />\n<br />\nIf you have any questions, please contact me. Thank you for considering this journal as a venue for your work.<br />\n<br />\n{$editorialContactSignature}','This email, when enabled, is automatically sent to an author when he or she completes the process of submitting a manuscript to the journal. It provides information about tracking the submission through the process and thanks the author for the submission.'),('SUBMISSION_UNSUITABLE','en_US','Unsuitable Submission','{$authorName}:<br />\n<br />\nAn initial review of \"{$submissionTitle}\" has made it clear that this submission does not fit within the scope and focus of {$contextName}. I recommend that you consult the description of this journal under About, as well as its current contents, to learn more about the work that we publish. You might also consider submitting this manuscript to another, more suitable journal.<br />\n<br />\n{$editorialContactSignature}',''),('SUBMISSION_COMMENT','en_US','Submission Comment','{$name}:<br />\n<br />\n{$commentName} has added a comment to the submission, \"{$submissionTitle}\" in {$contextName}:<br />\n<br />\n{$comments}','This email notifies the various people involved in a submission\'s editing process that a new comment has been posted.'),('SUBMISSION_DECISION_REVIEWERS','en_US','Decision on \"{$submissionTitle}\"','As one of the reviewers for the submission, \"{$submissionTitle},\" to {$contextName}, I am sending you the reviews and editorial decision sent to the author of this piece. Thank you again for your important contribution to this process.<br />\n <br />\n{$editorialContactSignature}<br />\n<br />\n{$comments}','This email notifies the reviewers of a submission that the review process has been completed. It includes information about the article and the decision reached, and thanks the reviewers for their contributions.'),('EDITOR_ASSIGN','en_US','Editorial Assignment','{$editorialContactName}:<br />\n<br />\nThe submission, \"{$submissionTitle},\" to {$contextName} has been assigned to you to see through the editorial process in your role as Section Editor.  <br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$editorUsername}<br />\n<br />\nThank you,<br />\n{$editorialContactSignature}','This email notifies a Section Editor that the Editor has assigned them the task of overseeing a submission through the editing process. It provides information about the submission and how to access the journal site.'),('REVIEW_REQUEST','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nI believe that you would serve as an excellent reviewer of the manuscript, \"{$submissionTitle},\" which has been submitted to {$contextName}. The submission\'s abstract is inserted below, and I hope that you will consider undertaking this important task for us.<br />\n<br />\nPlease log into the journal web site by {$responseDueDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation. The web site is {$contextUrl}<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nIf you do not have your username and password for the journal\'s web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST_ATTACHED.)'),('REVIEW_REQUEST_ONECLICK','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nI believe that you would serve as an excellent reviewer of the manuscript, \"{$submissionTitle},\" which has been submitted to {$contextName}. The submission\'s abstract is inserted below, and I hope that you will consider undertaking this important task for us.<br />\n<br />\nPlease log into the journal web site by {$responseDueDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2, and one-click reviewer access is enabled.'),('REVIEW_REQUEST_ATTACHED','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nI believe that you would serve as an excellent reviewer of the manuscript, \"{$submissionTitle},\" and I am asking that you consider undertaking this important task for us. The Review Guidelines for this journal are appended below, and the submission is attached to this email. Your review of the submission, along with your recommendation, should be emailed to me by {$reviewDueDate}.<br />\n<br />\nPlease indicate in a return email by {$responseDueDate} whether you are able and willing to do the review.<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nReview Guidelines<br />\n<br />\n{$reviewGuidelines}<br />\n','This email is sent by the Section Editor to a Reviewer to request that they accept or decline the task of reviewing a submission. It includes the submission as an attachment. This message is used when the Email-Attachment Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST.)'),('REVIEW_CANCEL','en_US','Request for Review Cancelled','{$reviewerName}:<br />\n<br />\nWe have decided at this point to cancel our request for you to review the submission, \"{$submissionTitle},\" for {$contextName}. We apologize for any inconvenience this may cause you and hope that we will be able to call on you to assist with this journal\'s review process in the future.<br />\n<br />\nIf you have any questions, please contact me.<br />\n<br />\n{$editorialContactSignature}','This email is sent by the Section Editor to a Reviewer who has a submission review in progress to notify them that the review has been cancelled.'),('REVIEW_CONFIRM','en_US','Able to Review','Editors:<br />\n<br />\nI am able and willing to review the submission, \"{$submissionTitle},\" for {$contextName}. Thank you for thinking of me, and I plan to have the review completed by its due date, {$reviewDueDate}, if not before.<br />\n<br />\n{$reviewerName}','This email is sent by a Reviewer to the Section Editor in response to a review request to notify the Section Editor that the review request has been accepted and will be completed by the specified date.'),('REVIEW_DECLINE','en_US','Unable to Review','Editors:<br />\n<br />\nI am afraid that at this time I am unable to review the submission, \"{$submissionTitle},\" for {$contextName}. Thank you for thinking of me, and another time feel free to call on me.<br />\n<br />\n{$reviewerName}','This email is sent by a Reviewer to the Section Editor in response to a review request to notify the Section Editor that the review request has been declined.'),('REVIEW_COMPLETE','en_US','Article Review Completed','{$editorialContactName}:<br />\n<br />\nI have now completed my review of \"{$submissionTitle}\" for {$contextName}, and submitted my recommendation, \"{$recommendation}.\"<br />\n<br />\n{$reviewerName}','This email is sent by a Reviewer to the Section Editor to notify them that a review has been completed and the comments and recommendations have been recorded on the journal web site.'),('REVIEW_ACK','en_US','Article Review Acknowledgement','{$reviewerName}:<br />\n<br />\nThank you for completing the review of the submission, \"{$submissionTitle},\" for {$contextName}. We appreciate your contribution to the quality of the work that we publish.<br />\n<br />\n{$editorialContactSignature}','This email is sent by a Section Editor to confirm receipt of a completed review and thank the reviewer for their contributions.'),('REVIEW_REMIND','en_US','Submission Review Reminder','{$reviewerName}:<br />\n<br />\nJust a gentle reminder of our request for your review of the submission, \"{$submissionTitle},\" for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and would be pleased to receive it as soon as you are able to prepare it.<br />\n<br />\nIf you do not have your username and password for the journal\'s web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nPlease confirm your ability to complete this vital contribution to the work of the journal. I look forward to hearing from you.<br />\n<br />\n{$editorialContactSignature}','This email is sent by a Section Editor to remind a reviewer that their review is due.'),('REVIEW_REMIND_ONECLICK','en_US','Submission Review Reminder','{$reviewerName}:<br />\n<br />\nJust a gentle reminder of our request for your review of the submission, \"{$submissionTitle},\" for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and would be pleased to receive it as soon as you are able to prepare it.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nPlease confirm your ability to complete this vital contribution to the work of the journal. I look forward to hearing from you.<br />\n<br />\n{$editorialContactSignature}','This email is sent by a Section Editor to remind a reviewer that their review is due.'),('REVIEW_REMIND_AUTO','en_US','Automated Submission Review Reminder','{$reviewerName}:<br />\n<br />\nJust a gentle reminder of our request for your review of the submission, \"{$submissionTitle},\" for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and this email has been automatically generated and sent with the passing of that date. We would still be pleased to receive it as soon as you are able to prepare it.<br />\n<br />\nIf you do not have your username and password for the journal\'s web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nPlease confirm your ability to complete this vital contribution to the work of the journal. I look forward to hearing from you.<br />\n<br />\n{$editorialContactSignature}','This email is automatically sent when a reviewer\'s due date elapses (see Review Options under Journal Setup, Step 2) and one-click reviewer access is disabled. Scheduled tasks must be enabled and configured (see the site configuration file).'),('REVIEW_REMIND_AUTO_ONECLICK','en_US','Automated Submission Review Reminder','{$reviewerName}:<br />\n<br />\nJust a gentle reminder of our request for your review of the submission, \"{$submissionTitle},\" for {$contextName}. We were hoping to have this review by {$reviewDueDate}, and this email has been automatically generated and sent with the passing of that date. We would still be pleased to receive it as soon as you are able to prepare it.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nPlease confirm your ability to complete this vital contribution to the work of the journal. I look forward to hearing from you.<br />\n<br />\n{$editorialContactSignature}','This email is automatically sent when a reviewer\'s due date elapses (see Review Options under Journal Setup, Step 2) and one-click reviewer access is enabled. Scheduled tasks must be enabled and configured (see the site configuration file).'),('EDITOR_DECISION_ACCEPT','en_US','Editor Decision','{$authorName}:<br />\n<br />\nWe have reached a decision regarding your submission to {$contextName}, \"{$submissionTitle}\".<br />\n<br />\nOur decision is to:<br />\n<br />\n{$editorialContactSignature}<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final decision regarding their submission.'),('EDITOR_DECISION_REVISIONS','en_US','Editor Decision','{$authorName}:<br />\n<br />\nWe have reached a decision regarding your submission to {$contextName}, \"{$submissionTitle}\".<br />\n<br />\nOur decision is to:<br />\n<br />\n{$editorialContactSignature}<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final decision regarding their submission.'),('EDITOR_DECISION_RESUBMIT','en_US','Editor Decision','{$authorName}:<br />\n<br />\nWe have reached a decision regarding your submission to {$contextName}, \"{$submissionTitle}\".<br />\n<br />\nOur decision is to:<br />\n<br />\n{$editorialContactSignature}<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final decision regarding their submission.'),('EDITOR_DECISION_DECLINE','en_US','Editor Decision','{$authorName}:<br />\n<br />\nWe have reached a decision regarding your submission to {$contextName}, \"{$submissionTitle}\".<br />\n<br />\nOur decision is to:<br />\n<br />\n{$editorialContactSignature}<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final decision regarding their submission.'),('COPYEDIT_REQUEST','en_US','Copyediting Request','{$participantName}:<br />\n<br />\nI would ask that you undertake the copyediting of \"{$submissionTitle}\" for {$contextName} by following these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the journal and click on the File that appears in Step 1.<br />\n3. Consult Copyediting Instructions posted on webpage.<br />\n4. Open the downloaded file and copyedit, while adding Author Queries as needed. <br />\n5. Save copyedited file, and upload to Step 1 of Copyediting.<br />\n6. Send the COMPLETE email to the editor.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$participantUsername}<br />\n<br />\n{$editorialContactSignature}','This email is sent by a Section Editor to a submission\'s Copyeditor to request that they begin the copyediting process. It provides information about the submission and how to access it.'),('COPYEDIT_COMPLETE','en_US','Copyediting Completed','{$editorialContactName}:<br />\n<br />\nWe have now copyedited your submission \"{$submissionTitle}\" for {$contextName}. To review the proposed changes and respond to Author Queries, please follow these steps:<br />\n<br />\n1. Log into the journal using URL below with your username and password (use Forgot link if needed).<br />\n2. Click on the file at 1. Initial Copyedit File to download and open copyedited version. <br />\n3. Review the copyediting, making changes using Track Changes in Word, and answer queries. <br />\n4. Save file to desktop and upload it in 2. Author Copyedit.<br />\n5. Click the email icon under COMPLETE and send email to the editor.<br />\n<br />\nThis is the last opportunity that you have to make substantial changes. You will be asked at a later stage to proofread the galleys, but at that point only minor typographical and layout errors can be corrected.<br />\n<br />\nManuscript URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$authorUsername}<br />\n<br />\nIf you are unable to undertake this work at this time or have any questions,<br />\nplease contact me. Thank you for your contribution to this journal.<br />\n<br />\n{$participantName}',''),('COPYEDIT_ACK','en_US','Copyediting Acknowledgement','{$participantName}:<br />\n<br />\nThank you for copyediting the manuscript, \"{$submissionTitle},\" for {$contextName}. It will make an important contribution to the quality of this journal.<br />\n<br />\n{$editorialContactSignature}','This email is sent by the Section Editor to a submission\'s Copyeditor to acknowledge that the Copyeditor has successfully completed the copyediting process and thank them for their contribution.'),('COPYEDIT_AUTHOR_REQUEST','en_US','Copyediting Review Request','{$authorName}:<br />\n<br />\nYour submission \"{$submissionTitle}\" for {$contextName} has been through the first step of copyediting, and is available for you to review by following these steps.<br />\n<br />\n1. Click on the Submission URL below.<br />\n2. Log into the journal and click on the File that appears in Step 1.<br />\n3. Open the downloaded submission.<br />\n4. Review the text, including copyediting proposals and Author Queries.<br />\n5. Make any copyediting changes that would further improve the text.<br />\n6. When completed, upload the file in Step 2.<br />\n7. Click on METADATA to check indexing information for completeness and accuracy.<br />\n8. Send the COMPLETE email to the editor and copyeditor.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$authorUsername}<br />\n<br />\nThis is the last opportunity to make substantial copyediting changes to the submission. The proofreading stage, that follows the preparation of the galleys, is restricted to correcting typographical and layout errors.<br />\n<br />\nIf you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this journal.<br />\n<br />\n{$editorialContactSignature}','This email is sent by the Section Editor to a submission\'s Author to request that they proofread the work of the copyeditor. It provides access information for the manuscript and warns that this is the last opportunity the author has to make substantial changes.'),('COPYEDIT_AUTHOR_COMPLETE','en_US','Copyediting Review Completed','{$editorialContactName}:<br />\n<br />\nI have now reviewed the copyediting of the manuscript, \"{$submissionTitle},\" for {$contextName}, and it is ready for the final round of copyediting and preparation for Layout.<br />\n<br />\nThank you for this contribution to my work,<br />\n{$authorName}','This email is sent by the Author to the Section Editor to notify them that the Author\'s copyediting process has been completed.'),('COPYEDIT_AUTHOR_ACK','en_US','Copyediting Review Acknowledgement','{$authorName}:<br />\n<br />\nThank you for reviewing the copyediting of your manuscript, \"{$submissionTitle},\" for {$contextName}. We look forward to publishing this work.<br />\n<br />\n{$editorialContactSignature}','This email is sent by the Section Editor to a submission\'s Author to confirm completion of the Author\'s copyediting process and thank them for their contribution.'),('COPYEDIT_FINAL_REQUEST','en_US','Copyediting Final Review','{$participantName}:<br />\n<br />\nThe author and editor have now completed their copyediting review of \"{$submissionTitle}\" for {$contextName}. A \"clean copy\" now needs to be prepared for Layout by going through the following steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the journal and click on the File that appears in Step 2.<br />\n3. Open the downloaded file and incorporate all copyedits and query responses.<br />\n4. Save clean file, and upload to Step 3 of Copyediting.<br />\n5. Click on METADATA to check indexing information (saving any corrections).<br />\n6. Send the COMPLETE email to the editor.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$participantUsername}<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Copyeditor requests that they perform a final round of copyediting on a submission before it enters the layout process.'),('COPYEDIT_FINAL_COMPLETE','en_US','Copyediting Final Review Completed','{$editorialContactName}:<br />\n<br />\nI have now prepared a clean, copyedited version of the manuscript, \"{$submissionTitle},\" for {$contextName}. It is ready for Layout and the preparation of the galleys.<br />\n<br />\n{$participantName}','This email from the Copyeditor to the Section Editor notifies them that the final round of copyediting has been completed and that the layout process may now begin.'),('COPYEDIT_FINAL_ACK','en_US','Copyediting Final Review Acknowledgement','{$participantName}:<br />\n<br />\nThank you for completing the copyediting of the manuscript, \"{$submissionTitle},\" for {$contextName}. This preparation of a \"clean copy\" for Layout is an important step in the editorial process.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Copyeditor acknowledges completion of the final round of copyediting and thanks them for their contribution.'),('LAYOUT_REQUEST','en_US','Request Galleys','{$participantName}:<br />\n<br />\nThe submission \"{$submissionTitle}\" to {$contextName} now needs galleys laid out by following these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the journal and use the Layout Version file to create the galleys according to the journal\'s standards.<br />\n3. Send the COMPLETE email to the editor.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubmission URL: {$submissionLayoutUrl}<br />\nUsername: {$participantUsername}<br />\n<br />\nIf you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this journal.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Layout Editor notifies them that they have been assigned the task of performing layout editing on a submission. It provides information about the submission and how to access it.'),('LAYOUT_COMPLETE','en_US','Galleys Complete','{$editorialContactName}:<br />\n<br />\nGalleys have now been prepared for the manuscript, \"{$submissionTitle},\" for {$contextName} and are ready for proofreading. <br />\n<br />\nIf you have any questions, please contact me.<br />\n<br />\n{$participantName}','This email from the Layout Editor to the Section Editor notifies them that the layout process has been completed.'),('LAYOUT_ACK','en_US','Layout Acknowledgement','{$participantName}:<br />\n<br />\nThank you for preparing the galleys for the manuscript, \"{$submissionTitle},\" for {$contextName}. This is an important contribution to the publishing process.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Layout Editor acknowledges completion of the layout editing process and thanks the layout editor for their contribution.'),('PROOFREAD_AUTHOR_REQUEST','en_US','Proofreading Request (Author)','{$authorName}:<br />\n<br />\nYour submission \"{$submissionTitle}\" to {$contextName} now needs to be proofread by folllowing these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the journal and view PROOFING INSTRUCTIONS<br />\n3. Click on VIEW PROOF in Layout and proof the galley in the one or more formats used.<br />\n4. Enter corrections (typographical and format) in Proofreading Corrections.<br />\n5. Save and email corrections to Layout Editor and Proofreader.<br />\n6. Send the COMPLETE email to the editor.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$authorUsername}<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Author notifies them that an article\'s galleys are ready for proofreading. It provides information about the article and how to access it.'),('PROOFREAD_AUTHOR_COMPLETE','en_US','Proofreading Completed (Author)','{$editorialContactName}:<br />\n<br />\nI have completed proofreading the galleys for my manuscript, \"{$submissionTitle},\" for {$contextName}. The galleys are now ready to have any final corrections made by the Proofreader and Layout Editor.<br />\n<br />\n{$authorName}','This email from the Author to the Proofreader and Editor notifies them that the Author\'s round of proofreading is complete and that details can be found in the article comments.'),('PROOFREAD_AUTHOR_ACK','en_US','Proofreading Acknowledgement (Author)','{$authorName}:<br />\n<br />\nThank you for proofreading the galleys for your manuscript, \"{$submissionTitle},\" in {$contextName}. We are looking forward to publishing your work shortly.<br />\n<br />\nIf you subscribe to our notification service, you will receive an email of the Table of Contents as soon as it is published. If you have any questions, please contact me.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Author acknowledges completion of the initial proofreading process and thanks them for their contribution.'),('PROOFREAD_REQUEST','en_US','Proofreading Request','{$proofreaderName}:<br />\n<br />\nThe submission \"{$submissionTitle}\" to {$contextName} now needs to be proofread by following these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the journal and view PROOFING INSTRUCTIONS.<br />\n3. Click on VIEW PROOF in Layout and proof the galley in the one or more formats used.<br />\n4. Enter corrections (typographical and format) in Proofreading Corrections.<br />\n5. Save and email corrections to Layout Editor.<br />\n6. Send the COMPLETE email to the editor.<br />\n<br />\nManuscript URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$proofreaderUsername}<br />\n<br />\nIf you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this journal.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Proofreader requests that they perform proofreading of an article\'s galleys. It provides information about the article and how to access it.'),('PROOFREAD_COMPLETE','en_US','Proofreading Completed','{$editorialContactName}:<br />\n<br />\nI have completed proofreading the galleys for the manuscript, \"{$submissionTitle},\" for {$contextName}. The galleys are now ready to have any final corrections made by the Layout Editor.<br />\n<br />\n{$proofreaderName}','This email from the Proofreader to the Section Editor notifies them that the Proofreader has completed the proofreading process.'),('PROOFREAD_ACK','en_US','Proofreading Acknowledgement','{$proofreaderName}:<br />\n<br />\nThank you for proofreading the galleys for the manuscript, \"{$submissionTitle},\" for {$contextName}. This work makes an important contribution to the quality of this journal.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Proofreader confirms completion of the proofreader\'s proofreading process and thanks them for their contribution.'),('PROOFREAD_LAYOUT_REQUEST','en_US','Proofreading Request (Layout Editor)','{$participantName}:<br />\n<br />\nThe submission \"{$submissionTitle}\" to {$contextName} has been proofread by the author and proofreader, and any corrections should now be made by following these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Log into the journal consult Proofreading Corrections to create corrected galleys.<br />\n3. Upload the revised galleys.<br />\n4. Send the COMPLETE email in Proofreading Step 3 to the editor.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubnmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\nUsername: {$participantUsername}<br />\n<br />\nIf you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this journal.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Layout Editor notifies them that an article\'s galleys are ready for final proofreading. It provides information on the article and how to access it.'),('PROOFREAD_LAYOUT_COMPLETE','en_US','Proofreading Completed (Layout Editor)','{$editorialContactName}:<br />\n<br />\nThe galleys have now been corrected, following their proofreading, for the manuscript, \"{$submissionTitle},\" for {$contextName}. This piece is now ready to publish.<br />\n<br />\n{$participantName}','This email from the Layout Editor to the Section Editor notifies them that the final stage of proofreading has been completed and the article is now ready to publish.'),('PROOFREAD_LAYOUT_ACK','en_US','Proofreading Acknowledgement (Layout Editor)','{$participantName}:<br />\n<br />\nThank you for completing the proofreading corrections for the galleys associated with the manuscript, \"{$submissionTitle},\" for {$contextName}. This represents an important contribution to the work of this journal.<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to the Layout Editor acknowledges completion of the final stage of proofreading and thanks them for their contribution.'),('EMAIL_LINK','en_US','Article of Possible Interest','Thought you might be interested in seeing \"{$submissionTitle}\" by {$authorName} published in Vol {$volume}, No {$number} ({$year}) of {$contextName} at \"{$articleUrl}\".','This email template provides a registered reader with the opportunity to send information about an article to somebody who may be interested. It is available via the Reading Tools and must be enabled by the Journal Manager in the Reading Tools Administration page.'),('SUBSCRIPTION_NOTIFY','en_US','Subscription Notification','{$subscriberName}:<br />\n<br />\nYou have now been registered as a subscriber in our online journal management system for {$contextName}, with the following subscription:<br />\n<br />\n{$subscriptionType}<br />\n<br />\nTo access content that is available only to subscribers, simply log in to the system with your username, \"{$username}\".<br />\n<br />\nOnce you have logged in to the system you can change your profile details and password at any point.<br />\n<br />\nPlease note that if you have an institutional subscription, there is no need for users at your institution to log in, since requests for subscription content will be automatically authenticated by the system.<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionContactSignature}','This email notifies a registered reader that the Manager has created a subscription for them. It provides the journal\'s URL along with instructions for access.'),('OPEN_ACCESS_NOTIFY','en_US','Issue Now Open Access','Readers:<br />\n<br />\n{$contextName} has just made available in an open access format the following issue. We invite you to review the Table of Contents here and then visit our web site ({$contextUrl}) to review articles and items of interest.<br />\n<br />\nThanks for the continuing interest in our work,<br />\n{$editorialContactSignature}','This email is sent to registered readers who have requested to receive a notification email when an issue becomes open access.'),('SUBSCRIPTION_BEFORE_EXPIRY','en_US','Notice of Subscription Expiry','{$subscriberName}:<br />\n<br />\nYour {$contextName} subscription is about to expire.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo ensure the continuity of your access to this journal, please go to the journal website and renew your subscription. You are able to log in to the system with your username, \"{$username}\".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionContactSignature}','This email notifies a subscriber that their subscription will soon expire. It provides the journal\'s URL along with instructions for access.'),('SUBSCRIPTION_AFTER_EXPIRY','en_US','Subscription Expired','{$subscriberName}:<br />\n<br />\nYour {$contextName} subscription has expired.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo renew your subscription, please go to the journal website. You are able to log in to the system with your username, \"{$username}\".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionContactSignature}','This email notifies a subscriber that their subscription has expired. It provides the journal\'s URL along with instructions for access.'),('SUBSCRIPTION_AFTER_EXPIRY_LAST','en_US','Subscription Expired - Final Reminder','{$subscriberName}:<br />\n<br />\nYour {$contextName} subscription has expired.<br />\nPlease note that this is the final reminder that will be emailed to you.<br />\n<br />\n{$subscriptionType}<br />\nExpiry date: {$expiryDate}<br />\n<br />\nTo renew your subscription, please go to the journal website. You are able to log in to the system with your username, \"{$username}\".<br />\n<br />\nIf you have any questions, please feel free to contact me.<br />\n<br />\n{$subscriptionContactSignature}','This email notifies a subscriber that their subscription has expired. It provides the journal\'s URL along with instructions for access.'),('SUBSCRIPTION_PURCHASE_INDL','en_US','Subscription Purchase: Individual','An individual subscription has been purchased online for {$contextName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nUser:<br />\n{$userDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n','This email notifies the Subscription Manager that an individual subscription has been purchased online. It provides summary information about the subscription and a quick access link to the purchased subscription.'),('SUBSCRIPTION_PURCHASE_INSTL','en_US','Subscription Purchase: Institutional','An institutional subscription has been purchased online for {$contextName} with the following details. To activate this subscription, please use the provided Subscription URL and set the subscription status to \'Active\'.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nInstitution:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (if provided):<br />\n{$domain}<br />\n<br />\nIP Ranges (if provided):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$userDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n','This email notifies the Subscription Manager that an institutional subscription has been purchased online. It provides summary information about the subscription and a quick access link to the purchased subscription.'),('SUBSCRIPTION_RENEW_INDL','en_US','Subscription Renewal: Individual','An individual subscription has been renewed online for {$contextName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nUser:<br />\n{$userDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n','This email notifies the Subscription Manager that an individual subscription has been renewed online. It provides summary information about the subscription and a quick access link to the renewed subscription.'),('SUBSCRIPTION_RENEW_INSTL','en_US','Subscription Renewal: Institutional','An institutional subscription has been renewed online for {$contextName} with the following details.<br />\n<br />\nSubscription Type:<br />\n{$subscriptionType}<br />\n<br />\nInstitution:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (if provided):<br />\n{$domain}<br />\n<br />\nIP Ranges (if provided):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$userDetails}<br />\n<br />\nMembership Information (if provided):<br />\n{$membership}<br />\n<br />\nTo view or edit this subscription, please use the following URL.<br />\n<br />\nSubscription URL: {$subscriptionUrl}<br />\n','This email notifies the Subscription Manager that an institutional subscription has been renewed online. It provides summary information about the subscription and a quick access link to the renewed subscription.'),('CITATION_EDITOR_AUTHOR_QUERY','en_US','Citation Editing','{$authorFirstName},<br />\n<br />\nCould you please verify or provide us with the proper citation for the following reference from your article, {$submissionTitle}:<br />\n<br />\n{$rawCitation}<br />\n<br />\nThanks!<br />\n<br />\n{$userFirstName}<br />\nCopy-Editor, {$contextName}<br />\n','This email allows copyeditors to request additional information about references from authors.'),('SWORD_DEPOSIT_NOTIFICATION','en_US','Deposit Notification','Congratulations on the acceptance of your submission, \"{$submissionTitle}\", for publication in {$contextName}. If you choose, you may automatically deposit your submission in one or more repositories.<br />\n<br />\nGo to <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> to proceed.<br />\n<br />\nThis email was generated by Open Journal Systems\' SWORD deposit plugin.','This email template is used to notify an author of optional deposit points for SWORD deposits.'),('BFR_REVIEW_REMINDER','en_US','Book for Review: Due Date Reminder','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your book review of {$bookForReviewTitle} is due {$bookForReviewDueDate}.<br />\n<br />\nTo submit your book review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to a book for review author as a reminder that the due date for the review is approaching.'),('BFR_REVIEW_REMINDER_LATE','en_US','Book for Review: Review Due','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your book review of {$bookForReviewTitle} was due {$bookForReviewDueDate} but has not been received yet.<br />\n<br />\nTo submit your book review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to a book for review author after the review due date has passed.'),('BFR_BOOK_ASSIGNED','en_US','Book for Review: Book Assigned','Dear {$authorName}:<br />\n<br />\nThis email confirms that {$bookForReviewTitle} has been assigned to you for a book review to be completed by {$bookForReviewDueDate}.<br />\n<br />\nPlease ensure that your mailing address in your online user profile is up-to-date. This address will be used to mail a copy of the book to you for the review.<br />\n<br />\nThe mailing address that we currently have on file is:<br />\n{$authorMailingAddress}<br />\n<br />\nIf this address is incomplete or you are no longer at this address, please use the following user profile URL to update your address:<br />\n<br />\nUser Profile URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nTo submit your book review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to a book review author when an editor assigns the book for review to the author.'),('BFR_BOOK_DENIED','en_US','Book for Review','Dear {$authorName}:<br />\n<br />\nUnfortunately, I am not able to assign {$bookForReviewTitle} to you at this time for a book review.<br />\n<br />\nI hope you consider reviewing another book from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when a book is no longer available for review.'),('BFR_BOOK_REQUESTED','en_US','Book for Review: Book Requested','Dear {$editorName}:<br />\n<br />\nI am interested in writing a book review of {$bookForReviewTitle}.<br />\n<br />\nCan you please confirm whether this book is still available for review?<br />\n<br />\n{$authorContactSignature}','This email is sent to an editor by an author interested in writing a book review for a listed book.'),('BFR_BOOK_MAILED','en_US','Book for Review: Book Mailed','Dear {$authorName}:<br />\n<br />\nThis email confirms that I have mailed a copy of {$bookForReviewTitle} to the following mailing address from your online user profile:<br />\n{$authorMailingAddress}<br />\n <br />\nTo submit your book review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to a book review author when the editor has mailed a copy of the book to the author.'),('BFR_REVIEWER_REMOVED','en_US','Book for Review','Dear {$authorName}:<br />\n<br />\nThis email confirms that you have been removed as the book reviewer for {$bookForReviewTitle}, which will be made available to other authors interested in reviewing the book.<br />\n<br />\nI hope you consider reviewing another book from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when a book is no longer available for review.'),('THESIS_ABSTRACT_CONFIRM','en_US','Thesis Abstract Submission','This email was automatically generated by the {$contextName} thesis abstract submission form.<br />\n<br />\nPlease confirm that the submitted information is correct. Upon receiving your confirmation, the abstract will be published in the online edition of the journal.<br />\n<br />\nSimply reply to {$thesisName} ({$thesisEmail}) with the contents of this message and your confirmation, as well as any recommended clarifications or corrections.<br />\n<br />\nThank you.<br />\n<br />\n<br />\nTitle : {$title} <br />\nAuthor : {$studentName}<br />\nDegree : {$degree}<br />\nDegree Name: {$degreeName}<br />\nDepartment : {$department}<br />\nUniversity : {$university}<br />\nAcceptance Date : {$dateApproved}<br />\nSupervisor : {$supervisorName}<br />\n<br />\nAbstract<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','This email template is used to confirm a thesis abstract submission by a student. It is sent to the student\'s supervisor, who is asked to confirm the details of the submitted thesis abstract.'),('THESIS_ABSTRACT_CONFIRM','de_DE','Dissertations-Abstract-Einreichung','Diese E-Mail wurde automatisch generiert durch das Dissertations-Abstract-Einreichungsformular von {$contextName}.<br />\n<br />\nBitte bestÃ¤tigen Sie, dass die eingegebenen Informationen korrekt sind. Nachdem wir Ihre BestÃ¤tigung erhalten haben, wird das Abstract in der Onlinefassung dieser Zeitschrift verÃ¶ffentlicht.<br />\n<br />\nBitte antworten Sie einfach an {$thesisName} ({$thesisEmail}) mit dem Inhalt dieser Nachricht und mit Ihrer BestÃ¤tigung sowie mit ErgÃ¤nzungen oder Korrekturen.<br />\n<br />\nVielen Dank.<br />\n<br />\n<br />\nTitel: {$title}<br />\nAutor/in: {$studentName}<br />\nAbschluss: {$degree}<br />\nName des Abschlusses: {$degreeName}<br />\nAbteilung: {$department}<br />\nHochschule: {$university}<br />\nDatum der Annahme: {$dateApproved}<br />\nGutachter/in: {$supervisorName}<br />\n<br />\nAbstract<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Diese E-Mail-Vorlage wird benutzt, um die Einreichung eines Dissertations-Abstracts durch eine/n Dissertant/in zu bestÃ¤tigen. Sie wird an die/den Betreuer/in geschickt, die/der gebeten wird, die Details des eingereichten Dissertations-Abstracts zu bestÃ¤tigen.'),('THESIS_ABSTRACT_CONFIRM','el_GR','Î¥Ï€Î¿Î²Î¿Î»Î® Î ÎµÏÎ¯Î»Î·ÏˆÎ·Ï‚ Î”Î¹Î±Ï„ÏÎ¹Î²Î®Ï‚','Î‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î´Î·Î¼Î¹Î¿ÏÏÎ³Î·Î¸Î·ÎºÎµ Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î± Î±Ï€ÏŒ Ï„Î·Î½ Ï†ÏŒÏÎ¼Î± Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ Ï€ÎµÏÎ¯Î»Î·ÏˆÎ·Ï‚ Î´Î¹Î±Ï„ÏÎ¹Î²Î®Ï‚ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï {$contextName} .<br />\n<br />\nÎ Î±ÏÎ±ÎºÎ±Î»Î¿ÏÎ¼Îµ ÎµÏ€Î¹Î²ÎµÎ²Î±Î¹ÏŽÏƒÏ„Îµ ÏŒÏ„Î¹ Î¿Î¹ Ï€Î»Î·ÏÎ¿Ï†Î¿ÏÎ¯ÎµÏ‚ Ï„Î·Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ ÎµÎ¯Î½Î±Î¹ ÏƒÏ‰ÏƒÏ„Î­Ï‚. ÎœÎµ Ï„Î·Î½ ÎµÏ€Î¹Î²ÎµÎ²Î±Î¯Ï‰ÏƒÎ® ÏƒÎ±Ï‚, Î· Ï€ÎµÏÎ¯Î»Î·ÏˆÎ· Î¸Î± Î´Î·Î¼Î¿ÏƒÎ¹ÎµÏ…Ï„ÎµÎ¯ ÏƒÏ„Î·Î½ online Î­ÎºÎ´Î¿ÏƒÎ· Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï.<br />\n<br />\nÎ‘Ï€Î»Î¬ Î±Ï€Î±Î½Ï„Î®ÏƒÏ„Îµ ÏƒÏ„Î¿ {$thesisName} ({$thesisEmail}) Î¼Îµ Ï„Î¿ Ï€ÎµÏÎ¹ÎµÏ‡ÏŒÎ¼ÎµÎ½Î¿ Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… Î¼Î·Î½ÏÎ¼Î±Ï„Î¿Ï‚ ÎºÎ±Î¹ Ï„Î·Î½ ÎµÏ€Î¹Î²ÎµÎ²Î±Î¯Ï‰ÏƒÎ® ÏƒÎ±Ï‚, ÎºÎ±Î¸ÏŽÏ‚ Î¼Îµ Î¿Ï€Î¿Î¹Î±Î´Î®Ï€Î¿Ï„Îµ ÏƒÏÏƒÏ„Î±ÏƒÎ· Î® Î´Î¹ÏŒÏÎ¸Ï‰ÏƒÎ·.<br />\n<br />\nÎ£Î±Ï‚ ÎµÏ…Ï‡Î±ÏÎ¹ÏƒÏ„Î¿ÏÎ¼Îµ.<br />\n<br />\n<br />\nÎ¤Î¯Ï„Î»Î¿Ï‚ : {$title} <br />\nÎ£Ï…Î³Î³ÏÎ±Ï†Î­Î±Ï‚ : {$studentName}<br />\nÎ¤Î¯Ï„Î»Î¿Ï‚ : {$degree}<br />\nÎŒÎ½Î¿Î¼Î± Î¤Î¯Ï„Î»Î¿Ï…: {$degreeName}<br />\nÎ¤Î¼Î®Î¼Î± : {$department}<br />\nÎ Î±Î½ÎµÏ€Î¹ÏƒÏ„Î®Î¼Î¹Î¿ : {$university}<br />\nÎ—Î¼ÎµÏÎ¿Î¼Î·Î½Î¯Î± Î‘Ï€Î¿Î´Î¿Ï‡Î®Ï‚ : {$dateApproved}<br />\nÎ•Ï€Î¹Î²Î»Î­Ï€Ï‰Î½ : {$supervisorName}<br />\n<br />\nÎ ÎµÏÎ¯Î»Î·ÏˆÎ·<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}',''),('THESIS_ABSTRACT_CONFIRM','es_ES','EnvÃ­o de resumen de tesis','El {$contextName} formulario de envÃ­o de resumen de tesis generÃ³ de forma automÃ¡tica este correo electrÃ³nico.<br />\n<br />\nConfirme que la informaciÃ³n enviada es correcta. Tras recibir la confirmaciÃ³n, el resumen se publicarÃ¡ en la ediciÃ³n en lÃ­nea de la revista.<br />\n<br />\nResponda simplemente a {$thesisName} ({$thesisEmail}) con el contenido de este correo y la confirmaciÃ³n, asÃ­ como cualquier clarificaciÃ³n o correcciÃ³n que crea necesaria.<br />\n<br />\nGracias.<br />\n<br />\n<br />\nTÃ­tulo : {$title}<br />\nAutor/a : {$studentName}<br />\nTitulaciÃ³n : {$degree}<br />\nNombre de la titulaciÃ³n: {$degreeName}<br />\nDepartamento : {$department}<br />\nUniversidad : {$university}<br />\nFecha de aceptaciÃ³n: {$dateApproved}<br />\nSupervisor/a : {$supervisorName}<br />\n<br />\nResumen<br />\n-------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','El estudiante usÃ³ esta plantilla de correo electrÃ³nico para confirmar el envÃ­o de resumen de tesis. Se envÃ­a al director/a del estudiante, a quien se le pide que confirme los detalles del envÃ­o del resumen de tesis.'),('THESIS_ABSTRACT_CONFIRM','fa_IR','Ø³Ø§Ø¨ Ù…ÛŒØ´Ù† Ú†Ú©ÛŒØ¯Ù‡ Ù¾Ø§ÛŒØ§Ù† Ù†Ø§Ù…Ù‡','Ø§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ Ø¨Ø·ÙˆØ± Ø®ÙˆØ¯Ú©Ø§Ø± ØªÙˆØ³Ø· ÙØ±Ù… Ú†Ú©ÛŒØ¯Ù‡ Ù¾Ø§ÛŒØ§Ù† Ù†Ø§Ù…Ù‡ {$contextName} ØªÙˆÙ„ÛŒØ¯ Ø´Ø¯Ù‡ Ø§Ø³Øª.<br />\n<br />\nÙ„Ø·ÙØ§ ØªØ§ÛŒÛŒØ¯ Ú©Ù†ÛŒØ¯ Ú©Ù‡ Ø§Ø·Ù„Ø§Ø¹Ø§Øª Ø§Ø±Ø³Ø§Ù„ÛŒ ØµØ­ÛŒØ­ Ø§Ø³Øª. Ù¾Ø³ Ø§Ø² Ø¯Ø±ÛŒØ§ÙØª ØªØ§ÛŒÛŒØ¯ÛŒÙ‡ Ø´Ù…Ø§ Ú†Ú©ÛŒØ¯Ù‡ Ù¾Ø§ÛŒØ§Ù† Ù†Ø§Ù…Ù‡ Ø¨ØµÙˆØ±Ø§ Ø¢Ù† Ù„Ø§ÛŒÙ† Ù…Ù†ØªØ´Ø± Ù…ÛŒØ´ÙˆØ¯.<br />\n<br />\nÚ©Ø§ÙÛŒ Ø§Ø³Øª Ú©Ù‡ Ø¨Ù‡ {$thesisName} ({$thesisEmail}) Ù‡Ù…Ø±Ø§ Ø¨Ø§ Ù…Ø­ØªÙˆØ§ÛŒ Ø§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ Ùˆ ØªØ§ÛŒÛŒØ¯ÛŒÙ‡ Ø®ÙˆØ¯ Ù¾Ø§Ø³Ø® Ø¯Ù‡ÛŒØ¯ ØŒ Ù‡Ù…Ú†Ù†ÛŒÙ† Ù‡Ø±Ú¯ÙˆÙ†Ù‡ Ø§ØµÙ„Ø§Ø­ÛŒÙ‡ Ø§ÛŒ Ø±Ø§ Ù†ÛŒØ² Ø°Ú©Ø± Ú©Ù†ÛŒØ¯.<br />\n<br />\nØ¨Ø§ ØªØ´Ú©Ø±.<br />\n<br />\n<br />\nØ¹Ù†ÙˆØ§Ù† : {$title} <br />\nÙ†ÙˆÛŒØ³Ù†Ø¯Ù‡ : {$studentName}<br />\nØ¯Ø±Ø¬Ù‡ : {$degree}<br />\nÙ†Ø§Ù… Ø¯Ø±Ø¬Ù‡: {$degreeName}<br />\nÚ¯Ø±ÙˆÙ‡ : {$department}<br />\nØ¯Ø§Ù†Ø´Ú¯Ø§Ù‡ : {$university}<br />\nØªØ§Ø±ÛŒØ® Ù¾Ø°ÛŒØ±Ø´ : {$dateApproved}<br />\nØ§Ø³ØªØ§Ø¯ Ø±Ø§Ù‡Ù†Ù…Ø§ : {$supervisorName}<br />\n<br />\nÚ†Ú©ÛŒØ¯Ù‡<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}',''),('THESIS_ABSTRACT_CONFIRM','fr_CA','Soumission de rÃ©sumÃ© de thÃ¨se','Ce courriel a Ã©tÃ© gÃ©nÃ©rÃ© automatiquement par le formulaire de soumission de rÃ©sumÃ© de thÃ¨se de {$contextName}.<br />\n<br />\nVeuillez confirmer que l\'information soumise est correcte. Sur rÃ©ception de votre confirmation, le rÃ©sumÃ© sera publiÃ© dans l\'Ã©dition en ligne de la revue.<br />\n<br />\nRÃ©pondre Ã  {$thesisName} ({$thesisEmail}) avec le contenu de ce message et votre confirmation, ainsi qu\'avec toutes les recommendations de clarification ou de correction.<br />\n<br />\nMerci.','Ce courriel est utilisÃ© pour confirmer la soumission d\'un rÃ©sumÃ© de thÃ¨se d\'un Ã©tudiant. Cette confirmation est envoyÃ©e au superviseur de l\'Ã©tudiant Ã  qui il est demandÃ© de confirmer les dÃ©tails du rÃ©sumÃ© soumis.'),('THESIS_ABSTRACT_CONFIRM','it_IT','Richiesta conferma dei dati di una tesi','Questa e-mail Ã¨ generata automaticamente dal sistema di gestione degli abstract delle tesi di {$contextName}.<br />\n<br />\nLe chiediamo di confermare la correttezza delle informazioni inserite. Una volta ricevuta tale conferma, l\'abstract verrÃ  pubblicato nelle pagine web della rivista.<br />\n<br />\nPer confermare i dati, basta rispondere a {$thesisName} ({$thesisEmail}) con una e-mail contenente il testo di questo messaggio, la sua conferma, e ogni richiesta di correzione o chiarimento che riterrÃ  opportuna.<br />\nGeneralmente Ã¨ sufficiente cliccare sul pulsante \"Rispondi\" del client di posta elettronica.<br />\n<br />\nGrazie.<br />\n{$thesisContactSignature}<br />\n<br />\nDati della tesi<br />\nTitle : {$title} <br />\nAuthor : {$studentName}<br />\nDegree : {$degree}<br />\nDegree Name: {$degreeName}<br />\nDepartment : {$department}<br />\nUniversity : {$university}<br />\nAcceptance Date : {$dateApproved}<br />\nSupervisor : {$supervisorName}<br />\n<br />\nAbstract<br />\n--------<br />\n{$abstract}',''),('THESIS_ABSTRACT_CONFIRM','ja_JP','å­¦ä½è«–æ–‡è¦æ—¨ã®æŠ•ç¨¿','ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ {$contextName} ã®å­¦ä½è«–æ–‡è¦æ—¨æŠ•ç¨¿ãƒ•ã‚©ãƒ¼ãƒ ã‹ã‚‰è‡ªå‹•çš„ã«ç”Ÿæˆã•ã‚Œã¾ã—ãŸã€‚<br />\n<br />\næŠ•ç¨¿ã•ã‚ŒãŸæƒ…å ±ãŒæ­£ã—ã„ã‹ã©ã†ã‹ç¢ºèªã—ã¦ãã ã•ã„ã€‚ç¢ºèªãŒã¨ã‚Œæ¬¡ç¬¬ï¼Œè¦æ—¨ã¯é›‘èªŒã®ã‚ªãƒ³ãƒ©ã‚¤ãƒ³ç‰ˆã§å…¬é–‹ã•ã‚Œã¾ã™ã€‚<br />\n<br />\næ˜Žç¤ºã—ãŸã„ç‚¹ã‚„ä¿®æ­£ç‚¹ã¨ã‚ãªãŸã®ç¢ºèªã®çµæžœã‚’ã“ã®ãƒ¡ãƒƒã‚»ãƒ¼ã‚¸ã«ããˆã¦ï¼Œ<br />\n{$thesisName} ({$thesisEmail}) <br />\nã¾ã§è¿”ä¿¡ã—ã¦ãã ã•ã„ã€‚<br />\n<br />\nã‚ˆã‚ã—ããŠé¡˜ã„è‡´ã—ã¾ã™ã€‚<br />\n<br />\n<br />\nè«–æ–‡ã‚¿ã‚¤ãƒˆãƒ« : {$title} <br />\nè‘—è€… : {$studentName}<br />\nå­¦ä½ : {$degree}<br />\nå­¦ä½ã®ç¨®é¡ž: {$degreeName}<br />\néƒ¨å±€å : {$department}<br />\nå¤§å­¦å : {$university}<br />\næŽˆä¸Žå¹´æœˆæ—¥ : {$dateApproved}<br />\næŒ‡å°Žæ•™å“¡ : {$supervisorName}<br />\n<br />\nè¦æ—¨<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}',''),('THESIS_ABSTRACT_CONFIRM','nl_NL','Thesis samenvatting inzending','Deze e-mail is automatisch gegenereerd door het thesis samenvattingen formulier van {$contextName}. <br />\n<br />\nGelieve te bevestigen dat de ingestuurde informatie correct is. De samenvatting zal gepubliceerd worden in de online editie van het tijdschrift nadat de bevestiging is ontvangen.<br />\n<br />\nU hoeft alleen te antwoorden aan {$thesisName} ({$thesisEmail}) met de inhoud van dit bericht en uw bevestiging en eventuele verduidelijkingen en aanbevelingen.<br />\n<br />\nDank u.<br />\n<br />\n<br />\nTitel : {$title} <br />\nAuteur : {$studentName}<br />\nGraad : {$degree}<br />\nGraad naam: {$degreeName}<br />\nDepartement : {$department}<br />\nUniversiteit : {$university}<br />\nAcceptatiedatum : {$dateApproved}<br />\nBegeleider : {$supervisorName}<br />\n<br />\nSamenvatting<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}',''),('THESIS_ABSTRACT_CONFIRM','pt_BR','SubmissÃ£o de resumo de tese para a revista {$contextName}','Esta Ã© uma mensagem automÃ¡tica do sistema de submissÃ£o de resumos de teses da revista {$contextName}.<br />\n<br />\nConfirme se os dados informados estÃ£o corretos. Ao receber a confirmaÃ§Ã£o, o resumo serÃ¡ publicado na ediÃ§Ã£o eletrÃ´nica da revista.<br />\n<br />\nResponda para {$thesisName} ({$thesisEmail}) com o conteÃºdo desta mensagem e sua confirmaÃ§Ã£o sobre a veracidade e a qualidade dos dados, bem como quaisquer recomendaÃ§Ãµes ou esclarecimentos necessÃ¡rios.<br />\n<br />\nAgradecemos antecipadamente pela sua colaboraÃ§Ã£o.<br />\n<br />\n<br />\nTÃ­tulo: {$title} <br />\nAutor: {$studentName}<br />\nGrau: {$degree}<br />\nTÃ­tulo do grau: {$degreeName}<br />\nDepartamento: {$department}<br />\nInstituiÃ§Ã£o de Ensino Superior: {$university}<br />\nData de aceitaÃ§Ã£o: {$dateApproved}<br />\nOrientador: {$supervisorName}<br />\n<br />\nResumo<br />\n----------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Mensagem de confirmaÃ§Ã£o de submissÃ£o de resumo de tese por parte de um aluno. Ã‰ enviada ao orientador, que deve confirmar a veracidade e qualidade dos dados informados.'),('THESIS_ABSTRACT_CONFIRM','pt_PT','SubmissÃ£o de Resumo de Tese','Esta mensagem Ã© gerada automaticamente pelo sistema de envio de resumos de teses da revista {$contextName}.<br />\n<br />\nConfirme se os dados informados estÃ£o correctos. Ao receber a confirmaÃ§Ã£o, o resumo serÃ¡ publicado na ediÃ§Ã£o electrÃ³nica da revista.<br />\n<br />\nResponda para {$thesisName} ({$thesisEmail}) com o conteÃºdo desta mensagem e sua confirmaÃ§Ã£o sobre a veracidade e a qualidade dos dados, bem como quaisquer recomendaÃ§Ãµes ou esclarecimentos necessÃ¡rios.<br />\n<br />\nAgradecemos antecipadamente a sua colaboraÃ§Ã£o.<br />\n<br />\n<br />\nTÃ­tulo: {$title} <br />\nAutor: {$studentName}<br />\nGrau: {$degree}<br />\nTÃ­tulo do Grau: {$degreeName}<br />\nDepartamento : {$department}<br />\nInstituiÃ§Ã£o de Ensino Superior: {$university}<br />\nData de aceitaÃ§Ã£o: {$dateApproved}<br />\nOrientador: {$supervisorName}<br />\n<br />\nResumo<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Esta mensagem confirma a submissÃ£o de um resumo de tese por parte de um aluno. Ã‰ enviada ao orientador, que deve confirmar a veracidade e qualidade dos dados informados.'),('THESIS_ABSTRACT_CONFIRM','ro_RO','Depunerea abstractului pentru o tezÄƒ','Acest email a fost generat automat de formularul pentru depunerea abstractelor al {$contextName}.<br />\n<br />\nConfirmÄƒ faptul cÄƒ informaÈ›ia trimisÄƒ este corectÄƒ. La momentul primirii confirmÄƒrii, abstractul va fi publicat Ã®n ediÈ›ia ofline a revistei.<br />\n<br />\nRÄƒspunde la {$thesisName} ({$thesisEmail}) punÃ¢nd conÈ›inutul acestui mesaj È™i confirmarea ta, precum È™i orice alte clarificÄƒri È™i corecÈ›ii recomandate din partea ta.<br />\n<br />\nÃŽÈ›i mulÈ›umim.<br />\n<br />\n<br />\nTitlu : {$title} <br />\nAutor : {$studentName}<br />\nTitlu (universitar) : {$degree}<br />\nDenumirea titlului: {$degreeName}<br />\nDepartament : {$department}<br />\nUniversitate : {$university}<br />\nData acceptÄƒrii : {$dateApproved}<br />\nÃŽndrumÄƒtor : {$supervisorName}<br />\n<br />\nAbstract<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Acest È™ablon de email este utilizat pentru a confirma depunerea abstractului tezei de cÄƒtre un student. Acesta este trimis cÄƒtre Ã®ndrumÄƒtorul studentului, care este rugat sÄƒ confirme detaliile pentru abstractul tezei care a fost trimis.'),('THESIS_ABSTRACT_CONFIRM','cs_CZ','OdeslÃ¡nÃ­ abstraktu zÃ¡vÄ›reÄnÃ© prÃ¡ce','Tento email byl automaticky vygenerovÃ¡n formulÃ¡Å™em pro odesÃ­lÃ¡nÃ­ abstrakt zÃ¡vÄ›reÄnÃ½ch pracÃ­ do {$contextName}.<br />\n<br />\nPotvrÄte prosÃ­m, Å¾e jsou odeslanÃ© informace sprÃ¡vnÃ©. Po obdrÅ¾enÃ­ VaÅ¡eho potvrzenÃ­ bude abstrakt publikovÃ¡n v online verzi Äasopisu.<br />\n<br />\nJednoduÅ¡e odpovÄ›zte na {$thesisName} ({$thesisEmail}) s obsahem tÃ©to zprÃ¡vy a VaÅ¡Ã­m potvrzenÃ­m, doporuÄenÃ­m upÅ™esnÄ›nÃ­ nebo Ãºprav.<br />\n<br />\nDÄ›kujeme.<br />\n<br />\n<br />\nNÃ¡zev: {$title} <br />\nAutor : {$studentName}<br />\nStupeÅˆ: {$degree}<br />\nNÃ¡zev stupnÄ›: {$degreeName}<br />\nPracoviÅ¡tÄ›: {$department}<br />\nUniverzita : {$university}<br />\nDatum schvÃ¡lenÃ­: {$dateApproved}<br />\nÅ kolitel: {$supervisorName}<br />\n<br />\nAbstrakt<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}',''),('THESIS_ABSTRACT_CONFIRM','eu_ES','Tesi-laburpenaren bidalketa','Mezu hau automatikoki sortu du {$contextName} aldizkariko tesi-laburpena bidaltzeko inprimakiak.<br />\n<br />\nMesedez, berretsi bidali diguten informazioa zuzena dela. Zure berrespena jasotzen dugunean, laburpena aldizkariaren lineako edizioan argitaratuko da.<br />\n<br />\nBesterik gabe, erantzun {$thesisName} mezuari ({$thesisEmail}) mezu honen edukiarekin eta zure berrespenarekin, nahi izanez gero, argibideak eta zuzenketak erantsiz.<br />\n<br />\nEskerrik asko.<br />\n<br />\n<br />\nTitulua: {$title} <br />\nEgilea: {$studentName}<br />\nGradua: {$degree}<br />\nGraduaren izena: {$degreeName}<br />\nSaila: {$department}<br />\nUnibertsitatea: {$university}<br />\nOnartze-data: {$dateApproved}<br />\nZuzendaria: {$supervisorName}<br />\n<br />\nLaburpena<br />\n------------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Mezu-txantiloi hau ikasleek bidalitako tesi-laburpenak berresteko erabiltzen da. Ikaslearen zuzendariari bidaltzen zaio, jaso den tesi-laburpenaren xehetasunak berrets ditzala eskatzeko.'),('THESIS_ABSTRACT_CONFIRM','ru_RU','ÐžÑ‚Ð¿Ñ€Ð°Ð²ÐºÐ° Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ð° Ð´Ð¸ÑÑÐµÑ€Ñ‚Ð°Ñ†Ð¸Ð¸','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð±Ñ‹Ð»Ð¾ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ¸ ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾ Ñ„Ð¾Ñ€Ð¼Ð¾Ð¹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ Ð½Ð° Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸ÑŽ Ð² Ð¶ÑƒÑ€Ð½Ð°Ð»Ðµ Â«{$contextName}Â» Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ð° Ð´Ð¸ÑÑÐµÑ€Ñ‚Ð°Ñ†Ð¸Ð¸.<br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð° Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚Ðµ Ð¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð¾ÑÑ‚ÑŒ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð½Ð¾Ð¹ Ð½Ð°Ð¼Ð¸ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¸. ÐŸÐ¾ÑÐ»Ðµ Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð’Ð°ÑˆÐµÐ³Ð¾ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ, Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚ Ð±ÑƒÐ´ÐµÑ‚ Ð¾Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ¾Ð²Ð°Ð½ Ð² Ð¾Ð½Ð»Ð°Ð¹Ð½-Ð²ÐµÑ€ÑÐ¸Ð¸ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð°.<br />\n<br />\nÐŸÑ€Ð¾ÑÑ‚Ð¾ Ð½Ð°Ð¿Ð¸ÑˆÐ¸Ñ‚Ðµ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð½Ð° Ð°Ð´Ñ€ÐµÑ {$thesisEmail} ({$thesisName}), Ð²ÐºÐ»ÑŽÑ‡Ð¸Ð² Ð² Ð½ÐµÐ³Ð¾ ÑÐ¾Ð´ÐµÑ€Ð¶Ð°Ð½Ð¸Ðµ ÑÑ‚Ð¾Ð³Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð°, Ð’Ð°ÑˆÐµ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ðµ, Ð° Ñ‚Ð°ÐºÐ¶Ðµ Ð²ÑÐµ Ð½ÐµÐ¾Ð±Ñ…Ð¾Ð´Ð¸Ð¼Ñ‹Ðµ ÑƒÑ‚Ð¾Ñ‡Ð½ÐµÐ½Ð¸Ñ Ð¸ Ð´Ð¾Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ.<br />\n<br />\nÐ—Ð°Ñ€Ð°Ð½ÐµÐµ ÑÐ¿Ð°ÑÐ¸Ð±Ð¾!<br />\n<br />\n<br />\nÐÐ°Ð·Ð²Ð°Ð½Ð¸Ðµ: {$title} <br />\nÐÐ²Ñ‚Ð¾Ñ€: {$studentName}<br />\nÐ¡Ñ‚ÐµÐ¿ÐµÐ½ÑŒ: {$degree}<br />\nÐÐ°Ð·Ð²Ð°Ð½Ð¸Ðµ ÑÑ‚ÐµÐ¿ÐµÐ½Ð¸: {$degreeName}<br />\nÐŸÐ¾Ð´Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ðµ: {$department}<br />\nÐ£Ð½Ð¸Ð²ÐµÑ€ÑÐ¸Ñ‚ÐµÑ‚: {$university}<br />\nÐ”Ð°Ñ‚Ð° Ð·Ð°Ñ‰Ð¸Ñ‚Ñ‹: {$dateApproved}<br />\nÐ ÑƒÐºÐ¾Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»ÑŒ: {$supervisorName}<br />\n<br />\nÐÐ²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚<br />\n-----------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ð¾Ð³Ð¾ ÑÐ¾Ð¸ÑÐºÐ°Ñ‚ÐµÐ»ÐµÐ¼ Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ð° Ð´Ð¸ÑÑÐµÑ€Ñ‚Ð°Ñ†Ð¸Ð¸. ÐžÐ½Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÑƒÐºÐ¾Ð²Ð¾Ð´Ð¸Ñ‚ÐµÐ»ÑŽ ÑÐ¾Ð¸ÑÐºÐ°Ñ‚ÐµÐ»Ñ, ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð³Ð¾ Ð¿Ñ€Ð¾ÑÑÑ‚ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚ÑŒ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸ÑŽ Ð¾ Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð½Ð¾Ð¼ Ð² Ñ€ÐµÐ´Ð°ÐºÑ†Ð¸ÑŽ Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ðµ Ð´Ð¸ÑÑÐµÑ€Ñ‚Ð°Ñ†Ð¸Ð¸.'),('THESIS_ABSTRACT_CONFIRM','zh_CN','è®ºæ–‡æ‘˜è¦æäº¤','è¿™å°ç”µå­é‚®ä»¶æ˜¯ç”± {$contextName} è®ºæ–‡æ‘˜è¦æäº¤è¡¨å•è‡ªåŠ¨ç”Ÿæˆçš„ã€‚<br />\n<br />\nè¯·ç¡®è®¤æ‰€æäº¤çš„ä¿¡æ¯æ˜¯æ­£ç¡®çš„ã€‚ä¸€æ”¶åˆ°æ‚¨çš„ç¡®è®¤ä¿¡æ¯ï¼Œè¿™ç¯‡æ‘˜è¦å°†ä¼šè¢«å‡ºç‰ˆåˆ°æœŸåˆŠçš„åœ¨çº¿ç‰ˆã€‚<br />\n<br />\nåªéœ€å›žå¤{$thesisName} ({$thesisEmail}) ï¼Œè¿™æ¡æ¶ˆæ¯çš„å†…å®¹å’Œä½ çš„ç¡®è®¤ä¿¡æ¯ï¼Œ ä»¥åŠéœ€è¦æ¾„æ¸…æˆ–è€…ä¿®æ”¹çš„ä»»ä½•å»ºè®®ã€‚<br />\n<br />\nè°¢è°¢æ‚¨ã€‚<br />\n<br />\næ ‡é¢˜ï¼š{$title} <br />\nä½œè€…ï¼š{$studentName}<br />\nå­¦ä½ï¼š{$degree}<br />\nå­¦ä½åï¼š{$degreeName}<br />\né™¢ç³»ï¼š{$department}<br />\né™¢æ ¡ï¼š{$dateApproved}<br />\néªŒæ”¶æ—¥æœŸï¼š{$dateApproved}<br />\nè®ºæ–‡å¯¼å¸ˆï¼š{$supervisorName}<br />\n<br />\næ‘˜è¦<br />\n----------<br />\n<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','æ­¤ç”µå­é‚®ä»¶æ¨¡æ¿æ˜¯ç”¨æ¥ç¡®è®¤å­¦ç”Ÿæäº¤çš„è®ºæ–‡æ‘˜è¦ã€‚å®ƒå‘é€åˆ°å­¦ç”Ÿçš„è®ºæ–‡å¯¼å¸ˆï¼Œä»–è¢«è¦æ±‚ç¡®è®¤æ‰€æäº¤çš„è®ºæ–‡æ‘˜è¦çš„ç»†èŠ‚ã€‚'),('SWORD_DEPOSIT_NOTIFICATION','de_DE','Archivierungsbenachrichtigung','Herzlichen GlÃ¼ckwunsch zur Annahme Ihres Beitrags \"{$submissionTitle}\" zur VerÃ¶ffentlichung in {$contextName}. Wenn Sie mÃ¶chten, kÃ¶nnen Sie Ihren Beitrag automatisch in einem oder mehreren Repositorien archivieren.<br />\n<br />\nFahren Sie unter <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> fort.<br />\n<br />\nDiese E-Mail wurde durch das SWORD-Archivierungs-Plug-In fÃ¼r Open Journal Systems erzeugt.','Diese E-Mail-Vorlage wird benutzt, um eine/n Autor/in Ã¼ber optionale Archivierungsorte fÃ¼r SWORD-Archivierungen zu informieren.'),('SWORD_DEPOSIT_NOTIFICATION','el_GR','Î•Î½Î·Î¼ÎµÏÏŽÏƒÎ· Î³Î¹Î± Î±ÏÏ‡ÎµÎ¹Î¿Î¸Î­Ï„Î·ÏƒÎ· Î¬ÏÎ¸ÏÎ¿Ï…','Î£Ï…Î³Ï‡Î±ÏÎ·Ï„Î®ÏÎ¹Î± Î³Î¹Î± Ï„Î·Î½ Î±Ï€Î¿Î´Î¿Ï‡Î® Ï„Î¿Ï… Î¬ÏÎ¸ÏÎ¿Ï… ÏƒÎ±Ï‚, \"{$submissionTitle}\", Î³Î¹Î± Î´Î·Î¼Î¿ÏƒÎ¯ÎµÏ…ÏƒÎ· ÏƒÏ„Î¿ Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÏŒ {$contextName}. Î‘Î½ ÎµÏ€Î¹Î¸Ï…Î¼ÎµÎ¯Ï„Îµ, Î¼Ï€Î¿ÏÎµÎ¯Ï„Îµ Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î± Î½Î± Î±ÏÏ‡ÎµÎ¹Î¿Î¸ÎµÏ„Î®ÏƒÎµÏ„Îµ Ï„Î¿ Î­ÏÎ¸ÏÎ¿ ÏƒÎ±Ï‚ ÏƒÎµ Î­Î½Î± Î® Ï€ÎµÏÎ¹ÏƒÏƒÏŒÏ„ÎµÏÎ± ÎºÎ±Ï„Î±Î¸ÎµÏ„Î®ÏÎ¹Î±.<br />\n<br />\nÎ Î·Î³Î±Î¯Î½ÎµÏ„Î±Î¹ ÏƒÏ„Î· Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> Î³Î¹Î± Ï„Î± Ï€ÎµÏÎ±Î¹Ï„Î­ÏÏ‰.<br />\n<br />\nÎ‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î´Î·Î¼Î¹Î¿Ï…ÏÎ³Î®Î¸Î·ÎºÎµ Î±Ï€ÏŒ Ï„Î¿ SWORD deposit plugin Ï„Î¿Ï… Open Journal Systems.','Î‘Ï…Ï„ÏŒ Ï„Î¿ Ï€ÏÏŒÏ„Ï…Ï€Î¿ Î¼Î·Î½ÏÎ¼Î±Ï„Î¿Ï‚ Ï‡ÏÎ·ÏƒÎ¹Î¼Î¿Ï€Î¿Î¹ÎµÎ¯Ï„Î±Î¹ Î³Î¹Î± Ï„Î·Î½ ÎµÎ½Î·Î¼Î­ÏÏ‰ÏƒÎ· Ï„Î¿Ï… ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± ÏƒÏ‡ÎµÏ„Î¹ÎºÎ¬ Î¼Îµ Ï„Î·Î½ Î´Ï…Î½Î±Ï„ÏŒÏ„Î·Ï„Î± Î±ÏÏ‡ÎµÎ¹Î¿Î¸Î­Ï„Î·ÏƒÎ·Ï‚ Ï„Î¿Ï… Î¬ÏÎ¸ÏÎ¿Ï… Ï„Î¿Ï….'),('SWORD_DEPOSIT_NOTIFICATION','es_ES','NotificaciÃ³n de depÃ³sito','Enhorabuena por la aceptaciÃ³n del envÃ­o, \"{$submissionTitle}\", para que se publique en {$contextName}. Si asÃ­ lo desea, puede depositar automÃ¡ticamente el envÃ­o en uno o mÃ¡s repositorios. <br />\n<br />\nPara proceder, vaya a <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a>.<br />\n<br />\nEl mÃ³dulo de depÃ³sito SWORD del Open Journal Systems generÃ³ este correo electrÃ³nico.','Se utiliza esta plantilla de correo electrÃ³nico para notificar a un autor/a de los puntos de depÃ³sito opcionales para depÃ³sitos SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','fa_IR','Ù…Ø·Ù„Ø¹ Ø³Ø§Ø®ØªÙ† Ø§Ø² Ø¯Ù¾ÙˆØ²ÛŒØª','Ø¨Ø§ Ø®ÙˆØ´ÙˆÙ‚ØªÛŒ Ø¨Ù‡ Ø§Ø·Ù„Ø§Ø¹ Ù…ÛŒ Ø±Ø´Ø§Ù†Ø¯ Ú©Ù‡ Ø¯Ù¾ÙˆØ²ÛŒØª Ù…Ù‚Ø§Ù„Ù‡ Ø´Ù…Ø§, \"{$submissionTitle}\", Ø¨Ø±Ø§ÛŒ Ú†Ø§Ù¾ Ø¯Ø± Ù…Ø¬Ù„Ù‡ {$contextName} Ù…ÙˆØ±Ø¯ Ù‚Ø¨ÙˆÙ„ ÙˆØ§Ù‚Ø¹ Ø´Ø¯. Ø¯Ø± ØµÙˆØ±Øª ØªÙ…Ø§ÛŒÙ„ Ù…ÛŒ ØªÙˆØ§Ù†ÛŒØ¯ Ù†Ø³Ø¨Øª Ø¨Ù‡ Ø¯Ù¾ÙˆØ²ÛŒØª Ù…Ù‚Ø§Ù„Ù‡ Ø®ÙˆØ¯ Ø¯Ø± Ø¨ÛŒØ´ Ø§Ø² ÛŒÚ© Ù…Ø®Ø²Ù† Ù†ÛŒØ² Ø§Ù‚Ø¯Ø§Ù… Ú©Ù†ÛŒØ¯..<br />\n<br />\nØ¨Ø±Ø§ÛŒ Ø§Ø¯Ø§Ù…Ù‡ Ø¨Ù‡  <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> Ø¨Ø±ÙˆÛŒØ¯.<br />\n<br />\nØ§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ ØªÙˆØ³Ø· Ø§ÙØ²ÙˆÙ†Ù‡ Ø¯Ù¾ÙˆØ²ÛŒØª Ø³ÙˆØ±Ø¯ Ù…Ø±Ø¨ÙˆØ· Ø¨Ù‡ Ø³ÛŒØ³ØªÙ… Ù‡Ø§ÛŒ Ù…Ø¬Ù„Ù‡ Ø¢Ø²Ø§Ø¯ ØªÙˆÙ„ÛŒØ¯ Ø´Ø¯Ù‡ Ø§Ø³Øª',''),('SWORD_DEPOSIT_NOTIFICATION','fr_CA','Avis de dÃ©pÃ´t','FÃ©licitations pour l\'acceptation de votre soumission, \"{$submissionTitle}\", pour publication dans la revue {$contextName}. Si vous le souhaitez, vous pouvez dÃ©poser automatiquement votre soumission dans un ou plusieurs de nos services d\'archivage.<br />\n<br />\nAllez Ã  <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> afin de procÃ©der.<br />\n<br />\nCe courriel a Ã©tÃ© gÃ©nÃ©rÃ© par le plugiciel de dÃ©pÃ´t SWORD du Open Journal Systems.','Ce modÃ¨le de courriel est utilisÃ© pour avertir un auteur qu\'il peut dÃ©poser s\'il le dÃ©sire sa soumission dans SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','it_IT','Notifica di deposito','Congratulazioni per l\'accettazione della tua proposta \"{$submissionTitle}\" per la pubblicazione in {$contextName}. <br />\n<br />\nSe vuoi, puoi depositare automaticamente la tua submission in uno o piÃ¹ archivi.<br />\n<br />\nVai all\'indirizzo <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> per proseguire.<br />\n<br />\nQuesta email Ã¨ generara atumaticamentee da Open Journal Systems\' SWORD deposit plugin.',''),('SWORD_DEPOSIT_NOTIFICATION','ja_JP','ãƒ‡ãƒã‚¸ãƒƒãƒˆé€šçŸ¥','ã“ã®åº¦ã¯ï¼Œ {$contextName} ã«  \"{$submissionTitle}\" ã‚’æŠ•ç¨¿ã„ãŸã ãã¾ã—ã¦èª ã«æœ‰é›£ã†ã”ã–ã„ã¾ã™ã€‚<br />\n<br />\nã”å¸Œæœ›ã®å ´åˆã¯ï¼Œä¸‹è¨˜ã®URLã‹ã‚‰ä»–ã®ãƒªãƒã‚¸ãƒˆãƒªã«ã‚‚è‡ªå‹•çš„ã«ãƒ‡ãƒã‚¸ãƒƒãƒˆã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚<br />\n<br />\n<a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a><br />\n<br />\nã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ï¼ŒOpen Journal Systems\' SWORD ãƒ‡ãƒã‚¸ãƒƒãƒˆãƒ—ãƒ©ã‚°ã‚¤ãƒ³ã§ç”Ÿæˆã•ã‚Œã¾ã—ãŸã€‚','SWORD ãƒ‡ãƒã‚¸ãƒƒãƒˆã§ãƒ‡ãƒã‚¸ãƒƒãƒˆãƒã‚¤ãƒ³ãƒˆã®é¸æŠžã‚’è‘—è€…ã«é€šçŸ¥ã™ã‚‹ãŸã‚ã«ä½¿ã‚ã‚Œã‚‹ãƒ†ãƒ³ãƒ—ãƒ¬ãƒ¼ãƒˆã§ã™ã€‚'),('SWORD_DEPOSIT_NOTIFICATION','nl_NL','Bericht van opname','Gefeliciteerd met de acceptatie van uw inzending, \"{$submissionTitle}\", voor publicatie in {$contextName}. Als u wilt, kunt u uw inzending automatisch opnemen in Ã©Ã©n of meer repositories.<br />\n<br />\nGa daarvoor naar <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a>.<br />\n<br />\nDeze e-mail is gegenereerd door de SWORD deposit plugin van Open Journal Systems.','Dit e-mail sjabloon wordt gebruikt om een auteur te in te lichten over de mogelijkheid om met SWORD in te zenden naar repositories'),('SWORD_DEPOSIT_NOTIFICATION','pt_BR','NotificaÃ§Ã£o de depÃ³sito em repositÃ³rio SWORD','ParabÃ©ns pela aceitaÃ§Ã£o de publicaÃ§Ã£o de sua submissÃ£o \"{$submissionTitle}\", na revista {$contextName}. <br />\nCaso deseje, pode depositar automaticamente esta submissÃ£o em um ou mais repositÃ³rios.<br />\n<br />\nAcesse <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> para proceder.<br />\n<br />\nEsta Ã© uma mensagem automÃ¡tica da ferramenta de DepÃ³sito SWORD do Open Journal Systems.','Mensagem de notificaÃ§Ã£o ao autor, de pontos de depÃ³sito opcional para repositÃ³rios SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','pt_PT','NotificaÃ§Ã£o de DepÃ³sito','CongratulaÃ§Ãµes pela aceitaÃ§Ã£o da sua submissÃ£o, \"{$submissionTitle}\", para publicaÃ§Ã£o em {$contextName}. Pode optar por depositar automaticamente a sua submissÃ£o num ou mais repositÃ³rios.<br />\n<br />\nIr a <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> para prosseguir.<br />\n<br />\nEste email foi gerado pelo plugin de depÃ³sito SWORD do Open Journal System.','Este modelo de email template Ã© usado para notificar o autor sobre os pontos de depÃ³sitos opcionais do SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','ro_RO','ÃŽnÈ™tiinÈ›are pentru depozitare','FelicitÄƒri pentru acceptul propunerii de articol \"{$submissionTitle}\" pentru a fi publicat Ã®n  {$contextName}. DacÄƒ doriÈ›i, puteÈ›i depozita automat propunerea Ã®n unul sau mai multe depozite.<br />\n<br />\nMergi la <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> pentru a proceda.<br />\n<br />\nAcest email a fost generat de modulul OJS pentru depozitare prin SWORD.',''),('SWORD_DEPOSIT_NOTIFICATION','uk_UA','ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ Ð´ÐµÐ¿Ð¾Ð½ÑƒÐ²Ð°Ð½Ð½Ñ','ÐŸÐ¾Ð·Ð´Ð¾Ñ€Ð¾Ð²Ð»ÑÑ”Ð¼Ð¾ Ð· Ð¿Ñ€Ð¸Ð¹Ð½ÑÑ‚Ñ‚ÑÐ¼ Ð’Ð°ÑˆÐ¾Ð³Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ \"{$submissionTitle}\" Ð´Ð¾ Ð¿ÑƒÐ±Ð»Ñ–ÐºÐ°Ñ†Ñ–Ñ— Ñƒ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñ– {$contextName}. Ð—Ð° Ð±Ð°Ð¶Ð°Ð½Ð½ÑÐ¼, Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ Ð´ÐµÐ¿Ð¾Ð½ÑƒÐ²Ð°Ñ‚Ð¸ Ð’Ð°ÑˆÐµ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ Ñƒ Ð¾Ð´Ð½Ðµ Ð°Ð±Ð¾ ÐºÑ–Ð»ÑŒÐºÐ° ÑÑ…Ð¾Ð²Ð¸Ñ‰ Ð²Ñ–Ð´ÐºÑ€Ð¸Ñ‚Ð¾Ð³Ð¾ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ñƒ.<br />\n<br />\nÐ©Ð¾Ð± Ð·Ñ€Ð¾Ð±Ð¸Ñ‚Ð¸ Ñ†Ðµ, Ð½Ð°Ñ‚Ð¸ÑÐ½Ñ–Ñ‚ÑŒ <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a>.<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð±ÑƒÐ² Ð³ÐµÐ½ÐµÑ€Ð¾Ð²Ð°Ð½Ð¸Ð¹ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Ð´ÐµÐ¿Ð¾Ð½ÑƒÐ²Ð°Ð½Ð½Ñ SWORD ÑÐ¸ÑÑ‚ÐµÐ¼Ð¸ Open Journal Systems.','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ð¿Ñ€Ð¾ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ñ–ÑÑ‚ÑŒ Ð´ÐµÐ¿Ð¾Ð½ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ Ñƒ SWORD-ÑÑƒÐ¼Ñ–ÑÐ½Ñ– ÑÑ…Ð¾Ð²Ð¸Ñ‰Ð°.'),('SWORD_DEPOSIT_NOTIFICATION','eu_ES','Gordailuari buruzko jakinarazpena','Zorionak zure aurkezpena, \"{$submissionTitle}, {$contextName} aldizkarian argitaratzeko onartu delako. Nahi izanez gero, zure aurkezpena automatikoki jar dezakezu gordailu batean edo gehiagotan.<br />\n<br />\nHorretarako, joan zaitez hona: <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a>.<br />\n<br />\nMezu elektroniko hau Open Journal System-en SWORD gordailuaren pluginak sortu du.','Mezu elektronikoaren eredu hau egileei SWORD gordailuetan aurkezpenak gorde ahal izateko hainbat puntu aukeratu daitezkeela jakinarazteko erabiltzen da.'),('SWORD_DEPOSIT_NOTIFICATION','zh_CN','å­˜å…¥é€šçŸ¥','æ­å–œæ‚¨çš„æ–‡ç« \"{$submissionTitle}\"å·²ç»è¢« {$contextName}å½•å–ã€‚æ‚¨å¯ä»¥é€‰æ‹©è¿™ç¯‡ç¨¿ä»¶è‡ªåŠ¨å­˜å…¥ä¸€ä¸ªæˆ–è€…å¤šä¸ªä»“å‚¨ã€‚<br />\n<br />\nè¿›å…¥<a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a>ç»§ç»­ã€‚<br />\n<br />\nè¿™ä¸ªé‚®ä»¶ç”±Open Journal Systems\' çš„SWORD deposit æ’ä»¶è‡ªåŠ¨ç”Ÿæˆã€‚','æœ¬é‚®ä»¶æ¨¡æ¿ç”¨äºŽé€šçŸ¥ä½œè€…å…³äºŽSWORDå­˜å‚¨çš„å­˜å…¥ç‚¹é€‰æ‹©'),('BFR_REVIEW_REMINDER','de_DE','Buch zur Rezension: Erinnerung an FÃ¤lligkeitsdatum','Liebe/r {$authorName},<br />\n<br />\ndies ist eine freundliche Erinnerung, dass Ihre Buchrezension von {$bookForReviewTitle} am {$bookForReviewDueDate} fÃ¤llig ist.<br />\n<br />\nUm Ihre Buchrezension einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab. Um es Ihnen zu erleichtern, ist ein URL zur Einreichung hier aufgefÃ¼hrt:<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Buchrezension haben.<br />\n<br />\nHerzlichen Dank fÃ¼r Ihren Beitrag zu der Zeitschrift. Ich freue mich darauf, Ihre Einreichung zu erhalten.<br />\n<br />\n{$editorialContactSignature}','Dies ist eine automatisch erzeugte E-Mail, die an eine/n Autor/in gesendet wird, der/die eine Buchrezension Ã¼bernommen hat, als eine Erinnerung, dass die Rezension bald fÃ¤llig ist.'),('BFR_REVIEW_REMINDER_LATE','de_DE','Buch zur Rezension: Rezension fÃ¤llig','Liebe/r {$authorName},<br />\n<br />\ndies ist eine freundliche Erinnerung, dass Ihre Buchrezension von {$bookForReviewTitle} am {$bookForReviewDueDate} fÃ¤llig gewesen ist, aber noch nicht hier eingegangen ist.<br />\n<br />\nUm Ihre Buchrezension einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab. Um es Ihnen zu erleichtern, ist ein URL zur Einreichung hier aufgefÃ¼hrt:<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Buchrezension haben.<br />\n<br />\nHerzlichen Dank fÃ¼r Ihren Beitrag zu der Zeitschrift. Ich freue mich darauf, Ihre Einreichung zu erhalten.<br />\n<br />\n{$editorialContactSignature}','Dies ist eine automatisch erzeugte E-Mail, die an eine/n Autor/in gesendet wird, der/die eine Buchrezension Ã¼bernommen hat, nachdem das FÃ¤lligkeitsdatum verstrichen ist.'),('BFR_REVIEWER_REMOVED','de_DE','Buch zur Rezension','Liebe/r {$authorName},<br />\n<br />\ndiese E-Mail bestÃ¤tigt, dass Sie als Rezensent/in fÃ¼r {$bookForReviewTitle} entfernt worden sind, das nun anderen Autor/innen, die eine Rezension dazu verfassen mÃ¶chten, zur VerfÃ¼gung steht.<br />\n<br />\nIch hoffe, dass Sie in ErwÃ¤gung ziehen, ein anderes Buch aus unserer Liste zu rezensieren - jetzt oder in der Zukunft.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n interessierte/n Autor/in geschickt, wenn ein Buch nicht mehr zur Rezension zur VerfÃ¼gung steht.'),('BFR_BOOK_MAILED','de_DE','Buch zur Rezension: Buch verschickt','Liebe/r {$authorName},<br />\n<br />\ndiese E-Mail bestÃ¤tigt, dass ich Ihnen ein Exemplar von {$bookForReviewTitle} an die folgende Anschrift aus Ihrem Benutzer/innenprofil geschickt habe:<br />\n{$authorMailingAddress}<br />\n <br />\nUm Ihre Buchrezension einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab.<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Buchrezension haben.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n Rezensent/in geschickt, wenn die/der Redakteur/in ein Exemplar des Buches an den/die Rezensent/in gesendet hat.'),('BFR_BOOK_DENIED','de_DE','Buch zur Rezension','Liebe/r {$authorName},<br />\n<br />\nleider kann ich Ihnen {$bookForReviewTitle} derzeit nicht zu einer Rezension zuteilen.<br />\n<br />\nIch hoffe, dass Sie in ErwÃ¤gung ziehen, ein anderes Buch aus unserer Liste zu besprechen - jetzt oder in Zukunft.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n interessierte/n Rezensent/in geschickt, wenn das Buch nicht zur Rezension zugeteilt werden kann.'),('BFR_BOOK_ASSIGNED','de_DE','Buch zur Rezension: Buch zugeteilt','Liebe/r {$authorName},<br />\n<br />\ndiese E-Mail bestÃ¤tigt, dass Ihnen {$bookForReviewTitle} zur Rezension zugeteilt worden ist, die bis {$bookForReviewDueDate} fÃ¤llig ist.<br />\n<br />\nBitte stellen Sie sicher, dass Ihre Anschrift in Ihrem Benutzer/innenprofil aktuell ist. Diese Adresse wird genutzt werden, um Ihnen ein Exemplar des Buches fÃ¼r die Besprechung zukommen zu lassen.<br />\n<br />\nDie Anschrift, die wir momentan in unseren Unterlagen haben, ist:<br />\n{$authorMailingAddress}<br />\n<br />\nWenn diese Adresse unvollstÃ¤ndig ist oder Sie nicht mehr unter dieser Anschrift erreichbar sind, benutzen Sie bitte den folgenden URL zum Benutzer/innenprofil, um Ihre Anschrift zu aktualisieren:<br />\n<br />\nBenutzer/innenprofil-URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nUm Ihre Buchrezension einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab.<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Buchrezension haben.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n Rezensent/in geschickt, wenn ein/e Redakteur/in das Buch dem/der Rezensent/in zugewiesen hat.'),('BFR_BOOK_REQUESTED','de_DE','Buch zur Rezension: Buchanfrage','Liebe/r {$editorName},<br />\n<br />\nich bin daran interessiert, eine Buchrezension von {$bookForReviewTitle} zu verfassen.<br />\n<br />\nKÃ¶nnen Sie bitte bestÃ¤tigen, dass das Buch noch zur Rezension zur VerfÃ¼gung steht?<br />\n<br />\n{$authorContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n Autor/in gesendet, der/die daran interessiert ist, eine Besprechung zu einem gelisteten Buch zu verfassen.'),('BFR_REVIEW_REMINDER','el_GR','Î’Î¹Î²Î»Î¯Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·: Î¥Ï€ÎµÎ½Î¸ÏÎ¼Î¹ÏƒÎ· Î›Î®Î¾Î·Ï‚ Î ÏÎ¿Î¸ÎµÏƒÎ¼Î¯Î±Ï‚','Î‘Î³Î±Ï€Î·Ï„Î­/Î® {$authorName}:<br />\n<br />\nÎ¤Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï…Ï„ÏŒ Î±Ï€Î¿Ï„ÎµÎ»ÎµÎ¯ Î¼Î¹Î± Ï…Ï€ÎµÎ½Î¸ÏÎ¼Î¹ÏƒÎ· ÏŒÏ„Î¹ Î· Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¹Ï… Î²Î¹Î²Î»Î¯Î¿Ï…  {$bookForReviewTitle} Ï€Î¿Ï… Î­Ï‡ÎµÏ„Îµ Î±Î½Î±Î»Î¬Î²ÎµÎ¹ Î¸Î± Ï€ÏÎ­Ï€ÎµÎ¹ Î½Î± Î­Ï‡ÎµÎ¹ Î¿Î»Î¿ÎºÎ»Î·ÏÏ‰Î¸ÎµÎ¯ Î¼Î­Ï‡ÏÎ¹ Ï„Î·Î½  {$bookForReviewDueDate}.<br />\n<br />\nÎ“Î¹Î± Î½Î± Ï…Ï€Î¿Î²Î¬Î»Î»ÎµÏ„Î±Î¹ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï…, Ï€Î±ÏÎ±ÎºÎ±Î»Î¿ÏÎ¼Îµ ÏƒÏ…Î½Î´ÎµÎ¸ÎµÎ¯Ï„Îµ ÏƒÏ„Î¿Î½ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï ÎºÎ±Î¹ ÏƒÏ…Î¼Ï€Î»Î·ÏÏŽÏƒÏ„Îµ Ï„Î± Î±Ï€Î±ÏÎ±Î¯Ï„Î·Ï„Î± ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î± ÏƒÏ„Î·Î½ Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯Î± Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ Î¬ÏÎ¸ÏÏ‰Î½. Î“Î¹Î± Ï„Î·Î½ Î´Î¹ÎµÏ…ÎºÏŒÎ»Ï…Î½ÏƒÎ® ÏƒÎ±Ï‚, Î· ÏƒÏ‡ÎµÏ„Î¹ÎºÎ® Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· ÏƒÏÎ½Î´ÎµÏƒÎ· Î±Î½Î±Ï†Î­ÏÎµÏ„Î±Î¹ Ï€Î±ÏÎ±ÎºÎ¬Ï„Ï‰.<br />\n<br />\nURL Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÎ“Î¹Î± Î¿Ï€Î¿Î¹Î±Î´Î®Ï€Î¿Ï„Îµ ÎµÏÏŽÏ„Î·ÏƒÎ· Î® Î´Î¹ÎµÏ…ÎºÏÎ¯Î½Î·ÏƒÎ· ÏƒÏ‡ÎµÏ„Î¹ÎºÎ¬ Î¼Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Î¼Ï€Î¿ÏÎµÎ¯Ï„Îµ Î½Î± ÎµÏ€Î¹ÎºÎ¿Î¹Î½Î®ÏƒÎµÏ„Îµ Î¼Î±Î¶Î¯ Î¼Î¿Ï….<br />\n<br />\nÎ£Î±Ï‚ ÎµÏ…Ï‡Î±ÏÎ¹ÏƒÏ„Î¿ÏÎ¼Îµ Î³Î¹Î± Ï„Î·Î½ ÏƒÏ…Î½ÎµÎ¹ÏƒÏ†Î¿ÏÎ¬ ÏƒÎ±Ï‚ ÏƒÏ„Î¿ Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÏŒ.<br />\n<br />\n{$editorialContactSignature}','Î‘Ï…Ï„ÏŒ ÎµÎ¯Î½Î±Î¹ Î­Î½Î± Î¼Î®Î½Ï…Î¼Î± Ï€Î¿Ï… Î´Î·Î¼Î¹Î¿Ï…ÏÎ³Î®Î¸Î·ÎºÎµ Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î± Î³Î¹Î± Î½Î± ÏƒÏ„Î±Î»ÎµÎ¯ ÏƒÎµ Î­Î½Î±Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ Î²Î¹Î²Î»Î¯Î¿Ï… Ï‰Ï‚ Ï…Ï€ÎµÎ½Î¸ÏÎ¼Î¹ÏƒÎ· Î³Î¹Î± Ï„Î·Î½ Ï€ÏÎ¿Î¸ÎµÏƒÎ¼Î¯Î± Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ Ï„Î·Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ®Ï‚ Ï„Î¿Ï….'),('BFR_REVIEW_REMINDER_LATE','el_GR','Î’Î¹Î²Î»Î¯Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·: Î›Î®Î¾Î·Ï‚ Î ÏÎ¿Î¸ÎµÏƒÎ¼Î¯Î±Ï‚','Î‘Î³Î±Ï€Î·Ï„Î­/Î® {$authorName}:<br />\n<br />\nÎ˜Î± Î¸Î­Î»Î±Î¼Îµ Î½Î± ÏƒÎ±Ï‚ Ï…Ï€ÎµÎ½Î¸Ï…Î¼Î¯ÏƒÎ¿Ï…Î¼Îµ ÏŒÏ„Î¹ Î· Î±Î¾Î¹Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… {$bookForReviewTitle} Ï€Î¿Ï… Î­Ï‡ÎµÏ„Îµ Î±Î½Î±Î»Î¬Î²ÎµÎ¹ Î¸Î± Î­Ï€ÏÎµÏ€Îµ Î½Î± Î­Ï‡ÎµÎ¹ Î¿Î»Î¿ÎºÎ»Î·ÏÏ‰Î¸ÎµÎ¯ Î¼Î­Ï‡ÏÎ¹ Ï„Î·Î½ {$bookForReviewDueDate} Î±Î»Î»Î¬ Î´Ï…ÏƒÏ„Ï…Ï‡ÏŽÏ‚ Î´ÎµÎ½ Î­Ï‡ÎµÎ¹ Ï€Î±ÏÎ±Î´Î¿Î¸ÎµÎ¯ Î±ÎºÏŒÎ¼Î±.<br />\n<br />\nÎ“Î¹Î± Î½Î± Ï…Ï€Î¿Î²Î¬Î»Î»ÎµÏ„Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¹Î¿Ï…, Î¼Ï€Î¿ÏÎµÎ¯Ï„Îµ Î½Î± ÏƒÏ…Î½Î´ÎµÎ¸ÎµÎ¯Ï„Îµ ÏƒÏ„Î¿Î½ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï ÎºÎ±Î¹ Î½Î± Î¿Î»Î¿ÎºÎ»Î·ÏÏŽÏƒÎµÏ„ Ï„Î·Î½ Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯Î± Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚. Î“Î¹Î± Ï„Î·Î½ Î´Î¹ÎµÏ…ÎºÏŒÎ»Ï…Î½ÏƒÎ® ÏƒÎ±Ï‚, Î· Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ Ï€Î±ÏÎ±Ï„Î¯Î¸ÎµÏ„Î±Î¹ Ï€Î±ÏÎ±ÎºÎ¬Ï„Ï‰.<br />\n<br />\nURL Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÎ“Î¹Î± Î¿Ï€Î¿Î¹Î±Î´Î®Ï€Î¿Ï„Îµ ÎµÏÏŽÏ„Î·ÏƒÎ· Î® Î´Î¹ÎµÏ…ÎºÏÎ¯Î½Î·ÏƒÎ· ÏƒÏ‡ÎµÏ„Î¹ÎºÎ¬ Î¼Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Î¼Ï€Î¿ÏÎµÎ¯Ï„Îµ Î½Î± ÎµÏ€Î¹ÎºÎ¿Î¹Î½Ï‰Î½Î®ÏƒÎµÏ„Îµ  Î¼Î±Î¶Î¯ Î¼Î¿Ï….<br />\n<br />\nÎ‘Î½Î±Î¼Î­Î½Î¿Î½Ï„Î±Ï‚ Ï„Î·Î½ Ï…Ï€Î¿Î²Î¿Î»Î® Ï„Î·Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ Î¸Î± Î®Î¸ÎµÎ»Î± Î½Î± ÏƒÎ±Ï‚ ÎµÏ…Ï‡Î±ÏÎ¹ÏƒÏ„Î®ÏƒÏ‰ Î³Î¹Î± Ï„Î·Î½ ÏƒÏ…Î½ÎµÎ¹ÏƒÏ†Î¿ÏÎ¬ ÏƒÎ±Ï‚ ÏƒÏ„Î¿ Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÏŒ.<br />\n<br />\n{$editorialContactSignature}','Î‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î´Î·Î¼Î¹Î¿Ï…ÏÎ³Î®Î¸Î·ÎºÎµ Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î± Î³Î¹Î± Î½Î± Î±Ï€Î¿ÏƒÏ„Î±Î»ÎµÎ¯ ÏƒÎµ Î­Î½Î±Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Î±Î¾Î¹Î¿Î»ÏŒÎ·Î³Î·ÏƒÎ·Ï‚ Î²Î¹Î²Î»Î¯Î¿Ï… Î¼ÎµÏ„Î¬ Ï„Î·Î½ Î»Î®Î¾Î· Ï„Î·Ï‚ Ï€ÏÎ¿Î¸ÎµÏƒÎ¼Î¯Î±Ï‚ Î¿Î»Î¿ÎºÎ»Î®ÏÏ‰ÏƒÎ·Ï‚ Ï„Î·Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚.'),('BFR_BOOK_ASSIGNED','el_GR','Î’Î¹Î²Î»Î¯Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·: Î‘Î½Î¬Î¸ÎµÏƒÎ· Î²Î¹Î²Î»Î¯Î¿Ï…','Î‘Î³Î±Ï€Î·Ï„Î­/Î® {$authorName}:<br />\n<br />\nÎ‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± ÎµÏ€Î¹Î²ÎµÎ²Î±Î¹ÏŽÎ½ÎµÎ¹ ÏŒÏ„Î¹ ÏƒÎ±Ï‚ Î±Î½Î±Ï„Î­Î¸Î·ÎºÎµ Î· Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï…  {$bookForReviewTitle} ÎºÎ±Î¹ Î· Î¿Ï€Î¿Î¯Î± Î¸Î± Ï€ÏÎ­Ï€ÎµÎ¹ Î½Î± Î­Ï‡ÎµÎ¹ Î¿Î»Î¿ÎºÎ»Î®ÏÏ‰Î¸ÎµÎ¯ Î¼Î­Ï‡ÏÎ¹ Ï„Î·Î½ {$bookForReviewDueDate}.<br />\n<br />\nÎ£Î±Ï‚ Ï€Î±ÏÎ±ÎºÎ±Î»Î¿ÏÎ¼Îµ Î²ÎµÎ²Î±Î¹Ï‰Î¸ÎµÎ¯Ï„Îµ ÏŒÏ„Î¹ Î· Ï„Î±Ï‡Ï…Î´ÏÎ¿Î¼Î¹ÎºÎ® ÏƒÎ±Ï‚ Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· ÏƒÏ„Î¿ Î ÏÎ¿Ï†Î¯Î» ÏƒÎ±Ï‚ ÏƒÏ„Î¿ Online ÏƒÏÏƒÏ„Î·Î¼Î± Î´Î¹Î±Ï‡ÎµÎ¯ÏÎ¹ÏƒÎ·Ï‚ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï ÎµÎ¯Î½Î±Î¹ ÎµÎ½Î·Î¼ÎµÏÏ‰Î¼Î­Î½Î·. Î£Ï„Î·Î½ Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· Î±Ï…Ï„Î® Î¸Î± ÏƒÎ±Ï‚ ÏƒÏ„Î±Î»ÎµÎ¯ Î­Î½Î± Î±Ï„Î½Î¯Î³ÏÎ±Ï†Î¿ Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Ï€ÏÎ¿Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·.<br />\n<br />\nÎ— Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· Ï€Î¿Ï… Ï…Ï€Î¬ÏÏ‡ÎµÎ¹ Î±Ï…Ï„Î® Ï„Î· ÏƒÏ„Î¹Î³Î¼Î® ÏƒÏ„Î¿ ÏƒÏÏƒÏ„Î·Î¼Î± ÎµÎ¯Î½Î±Î¹:<br />\n{$authorMailingAddress}<br />\n<br />\nÎ‘Î½ Î±Ï…Ï„Î® Î· Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· Î´ÎµÎ½ ÎµÎ¯Î½Î±Î¹ ÏƒÏ‰ÏƒÏ„Î® Î® Î­Ï‡ÎµÎ¹ Î±Î»Î»Î¬Î¾ÎµÎ¹, ÏƒÎ±Ï‚ Ï€Î±ÏÎ±ÎºÎ±Î»Î¿ÏÎ¼Îµ Î±ÎºÎ¿Î»Î¿Ï…Î¸Î®ÏƒÏ„Îµ Ï„Î¿Î½ Ï€Î±ÏÎ±ÎºÎ¬Ï„Ï‰ ÏƒÏÎ½Î´ÎµÏƒÎ¼Î¿ Î³Î¹Î± Î½Î± ÎµÎ½Î·Î¼ÎµÏÏŽÏƒÎµÏ„Îµ Ï„Î¿ Ï€ÎµÎ´Î¯Î¿ Ï„Î·Ï‚ Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ®Ï‚ ÏƒÎ±Ï‚ :<br />\n<br />\nURL Î ÏÎ¿Ï†Î¯Î» Î§ÏÎ®ÏƒÏ„Î·: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nÎ“Î¹Î± Î½Î± Ï…Ï€Î¿Î²Î¬Î»Î»ÎµÏ„Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ® ÏƒÎ±Ï‚, Î¸Î± Ï€ÏÎ­Ï€ÎµÎ¹ Î½Î± ÏƒÏ…Î½Î´ÎµÎ¸ÎµÎ¯Ï„Îµ ÏƒÏ„Î¿Î½ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï ÎºÎ±Î¹ Î¿Î»Î¿ÎºÎ»Î®ÏÏŽÏƒÏ„Îµ Ï„Î·Î½ Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ .<br />\n<br />\nURL Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÎ“Î¹Î± Î¿Ï€Î¿Î¹Î±Î´Î®Ï€Î¿Ï„Îµ ÎµÏÏŽÏ„Î·ÏƒÎ· Î® Î´Î¹ÎµÏ…ÎºÏÎ¯Î½Î·ÏƒÎ· ÏƒÏ‡ÎµÏ„Î¹ÎºÎ® Î¼Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Î¼Ï€Î¿ÏÎµÎ¯Ï„Îµ Î½Î± ÎµÏ€Î¹ÎºÎ¿Î¹Î½Ï‰Î½ÎµÎ¯Ï„Îµ Î¼Î±Î¶Î¯ Î¼Î¿Ï…<br />\n<br />\n{$editorialContactSignature}','Î‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï€Î¿ÏƒÏ„Î­Î»ÎµÏ„Î±Î¹ Î±Ï€ÏŒ Î­Î½Î±Î½ ÎµÏ€Î¹Î¼ÎµÎ»Î·Ï„Î® ÏƒÎµ Î­Î½Î±Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ Î²Î¹Î²Î»Î¯Î¿Ï… ÏŒÏ„Î±Î½ Î¿ ÎµÏ€Î¹Î¼ÎµÎ»Î·Ï„Î®Ï‚ Î±Î½Î±Î¸Î­Ï„ÎµÎ¹ ÏƒÏ„Î¿Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·.'),('BFR_BOOK_DENIED','el_GR','Î’Î¹Î²Î»Î¯Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·','Î‘Î³Î±Ï€Î·Ï„Î­/Î® {$authorName}:<br />\n<br />\nÎ”Ï…ÏƒÏ„Ï…Ï‡ÏŽÏ‚, Î´ÎµÎ½ ÎµÎ¯Î½Î±Î¹ Î´Ï…Î½Î±Ï„ÏŒÎ½ Î±Ï…Ï„Î® Ï„Î· ÏƒÏ„Î¹Î³Î¼Î® Î½Î± ÏƒÎ±Ï‚ Î±Î½Î±Î¸Î­ÏƒÏ‰ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… {$bookForReviewTitle} .<br />\n<br />\nÎ•ÏÏ‡Î¿Î¼Î±Î¹ ÏŒÏ„Î¹ Î¸Î± ÎµÎ½Î´Î¹Î±Ï†ÎµÏÎ¸ÎµÎ¯Ï„Îµ Î½Î± Î±Î½Î±Î»Î¬Î²ÎµÏ„Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· ÎºÎ¬Ï€Î¿Î¹Î¿Ï… Î¬Î»Î»Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Î±Ï€ÏŒ Ï„Î·Î½ Î»Î¯ÏƒÏ„Î± Î¼Î±Ï‚, ÎµÎ¯Ï„Îµ Ï„ÏŽÏÎ± Î® ÏƒÏ„Î¿ Î¼Î­Î»Î»Î¿Î½.<br />\n<br />\n{$editorialContactSignature}','Î‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï€Î¿ÏƒÏ„Î­Î»ÎµÏ„Î±Î¹ Î±Ï€ÏŒ Î­Î½Î±Î½ ÎµÏ€Î¹Î¼ÎµÎ»Î·Ï„Î® ÏƒÎµ Î­Î½Î±Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Ï€Î¿Ï… ÎµÎ½Î´Î¹Î±Ï†Î­ÏÎµÏ„Î±Î¹ Î½Î± Î±Î¾Î¹Î¿Î»Î¿Î³Î®ÏƒÎµÎ¹ Î­Î½Î± Î²Î¹Î²Î»Î¯Î¿, Ï„Î¿ Î¿Ï€Î¿Î¯Î¿ Î´ÎµÎ½ ÎµÎ¯Î½Î±Î¹ Ï€Î»Î­Î¿Î½ Î´Î¹Î±Î¸Î­ÏƒÎ¹Î¼Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·.'),('BFR_BOOK_REQUESTED','el_GR','Î’Î¹Î²Î»Î¯Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·: Î‘Î¯Ï„Î·Î¼Î± Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î²Î¹Î²Î»Î¯Î¿Ï…','Î‘Î³Î±Ï€Î·Ï„Î­/Î® {$editorName}:<br />\n<br />\nÎ•Î½Î´Î¹Î±Ï†Î­ÏÎ¿Î¼Î±Î¹ Î½Î± Î±Î½Î±Î»Î¬Î²Ï‰ Ï„Î·Î½ ÏƒÏÎ½Ï„Î±Î¾Î· Î¼Î¹Î±Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î³Î¹Î± Ï„Î¿ Î²Î¹Î²Î»Î¯Î¿  {$bookForReviewTitle}.<br />\n<br />\nÎ£Î±Ï‚ Ï€Î±ÏÎ±ÎºÎ±Î»ÏŽ Î½Î± Î¼Îµ ÎµÎ½Î·Î¼ÎµÏÏŽÏƒÎµÏ„Îµ Î±Î½ Ï„Î¿ ÏƒÏ…Î³ÎºÎµÎºÏÎ¹Î¼Î­Î½Î¿ Î²Î¹Î²Î»Î¯Î¿ ÎµÎ¯Î½Î±Î¹ Î±ÎºÏŒÎ¼Î± Î´Î¹Î±Î¸Î­ÏƒÎ¹Î¼Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·.<br />\n<br />\n{$authorContactSignature}','Î‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï€Î¿ÏƒÏ„Î­Î»ÎµÏ„Î±Î¹ ÏƒÎµ Î­Î½Î±Î½ ÎµÏ€Î¹Î¼ÎµÎ»Î·Ï„Î® Î±Ï€ÏŒ Î­Î½Î±Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Ï€Î¿Ï… ÎµÎ½Î´Î¹Î±Ï†Î­ÏÎµÏ„Î±Î¹ Î±Î½Î± Î±Î½Î±Î»Î¬Î²ÎµÎ¹ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· ÎµÎ½ÏŒÏ‚ Î²Î¹Î²Î»Î¯Î¿Ï… Î±Ï€ÏŒ Ï„Î·Î½ ÏƒÏ‡ÎµÏ„Î¹ÎºÎ® Î»Î¯ÏƒÏ„Î±.'),('BFR_BOOK_MAILED','el_GR','Î’Î¹Î²Î»Î¯Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·: Î‘Ï€Î¿ÏƒÏ„Î¿Î»Î® Î²Î¹Î²Î»Î¯Î¿Ï…','Î‘Î³Î±Ï€Î·Ï„Î­/Î® {$authorName}:<br />\n<br />\nÎœÎµ Î±Ï…Ï„ÏŒ Î¼Î®Î½Ï…Î¼Î± Î¸Î± Î®Î¸ÎµÎ»Î± Î½Î± ÏƒÎ±Ï‚ ÎµÎ½Î·Î¼ÎµÏÏŽÏƒÏ‰ ÏŒÏ„Î¹ Ï„Î±Ï‡Ï…Î´ÏÏŒÎ¼Î·ÏƒÎ± Î­Î½Î± Î±Î½Ï„Î¯Î³ÏÎ±Ï†Î¿ Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… {$bookForReviewTitle} ÏƒÏ„Î·Î½ Ï€Î±ÏÎ±ÎºÎ¬Ï„Ï‰ Ï„Î±ÏˆÏ‡Ï…Î´ÏÎ¿Î¼Î¹ÎºÎ® Î´Î¹ÎµÏÎ¸Ï…Î½ÏƒÎ· Î· Î¿Ï€Î¿Î¯Î± Î²ÏÎ¯ÏƒÎºÎµÏ„Î±Î¹ ÏƒÏ„Î¿ online Î ÏÎ¿Ï†Î¯Î» ÏƒÎ±Ï‚:<br />\n{$authorMailingAddress}<br />\n <br />\nÎ“Î¹Î± Î½Î± Ï…Ï€Î¿Î²Î¬Î»Î»ÎµÏ„Î±Î¹ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ® ÏƒÎ±Ï‚, Î¸Î± Ï€ÏÎ­Ï€ÎµÎ¹ Î½Î± ÏƒÏ…Î½Î´ÎµÎ¸ÎµÎ¯Ï„Îµ ÏƒÏ„Î¿Î½ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï ÎºÎ±Î¹ Î±ÎºÎ¿Î»Î¿Ï…Î¸Î®ÏƒÏ„Îµ Ï„Î·Î½ Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯Î± Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚.<br />\n<br />\nURL Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÎ“Î¹Î± Î¿Ï€Î¿Î¹Î±Î´Î®Ï€Î¿Ï„Îµ ÎµÏÏŽÏ„Î·ÏƒÎ· Î® Î´Î¹ÎµÏ…ÎºÏÎ¯Î½Î·ÏƒÎ· ÏƒÏ‡ÎµÏ„Î¹ÎºÎ¬ Î¼Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Î¼Ï€Î¿ÏÎµÎ¯Ï„Îµ Î½Î± ÎµÏ€Î¹ÎºÎ¿Î¹Î½Ï‰Î½ÎµÎ¯Ï„Îµ Î¼Î±Î¶Î¯ Î¼Î¿Ï….<br />\n<br />\n{$editorialContactSignature}','Î¤Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï…Ï„ÏŒ Î±Ï€Î¿ÏƒÏ„Î­Î»ÎµÏ„Î±Î¹ Î±Ï€ÏŒ Î­Î½Î±Î½ ÎµÏ€Î¹Î¼ÎµÎ»Î·Ï„Î® ÏƒÎµ Î­Î½Î±Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ Î²Î¹Î²Î»Î¯Î¿Ï…, ÏŒÏ„Î±Î½ Î¿ ÎµÏ€Î¹Î¼ÎµÎ»Î·Ï„Î®Ï‚ Î­Ï‡ÎµÎ¹ Ï„Î±Ï‡Ï…Î´ÏÎ¿Î¼Î®ÏƒÎµÎ¹ Î­Î½Î± Î±Î½Ï„Î¯Î³ÏÎ±Ï†Î¿ Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Ï€ÏÎ¿Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· ÏƒÏ„Î¿Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†ÎµÎ¬.'),('BFR_REVIEWER_REMOVED','el_GR','Î’Î¹Î²Î»Î¯Î¿ Î³Î¹Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·','Î‘Î³Î±Ï€Î·Ï„Î­/Î® {$authorName}:<br />\n<br />\nÎœÎµ Î±Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î¸Î± Î®Î¸ÎµÎ»Î± Î½Î± ÏƒÎ±Ï‚ ÎµÎ½Î·Î¼ÎµÏÏŽÏƒÏ‰ Î³Î¹Î± Ï„Î·Î½ Î±ÎºÏÏÏ‰ÏƒÎ· Ï„Î·Ï‚ Î±Î½Î¬Î¸ÎµÏƒÎ·Ï‚ ÏƒÎµ ÎµÏƒÎ¬Ï‚ Ï„Î·Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï…  {$bookForReviewTitle}. Î— Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Ï„Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Î¸Î± ÎµÎ¯Î½Î±Î¹ Î´Î¹Î±Î¸Î­ÏƒÎ¹Î¼Î· Î³Î¹Î± Î±Î½Î¬Î¸ÎµÏƒÎ· ÏƒÎµ Î¬Î»Î»Î¿Ï…Ï‚ ÏƒÏ…Î³Î³ÏÎ±Ï†ÎµÎ¯Ï‚ Ï€Î¿Ï… ÎµÎ½Î´Î¹Î±Ï†Î­ÏÎ¿Î½Ï„Î±Î¹ Î³Î¹Î± Ï„Î·Î½ ÎµÏÎ³Î±ÏƒÎ¯Î± Î±Ï…Ï„Î®.<br />\n<br />\nÎ•ÏÏ‡Î¿Î¼Î±Î¹ Î½Î± ÎµÎ½Î´Î¹Î±Ï†ÎµÏÎ¸ÎµÎ¯Ï„Îµ Î¾Î±Î½Î¬ Î³Î¹Î± Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· ÎºÎ¬Ï€Î¿Î¹Î¿Ï… Î¬Î»Î»Î¿Ï… Î²Î¹Î²Î»Î¯Î¿Ï… Ï„Î·Ï‚ Î»Î¯ÏƒÏ„Î±Ï‚ Î¼Î±Ï‚, ÎµÎ¯Ï„Îµ Ï„ÏŽÏÎ± Î® ÏƒÏ„Î¿ Î¼Î­Î»Î»Î¿Î½.<br />\n<br />\n{$editorialContactSignature}','Î‘Ï…Ï„ÏŒ Ï„Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï€Î¿ÏƒÏ„Î­Î»ÎµÏ„Î±Î¹ Î±Ï€ÏŒ Î­Î½Î±Î½ ÎµÏ€Î¹Î¼ÎµÎ»Î·Ï„Î® ÏƒÎµ Î­Î½Î±Î½ ÏƒÏ…Î³Î³ÏÎ±Ï†Î­Î± Ï€Î¿Ï… ÎµÎ½Î´Î¹Î±Ï†Î­ÏÎµÏ„Î±Î¹ Î³Î¹Î± Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· ÎµÎ½ÏŒÏ‚ Î²Î¹Î²Î»Î¯Î¿Ï… ÏŒÏ„Î±Î½ Î±Ï…Ï„Î® Î´ÎµÎ½ ÎµÎ¯Î½Î±Î¹ Î´Î¹Î±Î¸Î­ÏƒÎ¹Î¼Î· Î³Î¹Î± Î±Î½Î¬Î¸ÎµÏƒÎ·.'),('BFR_REVIEW_REMINDER','es_ES','Libro para reseÃ±ar: Recordatorio de fecha de entrega','Estimado/a {$authorName}:<br />\n<br />\nEste mensaje es para recordarle que la fecha de entrega de la reseÃ±a de libro de {$bookForReviewTitle} es el {$bookForReviewDueDate}.<br />\n<br />\nPara enviar la reseÃ±a de libro, inicie sesiÃ³n en el sitio web de la revista y complete el proceso de envÃ­o de artÃ­culos en lÃ­nea. Para su comodidad, puede ver la URL del envÃ­o a continuaciÃ³n.<br />\n<br />\nURL del envÃ­o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi tiene cualquier pregunta o comentario sobre la reseÃ±a de libro, no dude en ponerse en contacto conmigo. <br />\n<br />\nGracias por su contribuciÃ³n a la revista. Quedo a la espera de recibir el envÃ­o.<br />\n<br />\n{$editorialContactSignature}','Esto es un mensaje de correo electrÃ³nico automÃ¡tico que se envÃ­a al autor/a del libro para reseÃ±ar para recordarle que la fecha de entrega de la revisiÃ³n se acerca.'),('BFR_REVIEW_REMINDER_LATE','es_ES','Libro para reseÃ±ar: Fecha de entrega de revisiÃ³n','Estimado/a {$authorName}:<br />\n<br />\nEste mensaje es para recordarle que la fecha de entrega de la reseÃ±a de libro de {$bookForReviewTitle} era el {$bookForReviewDueDate}, pero que aun no se recibiÃ³.<br />\n<br />\nPara enviar la reseÃ±a de libro, inicie sesiÃ³n en el sitio web de la revista y complete el proceso de envÃ­o de artÃ­culos en lÃ­nea. Para su comodidad, puede ver la URL del envÃ­o a continuaciÃ³n.<br />\n<br />\nURL del envÃ­o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi tiene cualquier pregunta o comentario sobre la reseÃ±a de libro, no dude en ponerse en contacto conmigo.<br />\n<br />\nGracias por su contribuciÃ³n a la revista. Quedo a la espera de recibir el envÃ­o.<br />\n<br />\n{$editorialContactSignature}','Esto es un mensaje de correo electrÃ³nico automÃ¡tico que se envÃ­a al autor/a del libro para reseÃ±ar cuando venciÃ³ la fecha de entrega de la revisiÃ³n.'),('BFR_BOOK_ASSIGNED','es_ES','Libro para reseÃ±ar: Libro asignado','Estimado/a {$authorName}:<br />\n<br />\nEste correo electrÃ³nico confirma que se le asignÃ³ la reseÃ±a de libro de {$bookForReviewTitle}, que debe entregar antes del {$bookForReviewDueDate}.<br />\n<br />\nAsegÃºrese de que la direcciÃ³n postal de su perfil de usuario/a en lÃ­nea estÃ¡ actualizada. Esta direcciÃ³n se usarÃ¡ para enviarle una copia del libro para su revisiÃ³n.<br />\n<br />\nLa direcciÃ³n postal que consta actualmente en nuestro archivo es: {$authorMailingAddress}<br />\n<br />\nSi la direcciÃ³n no estÃ¡ completa, o si ya no reside en esta direcciÃ³n, use la siguiente URL de perfil de usuario/a para actualizarla:<br />\n<br />\nURL de perfil de usuario/a: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPara enviar la reseÃ±a de libro, inicie sesiÃ³n en el sitio web de la revista y complete el proceso de envÃ­o de artÃ­culos en lÃ­nea.<br />\n<br />\nURL del envÃ­o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi tiene cualquier pregunta o comentario sobre la reseÃ±a de libro, no dude en ponerse en contacto conmigo.<br />\n<br />\n{$editorialContactSignature}','Este correo electrÃ³nico lo envÃ­a un editor/a al autor/a de una reseÃ±a de libro despuÃ©s de asignarle un libro para reseÃ±ar.'),('BFR_BOOK_DENIED','es_ES','Libro para reseÃ±ar','Estimado/a {$authorName}:<br />\n<br />\nPor desgracia, no fui capaz de asignarle {$bookForReviewTitle} para que escriba la reseÃ±a de libro. Espero que tome en consideraciÃ³n la posibilidad de revisar otro libro de nuestra lista, tanto ahora como en el futuro. {$editorialContactSignature}','Este correo electrÃ³nico lo envÃ­a un editor/a a un autor/a interesado cuando un libro no estÃ¡ disponible para revisiÃ³n.'),('BFR_BOOK_REQUESTED','es_ES','Libro para reseÃ±ar: Libro solicitado','Estimado/a {$editorName}:<br />\n<br />\nMe interesarÃ­a escribir la reseÃ±a de libro de {$bookForReviewTitle}.<br />\n<br />\nÂ¿SerÃ­a tan amable de confirmar si este libro estÃ¡ disponible para revisiÃ³n?<br />\n<br />\n{$authorContactSignature}','Este correo electrÃ³nico lo envÃ­a un autor/a interesado en escribir una reseÃ±a de libro de la lista a un editor/a.'),('BFR_BOOK_MAILED','es_ES','Libro para reseÃ±ar: Libro enviado','Estimado/a {$authorName}:<br />\n<br />\nEste correo electrÃ³nico confirma que enviÃ© una copia de {$bookForReviewTitle} a la siguiente direcciÃ³n postal de su perfil de usuario/a: {$authorMailingAddress}<br />\n<br />\nPara enviar la reseÃ±a de libro, inicie sesiÃ³n en el sitio web de la revista y complete el proceso de envÃ­o de artÃ­culos en lÃ­nea.<br />\n<br />\nURL del envÃ­o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi tiene cualquier pregunta o comentario sobre la reseÃ±a de libro, no dude en ponerse en contacto conmigo.<br />\n<br />\n{$editorialContactSignature}','Este correo electrÃ³nico lo envÃ­a un editor/a al autor/a de una reseÃ±a de libro despuÃ©s de enviar una copia del libro por correo a este.'),('BFR_REVIEWER_REMOVED','es_ES','Libro para reseÃ±ar','Estimado/a {$authorName}:<br />\n<br />\nEste correo electrÃ³nico confirma se le eliminÃ³ como autor/a de la reseÃ±a de libro de {$bookForReviewTitle}, lo que implica que la reseÃ±a de libro estarÃ¡ disponible para otros autores/as que estÃ©n interesados.<br />\n<br />\nEspero que tome en consideraciÃ³n la posibilidad de revisar otro libro de nuestra lista, tanto ahora como en el futuro.<br />\n<br />\n{$editorialContactSignature}','Este correo electrÃ³nico lo envÃ­a un editor/a a un autor/a interesado cuando un libro no estÃ¡ disponible para revisiÃ³n.'),('BFR_REVIEW_REMINDER','fa_IR','Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ: ÛŒØ§Ø¯Ø¢ÙˆØ±ÛŒ Ù…Ù‡Ù„Øª Ø§Ù†Ù‚Ø¶Ø§','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your book review of {$bookForReviewTitle} is due {$bookForReviewDueDate}.<br />\n<br />\nØ¨Ø±Ø§ÛŒ Ø§Ø±Ø³Ø§Ù„ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ØŒ Ù„Ø·ÙØ§ ÙˆØ§Ø±Ø¯ ÙˆØ¨ Ø³Ø§ÛŒØª Ù…Ø¬Ù„Ù‡ Ø´ÙˆÛŒØ¯ Ùˆ Ø±ÙˆÙ†Ø¯ Ø³Ø§Ø¨ Ù…ÛŒØª Ø¢Ù† Ù„Ø§ÛŒÙ† Ù…Ù‚Ø§Ù„Ù‡ Ø±Ø§ Ú©Ø§Ù…Ù„ Ú©Ù†ÛŒØ¯. Ø¨Ø±Ø§ÛŒ Ø±Ø§Ø­ØªÛŒ Ú©Ø§Ø± Ø´Ù…Ø§ ÛŒÚ© Ø¢Ø¯Ø±Ø³ Ø§Ø±Ø³Ø§Ù„ Ù†ÛŒØ² Ø¯Ø± Ø²ÛŒØ± Ø¢ÙˆØ±Ø¯Ù‡ Ø§ÛŒÙ…<br />\n<br />\nØ¢Ø¯Ø±Ø³ Ø§Ø±Ø³Ø§Ù„: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nØ¯Ø± ØµÙˆØ±Øª Ø¯Ø§Ø´ØªÙ† Ù‡Ø±Ú¯ÙˆÙ†Ù‡ Ø³Ø¤Ø§Ù„ Ø¯Ø± Ø®ØµÙˆØµ Ø§ÛŒÙ† Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ø¨Ø§ Ù…Ù† ØªÙ…Ø§Ø³ Ø¨Ú¯ÛŒØ±ÛŒØ¯.<br />\n<br />\nØ¨Ø§ ØªØ´Ú©Ø± Ù…Ù†ØªØ¸Ø± Ø¯Ø±ÛŒØ§ÙØª Ø³Ø§Ø¨ Ù…ÛŒØ´Ù† Ø´Ù…Ø§ Ù‡Ø³ØªÙ…<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEW_REMINDER_LATE','fa_IR','Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ: Ù…Ù‡Ù„Øª Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your book review of {$bookForReviewTitle} was due {$bookForReviewDueDate} ÙˆÙ„ÛŒ Ù‡Ù†ÙˆØ² Ø¯Ø±ÛŒØ§ÙØª Ù†Ø´Ø¯Ù‡ Ø§Ø³Øª.<br />\n<br />\nØ¨Ø±Ø§ÛŒ Ø§Ø±Ø³Ø§Ù„ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ ÙˆØ§Ø±Ø¯ Ø³Ø§ÛŒØª Ù…Ø¬Ù„Ù‡ Ø´ÙˆÛŒØ¯ Ùˆ Ø±ÙˆÙ†Ø¯ Ø¢Ù† Ù„Ø§ÛŒÙ† Ø³Ø§Ø¨ Ù…ÛŒØª Ù…Ù‚Ø§Ù„Ù‡ Ø±Ø§ Ú©Ø§Ù…Ù„ Ú©Ù†ÛŒØ¯. Ø¨Ø±Ø§ÛŒ Ø±Ø§Ø­ØªÛŒ Ú©Ø§Ø± Ø´Ù…Ø§ ÛŒÚ© Ø¢Ø¯Ø±Ø³ Ø§Ø±Ø³Ø§Ù„ Ù†ÛŒØ² Ø¯Ø± Ø²ÛŒØ± Ø¢ÙˆØ±Ø¯Ù‡ Ø§ÛŒÙ…<br />\n<br />\nØ¢Ø¯Ø±Ø³ Ø³Ø§Ø¨ Ù…ÛŒØ´Ù†: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nØ¯Ø± ØµÙˆØ±Øª Ø¯Ø§Ø´ØªÙ† Ù‡Ø±Ú¯ÙˆÙ†Ù‡ Ø³Ø¤Ø§Ù„ Ø¯Ø± Ø®ØµÙˆØµ Ø§ÛŒÙ† Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ø¨Ø§ Ù…Ù† ØªÙ…Ø§Ø³ Ø¨Ú¯ÛŒØ±ÛŒØ¯.<br />\n<br />\nØ¨Ø§ ØªØ´Ú©Ø± Ù…Ù†ØªØ¸Ø± Ø¯Ø±ÛŒØ§ÙØª Ø³Ø§Ø¨ Ù…ÛŒØ´Ù† Ø´Ù…Ø§ Ù‡Ø³ØªÙ…<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_ASSIGNED','fa_IR','Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ: Ø§Ù†ØªØ³Ø§Ø¨ Ú©ØªØ§Ø¨','{$authorName} Ø¹Ø²ÛŒØ²:<br />\n<br />\nØ§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ ØªØ§ÛŒÛŒØ¯ Ù…ÛŒ Ú©Ù†Ø¯ Ú©Ù‡  {$bookForReviewTitle} Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ø¨Ù‡ Ø´Ù…Ø§ Ø§Ù†ØªØ³Ø§Ø¨ Ø¯Ø§Ø¯Ù‡ Ø´Ø¯Ù‡ Ø§Ø³Øª Ùˆ ØªØ§ ØªØ§Ø±ÛŒØ® {$bookForReviewDueDate} Ø¨Ø§ÛŒØ¯ Ø§Ù†Ø¬Ø§Ù… Ø´ÙˆØ¯.<br />\n<br />\nÙ„Ø·ÙØ§ Ù…Ø·Ø¦Ù† Ø´ÙˆÛŒØ¯ Ú©Ù‡ Ø¢Ø¯Ø±Ø³ Ø§ÛŒÙ…ÛŒÙ„ Ø´Ù…Ù‡ Ø¯Ø± Ù¾Ø±ÙˆÙØ§ÛŒÙ„ Ø´Ù…Ø§ Ø¨Ø±ÙˆØ² Ø§Ø³Øª. Ø§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ Ø¨Ø±Ø§ÛŒ Ø§Ø±Ø³Ø§Ù„ ÛŒÚ© Ú©Ù¾ÛŒ Ø§Ø² Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ø´Ù…Ø§ Ø¨Ù‡ Ù…Ù†Ø¸ÙˆØ± Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ø¨Ú©Ø§Ø± Ø®ÙˆØ§Ù‡Ø¯ Ø±ÙØª.<br />\n<br />\nØ¢Ø¯Ø±Ø³ Ø§ÛŒÙ…ÛŒÙ„ÛŒ Ú©Ù‡ Ù…Ø§ Ø§Ø² Ø´Ù…Ø§ Ø¯Ø§Ø±ÛŒÙ…:<br />\n{$authorMailingAddress}<br />\n<br />\nØ§Ú¯Ø± Ø§ÛŒÙ† Ø¢Ø¯Ø±Ø³ Ø§ÛŒÙ…ÛŒÙ„ Ù†Ø§Ú©Ø§Ù…Ù„ Ø§Ø³Øª Ùˆ ÛŒØ§ Ø¯ÛŒÚ¯Ø± Ù…ÙˆØ±Ø¯ Ø§Ø³ØªÙØ§Ø¯Ù‡ Ø´Ù…Ø§ Ù†ÛŒØ³ØªØŒ Ù„Ø·ÙØ§ Ø§Ø² Ø¢Ø¯Ø±Ø³ Ø²ÛŒØ± Ø¨Ø±Ø§ÛŒ Ø¨Ø±ÙˆØ²Ø±Ø³Ø§Ù†ÛŒ Ø¢Ø¯Ø±Ø³ Ø§ÛŒÙ…ÛŒÙ„ Ø®ÙˆØ¯ Ø§Ø³ØªÙØ§Ø¯Ù‡ Ú©Ù†ÛŒØ¯:<br />\n<br />\nØ¢Ø¯Ø±Ø³ Ù¾Ø±ÙˆÙØ§ÛŒÙ„ Ú©Ø§Ø±Ø¨Ø±: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nØ¨Ø±Ø§ÛŒ Ø§Ø±Ø³Ø§Ù„ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ù„Ø·ÙØ§ ÙˆØ§Ø±Ø¯ Ø³Ø§ÛŒØª Ø´Ø¯Ù‡ Ùˆ Ø±ÙˆÙ†Ø¯ Ø§Ø±Ø³Ø§Ù„ Ø¢Ù† Ù„Ø§ÛŒÙ† Ù…Ù‚Ø§Ù„Ù‡  Ø±Ø§ Ú©Ø§Ù…Ù„ Ú©Ù†ÛŒØ¯.<br />\n<br />\nØ¢Ø¯Ø±Ø³ Ø³Ø§Ø¨ Ù…ÛŒØ´Ù†: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nØ¯Ø± ØµÙˆØ±Øª Ø¯Ø§Ø´ØªÙ† Ù‡Ø±Ú¯ÙˆÙ†Ù‡ Ø³Ø¤Ø§Ù„ Ø¯Ø± Ø®ØµÙˆØµ Ø§ÛŒÙ† Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ø¨Ø§ Ù…Ù† ØªÙ…Ø§Ø³ Ø¨Ú¯ÛŒØ±ÛŒØ¯.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to a book review author when an editor assigns the book for review to the author.'),('BFR_BOOK_DENIED','fa_IR','Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ','{$authorName} Ø¹Ø²ÛŒØ²:<br />\n<br />\nÙ…ØªØ§Ø³ÙØ§Ù†Ù‡ Ù…Ù† Ù†Ù…ÛŒØªÙˆØ§Ù†Ù… Ú©ØªØ§Ø¨ {$bookForReviewTitle} Ø±Ø§ Ø¨Ù‡ Ø´Ù…Ø§ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ù…Ù†ØªØ³Ø¨ Ú©Ù†Ù….<br />\n<br />\nØ§Ù…ÛŒØ¯ÙˆØ§Ø±Ù… Ø´Ù…Ø§ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ø¯ÛŒÚ¯Ø±ÛŒ  Ø§Ø² Ù„ÛŒØ³Øª Ù…Ø§ Ø±Ø§ Ø­Ø§Ù„ ÛŒØ§ Ø¢ÛŒÙ†Ø¯Ù‡ Ø¨Ù‡ Ø¹Ù‡Ø¯Ù‡ Ø¨Ú¯ÛŒØ±ÛŒØ¯<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_REQUESTED','fa_IR','Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ: Ú©ØªØ§Ø¨ Ø¯Ø±Ø®ÙˆØ§Ø³Øª Ø´Ø¯Ù‡','{$editorName} Ø¹Ø²ÛŒØ²:<br />\n<br />\nÙ…Ù† Ù…Ø§ÛŒÙ„Ù… Ú©Ù‡ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ {$bookForReviewTitle} Ø±Ø§ Ø¨Ù‡ Ø¹Ù‡Ø¯Ù‡ Ø¨Ú¯ÛŒØ±Ù….<br />\n<br />\nØ¯Ø± ØµÙˆØ±Øª Ø§Ù…Ú©Ø§Ù† Ù…Ø´Ø®Øµ Ú©Ù†ÛŒØ¯ Ú©Ù‡ Ø¢ÛŒØ§ Ø§ÛŒÙ† Ú©ØªØ§Ø¨ Ø¢ÛŒØ§ Ù‡Ù†ÙˆØ² Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ø¯Ø± Ø¯Ø±Ø³ØªØ±Ø³ Ù…ÛŒ Ø¨Ø§Ø´Ø¯ØŸ<br />\n<br />\n{$authorContactSignature}',''),('BFR_BOOK_MAILED','fa_IR','Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ: Ú©ØªØ§Ø¨ Ø§Ø±Ø³Ø§Ù„ Ø´Ø¯','{$authorName} Ø¹Ø²ÛŒØ²:<br />\n<br />\nØ§ÛŒÙ† Ø§ÛŒÙ…Ù„ ØªØ§ÛŒÛŒØ¯ Ù…ÛŒ Ú©Ù†Ø¯ Ú©Ù‡ Ù…Ù† ÛŒÚ© Ú©Ù¾ÛŒ Ø§Ø² {$bookForReviewTitle} Ø±Ø§ Ø¨Ù‡ Ø¢Ø¯Ø±Ø³ Ø§ÛŒÙ…ÛŒÙ„ Ø²ÛŒØ± Ø§Ø² Ø·Ø±ÛŒÙ‚ Ù¾Ø±ÙˆÙØ§ÛŒÙ„ Ø¢Ù†Ù„Ø§ÛŒÙ† Ø´Ù…Ø§ Ø§Ø±Ø³Ø§Ù„ Ú©Ø±Ø¯Ù‡ Ø§Ù…:<br />\n{$authorMailingAddress}<br />\n<br />\nØ¨Ø±Ø§ÛŒ Ø§Ø±Ø³Ø§Ù„ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ØŒ Ù„Ø·ÙØ§ ÙˆØ§Ø±Ø¯ ÙˆØ¨ Ø³Ø§ÛŒØª Ù…Ø¬Ù„Ù‡ Ø´ÙˆÛŒØ¯ Ùˆ Ø±ÙˆÙ†Ø¯ Ø³Ø§Ø¨ Ù…ÛŒØª Ø¢Ù† Ù„Ø§ÛŒÙ† Ù…Ù‚Ø§Ù„Ù‡ Ø±Ø§ Ú©Ø§Ù…Ù„ Ú©Ù†ÛŒØ¯. Ø¨Ø±Ø§ÛŒ Ø±Ø§Ø­ØªÛŒ Ú©Ø§Ø± Ø´Ù…Ø§ ÛŒÚ© Ø¢Ø¯Ø±Ø³ Ø§Ø±Ø³Ø§Ù„ Ù†ÛŒØ² Ø¯Ø± Ø²ÛŒØ± Ø¢ÙˆØ±Ø¯Ù‡ Ø§ÛŒÙ…<br />\n<br />\nØ¢Ø¯Ø±Ø³ Ø§Ø±Ø³Ø§Ù„: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nØ¯Ø± ØµÙˆØ±Øª Ø¯Ø§Ø´ØªÙ† Ù‡Ø±Ú¯ÙˆÙ†Ù‡ Ø³Ø¤Ø§Ù„ Ø¯Ø± Ø®ØµÙˆØµ Ø§ÛŒÙ† Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ø¨Ø§ Ù…Ù† ØªÙ…Ø§Ø³ Ø¨Ú¯ÛŒØ±ÛŒØ¯.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEWER_REMOVED','fa_IR','Ú©ØªØ§Ø¨ Ø¨Ø±Ø§ÛŒ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ','{$authorName} Ø¹Ø²ÛŒØ²:<br />\n<br />\nØ§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ ØªØ§ÛŒÛŒØ¯ Ù…ÛŒ Ú©Ù†Ø¯ Ú©Ù‡ Ø´Ù…Ø§ Ø§Ø² Ù„ÛŒØ³Øª Ú©Ø§Ø±Ø´Ù†Ø§Ø³Ø§Ù† Ú©ØªØ§Ø¨ {$bookForReviewTitle} Ø­Ø°Ù Ø´Ø¯Ù‡ Ø§ÛŒØ¯ØŒ ØªØ§ Ø¨Ø¯ÛŒÙ† ÙˆØ³ÛŒÙ„Ù‡ Ø¯Ø± Ø¯Ø³ØªØ±Ø³ Ø¯ÛŒÚ¯Ø± Ù†ÙˆÛŒØ³Ù†Ø¯Ú¯Ø§Ù† Ø¹Ù„Ø§Ù‚Ù‡ Ù…Ù†Ø¯ Ø¨Ø±Ø§ÛŒ ÙˆØ§Ø±Ø´Ù†Ø§Ø³ÛŒ Ú©ØªØ§Ø¨ Ù‚Ø±Ø§Ø± Ú¯ÛŒØ±Ø¯.<br />\n<br />\nØ§Ù…ÛŒØ¯ÙˆØ§Ø±Ù… Ø¯Ø± Ø¢ÛŒÙ†Ø¯Ù‡ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ø³Ø§ÛŒØ± Ú©ØªØ§Ø¨Ù‡Ø§ÛŒ Ù…Ø§Ø± Ø±Ø§ Ø¨Ù‡ Ø¹Ù‡Ø¯Ù‡ Ø¨Ú¯ÛŒØ±ÛŒØ¯<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEW_REMINDER','fr_CA','Compte rendu de livre : Rappel de la date d\'Ã©chÃ©ance','Madame, Monsieur, {$authorName}:<br />\n<br />\nCeci est un rappel amical de la date d\'Ã©chÃ©ance de votre compte rendu de livre {$bookForReviewTitle} qui est le {$bookForReviewDueDate}.<br />\n<br />\nAfin de soumettre votre compte rendu de livre, veuillez vous connecter au site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne. Pour plus de commoditÃ©s, l\'URL de la soumission vous est fourni ci-dessous.<br />\n<br />\nURL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  communiquer avec moi si vous avez des questions ou prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\nMerci pour votre contribution Ã  la revue et nous avons hÃ¢te de recevoir votre soumission.<br />\n<br />\n{$editorialContactSignature}','Ceci est un courriel gÃ©nÃ©rÃ© automatiquement et qui est envoyÃ© Ã  un auteur qui doit effectuer un compte rendu de livre lorsque la date d\'Ã©chÃ©ance approche.'),('BFR_REVIEW_REMINDER_LATE','fr_CA','Compte rendu de livre : compte rendu non reÃ§u','Monsieur, Madame, {$authorName} :<br />\n<br />\nCeci est un rappel amical pour vous informer que votre compte rendu du livre {$bookForReviewTitle} Ã©tait attendu le {$bookForReviewDueDate} mais n\'a pas encore Ã©tÃ© reÃ§u.<br />\n<br />\nPour soumettre votre compte rendu de livre, veuillez vous connecter au site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne. Pour plus de commoditÃ©s, l\'URL de la soumission vous a Ã©tÃ© fourni ci-dessous.<br />\n<br />\nL\'URL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  communiquer avec moi si vous avez des questions ou des prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\nMerci pour votre contribution Ã  la revue et nous avons hÃ¢tes de recevoir votre soumission.<br />\n<br />\n{$editorialContactSignature}','Ceci est un courriel gÃ©nÃ©rÃ© automatiquement lorsque la date d\'Ã©chÃ©ance pour qu\'un auteur soumette son compte rendu de livre est dÃ©passÃ©e.'),('BFR_BOOK_ASSIGNED','fr_CA','Compte rendu de livre : livre assignÃ©','Monsieur, Madame, {$authorName} :<br />\n<br />\nCe courriel confirme que {$bookForReviewTitle} vous a Ã©tÃ© assignÃ© pour un compte rendu qui devra Ãªtre complÃ©tÃ© d\'ici le {$bookForReviewDueDate}.<br />\n<br />\nVeuillez vous assurer que l\'adresse postale dans votre profil utilisateur est Ã  jour. Cette adresse sera utilisÃ©e pour vous envoyer une copie du livre dont vous devez faire le compte rendu.<br />\n<br />\nL\'adresse postale prÃ©sentement consignÃ©e est:<br />\n{$authorMailingAddress}<br />\n<br />\nSi cette adresse est incomplÃ¨te ou si vous n\'habitez plus Ã  cette adresse, veuillez utiliser l\'URL du profil utilisateur suivant pour mettre Ã  jour votre adresse :<br />\n<br />\nURL du profil utilisateur : <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nPour soumettre votre compte rendu de livre, veuillez vous connecter dans le site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne.<br />\n<br />\nURL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou des prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur pour demander Ã  un auteur d\'effectuer un compte rendu de livre.'),('BFR_BOOK_DENIED','fr_CA','Compte rendu de livre','Madame, Monsieur, {$authorName} :<br />\n<br />\nMalheureusement, Je suis dans l\'impossibilitÃ© de vous assigner {$bookForReviewTitle} Ã  ce moment-ci pour fins de compte rendu.<br />\n<br />\nJ\'espÃ¨re que vous considÃ©rez faire le compte rendu d\'un autre livre de notre liste, soit dÃ¨s maintenant ou Ã  un autre moment.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur Ã  un auteur intÃ©ressÃ© lorsque un livre n\'est plus disponible pour effectuer un compte rendu.'),('BFR_BOOK_REQUESTED','fr_CA','Compte rendu de livre : demande de livre','Madame, Monsieur, {$editorName} :<br />\n<br />\nJe suis intÃ©ressÃ© Ã  faire le compte rendu du livre {$bookForReviewTitle}.<br />\n<br />\nPourriez-vous m\'informer si ce livre est toujours disponible pour fins de compte rendu?<br />\n<br />\n{$authorContactSignature}',''),('BFR_BOOK_MAILED','fr_CA','Compte rendu de livre : livre postÃ©','Madame, Monsieur, {$authorName} :<br />\n<br />\nCe courriel vous confirme l\'envoi postal d\'une copie de {$bookForReviewTitle} Ã  l\'adresse postale suivante, provenant de votre profil utilisateur en ligne :<br />\n{$authorMailingAddress}<br />\n <br />\nPour soumettre votre compte rendu de livre, veuillez vous connecter dans le site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne.<br />\n<br />\nURL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  communiquer avec moi si vous avez des questions ou des prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur Ã  un auteur qui doit effectuer un compte rendu de livre pour l\'avertir que le livre vient de lui Ãªtre postÃ©.'),('BFR_REVIEWER_REMOVED','fr_CA','Compte rendu de livre','Madame, Monsieur, {$authorName} :<br />\n<br />\nCe courriel confirme que vous n\'Ãªtes plus responsable du compte rendu du livre {$bookForReviewTitle}, qui sera de nouveau disponible aux autres auteurs intÃ©ressÃ©s Ã  en faire le compte rendu.<br />\n<br />\nJ\'espÃ¨re que vous considÃ©rez faire le compte rendu d\'un autre livre dans notre liste, soit dÃ¨s maintenant ou Ã  un autre moment.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur Ã  un auteur intÃ©ressÃ© lorsqu\'un livre n\'est plus disponible pour fins d\'Ã©valuation.'),('BFR_REVIEW_REMINDER','it_IT','Recensioni - Promemoria di scadenza','Gentile {$authorName},<br />\n<br />\nTi ricordo che attendiamo la tua recensione di {$bookForReviewTitle} per il  {$bookForReviewDueDate}.<br />\n<br />\nPer inviare la recensione, fai log-in nel sito della rivista e completa il processo di submission. Per tua praticitÃ , qui sotto trovi un link diretto.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSentiti libero di contattarmi per qualsiasi eventuale dubbio.<br />\n<br />\nGrazie del tuo contributo, che aspetto di ricevere presto.<br />\n<br />\n{$editorialContactSignature}','Questa email viene generata automaticamente come promemoria di scadenza di una recensione'),('BFR_REVIEW_REMINDER_LATE','it_IT','Recensioni - Promemoria di scadenza','Gentile {$authorName},<br />\n<br />\nTi ricordo che ancora attendiamo la tua recensione di {$bookForReviewTitle}, scaduta il  {$bookForReviewDueDate}, ma che non abbiamo ancora ricevuto.<br />\n<br />\nPer inviare la recensione, fai log-in nel sito della rivista e completa il processo di submission. Per tua praticitÃ , qui sotto trovi un link diretto.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSentiti libero di contattarmi per qualsiasi eventuale dubbio.<br />\n<br />\nGrazie del tuo contributo, che aspetto di ricevere presto.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_ASSIGNED','it_IT','Recensioni - Assegnazione volume','Gentile {$authorName},<br />\n<br />\nTi confermo l\'assegnazione di {$bookForReviewTitle} in recensione, con scadenza  {$bookForReviewDueDate}.<br />\n<br />\nTi prego di controllare che l\'indirizzo postale che hai inserito nel tuo profilo sia aggiornato, poichÃ© verrÃ  utilizzato per la spedizione del volume.<br />\n<br />\nL\'indirizzo che abbiamo Ã¨:<br />\n{$authorMailingAddress}<br />\n<br />\nSe Ã¨ incompleto o sbagliato, utilizza il link qui sotto per aggiornarlo, all\'interno del tuo profilo.<br />\n<br />\nUser Profile URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nPer inviarci la revisione, fai log-in nel sito della rivista e completa il normale processo di submission, all\'indirizzo <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSentiti libero di contattarmi per qualsiasi eventuale dubbio.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_DENIED','it_IT','Recensione','Gentile {$authorName}:<br />\n<br />\nPurtroppo non posso assegnarti {$bookForReviewTitle} in recensione.<br />\n<br />\nSpero che troverai, in futuro, altri libri da recensire.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_MAILED','it_IT','Recensioni - Volume spedito','Gentile {$authorName},<br />\n<br />\nTi comunico che abbiamo spedito una copia di {$bookForReviewTitle} all\'indirizzo che hai indicato nel tuo profilo: <br />\n{$authorMailingAddress}<br />\n<br />\nPer inviare la recensione, fai log-in nel sito della rivista e completa il processo di submission. Per tua praticitÃ , qui sotto trovi un link diretto.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSentiti libero di contattarmi per qualsiasi eventuale dubbio.<br />\n<br />\nGrazie del tuo contributo, che aspetto di ricevere presto.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEWER_REMOVED','it_IT','Recensione','Gentile {$authorName}:<br />\n<br />\nTi scrivo per confermarti la cancellazione della recensione da parte tua di  {$bookForReviewTitle}, che verrÃ  reso disponibile ad altri autori interessati a recensirlo.<br />\n<br />\nSpero che tu voglia considerare altri libri da recensire, disponibili nel nostro elenco ora o in futuro.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_REQUESTED','it_IT','Recensioni - Richiesta volume','Gentile {$editorName}:<br />\n<br />\nSono interessato a recensire \"{$bookForReviewTitle}\".<br />\n<br />\nPuoi confermarmi la disponibilitÃ  o meno del volume?<br />\n<br />\nSaluti,<br />\n{$authorContactSignature}',''),('BFR_REVIEW_REMINDER','ja_JP','æ›¸è©• : ç· åˆ‡æ—¥ãƒªãƒžã‚¤ãƒ³ãƒ€','{$authorName} æ§˜:<br />\n<br />\nã“ã‚Œã¯ {$bookForReviewDueDate} ãŒç· åˆ‡ã® {$bookForReviewTitle} ã®æ›¸è©•ã«ã¤ã„ã¦ã®ãƒªãƒžã‚¤ãƒ³ãƒ€ãƒ¼ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚<br />\n<br />\næ›¸è©•ã‚’é€ä¿¡ã™ã‚‹ãŸã‚ã«ï¼Œé›‘èªŒã®Webã‚µã‚¤ãƒˆã«ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã‚ªãƒ³ãƒ©ã‚¤ãƒ³è«–æ–‡æŠ•ç¨¿ãƒ—ãƒ­ã‚»ã‚¹ã‚’å®Œäº†ã—ã¦ãã ã•ã„ã€‚ä¸‹è¨˜ã®æŠ•ç¨¿URLã‹ã‚‰ã‚¢ã‚¯ã‚»ã‚¹ã§ãã¾ã™ã€‚<br />\n<br />\næŠ•ç¨¿ URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nã‚‚ã—ä½•ã‹ã”è³ªå•ãªã©ã‚ã‚Šã¾ã—ãŸã‚‰ãŠæ°—è»½ã«ãŠå•ã„åˆã‚ã›ãã ã•ã„ã€‚<br />\n<br />\næœ¬èªŒã¸ã®ã”å”åŠ›ã«æ„Ÿè¬ã„ãŸã—ã¾ã™ã¨ã¨ã‚‚ã«ï¼ŒæŠ•ç¨¿ãŒå±Šãã®ã‚’æ¥½ã—ã¿ã«ã—ã¦ãŠã‚Šã¾ã™ã€‚<br />\n<br />\n{$editorialContactSignature}','ç· åˆ‡æ—¥ãŒè¿‘ä»˜ã„ã¦ã„ã‚‹æ›¸è©•ã®åŸ·ç­†ã«å¯¾ã—ã¦è‡ªå‹•çš„ã«ä½œæˆã•ã‚Œã¦é€ä¿¡ã•ã‚Œã‚‹ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚'),('BFR_REVIEW_REMINDER_LATE','ja_JP','æ›¸è©•: ç· åˆ‡æ—¥','{$authorName}æ§˜:<br />\n<br />\nã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ ç· åˆ‡æ—¥ãŒ {$bookForReviewDueDate} ã¨ãªã£ã¦ã„ã‚‹ æ›¸è©• {$bookForReviewTitle} ãŒã¾ã å±Šã„ã¦ã„ãªã„ãŸã‚ãŠé€ã‚Šã—ã¦ãŠã‚Šã¾ã™ã€‚<br />\n<br />\næ›¸è©•ã‚’é€ä¿¡ã™ã‚‹ãŸã‚ã«ï¼Œé›‘èªŒã®Webã‚µã‚¤ãƒˆã«ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã‚ªãƒ³ãƒ©ã‚¤ãƒ³æŠ•ç¨¿ãƒ—ãƒ­ã‚»ã‚¹ã‚’å®Œäº†ã—ã¦ãã ã•ã„ã€‚ä¸‹è¨˜ã®URLã‚ˆã‚ŠæŠ•ç¨¿ãŒå¯èƒ½ã§ã™ã€‚<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nä»Šå›žã®æ›¸è©•ã«ã¤ã„ã¦ä½•ã‹ç–‘å•ã‚„æ°—ã«ãªã‚‹ç‚¹ãŒã”ã–ã„ã¾ã—ãŸã‚‰ãŠæ°—è»½ã«ã”è³ªå•ãã ã•ã„ã€‚<br />\næ›¸è©•ãŒåˆ°ç€ã™ã‚‹ã®ã‚’æ¥½ã—ã¿ã«ã—ã¦ãŠã‚Šã¾ã™ã€‚<br />\n<br />\n{$editorialContactSignature}','æ›¸è©•ã®ç· åˆ‡ãŒã™ãŽãŸå ´åˆã«æ›¸è©•åŸ·ç­†è€…ã«è‡ªå‹•çš„ã«ç”Ÿæˆã•ã‚Œã¦é€ä¿¡ã•ã‚Œã‚‹ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚'),('BFR_BOOK_MAILED','ja_JP','æ›¸è©•: å›³æ›¸ã®ãƒ¡ãƒ¼ãƒ«é€šçŸ¥','{$authorName} æ§˜:<br />\n<br />\nã“ã‚Œã¯ï¼Œã‚ªãƒ³ãƒ©ã‚¤ãƒ³ãƒ¦ãƒ¼ã‚¶æƒ…å ±ã«ç™»éŒ²ã•ã‚Œã¦ã„ã‚‹æ¬¡ã®ã‚¢ãƒ‰ãƒ¬ã‚¹: {$authorMailingAddress} å®›ã« {$bookForReviewTitle} ã®ã‚³ãƒ”ãƒ¼ã‚’é€ä¿¡ã—ãŸã“ã¨ã‚’ãŠçŸ¥ã‚‰ã›ã™ã‚‹ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚<br />\n<br />\næ›¸è©•ã‚’æŠ•ç¨¿ã™ã‚‹ã«ã¯ï¼Œé›‘èªŒã®Webã‚µã‚¤ãƒˆã«ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã‚ªãƒ³ãƒ©ã‚¤ãƒ³æŠ•ç¨¿ãƒ—ãƒ­ã‚»ã‚¹ã‚’å®Œäº†ã—ã¦ãã ã•ã„ã€‚<br />\næŠ•ç¨¿ã¯ä¸‹è¨˜ã®URLã‚ˆã‚Šå¯èƒ½ã§ã™ã€‚<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nä»Šå›žã®æ›¸è©•ã«ã¤ã„ã¦ä½•ã‹ç–‘å•ç‚¹ã‚„æ°—ã«ãªã‚‹ç‚¹ãŒã”ã–ã„ã¾ã—ãŸã‚‰ï¼ŒãŠæ°—è»½ã«ãŠå•ã„åˆã‚ã›ãã ã•ã„ã€‚<br />\n<br />\n{$editorialContactSignature}','ç·¨é›†è€…ãŒå›³æ›¸ã®ã‚³ãƒ”ãƒ¼ã‚’è©•è€…ã«ãƒ¡ãƒ¼ãƒ«ã—ãŸéš›ã«ç·¨é›†è€…ãŒè©•è€…ã«é€ä¿¡ã™ã‚‹ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚'),('BFR_REVIEWER_REMOVED','ja_JP','æ›¸è©•å–æ¶ˆ','{$authorName} <br />\n<br />\n{$bookForReviewTitle} ã®è©•è€…ã¨ã—ã¦å‰Šé™¤ã•ã‚Œã¾ã—ãŸã€‚ã“ã®å›³æ›¸ã¯ä»–ã®æ–¹ã®æ›¸è©•ç”¨ã«ã¾ã‚ã•ã‚Œã¾ã™ã€‚<br />\n<br />\nä»Šå›žã‚ã‚‹ã„ã¯æ¬¡å›žä»¥é™ã«ï¼Œãƒªã‚¹ãƒˆã«ã‚ã‚‹ä»–ã®å›³æ›¸ã§å†åº¦ã”æ¤œè¨Žã„ãŸã ã‘ã‚Œã°å¹¸ã„ã§ã™ã€‚<br />\n<br />\n{$editorialContactSignature}','ä»Šå›žã‚ã‚‹ã„ã¯æ¬¡å›žä»¥é™ã«ï¼Œãƒªã‚¹ãƒˆã«æŽ²è¼‰ã•ã‚Œã¦ã„ã‚‹ä»–ã®å›³æ›¸ã§å†åº¦ã”æ¤œè¨Žã„ãŸã ã‘ã¾ã—ãŸã‚‰å¹¸ã„ã§ã™ã€‚'),('BFR_BOOK_DENIED','ja_JP','æ›¸è©•è¬çµ¶','{$authorName} æ§˜:<br />\n<br />\næ®‹å¿µãªãŒã‚‰ï¼Œä»Šå›ž {$bookForReviewTitle} ã®æ›¸è©•ã‚’ãŠé¡˜ã„ã™ã‚‹ã“ã¨ãŒã§ãã¾ã›ã‚“ã€‚<br />\n<br />\nä»Šå›žã‚ã‚‹ã„ã¯æ¬¡å›žä»¥é™ã«ï¼Œãƒªã‚¹ãƒˆã«æŽ²è¼‰ã•ã‚Œã¦ã„ã‚‹ä»–ã®å›³æ›¸ã§å†åº¦ã”æ¤œè¨Žã„ãŸã ã‘ã¾ã—ãŸã‚‰å¹¸ã„ã§ã™ã€‚<br />\n<br />\n{$editorialContactSignature}','å›³æ›¸ã®æ›¸è©•ãŒã§ããªãã£ãŸå ´åˆã«æ›¸è©•åŸ·ç­†å¸Œæœ›è€…ã«å¯¾ã—ã¦ç·¨é›†è€…ã‹ã‚‰é€ã‚‰ã‚Œã‚‹ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚'),('BFR_BOOK_ASSIGNED','ja_JP','æ›¸è©•: å‰²ã‚Šå½“ã¦','{$authorName} æ§˜:<br />\n<br />\n{$bookForReviewTitle} ã®æ›¸è©•ãŒã‚ãªãŸã«å‰²ã‚Šå½“ã¦ã‚‰ã‚Œã¾ã—ãŸã€‚ {$bookForReviewDueDate} ã¾ã§ã«æ›¸è©•ã‚’å®Œæˆã•ã›ã¦ãã ã•ã„ã€‚<br />\n<br />\nãƒ¦ãƒ¼ã‚¶ãƒ—ãƒ­ãƒ•ã‚£ãƒ¼ãƒ«ã«ç™»éŒ²ã•ã‚Œã¦ã„ã‚‹ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒæœ€æ–°ã‹ã©ã†ã‹ç¢ºèªã—ã¦ãã ã•ã„ã€‚ã“ã®ã‚¢ãƒ‰ãƒ¬ã‚¹ã¯æ›¸è©•ç”¨ã«å›³æ›¸ã‚’ã‚³ãƒ”ãƒ¼ã—ã¦é€ã‚‹éš›ã«ã‚‚ä½¿ç”¨ã•ã‚Œã¾ã™ã€‚<br />\n<br />\nã“ã¡ã‚‰ã§æŠŠæ¡ã—ã¦ã„ã‚‹ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹:<br />\n{$authorMailingAddress}<br />\n<br />\nã“ã®ãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ãŒä¸å®Œå…¨ã‹ï¼Œã‚‚ã¯ã‚„ä½¿ç”¨ã—ã¦ã„ãªã„å ´åˆã¯ï¼Œæ¬¡ã®ãƒ¦ãƒ¼ã‚¶ãƒ—ãƒ­ãƒ•ã‚£ãƒ¼ãƒ«URLã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã¦ï¼Œã‚¢ãƒ‰ãƒ¬ã‚¹æƒ…å ±ã‚’æ›´æ–°ã—ã¦ãã ã•ã„ã€‚:<br />\n<br />\nãƒ¦ãƒ¼ã‚¶ãƒ—ãƒ­ãƒ•ã‚£ãƒ¼ãƒ« URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\næ›¸è©•ã‚’æŠ•ç¨¿ã™ã‚‹ã«ã¯ï¼Œé›‘èªŒã®Webã‚µã‚¤ãƒˆã«ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã‚ªãƒ³ãƒ©ã‚¤ãƒ³æŠ•ç¨¿ãƒ—ãƒ­ã‚»ã‚¹ã‚’å®Œäº†ã—ã¦ãã ã•ã„ã€‚<br />\n<br />\næŠ•ç¨¿ URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nä»Šå›žã®æ›¸è©•ã«ã¤ã„ã¦ä½•ã‹ç–‘å•ç‚¹ã‚„ãŠæ°—ã¥ãã®ç‚¹ãŒã”ã–ã„ã¾ã—ãŸã‚‰ï¼ŒãŠæ°—è»½ã«ãŠå•ã„åˆã‚ã›ãã ã•ã„ã€‚<br />\n<br />\n{$editorialContactSignature}','ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯åŸ·ç­†è€…ã«å›³æ›¸ã‚’å‰²ã‚Šå½“ã¦ãŸéš›ã«ç·¨é›†è€…ãŒåŸ·ç­†è€…ã«é€ä¿¡ã™ã‚‹ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚'),('BFR_BOOK_REQUESTED','ja_JP','æ›¸è©•: ãƒªã‚¯ã‚¨ã‚¹ãƒˆ','{$editorName} æ§˜:<br />\n<br />\nç§ã¯ {$bookForReviewTitle} ã®æ›¸è©•åŸ·ç­†ã«é–¢å¿ƒãŒã‚ã‚Šã¾ã™ã€‚<br />\n<br />\nã“ã®å›³æ›¸ãŒã¾ã æ›¸è©•å¯èƒ½ã‹ã©ã†ã‹ç¢ºèªã—ã¦ã„ãŸã ã‘ã¾ã™ã§ã—ã‚‡ã†ã‹ï¼Ÿ<br />\n<br />\n{$authorContactSignature}','ã“ã‚Œã¯ï¼Œãƒªã‚¹ãƒˆã«ã‚ã‚‹å›³æ›¸ã®æ›¸è©•åŸ·ç­†ã«é–¢å¿ƒã®ã‚ã‚‹è‘—è€…ãŒç·¨é›†è€…ã«é€ä¿¡ã•ã‚Œã‚‹ãƒ¡ãƒ¼ãƒ«ã§ã™ã€‚'),('BFR_REVIEWER_REMOVED','nl_NL','Te bespreken boek','Beste {$authorName}:<br />\n<br />\nMet deze e-mail bevestigen wij dat u niet langer {$bookForReviewTitle} bespreekt. Het boek zal ter aangeboden worden aan andere geÃ¯nteresseerden.<br />\n<br />\nIk hoop dat u nu of in de toekomst wilt overwegen om een ander boek uit onze lijst te bespreken.<br />\n<br />\n{$editorialContactSignature}','Deze e-mail wordt door een redacteur verstuurd aan een auteur als een boek niet langer beschikbaar is voor bespreking'),('BFR_BOOK_MAILED','nl_NL','Boekbespreking: boek is verstuurd','Beste {$authorName}:<br />\n<br />\nMet deze e-mail bevestig ik dat ik een exemplaar van {$bookForReviewTitle} heb verstuurd naar het volgende adres uit uw gebruikersprofiel:<br />\n{$authorMailingAddress}<br />\n <br />\nOm uw bespreking in te dienen, kunt u inloggen op de website van het tijdschrift en het online indienen van een artikel uitvoeren.<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met me op te nemen als u vragen heeft over deze boekbespreking.<br />\n<br />\n{$editorialContactSignature}','Deze e-mail wordt door een  redacteur verstuur aan een auteur als de redacteur het te bespreken boek heeft verstuurd.'),('BFR_BOOK_REQUESTED','nl_NL','Boek gevraagd voor bespreking','Beste {$editorName}:<br />\n<br />\nIk heb interesse in het schrijven van een bespreking over {$bookForReviewTitle}.<br />\n<br />\nKunt u me zeggen of dit boek nog beschikbaar is voor bespreking?<br />\n<br />\n{$authorContactSignature}','Deze e-mail wordt door een auteur die een boek wil bespreken, verstuurd naar een redacteur.'),('BFR_BOOK_DENIED','nl_NL','Boekbespreking','Beste {$authorName}:<br />\n<br />\nHelaas kan ik {$bookForReviewTitle} niet voor een bespreking aan u toekennen.<br />\n<br />\nIk hoop dat u nu of in de toekomst wilt overwegen om een ander boek uit onze lijst te bespreken.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEW_REMINDER','nl_NL','Boekbespreking: herinnering aan de afloopdatum','Beste {$authorName}:<br />\n<br />\nDit is een vriendelijke herinnering dat uw boekbespreking van {$bookForReviewTitle} verwacht wordt op {$bookForReviewDueDate}.<br />\n<br />\nOm uw bespreking in te sturen, kunt u inloggen op de website van het tijdschrift en het online inzenden van een artikel doorlopen. Om het u makkelijk te maken vindt u hieronder een URL voor het inzenden.<br />\n<br />\nURL voor uw inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met mij op te nemen als u vragen heeft over deze boekbespreking.<br />\n<br />\nIk dank u voor uw bijdrage aan het tijdschrift en kijk uit naar het ontvangen van uw bijdrage.<br />\n<br />\n{$editorialContactSignature}','Dit is een automatisch gegenereerde e-mail die naar de auteur van een boekbespreking wordt verstuurd als  de uiterste inzenddatum nadert.'),('BFR_REVIEW_REMINDER_LATE','nl_NL','Boekbespreking: inzenddatum verlopen','Beste {$authorName}:<br />\n<br />\nDit is een vriendelijke herinnering dat uw boekbespreking van {$bookForReviewTitle} verwacht was op {$bookForReviewDueDate}, maar nog niet door ons is ontvangen.<br />\n<br />\nOm uw bespreking in te sturen, kunt u inloggen op de website van het tijdschrift en het online inzenden van een artikel doorlopen. Om het u makkelijk te maken vindt u hieronder een URL voor het inzenden.<br />\n<br />\nURL voor uw inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met mij op te nemen als u vragen heeft over deze boekbespreking.<br />\n<br />\nIk dank u voor uw bijdrage aan het tijdschrift en kijk uit naar het ontvangen van uw bijdrage.<br />\n<br />\n{$editorialContactSignature}','Dit is een automatisch gegenereerde e-mail die naar de auteur van een boekbespreking wordt verstuurd nadat de inzenddatum is gepasseerd.'),('BFR_BOOK_ASSIGNED','nl_NL','Boekbespreking: boek toegewezen','Beste {$authorName}:<br />\n<br />\nMet deze e-mail bevestigen wij dat {$bookForReviewTitle} aan u is toegewezen voor een boekbespreking. Wij verwachten de bespreking op  {$bookForReviewDueDate}.<br />\n<br />\nVergewis u ervan dat het postadres in uw profiel actueel is. Het boek wordt naar dat adres verstuurd.<br />\n<br />\nHet adres dat we momenteel van u hebben is:<br />\n{$authorMailingAddress}<br />\n<br />\nAls dit adres incompleet is of als u niet langer op dit adres bereikbaar bent kunt u de volgende URL gebruiken om uw adres in uw profiel bij te werken:<br />\n<br />\nURL gebruikersprofiel: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nOm uw bespreking in te sturen, kunt u inloggen op de website van het tijdschrift en het online inzenden van een artikel doorlopen. Om het u makkelijk te maken vindt u hieronder een URL voor het inzenden.<br />\n<br />\nURL voor uw inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met mij op te nemen als u vragen heeft over deze boekbespreking.<br />\n<br />\n{$editorialContactSignature}','Deze e-mail wordt door een redacteur verstuurd naar de auteur van een boekbespreking als de redacteur het boek aan die auteur toekent.'),('BFR_REVIEW_REMINDER','pt_BR','RevisÃ£o de literatura: Lembrete de prazo de conclusÃ£o','Prezada(o) {$authorName},<br />\n<br />\nEste Ã© apenas um lembrete de que o prazo para conclusÃ£o da revisÃ£o de literatura de {$bookForReviewTitle} Ã© {$bookForReviewDueDate}.<br />\n<br />\nPara enviar sua revisÃ£o, acesse o sistema e conclua o processo de submissÃ£o padrÃ£o. Para sua conveniÃªncia, segue a URL.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEm caso de dÃºvidas ou preocupaÃ§Ãµes com relaÃ§Ã£o ao processo de revisÃ£o de literatura, entre em contato.<br />\n<br />\nAgradecemos sua contribuiÃ§Ã£o Ã  revista e aguardamos sua submissÃ£o.<br />\n<br />\n{$editorialContactSignature}','Mensagem automÃ¡tica enviada ao autor de revisÃ£o de literatura, como lembrete de prazo de conclusÃ£o prÃ³ximo.'),('BFR_REVIEW_REMINDER_LATE','pt_BR','RevisÃ£o de literatura: Lembrete de prazo de conclusÃ£o expirado','Prezada(o) {$authorName}:<br />\n<br />\nEste Ã© um lembrete de que o prazo de conclusÃ£o da revisÃ£o de literatura {$bookForReviewTitle} venceu {$bookForReviewDueDate}, mas a revisÃ£o ainda nÃ£o foi recebida.<br />\n<br />\nPara enviar a revisÃ£o de literatura, acesse o sistema e conclua a submissÃ£o online padrÃ£o. Para sua conveniÃªncia, segue a URL.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEm caso de dÃºvidas ou preocupaÃ§Ãµes com relaÃ§Ã£o ao processo de revisÃ£o de literatura, entre em contato.<br />\n<br />\nAgradecemos sua contribuiÃ§Ã£o Ã  revista e aguardamos sua submissÃ£o.<br />\n<br />\n{$editorialContactSignature}','Mensagem automÃ¡tica enviada ao autor de revisÃ£o de literatura, como lembrete de prazo de conclusÃ£o prÃ³ximo.'),('BFR_BOOK_ASSIGNED','pt_BR','RevisÃ£o de literatura: revisÃ£o designada','Prezada(o) {$authorName}:<br />\n<br />\nEsta mensagem confirma a designaÃ§Ã£o do tÃ­tulo {$bookForReviewTitle} para revisÃ£o de literatura, a ser concluÃ­da atÃ© {$bookForReviewDueDate}.<br />\n<br />\nVerifique se seu endereÃ§o postal estÃ¡ atualizado no seu perfil, pois ele serÃ¡ usado para enviar uma cÃ³pia do trabalho.<br />\n<br />\nSeu endereÃ§o postal atual Ã©:<br />\n{$authorMailingAddress}<br />\n<br />\nCaso o endereÃ§o esteja incompleto ou equivocado, use a seguinte URL para atualizar seus dados cadastrais:<br />\n<br />\nURL do perfil: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPara enviar uma revisÃ£o de literatura, acesse o sistema e conclua o processo de submissÃ£o padrÃ£o de um artigo.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEm caso de dÃºvidas e preocupaÃ§Ãµes com relaÃ§Ã£o ao processo de revisÃ£o de literatura, entre em contato.<br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor ao autor de revisÃ£o de literatura, referente Ã  tarefa de revisÃ£o designada.'),('BFR_BOOK_DENIED','pt_BR','RevisÃ£o de literatura','Prezada(o) {$authorName}:<br />\n<br />\nInfelizmente nÃ£o Ã© possÃ­vel designar-lhe o tÃ­tulo {$bookForReviewTitle} para revisÃ£o de literatura.<br />\n<br />\nEspero poder contar com sua contribuiÃ§Ã£o para outro tÃ­tulo de nossa lista, agora ou em outra oportunidade futura.<br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor a autor interessado em realizar revisÃ£o de literatura, referente a literatura nÃ£o mais disponÃ­vel para revisÃ£o.'),('BFR_BOOK_REQUESTED','pt_BR','RevisÃ£o de literatura: revisÃ£o solicitada','Prezada(o) {$editorName},<br />\n<br />\nEstou interessado em escrever a revisÃ£o de literatura do tÃ­tulo {$bookForReviewTitle}.<br />\n<br />\nEste tÃ­tulo ainda estÃ¡ disponÃ­vel para revisÃ£o de literatura?<br />\n<br />\n{$authorContactSignature}','Mensagem enviada ao editor por autor interessado em realizar revisÃ£o de literatura disponÃ­vel na lista.'),('BFR_BOOK_MAILED','pt_BR','RevisÃ£o de literatura: revisÃ£o postada','Prezada(o) {$authorName},<br />\n<br />\nEsta mensagem Ã© uma confirmaÃ§Ã£o do envio via correio de uma cÃ³pia do tÃ­tulo {$bookForReviewTitle} para o seguinte endereÃ§o postal, disponÃ­vel em seu cadastro:<br />\n{$authorMailingAddress}<br />\n <br />\nPara enviar sua revisÃ£o de literatura, acesse o sistema e siga os passos para a submissÃ£o padrÃ£o completa de um artigo.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEm caso de dÃºvidas ou preocupaÃ§Ãµes com relaÃ§Ã£o ao processo de revisÃ£o de literatura, entre em contato.<br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor ao autor de revisÃ£o de literatura, referente Ã  postagem via correio de cÃ³pia do livro ao autor.'),('BFR_REVIEWER_REMOVED','pt_BR','RevisÃ£o de literatura','Prezada(o) {$authorName}:<br />\n<br />\nEsta mensagem Ã© uma confirmaÃ§Ã£o de sua exclusÃ£o do processo de revisÃ£o de literatura do tÃ­tulo {$bookForReviewTitle}, que serÃ¡ oferecido a outros autores interessados.<br />\n<br />\nEsperamos poder contar com sua contribuiÃ§Ã£o para outros tÃ­tulos de nossa lista, agora ou em outra oportunidade futura.<br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor ao autor de revisÃ£o de literatura, confirmando tÃ­tulo indisponÃ­vel para revisÃ£o.'),('BFR_REVIEW_REMINDER','pt_PT','Livro para RevisÃ£o: Lembrete do Prazo','Caro(a) {$authorName}:<br />\n<br />\nEste lembrete serve para recordar-lhe que a revisÃ£o do livro {$bookForReviewTitle} expirou o prazo {$bookForReviewDueDate}.<br />\n<br />\nPara submeter a sua revisÃ£o do livro, autentique-se no portal e complete o processo de submissÃ£o online. Para sua conveniÃªncia, Ã© fornecido em baixo o URL da submissÃ£o.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEntre em contacto com o Editor caso tenha dÃºvidas ou questÃµes a apresentar sobre a revisÃ£o do livro.','Trata-se de um email gerado automaticamente e que Ã© enviado para o responsÃ¡vel da revisÃ£o do livro, lembrando-o que o prazo da revisÃ£o estÃ¡ prÃ³ximo.'),('BFR_REVIEW_REMINDER_LATE','pt_PT','Livro para RevisÃ£o: Prazo da RevisÃ£o','Caro(a) {$authorName}:<br />\n<br />\nLembramos que o prazo da sua revisÃ£o do livro {$bookForReviewTitle} foi ultrapassada {$bookForReviewDueDate} e ainda nÃ£o foi recebida.<br />\n<br />\nPara submeter a sua revisÃ£o do livro, autentique-se no portal e complete o processo de submissÃ£o online. Para sua conveniÃªncia, fornecemos em baixo um URL da submissÃ£o.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEntre em contacto com o Editor caso tenha dÃºvidas ou questÃµes a apresentar sobre esta revisÃ£o do livro.<br />\n<br />\nObrigado pela sua contribuiÃ§Ã£o para a revisÃ£o, com os votos de receber com sucesso a sua submisssÃ£o.<br />\n<br />\n{$editorialContactSignature}','Trata-se de um email gerado automaticamente e que Ã© enviado ao responsÃ¡vel pela revisÃ£o do livro quando a data de revisÃ£o foi ultrapassada.'),('BFR_BOOK_ASSIGNED','pt_PT','Livro para RevisÃ£o: Livro AtribuÃ­do','Caro(a) {$authorName}:<br />\n<br />\nEste email confirma que {$bookForReviewTitle} foi-lhe atribuÃ­do um livro para revisÃ£o atÃ© {$bookForReviewDueDate}.<br />\n<br />\nCertifique-se que os dados o seu email estÃ£o correcto. Este endereÃ§o serÃ¡ usado para enviar uma cÃ³pia do livro para revisÃ£o.<br />\n<br />\nO endereÃ§o de email existente na base de dados Ã©:<br />\n{$authorMailingAddress}<br />\n<br />\nSe este endereÃ§o estÃ¡ incompleto ou desactivado, por favor use o seguinte URL para actualizar o seu perfil:<br />\n<br />\nURL do Perfil do Utilizador: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nPara submeter a sua revisÃ£o do livro, autentique-se no portal e complete o processo de submissÃ£o online disponÃ­vel no URL em baixo.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEntre em contacto com o Editor caso tenha dÃºvidas ou questÃµes a apresentar sobre a revisÃ£o do livro.<br />\n<br />\n{$editorialContactSignature}','Este email Ã© enviado por um editor a um responsÃ¡vel pela revisÃ£o do livro quando lhe Ã© atribuÃ­do uma revisÃ£o.'),('BFR_BOOK_DENIED','pt_PT','Livro para RevisÃ£o','Caro(a) {$authorName}:<br />\n<br />\nLamentamos, mas nÃ£o foi possÃ­vel atribuir-lhe o seguinte {$bookForReviewTitle} para revisÃ£o.<br />\n<br />\nPese embora essa impossibilidade, esperamos contar com a sua colaboraÃ§Ã£o em futuras revisÃµes de livros.<br />\n<br />\n{$editorialContactSignature}','Este email Ã© enviado por um editor a um potencial interessado quando o livro jÃ¡ nÃ£o estÃ¡ disponÃ­vel para revisÃ£o.'),('BFR_BOOK_REQUESTED','pt_PT','Livro para RevisÃ£o: Livro Requisitado','Caro(a) {$editorName}:<br />\n<br />\nEstou interessado em realizar uma revisÃ£o do livro {$bookForReviewTitle}.<br />\n<br />\nPode confirmar se este livro estÃ¡ disponÃ­vel para revisÃ£o?<br />\n<br />\n{$authorContactSignature}','Este email Ã© enviado ao editor por alguÃ©m interessado em realizar uma revisÃ£o de um livro.'),('BFR_BOOK_MAILED','pt_PT','Livro para RevisÃ£o: Livro Enviado','Caro(a) {$authorName}:<br />\n<br />\nEste email confirma que enviei uma cÃ³pia do {$bookForReviewTitle} para o seguinte endereÃ§o:<br />\n{$authorMailingAddress}<br />\n <br />\nPara submeter a sua revisÃ£o do livro, autentique-se no portal e complete o processo de submissÃ£o no URL indicado em baixo.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEntre em contacto com o Editor caso tenha dÃºvidas ou questÃµes a apresentar sobre a revisÃ£o do livro.<br />\n<br />\n{$editorialContactSignature}','Este email Ã© enviado por um editor para um revisor quando o editor enviou-lhe uma cÃ³pia do livro.'),('BFR_REVIEWER_REMOVED','pt_PT','Livro para RevisÃ£o','Caro(a) {$authorName}:<br />\n<br />\nEste email confirma que foi retirado como revisor do livro {$bookForReviewTitle}, o qual estarÃ¡ disponÃ­vel para outros interessados na revisÃ£o.<br />\n<br />\nEsperamos contar com a sua colaboraÃ§Ã£o, quer na actual ou em revisÃµes futuras.<br />\n<br />\n{$editorialContactSignature}','Este email Ã© enviado pelo editor a um interessado pela revisÃ£o quando este jÃ¡ nÃ£o disponÃ­vel para rever o livro.'),('BFR_REVIEW_REMINDER','ro_RO','Carte pentru a fi evaluatÄƒ: rapel privind data limitÄƒ','Stimate {$authorName}:<br />\n<br />\nVÄƒ readucem aminte cÄƒ evaluarea pentru cartea {$bookForReviewTitle} are data limitÄƒ {$bookForReviewDueDate}.<br />\n<br />\nPentru a trimite evaluarea, autentificaÈ›i-vÄƒ pe siteul revistei È™i completaÈ›i paÈ™ii pentru depunerea propunerii online. Pentru eficienÈ›Äƒ vi se ofer mai jos un URL la care sÄƒ depuneÈ›i propunerea.<br />\n<br />\nURL-ul pentru depunere propunere: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVÄƒ rog sÄƒ mÄƒ contactaÈ›i dacÄƒ aveÈ›i Ã®ntrebÄƒri sau neclaritÄƒÈ›i privind aceastÄƒ evaluare a cÄƒrÈ›ii.<br />\n<br />\nVÄƒ mulÈ›umim pentru contribuÈ›ia dumneavoastrÄƒ la revistÄƒ È™i aÈ™teptÄƒm propunerea.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEW_REMINDER_LATE','ro_RO','Carte pentru a fi evaluatÄƒ: data limitÄƒ pentru evaluare','Stimate {$authorName}:<br />\n<br />\nAcest mesaj este pentru a te anunÈ›a cÄƒ evaluarea cÄƒrÈ›ii intitulate {$bookForReviewTitle} a avut data limitÄƒ {$bookForReviewDueDate} È™i Ã®ncÄƒ nu a fost primitÄƒ.<br />\n<br />\nPentru a trimite evaluarea pentru carte, autentificaÈ›i-vÄƒ pe siteul revistei È™i completaÈ›i paÈ™ii pentru depunerea propunerii. Pentru a uÈ™ura procesul vÄƒ este dat mai jos un URL.<br />\n<br />\nURL-ul propunerii: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDacÄƒ aveÈ›i Ã®ntrebÄƒri sau nelÄƒmuriri, vÄƒ rog sÄƒ mÄƒ contactaÈ›i.<br />\n<br />\nVÄƒ mulÈ›umim pentru contribuÈ›ia la revistÄƒ È™i aÈ™teptÄƒm propunerea.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_ASSIGNED','ro_RO','Carte pentru a fi evaluatÄƒ: angajatÄƒ','Stimate {$authorName}:<br />\n<br />\nAcest email confirmÄƒ faptul cÄƒ {$bookForReviewTitle} v-a fost atribuit pentru a Ã®ncheia evaluarea pÃ¢nÄƒ la data de {$bookForReviewDueDate}.<br />\n<br />\nAsigurÄƒ-te cÄƒ adresa de email din profilul online este actualÄƒ. AceastÄƒ adresÄƒ va fi utilizatÄƒ pentru a trimite o copie a cÄƒrÈ›ii pentru a Ã®ncepe evaluarea.<br />\n<br />\nAdresa de email pe care o avem acum este:<br />\n{$authorMailingAddress}<br />\n<br />\nDacÄƒ adresa de email este incompletÄƒ sau nu mai este de actualitate, urmeazÄƒ URL-ul de mai jos pentru a o actualiza:<br />\n<br />\nURL-ul profilului utilizatorului: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nPentru a trimite evaluarea cÄƒrÈ›ii, autentificaÈ›i-vÄƒ pe siteul revistei È™i Ã®ncheiaÈ›i procesul de trimitere a propunerii.<br />\nURL-ul pentru depunere: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPentru Ã®ntrebÄƒri È™i neclaritÄƒÈ›i privind evaluarea acestei cÄƒrÈ›i, contactaÈ›i-mÄƒ.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_DENIED','ro_RO','Carte pentru a fi evaluatÄƒ','Stimate {$authorName}:<br />\n<br />\nDin nefericire nu vÄƒ pot angaja Ã®n acest moment cu evaluarea pentru {$bookForReviewTitle}.<br />\n<br />\nSperÄƒm cÄƒ veÈ›i lua Ã®n considerare evaluarea unei alte cÄƒrÈ›i din listÄƒ Ã®n acest moment sau poate Ã®n viitor.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_BOOK_REQUESTED','ro_RO','Carte pentru a fi evaluatÄƒ: solicitarea unei cÄƒrÈ›i','Stimate {$editorName}:<br />\n<br />\nSunt interesat de a face evaluarea pentru {$bookForReviewTitle}.<br />\n<br />\nPuteÈ›i confirma dacÄƒ aceastÄƒ carte este disponibilÄƒ?<br />\n<br />\n{$authorContactSignature}',''),('BFR_BOOK_MAILED','ro_RO','Carte pentru a fi evaluatÄƒ: cartea a fost trimisÄƒ prin email','Stimate {$authorName}:<br />\n<br />\nAcest email confirmÄƒ cÄƒ ai trimis o copie din {$bookForReviewTitle} la urmÄƒtoarea adresÄƒ de email existentÄƒ Ã®n profilul online a utilizatorului:<br />\n{$authorMailingAddress}<br />\n<br />\nPentru a trimite evaluarea cÄƒrÈ›ii, autentificaÈ›i-vÄƒ pe siteul revistei È™i Ã®ncheiaÈ›i procesul de trimitere online.<br />\n<br />\nURL-ul propunerii: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDacÄƒ aveÈ›i Ã®ntrebÄƒri È™i neclaritÄƒÈ›i privind evaluarea cÄƒrÈ›ii, contactaÈ›i-mÄƒ.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEWER_REMOVED','ro_RO','Carte pentru a fi evaluatÄƒ','Stimate {$authorName}:<br />\n<br />\nAcest email confirmÄƒ faptul cÄƒ aÈ›i fost dezangajat de la sarcina de evaluare a cÄƒrÈ›ii {$bookForReviewTitle}, care va fi pusÄƒ la dispoziÈ›ia autorilor interesaÈ›i pentur a face aceastÄƒ evaluare.<br />\n<br />\nSperÄƒm sÄƒ luaÈ›i Ã®n considerare evaluarea altei cÄƒrÈ›i din lista existentÄƒ, fie la acest moment sau Ã®n viitor.<br />\n<br />\n{$editorialContactSignature}',''),('BFR_REVIEW_REMINDER','uk_UA','ÐšÐ½Ð¸Ð³Ð¸ Ð´Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—: ÐÐ°Ð³Ð°Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ Ð´Ð°Ñ‚Ñƒ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¾Ð³Ð¾ Ñ‚ÐµÑ€Ð¼Ñ–Ð½Ñƒ','Ð¨Ð°Ð½Ð¾Ð²Ð½Ð¸Ð¹ {$authorName}:<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ - Ð½Ð°Ð³Ð°Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ Ñ‚Ðµ, Ñ‰Ð¾ {$bookForReviewDueDate} Ð·Ð°ÐºÑ–Ð½Ñ‡ÑƒÑ”Ñ‚ÑŒÑÑ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ð¹ Ñ‚ÐµÑ€Ð¼Ñ–Ð½ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ð’Ð°Ð¼Ð¸ ÐºÐ½Ð¸Ð³Ð¸ {$bookForReviewTitle}.<br />\n<br />\nÐ”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ, Ð±ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, ÑƒÐ²Ñ–Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ñ‚Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð¹Ñ‚Ðµ Ñ‚Ñ€Ð°Ð´Ð¸Ñ†Ñ–Ð¹Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ– Ð´Ð»Ñ Ð¾Ð¿ÑƒÐ±Ð»Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ. Ð”Ð»Ñ Ð±Ñ–Ð»ÑŒÑˆÐ¾Ñ— Ð·Ñ€ÑƒÑ‡Ð½Ð¾ÑÑ‚Ñ– Ð½Ð¸Ð¶Ñ‡Ðµ Ð¿Ð¾Ð´Ð°Ð½Ð¾ Ð°Ð´Ñ€ÐµÑÑƒ URL Ð´Ð»Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚ÐµÐ¹ Ð´Ð¾ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ.<br />\n<br />\nURL-Ð°Ð´Ñ€ÐµÑÐ° Ð´Ð»Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚ÐµÐ¹: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ñ‚Ðµ Ð¼ÐµÐ½Ñ–, ÑÐºÑ‰Ð¾ Ð’Ð¸ Ð¼Ð°Ñ”Ñ‚Ðµ Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸ ÑÑ‚Ð¾ÑÐ¾Ð²Ð½Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸.<br />\n<br />\nÐ”ÑÐºÑƒÑŽ Ð·Ð° Ð’Ð°ÑˆÑƒ Ñ€Ð¾Ð±Ð¾Ñ‚Ñƒ Ð´Ð»Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ñ‚Ð° Ð· Ð½ÐµÑ‚ÐµÑ€Ð¿Ñ–Ð½Ð½ÑÐ¼ Ñ‡ÐµÐºÐ°ÑŽ Ð’Ð°ÑˆÐ¾Ð³Ð¾ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ.<br />\n<br />\n{$editorialContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð³ÐµÐ½ÐµÑ€ÑƒÑ”Ñ‚ÑŒÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ Ñ– Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ”Ñ‚ÑŒÑÑ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ— Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ ÑÐº Ð½Ð°Ð³Ð°Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ Ñ‚Ðµ, Ñ‰Ð¾ Ð½Ð°Ð±Ð»Ð¸Ð¶Ð°Ñ”Ñ‚ÑŒÑÑ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ð¹ Ð´Ð»Ñ Ð½ÑŒÐ¾Ð³Ð¾ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¸Ð¹ Ñ‚ÐµÑ€Ð¼Ñ–Ð½ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ.'),('BFR_REVIEW_REMINDER_LATE','uk_UA','ÐšÐ½Ð¸Ð³Ð¸ Ð´Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—: ÐÐ°ÑÑ‚Ð°Ð½Ð½Ñ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¾Ð³Ð¾ Ñ‚ÐµÑ€Ð¼Ñ–Ð½Ñƒ','Ð¨Ð°Ð½Ð¾Ð²Ð½Ð¸Ð¹ {$authorName}:<br />\n<br />\nÐœÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ - Ð½Ð°Ð³Ð°Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ Ñ‚Ðµ, Ñ‰Ð¾ {$bookForReviewDueDate} Ð·Ð°ÐºÑ–Ð½Ñ‡Ð¸Ð²ÑÑ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ð¹ Ñ‚ÐµÑ€Ð¼Ñ–Ð½ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ð’Ð°Ð¼Ð¸ ÐºÐ½Ð¸Ð³Ð¸ {$bookForReviewTitle}, Ð°Ð»Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ Ð´Ð¾ÑÑ– Ð½Ðµ Ð±ÑƒÐ»Ð° Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð° Ð½Ð°Ð¼Ð¸.<br />\n<br />\nÐ”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ, Ð±ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, ÑƒÐ²Ñ–Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ñ‚Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð¹Ñ‚Ðµ Ñ‚Ñ€Ð°Ð´Ð¸Ñ†Ñ–Ð¹Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ– Ð´Ð»Ñ Ð¾Ð¿ÑƒÐ±Ð»Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ. Ð”Ð»Ñ Ð±Ñ–Ð»ÑŒÑˆÐ¾Ñ— Ð·Ñ€ÑƒÑ‡Ð½Ð¾ÑÑ‚Ñ– Ð½Ð¸Ð¶Ñ‡Ðµ Ð¿Ð¾Ð´Ð°Ð½Ð¾ Ð°Ð´Ñ€ÐµÑÑƒ URL Ð´Ð»Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚ÐµÐ¹ Ð´Ð¾ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ.<br />\n<br />\nURL-Ð°Ð´Ñ€ÐµÑÐ° Ð´Ð»Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚ÐµÐ¹: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ñ‚Ðµ Ð¼ÐµÐ½Ñ–, ÑÐºÑ‰Ð¾ Ð’Ð¸ Ð¼Ð°Ñ”Ñ‚Ðµ Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸ ÑÑ‚Ð¾ÑÐ¾Ð²Ð½Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸.<br />\n<br />\nÐ”ÑÐºÑƒÑŽ Ð·Ð° Ð’Ð°ÑˆÑƒ Ñ€Ð¾Ð±Ð¾Ñ‚Ñƒ Ð´Ð»Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ñ‚Ð° Ð· Ð½ÐµÑ‚ÐµÑ€Ð¿Ñ–Ð½Ð½ÑÐ¼ Ñ‡ÐµÐºÐ°ÑŽ Ð’Ð°ÑˆÐ¾Ð³Ð¾ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ.<br />\n<br />\n{$editorialContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð³ÐµÐ½ÐµÑ€ÑƒÑ”Ñ‚ÑŒÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ Ñ– Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ”Ñ‚ÑŒÑÑ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ— Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ ÑÐº Ð½Ð°Ð³Ð°Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ Ñ‚Ðµ, Ñ‰Ð¾ Ð´Ð°Ñ‚Ð° Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¾Ð³Ð¾ Ð´Ð»Ñ Ð½ÑŒÐ¾Ð³Ð¾ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¾Ð³Ð¾ Ñ‚ÐµÑ€Ð¼Ñ–Ð½Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¶Ðµ Ð¼Ð¸Ð½ÑƒÐ»Ð°.'),('BFR_BOOK_ASSIGNED','uk_UA','ÐšÐ½Ð¸Ð³Ð¸ Ð´Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—: Ð ÐµÑ†ÐµÐ½Ð·Ñ–Ñ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ Ð´Ð¾Ñ€ÑƒÑ‡ÐµÐ½Ð°','Ð¨Ð°Ð½Ð¾Ð²Ð½Ð¸Ð¹ {$authorName}:<br />\n<br />\nÐ¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÑÑ”Ð¼Ð¾, Ñ‰Ð¾ Ð’Ð°Ð¼ Ð±ÑƒÐ»Ð¾ Ð´Ð¾Ñ€ÑƒÑ‡ÐµÐ½Ð¾ Ð´Ð¾ {$bookForReviewDueDate} Ð½Ð°Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ {$bookForReviewTitle}.<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð¿ÐµÑ€ÐµÐºÐ¾Ð½Ð°Ð¹Ñ‚ÐµÑÑ, Ñ‰Ð¾ Ñƒ Ð’Ð°ÑˆÐ¾Ð¼Ñƒ Ð¿Ñ€Ð¾Ñ„Ñ–Ð»Ñ– Ð½Ð° ÑÐ°Ð¹Ñ‚Ñ– Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ ÐºÐ¾Ñ€ÐµÐºÑ‚Ð½Ð¾ Ð²ÐºÐ°Ð·Ð°Ð½Ð° Ð¿Ð¾ÑˆÑ‚Ð¾Ð²Ð° Ð°Ð´Ñ€ÐµÑÐ°. ÐÐ° Ñ†ÑŽ Ð°Ð´Ñ€ÐµÑÑƒ Ð’Ð°Ð¼ Ð±ÑƒÐ´Ðµ Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð½Ð¸Ð¹ Ð¿Ñ€Ð¸Ð¼Ñ–Ñ€Ð½Ð¸Ðº ÐºÐ½Ð¸Ð³Ð¸ Ð´Ð»Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ— Ð½Ð° Ð½ÐµÑ—.<br />\n<br />\nÐ—Ð°Ñ€Ð°Ð· Ð¼Ð¸ Ð¼Ð°Ñ”Ð¼Ð¾ Ð½Ð°ÑÑ‚ÑƒÐ¿Ð½Ñƒ Ð’Ð°ÑˆÑƒ Ð°Ð´Ñ€ÐµÑÑƒ:<br />\n{$authorMailingAddress}<br />\n<br />\nÐ¯ÐºÑ‰Ð¾ Ñ†Ñ Ð°Ð´Ñ€ÐµÑÐ° Ð½ÐµÐ¿Ð¾Ð²Ð½Ð° Ð°Ð±Ð¾ Ð½ÐµÐ²Ñ–Ñ€Ð½Ð°, Ð±ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, ÑÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð¹Ñ‚ÐµÑÑ Ð¿Ð¾ÑÐ¸Ð»Ð°Ð½Ð½ÑÐ¼ Ð½Ð¸Ð¶Ñ‡Ðµ, Ñ‰Ð¾Ð± Ð¾Ð½Ð¾Ð²Ð¸Ñ‚Ð¸ Ñƒ Ð’Ð°ÑˆÐ¾Ð¼Ñƒ Ð¿Ñ€Ð¾Ñ„Ñ–Ð»Ñ– Ð½ÐµÐ¾Ð±Ñ…Ñ–Ð´Ð½Ñƒ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–ÑŽ:<br />\n<br />\nURL-Ð°Ð´Ñ€ÐµÑÐ° Ð¿Ñ€Ð¾Ñ„Ñ–Ð»ÑŽ ÐºÐ¾Ñ€Ð¸ÑÑ‚ÑƒÐ²Ð°Ñ‡Ð°: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nÐ”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ, Ð±ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, ÑƒÐ²Ñ–Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ñ‚Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð¹Ñ‚Ðµ Ñ‚Ñ€Ð°Ð´Ð¸Ñ†Ñ–Ð¹Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ– Ð´Ð»Ñ Ð¾Ð¿ÑƒÐ±Ð»Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ.<br />\n<br />\nURL-Ð°Ð´Ñ€ÐµÑÐ° Ð´Ð»Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚ÐµÐ¹: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ñ‚Ðµ Ð¼ÐµÐ½Ñ–, ÑÐºÑ‰Ð¾ Ð’Ð¸ Ð¼Ð°Ñ”Ñ‚Ðµ Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸ ÑÑ‚Ð¾ÑÐ¾Ð²Ð½Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸.<br />\n<br />\n{$editorialContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ” Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, ÐºÐ¾Ð»Ð¸ Ð´Ð¾Ñ€ÑƒÑ‡Ð°Ñ” Ð¹Ð¾Ð¼Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸.'),('BFR_BOOK_DENIED','uk_UA','ÐšÐ½Ð¸Ð³Ð¸ Ð´Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—','Ð¨Ð°Ð½Ð¾Ð²Ð½Ð¸Ð¹ {$authorName}:<br />\n<br />\nÐÐ°Ð¶Ð°Ð»ÑŒ, Ñ‚ÐµÐ¿ÐµÑ€ Ñ Ð²Ð¶Ðµ Ð½Ðµ Ð¼Ð¾Ð¶Ñƒ Ð´Ð¾Ñ€ÑƒÑ‡Ð¸Ñ‚Ð¸ Ð’Ð°Ð¼ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸ {$bookForReviewTitle}.<br />\n<br />\nÐ¥Ð¾Ñ‡Ñƒ ÑÐ¿Ð¾Ð´Ñ–Ð²Ð°Ñ‚Ð¸ÑÑŒ, Ñ‰Ð¾ Ð·Ð°Ñ€Ð°Ð· Ð°Ð±Ð¾ Ñƒ Ð¼Ð°Ð¹Ð±ÑƒÑ‚Ð½ÑŒÐ¾Ð¼Ñƒ Ð’Ð¸ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÐµÑ‚Ðµ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ñ–ÑÑ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ–Ð½ÑˆÐ¾Ñ— ÐºÐ½Ð¸Ð³Ð¸ Ð· Ð½Ð°ÑˆÐ¾Ð³Ð¾ ÑÐ¿Ð¸ÑÐºÑƒ.<br />\n<br />\n{$editorialContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ” Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, Ð·Ð°Ñ–Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð¾Ð¼Ñƒ Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ– ÐºÐ½Ð¸Ð³Ð¸, ÐºÐ¾Ð»Ð¸ ÐºÐ½Ð¸Ð³Ð° Ð²Ð¶Ðµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ.'),('BFR_BOOK_REQUESTED','uk_UA','ÐšÐ½Ð¸Ð³Ð¸ Ð´Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—: Ð—Ð°Ð¿Ð¸Ñ‚ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ','Ð¨Ð°Ð½Ð¾Ð²Ð½Ð¸Ð¹ {$editorName}:<br />\n<br />\nÐ¯ Ñ…Ð¾Ñ‚Ñ–Ð² Ð±Ð¸ Ð½Ð°Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ {$bookForReviewTitle}.<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ñ‚Ðµ, Ñ‡Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ñ†Ñ ÐºÐ½Ð¸Ð³Ð° Ð·Ð°Ñ€Ð°Ð· Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ.<br />\n<br />\n{$authorContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ” Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€, Ð·Ð°Ñ–Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð¸Ð¹ Ñƒ Ð½Ð°Ð¿Ð¸ÑÐ°Ð½Ð½Ñ– Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ— Ð½Ð° Ð¾Ð´Ð½Ñƒ Ð· ÐºÐ½Ð¸Ð³, Ð¿Ñ€ÐµÐ´ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð¸Ñ… Ñƒ ÑÐ¿Ð¸ÑÐºÑƒ.'),('BFR_BOOK_MAILED','uk_UA','ÐšÐ½Ð¸Ð³Ð¸ Ð´Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—: ÐšÐ½Ð¸Ð³Ð° Ð²Ñ–Ð´Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð°','Ð¨Ð°Ð½Ð¾Ð²Ð½Ð¸Ð¹ {$authorName}:<br />\n<br />\nÐ¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ñ…Ð¾Ñ‡Ñƒ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð¸Ñ‚Ð¸, Ñ‰Ð¾ Ñ Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð² Ð¿Ñ€Ð¸Ð¼Ñ–Ñ€Ð½Ð¸Ðº ÐºÐ½Ð¸Ð³Ð¸ {$bookForReviewTitle} Ð½Ð° Ð²ÐºÐ°Ð·Ð°Ð½Ñƒ Ð½Ð¸Ð¶Ñ‡Ðµ Ð°Ð´Ñ€ÐµÑÑƒ Ð· Ð’Ð°ÑˆÐ¾Ð³Ð¾ Ð¿Ñ€Ð¾Ñ„Ñ–Ð»ÑŽ Ð½Ð° ÑÐ°Ð¹Ñ‚Ñ– Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ:<br />\n{$authorMailingAddress}<br />\n <br />\nÐ”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ, Ð±ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, ÑƒÐ²Ñ–Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ñ‚Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð¹Ñ‚Ðµ Ñ‚Ñ€Ð°Ð´Ð¸Ñ†Ñ–Ð¹Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ– Ð´Ð»Ñ Ð¾Ð¿ÑƒÐ±Ð»Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ.<br />\n<br />\nURL-Ð°Ð´Ñ€ÐµÑÐ° Ð´Ð»Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚ÐµÐ¹: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ñ‚Ðµ Ð¼ÐµÐ½Ñ–, ÑÐºÑ‰Ð¾ Ð’Ð¸ Ð¼Ð°Ñ”Ñ‚Ðµ Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð¿Ñ€Ð¾Ð±Ð»ÐµÐ¼Ð¸ ÑÑ‚Ð¾ÑÐ¾Ð²Ð½Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸.<br />\n<br />\n{$editorialContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð²Ñ–Ð´Ð¿Ñ€Ð°Ð²Ð»ÑÑ” Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, ÑÐºÐ¾Ð¼Ñƒ Ð´Ð¾Ñ€ÑƒÑ‡ÐµÐ½Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸, Ð¿Ñ–ÑÐ»Ñ Ð²Ñ–Ð´Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ð¹Ð¾Ð¼Ñƒ Ð¿Ñ€Ð¸Ð¼Ñ–Ñ€Ð½Ð¸ÐºÑƒ ÐºÐ½Ð¸Ð³Ð¸.'),('BFR_REVIEWER_REMOVED','uk_UA','ÐšÐ½Ð¸Ð³Ð¸ Ð´Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ—','Ð¨Ð°Ð½Ð¾Ð²Ð½Ð¸Ð¹ {$authorName}:<br />\n<br />\nÐ¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÑÑŽ, Ñ‰Ð¾ Ð’Ð°ÑˆÐµ Ð´Ð¾Ñ€ÑƒÑ‡ÐµÐ½Ð½Ñ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ½Ð¸Ð³Ð¸ {$bookForReviewTitle} Ð±ÑƒÐ»Ð¾ ÑÐºÐ°ÑÐ¾Ð²Ð°Ð½Ðµ. Ð¢ÐµÐ¿ÐµÑ€ Ñ†Ñ ÐºÐ½Ð¸Ð³Ð° Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ–Ð½ÑˆÐ¸Ð¼ Ð·Ð°Ñ–Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð¸Ð¼ Ð°Ð²Ñ‚Ð¾Ñ€Ð°Ð¼.<br />\n<br />\nÐ¡Ð¿Ð¾Ð´Ñ–Ð²Ð°ÑŽÑÑŒ, Ñ‰Ð¾ Ð·Ð°Ñ€Ð°Ð· Ð°Ð±Ð¾ Ñƒ Ð¼Ð°Ð¹Ð±ÑƒÑ‚Ð½ÑŒÐ¾Ð¼Ñƒ Ð’Ð¸ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÐµÑ‚Ðµ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ñ–ÑÑ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ–Ð½ÑˆÐ¾Ñ— ÐºÐ½Ð¸Ð³Ð¸ Ð· Ð½Ð°ÑˆÐ¾Ð³Ð¾ ÑÐ¿Ð¸ÑÐºÑƒ.<br />\n<br />\n{$editorialContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ” Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, Ð·Ð°Ñ–Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð¾Ð¼Ñƒ Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ– ÐºÐ½Ð¸Ð³Ð¸, ÐºÐ¾Ð»Ð¸ ÐºÐ½Ð¸Ð³Ð° Ð²Ð¶Ðµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ.'),('BFR_REVIEW_REMINDER','eu_ES','Ebaluatzeko liburua: mugaegunaren oroigarria','{$authorName} jauna/andrea:<br />\n<br />\nOroigarri honekin gogorarazi nahi dizut zure {$bookForReviewTitle} liburuaren ebaluazioa {$bookForReviewDueDate} mugaegunerako egin behar  dela.<br />\n<br />\nLiburuaren ebaluazioa bidaltzeko, has ezazu saioa aldizkariaren web orrian eta bete ezazu artikulua bidaltzeko lineako prozesua, mesedez. Bidea errazteko, bidalketaren URLa agertzen da azpian.<br />\n<br />\nBidalketaren URLa: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nArren, liburuaren ebaluazioari buruzko galderarik edo zalantzarik izanez gero, jar zaitez nirekin harremanetan. <br />\n<br />\nEskerrik asko aldizkariari laguntzeagatik. Zure aurkezpena jasotzeko zain geratzen naiz.<br />\n<br />\n{$editorialContactSignature}','Mezu elektroniko hau automatikoki sortzen da, liburu bat ebaluatzen ari den egileari ebaluazioaren mugaeguna gerturatzen ari dela gogorarazteko.'),('BFR_REVIEW_REMINDER_LATE','eu_ES','Ebaluatzeko liburua: ebaluazioaren mugaeguna','Oroigarri honekin jakinarazi nahi dizut {$bookForReviewTitle} liburuaren ebaluazioa  {$bookForReviewDueDate} mugaegunerako zela, baina ez dugula oraindik jaso.<br />\n<br />\nLiburuaren ebaluazioa bidaltzeko, has ezazu saioa aldizkariaren web orrian, eta bete ezazu artikulua bidaltzeko lineako prozesua, mesedez. Bidea errazteko, bidalketaren URLa agertzen da azpian:<br />\n<br />\nBidalketaren URLa: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nArren, liburuaren ebaluazioari buruzko galderarik edo zalantzarik izanez gero, jar zaitez nirekin harremanetan.<br />\n<br />\nEskerrik asko aldizkariari laguntzeagatik. Zure aurkezpena jasotzeko zain geratzen naiz.<br />\n<br />\n{$editorialContactSignature}','Mezu elektroniko hau automatikoki bidaltzen zaio liburua ebaluatzea dagokion egileari, ebaluazioa bidaltzeko eguna igaro ondoren.'),('BFR_BOOK_ASSIGNED','eu_ES','Ebaluatzeko liburua: esleitutako liburua','{$authorName} jauna/andrea:<br />\nMezu elektroniko honek baieztatzen du {$bookForReviewTitle} liburuaren ebaluazioa egitea esleitu zaizula, eta ebaluazioa {$bookForReviewDueDate} mugaegunerako amaitu behar dela.<br />\nMesedez, ziurtatu ezazu zure lineako erabiltzailearen profilean agertzen den posta-helbidea eguneratuta dagoela. Helbide horretara bidaliko da ebaluazioa egiteko esleitu zaizun liburuaren kopia.<br />\nUne honetan fitxategian dagoen zure posta-helbidea honako hau da:<br />\n{$authorMailingAddress}<br />\n<br />\nHelbide hori zuzena ez bada edo ez baduzu erabiltzen, erabil ezazu erabiltzailearen profilaren URLa zure helbidea eguneratzeko, mesedez:<br />\nErabiltzailearen profilaren URLa: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nLiburuaren ebaluazioa bidaltzeko, has ezazu saioa aldizkariaren web orrian eta bete ezazu artikulua bidaltzeko lineako prozesua, mesedez.<br />\n<br />\nBidalketaren URLa: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nArren, liburuaren ebaluazioari buruzko galderarik edo zalantzarik izanez gero, jar zaitez nirekin harremanetan.<br />\n<br />\n{$editorialContactSignature}','Mezu elektroniko hau editoreak bidaltzen dio liburu baten ebaluazioa egiteko esleitu den egileari, editoreak liburua ebaluatzeko egilea izendatzen duenean.'),('BFR_BOOK_DENIED','eu_ES','Ebaluatzeko liburua','{$authorName} jauna/andrea:<br />\n<br />\nTamalez, une honetan ezin zaitut esleitu {$bookForReviewTitle} liburuaren ebaluazioa egiteko.<br />\n<br />\nEspero dut gure zerrendako beste libururen bat ebaluatzeko prest egongo zarela, orain edo etorkizunean.<br />\n<br />\n{$editorialContactSignature}','Mezu elektroniko hau editoreak bidaltzen dio liburu bat ebaluatu nahi duen egileari, liburu hori ebaluatzeko moduan ez badago.'),('BFR_BOOK_REQUESTED','eu_ES','Ebaluatzeko liburua: liburua eskatzea','{$editorName} jauna/andrea:<br />\n<br />\n{$bookForReviewTitle} liburua ebaluatzea gustatuko litzaidake.<br />\n<br />\nBaieztatuko al zenidake, mesedez, liburu hori ebaluatzeko moduan dagoen oraindik?<br />\n<br />\n{$authorContactSignature}','Mezu elektroniko hau zerrendako liburu bat ebaluatu nahi duen egile batek bidaltzen dio editoreari.'),('BFR_BOOK_MAILED','eu_ES','Ebaluatzeko liburua: liburua postaz bidaltzea','{$authorName} jauna/andrea:<br />\n<br />\nMezu elektroniko honek baieztatzen du {$bookForReviewTitle} liburuaren kopia bat bidali dudala zure lineako erabiltzailearen profilean agertzen den posta-helbide honetara: <br />\n{$authorMailingAddress}<br />\n<br />\nLiburuaren ebaluazioa bidaltzeko, has ezazu saioa aldizkariaren web orrian eta bete ezazu artikulua bidaltzeko lineako prozesua, mesedez.<br />\n<br />\nBidalketaren URLa: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nArren, liburuaren ebaluazioari buruzko galderarik edo zalantzarik izanez gero, jar zaitez nirekin harremanetan, mesedez.<br />\n<br />\n{$editorialContactSignature}','Mezu elektroniko hau editoreak bidaltzen dio ebaluazioa egiteko izendatuta dagoen egileari, editoreak idazleari ebaluatzeko liburuaren kopia bat bidaltzen dionean.'),('BFR_REVIEWER_REMOVED','eu_ES','Ebaluatzeko liburua','{$authorName} jauna/andrea:<br />\n<br />\nMezu elektroniko honek baieztatzen du {$bookForReviewTitle} liburua ebaluatzeko ardura kendu zaizula. Liburu hori ebaluatu nahi duten beste egile batzuen eskura jarriko da.<br />\n<br />\nEspero dut gure zerrendako beste libururen bat ebaluatzeko prest egongo zarela, orain edo etorkizunean.<br />\n<br />\n{$editorialContactSignature}','Mezu elektroniko hau editoreak bidaltzen dio liburua ebaluatu nahi duen egile bati, liburua ebaluatzeko moduan ez badago.'),('BFR_REVIEW_REMINDER','tr_TR','Book for Review: Due Date Reminder','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your book review of {$bookForReviewTitle} is due {$bookForReviewDueDate}.<br />\n<br />\nTo submit your book review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to a book for review author as a reminder that the due date for the review is approaching.'),('BFR_REVIEW_REMINDER_LATE','tr_TR','Book for Review: Review Due','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your book review of {$bookForReviewTitle} was due {$bookForReviewDueDate} but has not been received yet.<br />\n<br />\nTo submit your book review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to a book for review author after the review due date has passed.'),('BFR_BOOK_ASSIGNED','tr_TR','Book for Review: Book Assigned','Dear {$authorName}:<br />\n<br />\nThis email confirms that {$bookForReviewTitle} has been assigned to you for a book review to be completed by {$bookForReviewDueDate}.<br />\n<br />\nPlease ensure that your mailing address in your online user profile is up-to-date. This address will be used to mail a copy of the book to you for the review.<br />\n<br />\nThe mailing address that we currently have on file is:<br />\n{$authorMailingAddress}<br />\n<br />\nIf this address is incomplete or you are no longer at this address, please use the following user profile URL to update your address:<br />\n<br />\nUser Profile URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nTo submit your book review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to a book review author when an editor assigns the book for review to the author.'),('BFR_BOOK_DENIED','tr_TR','Book for Review','Dear {$authorName}:<br />\n<br />\nUnfortunately, I am not able to assign {$bookForReviewTitle} to you at this time for a book review.<br />\n<br />\nI hope you consider reviewing another book from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when a book is no longer available for review.'),('BFR_BOOK_REQUESTED','tr_TR','Book for Review: Book Requested','Dear {$editorName}:<br />\n<br />\nI am interested in writing a book review of {$bookForReviewTitle}.<br />\n<br />\nCan you please confirm whether this book is still available for review?<br />\n<br />\n{$authorContactSignature}','This email is sent to an editor by an author interested in writing a book review for a listed book.'),('BFR_BOOK_MAILED','tr_TR','Book for Review: Book Mailed','Dear {$authorName}:<br />\n<br />\nThis email confirms that I have mailed a copy of {$bookForReviewTitle} to the following mailing address from your online user profile:<br />\n{$authorMailingAddress}<br />\n <br />\nTo submit your book review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this book review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to a book review author when the editor has mailed a copy of the book to the author.'),('BFR_REVIEWER_REMOVED','tr_TR','Book for Review','Dear {$authorName}:<br />\n<br />\nThis email confirms that you have been removed as the book reviewer for {$bookForReviewTitle}, which will be made available to other authors interested in reviewing the book.<br />\n<br />\nI hope you consider reviewing another book from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when a book is no longer available for review.'),('BFR_REVIEW_REMINDER','zh_CN','ä¹¦è¯„ï¼šæˆªæ­¢æ—¥æœŸæé†’','{$authorName}ï¼Œæ‚¨å¥½:<br />\n<br />\nè¿™ä¸ªä¸€ä¸ªå‹æƒ…æç¤ºï¼Œæ˜¯å…³äºŽã€Š{$bookForReviewTitle}ã€‹çš„ä¹¦è¯„æˆªæ­¢æ—¥æœŸ{$bookForReviewDueDate}.<br />\n<br />\næäº¤æ‚¨çš„ä¹¦è¯„ï¼Œè¯·è¿›å…¥åˆ°æœŸåˆŠç½‘ç«™å¹¶åœ¨çº¿å®Œæˆæ–‡ç« æäº¤ï¼Œä¸ºäº†æ‚¨çš„æ–¹ä¾¿ï¼Œæä¾›ç»™æ‚¨æŠ•ç¨¿URLå¦‚ä¸‹.<br />\n<br />\næŠ•ç¨¿ URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nè¯·éšæ—¶ä¸Žæˆ‘è”ç³»ï¼Œå¦‚æžœæ‚¨æœ‰ä¸Žä¹¦è¯„ç›¸å…³çš„ä»»ä½•é—®é¢˜ã€‚æ„Ÿè°¢æ‚¨å¯¹æœ¬åˆŠçš„è´¡çŒ®ï¼Œæˆ‘æœŸå¾…ç€æ”¶åˆ°æ‚¨çš„æäº¤ã€‚<br />\n{$editorialContactSignature}','è¿™æ˜¯ä¸€ä¸ªè‡ªåŠ¨ç”Ÿæˆçš„ç”µå­é‚®ä»¶ï¼Œç”¨äºŽå‘é€ç»™ä¹¦è¯„ä½œè€…ä»¥æé†’ä»–ä¹¦è¯„æäº¤çš„æˆªæ­¢æ—¥æœŸ'),('BFR_REVIEW_REMINDER_LATE','zh_CN','ä¹¦è¯„åˆ°æœŸ','{$authorName}ï¼Œæ‚¨å¥½ï¼<br />\n<br />\nè¿™æ˜¯ä¸€ä¸ªæœ‰å¥½çš„æé†’é‚®ä»¶ï¼Œæ‚¨çš„å…³äºŽ{$bookForReviewTitle}çš„ä¹¦è¯„å·²ç»åˆ°æœŸï¼ˆ{$bookForReviewDueDate}ï¼‰ï¼Œä½†è¿˜æ²¡æœ‰æ”¶åˆ°ã€‚<br />\n<br />\nè¯·ç™»å½•åˆ°æœŸåˆŠç½‘ç«™å¹¶æäº¤æ‚¨çš„ä¹¦è¯„ï¼ŒæŠ•ç¨¿URLå¦‚ä¸‹ï¼š <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nå¦‚æžœæ‚¨å¯¹ä¹¦è¯„æœ‰ä»»ä½•é—®é¢˜æˆ–è€…å»ºè®®ï¼Œè¯·éšæ—¶è”ç³»æˆ‘ä»¬ã€‚é«˜äº›æ‚¨å¯¹æœ¬åˆŠçš„è´¡çŒ®ï¼Œæˆ‘ä»¬æœŸåˆŠæ‚¨çš„æ¥ç¨¿ã€‚<br />\n<br />\n{$editorialContactSignature}','è¿™æ˜¯ä¸€ä¸ªè‡ªåŠ¨ç”Ÿæˆçš„ç”µå­é‚®ä»¶ï¼Œåœ¨ä¹¦è¯„æˆªæ­¢æ—¥æœŸåˆ°æ¥åŽå°†å‘é€ç»™ä¹¦è¯„ä½œè€…'),('BFR_BOOK_ASSIGNED','zh_CN','ä¹¦è¯„ï¼šæŒ‡æ´¾','{$authorName} æ‚¨å¥½ï¼<br />\n<br />\nè¿™ä¸ªç”µé‚®ç¡®è®¤å…³äºŽã€Š{$bookForReviewTitle}ã€‹çš„è¯„å®¡å·¥ä½œå·²ç»æŒ‡æ´¾ç»™æ‚¨ï¼Œå¹¶å¯ä»¥åœ¨{$bookForReviewDueDate}ä¹‹å‰å®Œæˆã€‚<br />\n<br />\nè¯·ç¡®è®¤åœ¨ä¸‡ç›æ³¨å†Œçš„æ‚¨çš„é‚®å¯„åœ°å€æ˜¯æœ€æ–°ï¼Œè¿™ä¸ªåœ°å€å°†ç”¨äºŽé‚®å¯„ä¹¦çš„å‰¯æœ¬ç»™æ‚¨ã€‚æ‚¨çŽ°åœ¨ä½¿ç”¨çš„é‚®å¯„åœ°å€å¦‚ä¸‹ï¼š<br />\n<br />\n{$authorMailingAddress}<br />\n<br />\nå¦‚æžœè¿™ä¸ªåœ°å€ä¸å®Œæ•´æˆ–è€…æ‚¨ä¸åœ¨ä½¿ç”¨è¿™ä¸ªåœ°å€ï¼Œè¯·ç‚¹å‡»å¦‚ä¸‹åœ°å€ï¼Œæ›´æ–°æ‚¨çš„ç”µé‚®åœ°å€ï¼š<br />\nç”¨æˆ·å¸æˆ·URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\næäº¤æ‚¨çš„ä¹¦è¯„ï¼Œæ‚¨éœ€è¦ç™»å½•åˆ°æœŸåˆŠç½‘ç«™ï¼Œå®Œæˆåœ¨çº¿ç¨¿ä»¶æäº¤ã€‚<br />\næäº¤åœ°å€: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nå¦‚æœ‰æ‚¨å¯¹æœ¬æ¬¡ä¹¦è¯„çš„ä»»åŠ¡æœ‰ä»»ä½•ç–‘é—®æˆ–è€…å»ºè®®ï¼Œè¯·è”ç³»æˆ‘ã€‚<br />\n{$editorialContactSignature}','å½“ç¼–è¾‘æŒ‡æ´¾äº†ä¸€ä¸ªä¹¦è¯„çš„ä½œè€…ï¼Œè¿™ä¸ªé‚®ä»¶å°†ç”±ç¼–è¾‘å‘é€ç»™ä¹¦è¯„çš„ä½œè€…ã€‚'),('BFR_BOOK_DENIED','zh_CN','ä¹¦è¯„','{$authorName}ï¼Œæ‚¨å¥½ï¼<br />\n<br />\nå¾ˆä¸å¹¸ï¼Œè¿™æ¬¡æˆ‘ä¸èƒ½æŒ‡æ´¾ã€Š{$bookForReviewTitle}ã€‹è¿™æœ¬ä¹¦çš„è¯„å®¡å·¥ä½œç»™æ‚¨ã€‚æˆ‘å¸Œæœ›æ‚¨èƒ½è€ƒè™‘è¿™æ¬¡æˆ–è€…å°†æ¥å¯¹æˆ‘ä»¬æä¾›çš„å…¶ä»–ä¹¦è¿›è¡Œè¯„å®¡ã€‚<br />\n<br />\n{$editorialContactSignature}','è¿™ä¸ªé‚®ä»¶ç”±ç¼–è¾‘å‘é€ç»™æœ‰å…´è¶£çš„ä¸å†åšä¹¦è¯„çš„ä½œè€… .'),('BFR_BOOK_REQUESTED','zh_CN','ä¹¦è¯„ï¼šè¯·æ±‚ä¹¦','{$editorName}ï¼Œæ‚¨å¥½ï¼<br />\n<br />\næˆ‘å¯¹æ’°å†™ã€Š{$bookForReviewTitle}ã€‹è¿™æœ¬ä¹¦çš„è¯„è®ºå¾ˆæ„Ÿå…´è¶£ï¼Œæ‚¨èƒ½ç¡®è®¤è¿™æœ¬ä¹¦æ˜¯å¦å·²ç»å†™äº†ä¹¦è¯„ï¼Ÿ<br />\n<br />\n<br />\n{$authorContactSignature}','è¿™ä¸ªé‚®ä»¶ç”±ä½œè€…å‘é€ç»™ç¼–è¾‘ï¼Œè¡¨æ˜Žä»–å¯¹å†™ä¹¦è¯„æ„Ÿå…´è¶£ã€‚'),('BFR_BOOK_MAILED','zh_CN','ä¹¦è¯„ï¼šä¹¦å·²é‚®å¯„','äº²çˆ±çš„ {$authorName}ï¼š<br />\n<br />\næ”¶åˆ°è¿™å°é‚®ä»¶ï¼Œè¯´æ˜Žæˆ‘å·²ç»å°†ä¸€ä»½{$bookForReviewTitle}çš„æ‹·è´é‚®å¯„ç»™äº†æ‚¨åœ¨çº¿è´¦æˆ·ä¸­çš„é‚®ä»¶åœ°å€ã€‚<br />\n{$authorMailingAddress}<br />\n<br />\nè¦æäº¤æ‚¨çš„ä¹¦è¯„ï¼Œè¯·å…ˆç™»å½•æœŸåˆŠç«™ç‚¹ï¼Œå®Œæˆåœ¨çº¿æŠ•ç¨¿æµç¨‹ã€‚<br />\n<br />\næŠ•ç¨¿URLï¼š <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\n å¦‚æžœæ‚¨é‡åˆ°é—®é¢˜æˆ–è€…å…³æ³¨çš„ä¹¦è¯„ï¼Œè¯·éšæ—¶è”ç³»æˆ‘ã€‚','è¿™æ˜¯ä¸€å°ç”±ç¼–è¾‘å‘é€ç»™ä¹¦è¯„ä½œè€…çš„ç”µå­é‚®ä»¶ã€‚å½“ç¼–è¾‘å°†ä¹¦çš„ä¸€ä»½æ‹·è´çš„ é‚®å¯„ç»™ä½œè€…æ—¶è¯¥é‚®ä»¶ä¼šè¢«å‘é€ï¼'),('BFR_REVIEWER_REMOVED','zh_CN','ä¹¦è¯„','{$authorName}ï¼Œæ‚¨å¥½ï¼š<br />\n<br />\næ”¶åˆ°è¿™å°ç”µå­é‚®ä»¶ï¼Œè¯´æ˜Žæ‚¨å·²ç»è¢«ä»Ž{$bookForReviewTitle}çš„ä¹¦è¯„ä½œè€…ä¸­ç§»é™¤ã€‚è¿™ä½¿å¾—å…¶å®ƒæ„Ÿå…´è¶£çš„ä½œè€…å¯ä»¥å®¡ç¨¿è¿™æœ¬ä¹¦ã€‚<br />\n<br />\næˆ‘ä»¬å¸Œæœ›æ‚¨çŽ°åœ¨æˆ–è€…å°†æ¥è€ƒè™‘å®¡æŸ¥æ¸…å•ä¸­çš„å…¶å®ƒä¹¦ç±ã€‚<br />\n<br />\n{$editorialContactSignature}','å½“ä¸€æœ¬ä¹¦ä¸å†åšå®¡æŸ¥æ—¶ï¼Œç¼–è¾‘ä¼šå°†è¿™å°é‚®ä»¶å‘åŠ¨ç»™è¯¥ä¹¦çš„å…´è¶£ä½œè€…ï¼'),('PAYPAL_INVESTIGATE_PAYMENT','el_GR','Î‘ÏƒÏ…Î½Î®Î¸Î¹ÏƒÏ„Î· Î´ÏÎ±ÏƒÏ„Î·ÏÎ¹ÏŒÏ„Î·Ï„Î± PayPal','To Open Journal Systems Î´Î¹Î±Ï€Î¯ÏƒÏ„Ï‰ÏƒÎµ Î¼Î¹Î± Î±ÏƒÏ…Î½Î®Î¸Î¹ÏƒÏ„Î· Î´ÏÎ±ÏƒÏ„Î·ÏÎ¹ÏŒÏ„Î·Ï„Î± ÏƒÏ‡ÎµÏ„Î¹ÎºÎ¬ Î¼Îµ Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯ÎµÏ‚ Ï€Î»Î·ÏÏ‰Î¼Î®Ï‚ Î¼Îµ Ï„Î· Î¼Î­Î¸Î¿Î´Î¿ PayPal Î³Î¹Î± Ï„Î¿ Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÏŒ {$contextName}. Î‘Ï…Ï„Î® Î· Î´ÏÎ±ÏƒÏ„Î·ÏÎ¹ÏŒÏ„Î·Ï„Î± Î¯ÏƒÏ‰Ï‚ Ï‡ÏÎµÎ¹Î¬Î¶ÎµÏ„Î±Î¹ Î½Î± Î´Î¹ÎµÏÎµÏ…Î½Î·Î¸ÎµÎ¯ Ï€ÎµÏÎ±Î¹Ï„Î­ÏÏ‰.<br />\n                       <br />\nÎ¤Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï…Ï„ÏŒ Î´Î·Î¼Î¹Î¿Ï…ÏÎ³Î®Î¸ÎºÎµ Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î± Î±Ï€ÏŒ Ï„Î¿ PayPal plugin Ï„Î¿Ï…  Open Journal Systems.<br />\n<br />\nÎ Î»Î®ÏÎ· Ï„Î±Ï‡Ï…Î´ÏÎ¿Î¼Î¹ÎºÎ¬ ÏƒÏ„Î¿Î¹Ï‡ÎµÎ¯Î± :<br />\n{$postInfo}<br />\n<br />\nÎ ÏÏŒÏƒÎ¸ÎµÏ„Îµ Ï€Î»Î·ÏÎ¿Ï†Î¿ÏÎ¯ÎµÏ‚ (Î±Î½ Ï€Î±ÏÎ­Ï‡Î¿Î½Ï„Î±Î¹):<br />\n{$additionalInfo}<br />\n<br />\nServer vars:<br />\n{$serverVars}',''),('PAYPAL_INVESTIGATE_PAYMENT','ja_JP','ç•°å¸¸ãªPayPal','Open Journal Systems ã¯ {$contextName} ãŒã‚µãƒãƒ¼ãƒˆã—ã¦ã„ã‚‹ PayPal æ”¯æ‰•ã„ã«é–¢ã—ã¦ç•°å¸¸ãªå‡¦ç†ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚ã“ã®å‡¦ç†ã«ã¤ã„ã¦ã•ã‚‰ãªã‚‹èª¿æŸ»ã¨æ‰‹ä½œæ¥­ã«ã‚ˆã‚‹ä»‹å…¥ãŒå¿…è¦ã‹ã‚‚ã—ã‚Œã¾ã›ã‚“ã€‚<br />\n<br />\nã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ Open Journal Systems ã® PayPal ãƒ—ãƒ©ã‚°ã‚¤ãƒ³ã‹ã‚‰è‡ªå‹•ç”Ÿæˆã•ã‚Œã¾ã—ãŸã€‚<br />\n<br />\nè¦æ±‚ã®ã‚ã£ãŸå…¨ãƒã‚¹ãƒˆæƒ…å ±:<br />\n{$postInfo}<br />\n<br />\nè¿½åŠ æƒ…å ± (ã‚ã‚‹å ´åˆ):<br />\n{$additionalInfo}<br />\n<br />\nServer vars:<br />\n{$serverVars}',''),('PAYPAL_INVESTIGATE_PAYMENT','ro_RO','Activitate PayPal anormalÄƒ','Open Journal Systems a sesizat o activitate anormalÄƒ privind suportul pentru plÄƒÈ›i prin PayPal pentru revista {$contextName}. AceastÄƒ activitate necesitÄƒ investigaÈ›ii sau intervenÈ›ia manualÄƒ.<br />\n                       <br />\nAcest email a fost generat de modulul pentru plÄƒÈ›i prin PayPal al Open Journal Systems.<br />\n<br />\nInformaÈ›ii postfactum pentru solicitarea:<br />\n{$postInfo}<br />\n<br />\nInformaÈ›ii suplimentare (dacÄƒ sunt oferite):<br />\n{$additionalInfo}<br />\n<br />\nVariabile de server:<br />\n{$serverVars}<br />\n','Acest È™ablon de email este utilizat pentru a Ã®nÈ™tiinÈ›a contactul primar al unei reviste asupra sesizÄƒrii de cÄƒtre modulul pentru plÄƒÈ›i prin PayPal a unor activitÄƒÈ›i anormale sau asupra unei activitÄƒÈ›i care necesitÄƒ intervenÈ›ia manualÄƒ.'),('MANUAL_PAYMENT_NOTIFICATION','el_GR','Î•Î¹Î´Î¿Ï€Î¿Î¯Î·ÏƒÎ· Î¼Î· Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î·Ï‚ Ï€Î»Î·ÏÏ‰Î¼Î®Ï‚','ÎœÎ¹Î± Î¼Î· Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î· Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯Î± Ï€Î»Î·ÏÏ‰Î¼Î®Ï‚ Î³Î¹Î± Ï„Î¿ Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÏŒ {$contextName} Î±Ï€ÏŒ Ï„Î¿Î½ Ï‡ÏÎ®ÏƒÎ· {$userFullName} (username \"{$userName}\") Ï€ÏÎ­Ï€ÎµÎ¹ Î½Î± Ï€ÏÎ¿Ï‰Î¸Î·Î¸ÎµÎ¯.<br />\n<br />\nÎ— Ï€Î»Î·ÏÏ‰Î¼Î® Î³Î¯Î½ÎµÏ„Î±Î¹ Î³Î¹Î±  \"{$itemName}\".<br />\nÎ¤Î¿ ÎºÏŒÏƒÏ„Î¿Ï‚ ÎµÎ¯Î½Î±Î¹ {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nÎ¤Î¿ Î¼Î®Î½Ï…Î¼Î± Î±Ï…Ï„ÏŒ Î´Î·Î¼Î¹Î¿Ï…ÏÎ³ÎµÎ¯Ï„Î±Î¹ Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î± Î±Ï€ÏŒ Ï„Î¿ Plugin ÎœÎ· Î±Ï…Ï„ÏŒÎ¼Î±Ï„Î·Ï‚ Ï€Î»Î·ÏÏ‰Î¼Î®Ï‚ Ï„Î¿Ï… Open Journal Systems.',''),('MANUAL_PAYMENT_NOTIFICATION','ja_JP','æ‰‹ä½œæ¥­ã«ã‚ˆã‚‹æ–™é‡‘æ”¯æ‰•ã„é€šçŸ¥','æ‰‹ä½œæ¥­ã«ã‚ˆã‚‹æ–™é‡‘æ”¯æ‰•ã„ã§ã¯ é›‘èªŒ {$contextName} ã¨ãƒ¦ãƒ¼ã‚¶ {$userFullName} (ãƒ¦ãƒ¼ã‚¶å \"{$userName}\") ã«å¯¾ã™ã‚‹å‡¦ç†ãŒå¿…è¦ã¨ãªã‚Šã¾ã™ã€‚<br />\n<br />\n \"{$itemName}\" ã«ã¤ã„ã¦ã®æ”¯æ‰•ã„ã§ã™ã€‚<br />\næ–™é‡‘ã¯ {$itemCost} ({$itemCurrencyCode}) ã§ã™ã€‚<br />\n<br />\nã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ Open Journal Systems ã® æ‰‹ä½œæ¥­ã«ã‚ˆã‚‹æ–™é‡‘æ”¯æ‰•ã„ãƒ—ãƒ©ã‚°ã‚¤ãƒ³ ã«ã‚ˆã£ã¦ç”Ÿæˆã•ã‚Œã¦ã„ã¾ã™ã€‚',''),('MANUAL_PAYMENT_NOTIFICATION','ro_RO','ÃŽnÈ™tiinÈ›are la plata Ã®n sistem tradiÈ›ional','Trebuie procesatÄƒ o platÄƒ fÄƒcutÄƒ Ã®n sistem tradiÈ›ional (nu electronicÄƒ) pentru aceastÄƒ revistÄƒ {$contextName} a utilizatorului {$userFullName} (username \"{$userName}\").<br />\n<br />\nSe face plata pentru \"{$itemName}\".<br />\nCostÄƒ {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nAcest email a fost generat de modulul pentru plÄƒÈ›i Ã®n sistem tradiÈ›ional al Open Journal Systems.','Acest È™ablon de email este utilizat pentru a Ã®nÈ™tiinÈ›a managerul unei reviste asupra faptului cÄƒ a fost solicitatÄƒ o platÄƒ Ã®n sistem tradiÈ›ional.'),('PAYPAL_INVESTIGATE_PAYMENT','fi_FI','EpÃ¤tavallinen PayPal-toiminta','Open Journal Systems on havainnut epÃ¤tavallista toimintaa julkaisun {$contextName} PayPal-maksujen tukeen liittyen. TÃ¤mÃ¤ toiminta saattaa vaatia lisÃ¤tutkimista tai manuaalista asiaan puuttumista.<br />\n                       <br />\nTÃ¤mÃ¤ sÃ¤hkÃ¶posti on Open Journal Systemsin PayPal-lisÃ¤osan luoma.<br />\n<br />\nPyynnÃ¶n tÃ¤ydet lÃ¤hetystiedot :<br />\n{$postInfo}<br />\n<br />\nLisÃ¤tiedot (mikÃ¤li annettu):<br />\n{$additionalInfo}<br />\n<br />\nPalvelimen muuttujat:<br />\n{$serverVars}<br />\n','This email template is used to notify a journal\'s primary contact that suspicious activity or activity requiring manual intervention was encountered by the PayPal plugin.'),('MANUAL_PAYMENT_NOTIFICATION','en_US','Manual Payment Notification','A manual payment needs to be processed for the journal {$contextName} and the user {$userFullName} (username &quot;{$userName}&quot;).<br />\n<br />\nThe item being paid for is &quot;{$itemName}&quot;.<br />\nThe cost is {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nThis email was generated by Open Journal Systems\' Manual Payment plugin.','This email template is used to notify a journal manager contact that a manual payment was requested.'),('MANUAL_PAYMENT_NOTIFICATION','fi_FI','Ilmoitus manuaalisesta maksusta','KÃ¤yttÃ¤jÃ¤n {$userFullName} (kÃ¤yttÃ¤jÃ¤tunnus &quot;{$userName}&quot;) tekemÃ¤, julkaisuun {$contextName} kohdistuva manuaalinen maksu on kÃ¤siteltÃ¤vÃ¤.<br />\n<br />\nMaksettava kohde on &quot;{$itemName}&quot;.<br />\nHinta: {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nTÃ¤mÃ¤ sÃ¤hkÃ¶posti on Open Journal Systemsin Manuaalinen maksu -lisÃ¤osan luoma.','This email template is used to notify a journal manager contact that a manual payment was requested.'),('ORCID_COLLECT_AUTHOR_ID','sv_SE','ORCID fÃ¶r bidrag','Hej {$authorName}!\n\nDu Ã¤r listad som medfÃ¶rfattare till bidraget \"{$articleTitle}\" till {$journalName}. \n\nFÃ¶r att bekrÃ¤fta ditt fÃ¶rfattarskap, lÃ¤gg till ditt ORCID-iD genom att fÃ¶lja lÃ¤nken nedan.\n\n{$authorOrcidUrl}\n\nKontakta gÃ¤rna mig om du har nÃ¥gra frÃ¥gor.\n\n{$editorialContactSignature}\n\n\n','Den hÃ¤r e-postmallen anvÃ¤nds fÃ¶r att samla in ORCID-iD:n frÃ¥n medfÃ¶rfattare.'),('ORCID_COLLECT_AUTHOR_ID','fr_CA','Soumission ORCID','{$authorName},<br/>\n<br/>\nVous avez Ã©tÃ© inscrit ou inscrite en tant qu\'auteur ou auteure pour un manuscrit soumis Ã  {$contextName}.<br/>\nPour confirmer votre statut d\'auteur ou d\'auteure, veuillez ajouter votre identifiant ORCID Ã  cette soumission en cliquant sur le lien ci-dessous.<br/>\n<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"icÃ´ne identifiant ORCID\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Se connecter avec votre identifiant ORCID ou s\'inscrire</a><br/>\n<br/>\n<br/>\n<a href=\"{$orcidAboutUrl}\">Plus de renseignements sur votre identifiant ORCID dans {$contextName}</a><br/>\n<br/>\nSi vous avez des questions, veuillez communiquer avec nous.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Ce modÃ¨le de courriel est utilisÃ© pour rÃ©cupÃ©rer les identifiants ORCID des auteurs-es.'),('ORCID_COLLECT_AUTHOR_ID','fi_FI','KÃ¤sikirjoituksen ORCID-tunnisteet','Arvoisa {$authorName},<br/>\n<br/>\nTeidÃ¤t mainitaan kÃ¤sikirjoituksen \"{$articleTitle}\" yhdeksi kirjoittajaksi, joka on lÃ¤hetetty lehteen {$contextName}.<br/>\n<br/>\nVarmistaaksesi tekijyytesi, ole hyvÃ¤ ja lisÃ¤Ã¤ ORCID-tunnisteesi kÃ¤sikirjoitukseen vierailemalla alla olevassa linkissÃ¤.<br/>\n<br/>\n{$authorOrcidUrl}<br/>\n<br/>\nMikÃ¤li teillÃ¤ on jotain kysymyksiÃ¤, olkaa yhteydessÃ¤.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','TÃ¤tÃ¤ sÃ¤hkÃ¶postipohjaa kÃ¤ytetÃ¤Ã¤n kirjoittajien ORCID-tunnisteiden kerÃ¤Ã¤miseen.'),('ORCID_COLLECT_AUTHOR_ID','da_DK','Indsendelse ORCID','KÃ¦re {$authorName},<br/>\n<br/>\nDu stÃ¥r opfÃ¸rt som medforfatter til manuskriptet \"{$articleTitle}\" i {$contextName}.<br/>\n<br/>\nFor at bekrÃ¦fte forfatterskabet bedes du tilfÃ¸je din ORCID id til denne indsendelse ved at gÃ¥ til det fremlagte link nedenfor.<br/>\n<br/>\n{$authorOrcidUrl}<br/>\n<br/>\nHar du spÃ¸rgsmÃ¥l bedes du kontakte mig.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Denne e-mail bruges til at indsamle ORCID id fra medforfattere.'),('ORCID_COLLECT_AUTHOR_ID','cs_CZ','ORCID ID k pÅ™Ã­spÄ›vku','VÃ¡Å¾enÃ½(Ã¡) {$authorName},\n\nByl(a) jste uveden(a) jako spoluautor rukopisu pÅ™Ã­spÄ›vku \"{$articleTitle}\" do Äasopisu {$journalName}. \n\nK potvrzenÃ­ vaÅ¡eho autorstvÃ­ vloÅ¾te, prosÃ­m vaÅ¡e ORCID k pÅ™Ã­spÄ›vku na nÃ¡sledujÃ­cÃ­ webovÃ© adrese.\n\n{$authorOrcidUrl}\n\nPokud mÃ¡te jakÃ©koliv dotazy, nevÃ¡hejte mne kontaktovat.\n\n{$editorialContactSignature}','Tato Å¡ablona emailu slouÅ¾Ã­ k shromaÅ¾ÄovÃ¡nÃ­ ORCID ID od spoluautorÅ¯.'),('EDITOR_RECOMMENDATION','en_US','Editor Recommendation','{$editors}:<br />\n<br />\nThe recommendation regarding the submission to {$contextName}, &quot;{$submissionTitle}&quot; is: {$recommendation}<br />\n<br />\n{$editorialContactSignature}<br />\n','This email from the recommending Editor or Section Editor to the decision making Editors or Section Editors notifies them of a final recommendation regarding the submission.'),('REVISED_VERSION_NOTIFY','ar_IQ','ØªÙ… Ø±ÙØ¹ Ù†Ø³Ø®Ø© Ù…Ù†Ù‚Ø­Ø©','Ø£Ø¹Ø²Ø§Ø¦ÙŠ Ø§Ù„Ù…Ø­Ø±Ø±ÙˆÙ†:<br />\n<br />\nÙ„Ù‚Ø¯ ØªÙ… Ø±ÙØ¹ Ù†Ø³Ø®Ø© Ù…Ù†Ù‚Ø­Ø© Ù…Ù† Ø§Ù„Ù…Ø¤Ù„ÙŽÙ‘Ù Ø§Ù„Ù…ÙˆØ³ÙˆÙ… &quot;{$submissionTitle}&quot; Ù…Ù† Ù‚Ø¨Ù„ Ø§Ù„Ù…Ø¤Ù„Ù {$authorName}.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„Ø·Ù„Ø¨: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªÙØ±Ø³Ù„ ØªÙ„Ù‚Ø§Ø¦ÙŠØ§Ù‹ Ø¥Ù„Ù‰ Ø§Ù„Ù…Ø­Ø±Ø± Ø§Ù„Ù…Ø¹Ù†ÙŠ Ø¹Ù†Ø¯Ù…Ø§ ÙŠÙ‚ÙˆÙ… Ø§Ù„Ù…Ø¤Ù„Ù Ø¨Ø±ÙØ¹ Ù†Ø³Ø®Ø© Ù…Ù†Ù‚Ø­Ø© Ù…Ù† Ù…Ø¤Ù„ÙŽÙ‘ÙÙ‡ Ø¥Ù„Ù‰ Ø§Ù„Ù…ÙˆÙ‚Ø¹e.'),('REVISED_VERSION_NOTIFY','da_DK','Revideret udgave uploadet','RedaktÃ¸rer:<br />\n<br />\nEn revideret udgave af &quot;{$submissionTitle}&quot; er blevet uploadet af forfatter {$authorName}.<br />\n<br />\nManuskriptets URL: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Denne e-mail bliver automatisk sendt til udvalgte redaktÃ¸r nÃ¥r forfatteren uploader en revideret udgave a en artikel.'),('REVISED_VERSION_NOTIFY','es_ES','VersiÃ³n revisada cargada','Editores/as:<br />\n<br />\nEl autor {$authorName} ha cargado un versiÃ³n revisada de &quot;{$submissionTitle}&quot;.<br />\n<br />\nURL del envÃ­o: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Este correo electrÃ³nico se envÃ­a de forma automÃ¡tica al editor/a asignado cuando el autor/a carga una versiÃ³n revisada de un artÃ­culo.'),('REVISED_VERSION_NOTIFY','fa_IR','Ø¢Ù¾Ù„ÙˆØ¯ Ù†Ø³Ø®Ù‡ Ø§ØµÙ„Ø§Ø­ Ø´Ø¯Ù‡','Ø¯Ø¨ÛŒØ± Ù…Ø­ØªØ±Ù…:<br />\n<br />\nÙ†Ø³Ø®Ù‡ Ø§ØµÙ„Ø§Ø­ Ø´Ø¯Ù‡ Ù…Ù‚Ø§Ù„Ù‡ &quot;{$submissionTitle}&quot; ØªÙˆØ³Ø· {$authorName} Ø¯Ø± Ø³Ø§Ù…Ø§Ù†Ù‡ Ø¢Ù¾Ù„ÙˆØ¯ Ø´Ø¯..<br />\n<br />\nÙ„ÛŒÙ†Ú© Ù…Ù‚Ø§Ù„Ù‡: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Ø§ÛŒÙ…ÛŒÙ„ÛŒ Ú©Ù‡ Ø®ÙˆØ¯Ú©Ø§Ø± Ù¾Ø³ Ø§Ø² Ø¢Ù¾Ù„ÙˆØ¯ Ù†Ø³Ø®Ù‡ Ø§ØµÙ„Ø§Ø­ÛŒ ØªÙˆØ³Ø· Ù†ÙˆÛŒØ³Ù†Ø¯Ù‡  Ø¨Ø±Ø§ÛŒ Ø¯Ø¨ÛŒØ± Ø§Ø±Ø³Ø§Ù„ Ù…ÛŒ Ø´ÙˆØ¯'),('REVISED_VERSION_NOTIFY','fi_FI','Korjattu versio on ladattu','HyvÃ¤t toimittajat,<br />\n<br />\n{$authorName} on ladannut kÃ¤sikirjoituksen &quot;{$submissionTitle}&quot; korjatun version.<br />\n<br />\nKÃ¤sikirjoituksen URL: {$submissionUrl}<br />\n<br />\nYstÃ¤vÃ¤llisin terveisin,<br />\n{$editorialContactSignature}','This email is automatically sent to the assigned editor when author uploads a revised version of an article.'),('REVISED_VERSION_NOTIFY','fr_CA','Version rÃ©visÃ©e tÃ©lÃ©versÃ©e','RÃ©dacteur,<br />\n<br />\nUne version rÃ©visÃ©e de &quot;{$submissionTitle}&quot; a Ã©tÃ© tÃ©lÃ©versÃ©e par {$authorName}.<br />\n<br />\nURL de la soumission: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© automatiquement au rÃ©dacteur attribuÃ© quand un auteur tÃ©lÃ©verse une version rÃ©visÃ©e d\'un article.'),('REVISED_VERSION_NOTIFY','fr_FR','Version rÃ©visÃ©e tÃ©lÃ©versÃ©e','RÃ©dacteur,<br />\n<br />\nUne version rÃ©visÃ©e de &quot;{$submissionTitle}&quot; a Ã©tÃ© tÃ©lÃ©versÃ©e par {$authorName}.<br />\n<br />\nURL de la soumission: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© automatiquement au rÃ©dacteur attribuÃ© quand un auteur tÃ©lÃ©verse une version rÃ©visÃ©e d\'un article.'),('REVISED_VERSION_NOTIFY','id_ID','Versi Revisi telah Diunggah','Editor:<br />\n<br />\nVersi revisi dari &quot;{$submissionTitle}&quot; telah diunggah oleh penulis {$authorName}.<br />\n<br />\nURL naskah: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Email ini dikirim secara otomatis ke editor yang ditugaskan saat penulis mengunggah naskah versi revisi.'),('REVISED_VERSION_NOTIFY','pt_PT','VersÃ£o revista enviada','Cara(o) Editor:<br />\n<br />\nA versÃ£o revista do &quot;{$submissionTitle}&quot; foi enviada pelo autor {$authorName}.<br />\n<br />\nURL da submissÃ£o: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Este e-mail Ã© enviado automaticamente ao Editor designado quando o autor envia uma versÃ£o revista de um artigo.'),('REVISED_VERSION_NOTIFY','ru_RU','Ð—Ð°Ð³Ñ€ÑƒÐ¶ÐµÐ½Ð° Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ','Ð£Ð²Ð°Ð¶Ð°ÐµÐ¼Ñ‹Ðµ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ñ‹!<br />\n<br />\nÐ˜ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ð°Ñ Ð²ÐµÑ€ÑÐ¸Ñ Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð° Â«{$submissionTitle}Â» Ð±Ñ‹Ð»Ð° Ð·Ð°Ð³Ñ€ÑƒÐ¶ÐµÐ½Ð° Ð½Ð° ÑÐ°Ð¹Ñ‚ (Ð°Ð²Ñ‚Ð¾Ñ€ â€” {$authorName}).<br />\n<br />\nURL Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð°: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ð¾Ð¼Ñƒ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ñƒ, ÐºÐ¾Ð³Ð´Ð° Ð°Ð²Ñ‚Ð¾Ñ€ Ð·Ð°Ð³Ñ€ÑƒÐ¶Ð°ÐµÑ‚ Ð¸ÑÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½ÑƒÑŽ Ð²ÐµÑ€ÑÐ¸ÑŽ ÑÑ‚Ð°Ñ‚ÑŒÐ¸.'),('REVISED_VERSION_NOTIFY','sv_SE','Reviderad version uppladdad','RedaktÃ¶rer:<br />\n<br />\nEn reviderad version av &quot;{$submissionTitle}&quot; har laddats upp av fÃ¶rfattaren, {$authorName}.<br />\n<br />\nBidragets URL: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','Det hÃ¤r e-postmeddelandet skickas automatiskt till den tilldelade redaktÃ¶ren nÃ¤r fÃ¶rfattaren laddar upp en reviderad version av sin artikel.'),('REVISED_VERSION_NOTIFY','de_DE','Ãœberarbeitete Version hochgeladen','{$editorialContactName},<br />\n<br />\neine Ã¼berarbeitete Fassung von \"{$submissionTitle}\" ist von der/dem Autor/in {$authorName} hochgeladen worden.<br />\n<br />\nURL des Beitrags: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird automatisch an die/den zustÃ¤ndige/n Redakteur/in geschickt, wenn ein/e Autor/in eine Ã¼berarbeitete Fassung eines Artikels hochgeladen hat.'),('REVISED_VERSION_NOTIFY','eu_ES','Bertsio errebisatua gora kargatu da','{$editorialContactName}:<br />\n<br />\n\"{$submissionTitle}\" artikuluaren bertsio berrikusia gora kargatu du {$authorName} egileak.<br />\n<br />\nURL aurkezpena: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\n{$editorialContactSignature}','Mezu hau automatikoki bidaltzen zaio dagokion editoreari, egileak artikulu baten bertsio berrikusia gora kargatzen duenean.'),('REVISED_VERSION_NOTIFY','it_IT','Caricamento di versione revisionata','{$editorialContactName}:<br />\n<br />\nL\'autore {$authorName} ha caricato una versione revisionata di \"{$submissionTitle}\".<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\n{$editorialContactSignature}','Questo messaggio viene inviato automaticamente all\'editor quando un autore carica una versione revisionata di un articolo'),('REVISED_VERSION_NOTIFY','nl_NL','Herziene versie geladen','{$editorialContactName}:<br />\n<br />\nEen herziene versie van \"{$submissionTitle}\" is geladen door de auteur {$authorName}.<br />\n<br />\nURL van de inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\n{$editorialContactSignature}','Deze e-mail wordt automatisch verstuurd naar de redacteur als de auteur een herziene versie van een artikel laadt.'),('REVISED_VERSION_NOTIFY','pt_BR','Envio de versÃ£o atualizada','{$editorialContactName},<br />\n<br />\nUma versÃ£o atualizada de \"{$submissionTitle}\" foi enviada pelo autor {$authorName}.<br />\n<br />\nURL da submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\n{$editorialContactSignature}','This email is automatically sent to the assigned editor when author uploads a revised version of an article.'),('REVISED_VERSION_NOTIFY','uk_UA','ÐŸÐµÑ€ÐµÑ€Ð¾Ð±Ð»ÐµÐ½Ð° Ð²ÐµÑ€ÑÑ–Ñ Ð²Ð¸Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð°','{$editorialContactName}:<br />\n<br />\nÐŸÐµÑ€ÐµÑ€Ð¾Ð±Ð»ÐµÐ½Ð° Ð²ÐµÑ€ÑÑ–Ñ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ \"{$submissionTitle}\" Ð±ÑƒÐ»Ð° Ð²Ð¸Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð° Ð°Ð²Ñ‚Ð¾Ñ€Ð¾Ð¼ {$authorName}.<br />\n<br />\nURL Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\n{$editorialContactSignature}','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ”Ñ‚ÑŒÑÑ Ð¿Ñ€Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¾Ð¼Ñƒ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ñƒ, ÐºÐ¾Ð»Ð¸ Ð°Ð²Ñ‚Ð¾Ñ€ Ð²Ð¸Ð²Ð°Ð½Ñ‚Ð°Ð¶ÑƒÑ” Ð¿ÐµÑ€ÐµÑ€Ð¾Ð±Ð»ÐµÐ½Ñƒ Ð²ÐµÑ€ÑÑ–ÑŽ ÑÐ²Ð¾Ñ”Ñ— ÑÑ‚Ð°Ñ‚Ñ‚Ñ–.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nThis regards the manuscript \"{$submissionTitle},\" which is under consideration by {$contextName}.<br />\n<br />\nFollowing the review of the previous version of the manuscript, the authors have now submitted a revised version of their paper. We would appreciate it if you could help evaluate it.<br />\n<br />\nPlease log into the journal web site by {$responseDueDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission for a second or greater round of review. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2, and one-click reviewer access is enabled.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','de_DE','Bitte um ein Gutachten','{$reviewerName},<br />\n<br />\ndiese E-Mail betrifft das Manuskript \"{$submissionTitle}\", das bei {$contextName} in der Begutachtung ist.<br />\n<br />\nNach der Begutachtung der frÃ¼heren Fassung des Manuskripts haben die Autor/innen nun eine Ã¼berarbeitete Fassung ihres Artikels eingereicht. Wir wÃ¼rden uns freuen, wenn Sie bei der Beurteilung helfen kÃ¶nnten.<br />\n<br />\nBitte loggen Sie sich auf der Website der Zeitschrift bis zum {$responseDueDate} ein, um uns Ihre Zu- oder Absage mitzuteilen. Sie finden dort den Beitrag und kÃ¶nnen auch Ihr Gutachten und Ihre Empfehlung dort abgeben.<br />\n<br />\nDas Gutachten selbst wÃ¤re fÃ¤llig zum {$reviewDueDate}.<br />\n<br />\nURL des Beitrags: {$submissionReviewUrl}<br />\n<br />\nIn der Hoffnung auf eine positive Antwort,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Diese E-Mail wird von der/dem Rubrikredakteur/in an eine/n Gutachter/in gesendet, damit diese/r die Aufgabe, eine Einreichung in einer zweiten oder weiteren Begutachtungsrunde zu beurteilen, Ã¼bernimmt oder ablehnt. Sie Ã¼bermittelt Informationen Ã¼ber die Einreichung wie den Titel und das Abstract, ein FÃ¤lligkeitsdatum fÃ¼r das Gutachten und Informationen, wie auf die Einreichung zugegriffen werden kann. Diese Nachricht wird benutzt, wenn in Schritt 2 des Zeitschriftensetups das Standardbegutachtungsverfahren ausgewÃ¤hlt worden ist und wenn der One-Click-Zugang fÃ¼r Gutachter/innen aktiviert ist.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','eu_ES','Artikulua berrikusteko eskakizuna','{$reviewerName}:<br />\n<br />\nHau \"{$submissionTitle},\" eskuizkribuari dagokio, {$contextName} aldizkariak aintzat hartu duena.<br />\n<br />\nEskuizkribuaren aurreko bertsioaren berrikuspenari jarraituz, egileek orain haien lanaren bertsio berrikusi bat bidali dute. Eskertuko genuke ebaluatzen lagunduko bazenu.<br />\n<br />\nMesedez, sartu aldizkariaren web orrian {$responseDueDate} datarako, adierazteko berrikuspenaz arduratuko zaren edo ez, baita bidalitakora sartzeko eta zure berrikuspena eta gomendioa grabatzeko ere.<br />\n<br />\nBerrikuspenaren epemuga: {$reviewDueDate}.<br />\n<br />\nURL aurkezpena: {$submissionReviewUrl}<br />\n<br />\nMila esker eskari hau kontuan hartzeagatik.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Atalen Editoreak Berrikusleari bidalitako mezu honetan berrikusleari eskatzen dio bidalitakoaren bigarren edo hurrengo berrikuspen bat onartu edo baztertu dezala. Bidalitakoari buruzko informazioa ematen du, besteak beste, titulua eta aurkezpena, berrikuspena egiteko muga, eta nola sartu bidalitakora.  Mezu hau erabiltzen da Aldizkariaren Konfigurazioan, 2. urratsean Berrikuspen Estandarraren Prozesua hautatzen denean, eta klik bateko berrikuslearentzako sarbidea gaituko da.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','it_IT','Richiesta di revisione di un articolo','Gentile {$reviewerName}:<br />\n<br />\nTi scrivo riguardo al manoscritto \"{$submissionTitle},\" in corso di revisione per eventuale pubblicazione in {$contextName}.<br />\n<br />\nL\'autore ha inviato una nuova versione, modificata secondo i suggerimenti ricevuti dai revisori. Tu sarei grato se volessi aiutarci a valutarla.<br />\n<br />\nTi chiedo di autenticarti al sito {$responseDueDate} per indicarmi se intendi accettare l\'incarico o meno e poi per accedere alla proposta e registrare il tuo parere.<br />\n<br />\nLa data di scadenza Ã¨ il {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nTi ringrazio per la disponibilitÃ <br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Questo messaggio viene inviato dall\'editor a un revisore chiedendogli di accettare o rifiutare l\'incarico di revisione di una proposta per un secondo o successivo round di revisione. Esso fornisce informazioni come il titolo e l\'abstract, una data di scadenza e modalitÃ  di accesso alla stessa proposta. Questo messaggio viene utilizzato quando il processo di revisione standard Ã¨ stato selezionato nel Setup, Step 2 ed Ã¨ abilitato l\'accesso oneclick'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','nl_NL','Verzoek tot reviewen van een artikel','{$reviewerName}:<br />\n<br />\nDit betreft het manuscript \"{$submissionTitle},\" dat wordt overwogen door {$contextName}.<br />\n<br />\nNa een review van een eerdere versie van het manuscript hebben de auteurs een gereviseerde versie van hun manuscript ingestuurd. We zouden het waarderen als u wilt helpen die te evalueren.<br />\n<br />\nLog in op de website van het tijdschrift vÃ³Ã³r {$responseDueDate} om aan te geven of u de review wilt doen en om de inzending te benaderen en uw review en aanbeveling vast te leggen.<br />\n<br />\nHet review moet binnen zijn op {$reviewDueDate}.<br />\nURL van de inzending: {$submissionReviewUrl}<br />\n<br />\nDan ku voor het overwegen van dit verzoek.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Deze e-mail van een sectieredacteur aan een reviewer vraagt de reviewer een review van een inzending in een tweede of latere ronde te accepteren of te weigeren. Het bevat informatie over de inzending zoals titel en samenvatting, een verloopdatum en hoe de inzending te vinden. Dit bericht wordt  gebruikt in Stap 2 van het instellen van een tijdschrift als een-klik reviewer toegang is ingeschakeld.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','pt_BR','SolicitaÃ§Ã£o de avaliaÃ§Ã£o de artigo - {$contextName}','{$reviewerName}:<br />\n<br />\nEsta mensagem Ã© referente ao trabalho \"{$submissionTitle}\", que estÃ¡ em processo de avaliaÃ§Ã£o na publicaÃ§Ã£o {$contextName}.<br />\n<br />\nContinuando o processo de avaliaÃ§Ã£o da versÃ£o anterior do trabalho, os autores enviaram uma versÃ£o revisada. Nos seria de grande valia se pudesse ajudara a avaliÃ¡-lo.<br />\n<br />\nPara tanto, acesse o sistema da revista atÃ© {$responseDueDate} para indicar se estÃ¡ disponÃ­vel ou nÃ£o para assumir a responsabilidade, bem como acessar os dados da submissÃ£o e registrar sua avaliaÃ§Ã£o e recomendaÃ§Ã£o.<br />\n<br />\nA avaliaÃ§Ã£o deve ser concluÃ­da atÃ© {$reviewDueDate}.<br />\n<br />\nURL da SubmissÃ£o: {$submissionReviewUrl}<br />\n<br />\nAgradecendo desde jÃ¡ a atenÃ§Ã£o dispensada,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission for a second or greater round of review. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2, and one-click reviewer access is enabled.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','uk_UA','Ð—Ð°Ð¿Ð¸Ñ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ–','{$reviewerName}:<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ ÑÑ‚Ð¾ÑÑƒÑ”Ñ‚ÑŒÑÑ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ \"{$submissionTitle}\", ÑÐºÐ¸Ð¹ Ñ€Ð¾Ð·Ð³Ð»ÑÐ´Ð°Ñ”Ñ‚ÑŒÑÑ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¾Ð¼ {$contextName}.<br />\n<br />\nÐ—Ð³Ñ–Ð´Ð½Ð¾ Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–Ð¹ Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð½ÑŒÐ¾Ð³Ð¾ Ñ€Ð°ÑƒÐ½Ð´Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ, Ð°Ð²Ñ‚Ð¾Ñ€Ð¸ Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð»Ð¸ Ñ‚ÐµÐ¿ÐµÑ€ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñƒ Ð²ÐµÑ€ÑÑ–ÑŽ ÑÐ²Ð¾Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. ÐœÐ¸ Ð±ÑƒÐ»Ð¸ Ð± Ð²Ð´ÑÑ‡Ð½Ñ– Ð’Ð°Ð¼ Ð·Ð° Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ñƒ Ð² Ð¾Ñ†Ñ–Ð½Ñ†Ñ– Ñ†ÑŒÐ¾Ð³Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ.<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð´Ð¾ {$responseDueDate} Ð·Ð°Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ, Ñ‰Ð¾Ð± Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð¸Ñ‚Ð¸, Ñ‡Ð¸ Ð²Ñ–Ð·ÑŒÐ¼ÐµÑ‚ÐµÑÑ Ð’Ð¸ Ð·Ð° Ñ†ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ, Ð° Ñ‚Ð°ÐºÐ¾Ð¶ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ, Ð·Ð°Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ñ‚Ð° Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–ÑŽ.<br />\n<br />\nÐœÐ¸ Ñ…Ð¾Ñ‚Ñ–Ð»Ð¸ Ð± Ð¼Ð°Ñ‚Ð¸ Ð³Ð¾Ñ‚Ð¾Ð²Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð´Ð¾ {$reviewDueDate}.<br />\n<br />\nURL Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ: {$submissionReviewUrl}<br />\n<br />\nÐ”ÑÐºÑƒÑŽ, Ñ‰Ð¾ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÑƒÐ»Ð¸ Ñ†ÐµÐ¹ Ð·Ð°Ð¿Ð¸Ñ‚.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ð¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñƒ Ð¿Ñ€Ð¾ÑÐ¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° Ð²Ð·ÑÑ‚Ð¸ÑÑ Ð·Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð´Ñ€ÑƒÐ³Ð¾Ð³Ð¾ Ñ€Ð°ÑƒÐ½Ð´Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð²Ñ–Ð´Ð¼Ð¾Ð²Ð¸Ñ‚Ð¸ÑÑŒ Ð²Ñ–Ð´ Ñ†Ñ–Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. Ð£ Ð»Ð¸ÑÑ‚Ñ– Ð¼Ñ–ÑÑ‚Ð¸Ñ‚ÑŒÑÑ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ (Ð½Ð°Ð·Ð²Ð° Ñ‚Ð° Ð°Ð½Ð¾Ñ‚Ð°Ñ†Ñ–Ñ), Ð¿Ñ€Ð¾ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¸Ð¹ Ñ‚ÐµÑ€Ð¼Ñ–Ð½ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° Ð¿Ñ€Ð¾ Ñ‚Ðµ, ÑÐº Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð±ÐµÐ·Ð¿Ð¾ÑÐµÑ€ÐµÐ´Ð½ÑŒÐ¾ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ. Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ, ÑÐºÑ‰Ð¾ Ð½Ð° ÐºÑ€Ð¾Ñ†Ñ– 2 ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ð¹ Ð¡Ñ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° Ð¾Ð±Ñ€Ð°Ð½Ð° Ð¾Ð¿Ñ†Ñ–Ñ ÑÐ¿Ñ€Ð¾Ñ‰ÐµÐ½Ð¾Ð³Ð¾ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ.'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nThis regards the manuscript \"{$submissionTitle},\" which is under consideration by {$contextName}.<br />\n<br />\nFollowing the review of the previous version of the manuscript, the authors have now submitted a revised version of their paper. We would appreciate it if you could help evaluate it.<br />\n<br />\nThe Review Guidelines for this journal are appended below, and the submission is attached to this email. Your review of the submission, along with your recommendation, should be emailed to me by {$reviewDueDate}.<br />\n<br />\nPlease indicate in a return email by {$responseDueDate} whether you are able and willing to do the review.<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nReview Guidelines<br />\n<br />\n{$reviewGuidelines}<br />\n','This email is sent by the Section Editor to a Reviewer to request that they accept or decline the task of reviewing a submission for a second or greater round of review. It includes the submission as an attachment. This message is used when the Email-Attachment Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST_SUBSEQUENT.)'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','de_DE','Bitte um ein Gutachten','{$reviewerName},<br />\n<br />\ndiese E-Mail betrifft das Manuskript \"{$submissionTitle}\", das bei {$contextName} in der Begutachtung ist.<br />\n<br />\nNach der Begutachtung der frÃ¼heren Fassung des Manuskripts haben die Autor/innen nun eine Ã¼berarbeitete Fassung ihres Artikels eingereicht. Wir wÃ¼rden uns freuen, wenn Sie bei der Beurteilung helfen kÃ¶nnten.<br />\n<br />\nDie Begutachtungsrichtlinien dieser Zeitschrift sind unten angehÃ¤ngt, und der Beitrag selber ist dieser E-Mail beigefÃ¼gt. Ihr Gutachten zu diesem Beitrag sollte zusammen mit Ihrer Empfehlung mir per E-Mail bis zum {$reviewDueDate} zugehen.<br />\n<br />\nBitte teilen Sie uns in einer E-Mail bis zum {$responseDueDate} mit, ob Sie das Gutachten Ã¼bernehmen kÃ¶nnen.<br />\n<br />\nIn der Hoffnung auf eine positive Antwort,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nBegutachtungsrichtlinien<br />\n<br />\n{$reviewGuidelines}<br />\n','Diese E-Mail wird von der/dem Rubrikredakteur/in an eine/n Gutachter/in gesendet, damit diese/r die Aufgabe, eine Einreichung in einer zweiten oder weiteren Begutachtungsrunde zu beurteilen, Ã¼bernimmt oder ablehnt. Sie enthÃ¤lt die Einreichung als E-Mail-Anhang. Diese Nachricht wird benutzt, wenn in Schritt 2 des Zeitschriftensetups das Begutachtungsverfahren Ã¼ber E-Mail-AnhÃ¤nge ausgewÃ¤hlt worden ist. (Ansonsten siehe  REVIEW_REQUEST_SUBSEQUENT.)'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','eu_ES','Artikulua berrikusteko eskakizuna','{$reviewerName}:<br />\n<br />\nHau \"{$submissionTitle},\" eskuizkribuari dagokio, {$contextName} aldizkariak aintzat hartu duena.<br />\n<br />\nEskuizkribuaren aurreko bertsioaren berrikuspenari jarraituz, egileek orain haien lanaren bertsio berrikusi bat bidali dute. Eskertuko genuke ebaluatzen lagunduko bazenu.<br />\n<br />\nAldizkari honetarako Berrikuspen Gidalerroak behean erantsita daude, eta mezuak bidalketa bat du erantsia. Bidalketaren berrikuspena, zure gomendioarekin batera, bidali niri posta elektronikoz {$reviewDueDate} datarako.<br />\n<br />\nMesedez, adierazi mezu baten bidez {$responseDueDate} datarako berrikuspena egiteko gai izango zaren eta egingo duzun.<br />\n<br />\nMila esker eskari hau kontuan hartzeagatik.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nBerrikusi gidalerroak<br />\n<br />\n{$reviewGuidelines}','Atalen Editoreak Berrikusleari bidalitako mezu honetan berrikusleari eskatzen dio bidalitakoaren bigarren edo hurrengo berrikuspen bat onartu edo baztertu dezala. Bidalitakoari buruzko informazioa ematen du, besteak beste, titulua eta aurkezpena, berrikuspena egiteko muga, eta nola sartu bidalitakora.  Mezu hau erabiltzen da Aldizkariaren Konfigurazioan, 2. urratsean, Berrikuspen Prozesuaren Mezu Erantsia hautatzen denean. (Bestela, ikus BERRIKUSPENA_ESKAKIZUNA_ONDORENGOA.)'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','it_IT','Richiesta di revisione di un articolo','Gentile {$reviewerName}:<br />\n<br />\nTi scrivo riguardo al manoscritto \"{$submissionTitle},\" proposto per la pubblicazione a {$contextName}.<br />\n<br />\nSeguendo i suggerimenti ricevuti dai revisori, lautore ha inviato una nuova versione modificata. Ti sarei grato se ci aiutassi a valutarla.<br />\n<br />\nPiÃ¹ sotto trovi le Linee guida sulla revisione e il file del manoscritto Ã¨ in allegato. Puoi inviarmi la revisione e il tuo parere sulla proposta via email, entro il  {$reviewDueDate}.<br />\n<br />\nPerfavore informami entro il {$responseDueDate} se accetti o meno l\'incarico.<br />\n<br />\nGrazie della disponibiliÃ <br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nLinee guida sulla revisione<br />\n<br />\n{$reviewGuidelines}','Questo messaggio viene inviato dall\'editor a un revisore chiedendogli di accettare o rifiutare l\'incarico di revisione di una proposta per un secondo o successivo round di revisione. Contiene in allegato il file del manoscritto. Questo messaggio viene utilizzato quando Ã¨ stato selezionato nel Setup, Step 2 il processo di revisione con allegati email. (In caso contrario vedi REVIEW_REQUEST_SUBSEQUENT.)'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','nl_NL','Verzoek tot reviewen van een artikel','{$reviewerName}:<br />\n<br />\nDit betreft het manuscript \"{$submissionTitle},\" dat wordt overwogen door {$contextName}.<br />\n<br />\nNa een review van een eerdere versie van het manuscript hebben de auteurs een gereviseerde versie van hun manuscript ingestuurd. We zouden het op prijs stellen als u wilt helen die te evalueren.<br />\n<br />\nDe Review richtlijnen voor dit tijdschrift staan hieronder en de inzending is bijgevoegd bij deze e-mail. Uw review van de inzending en uw aanbeveling, zouden uiterlijk op {$reviewDueDate} naar mij gemaild moeten worden.<br />\n<br />\nGelieve mij voor {$responseDueDate} per e-mail te laten weten of u deze review kunt en wilt doen.<br />\n<br />\nDank u voor het overwegen van dit verzoek.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nReview richtlijnen<br />\n<br />\n{$reviewGuidelines}','Deze e-mail wordt door de sectieredacteur aan een reviewer verstuurd om te vragen of die een review voor de tweede of latere ronde van een inzending wil doen. De inzending wordt als bijlage meegestuurd. Dit bericht wordt gebruikt als het e-mail reviewproces wordt geselecteerd in stap 2 van het instellen. (Zie verder REVIEW_REQUEST_SUBSEQUENT)'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','pt_BR','SolicitaÃ§Ã£o de avaliaÃ§Ã£o de artigo - {$contextName}','Prezada(o) {$reviewerName},<br />\n<br />\nEsta mensagem Ã© referente ao trabalho \"{$submissionTitle},\" em processo de avaliaÃ§Ã£o para a revista {$contextName}.<br />\n<br />\nSeguindo o processo de avaliaÃ§Ã£o do trabalho, os autores encaminharam uma versÃ£o atualizada. Acredito que seu conhecimento serÃ¡ fundamental para realizar sua avaliaÃ§Ã£o e espero que considere assumir esta importante responsabilidade.<br />\n<br />\nAs Diretrizes para AvaliaÃ§Ã£o estÃ£o apensas a e a submissÃ£o como anexo a esta mensaagem. Sua avaliaÃ§Ã£o, bem como recomendaÃ§Ã£o, devem ser enviadas para este e-mail atÃ© {$reviewDueDate}.<br />\n<br />\nResponda a esta mensagem atÃ© {$responseDueDate} indicando sua disponibilidade ou nÃ£o para realizar a avaliaÃ§Ã£o.<br />\n<br />\nAgradecendo desde jÃ¡ a atenÃ§Ã£o dispensada,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nDiretrizes para AvaliaÃ§Ã£o<br />\n<br />\n{$reviewGuidelines}','Esta mensagem Ã© enviada pelo Editor de seÃ§Ã£o ao avaliador, solicitando a avaliaÃ§Ã£o de uma submissÃ£o em uma segunda rodada ou superior. A mensagem inclui a submissÃ£o como anexo. Ela Ã© usada quando o processo de avaliaÃ§Ã£o via e-mail Ã© escolhido no Passo 2 de configuraÃ§Ã£o da revista (Caso contrÃ¡rio, veja REVIEW_REQUEST_SUBSEQUENT).'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','uk_UA','Ð—Ð°Ð¿Ð¸Ñ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ–','{$reviewerName}:<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ ÑÑ‚Ð¾ÑÑƒÑ”Ñ‚ÑŒÑÑ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ \"{$submissionTitle}\", ÑÐºÐ¸Ð¹ Ñ€Ð¾Ð·Ð³Ð»ÑÐ´Ð°Ñ”Ñ‚ÑŒÑÑ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¾Ð¼ {$contextName}.<br />\n<br />\nÐ—Ð³Ñ–Ð´Ð½Ð¾ Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–Ð¹ Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð½ÑŒÐ¾Ð³Ð¾ Ñ€Ð°ÑƒÐ½Ð´Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ, Ð°Ð²Ñ‚Ð¾Ñ€Ð¸ Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð»Ð¸ Ñ‚ÐµÐ¿ÐµÑ€ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñƒ Ð²ÐµÑ€ÑÑ–ÑŽ ÑÐ²Ð¾Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. ÐœÐ¸ Ð±ÑƒÐ»Ð¸ Ð± Ð²Ð´ÑÑ‡Ð½Ñ– Ð’Ð°Ð¼ Ð·Ð° Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ñƒ Ð² Ð¾Ñ†Ñ–Ð½Ñ†Ñ– Ñ†ÑŒÐ¾Ð³Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ.<br />\n<br />\nÐÐ¸Ð¶Ñ‡Ðµ Ð¿Ð¾Ð´Ð°Ð½Ð° Ñ–Ð½ÑÑ‚Ñ€ÑƒÐºÑ†Ñ–Ñ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ñ–Ð². Ð ÑƒÐºÐ¾Ð¿Ð¸Ñ, Ð¿Ð¾Ð´Ð°Ð½Ð¸Ð¹ Ñƒ Ñ€ÐµÐ´Ð°ÐºÑ†Ñ–ÑŽ Ð°Ð²Ñ‚Ð¾Ñ€Ð°Ð¼Ð¸, Ð¿Ñ€Ð¸ÐºÑ€Ñ–Ð¿Ð»ÐµÐ½Ð¸Ð¹ Ð´Ð¾ Ñ†ÑŒÐ¾Ð³Ð¾ Ð»Ð¸ÑÑ‚Ð°. Ð¯ Ñ…Ð¾Ñ‚Ñ–Ð² Ð±Ð¸ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð»Ð¸ÑÑ‚ Ð· Ð’Ð°ÑˆÐ¾ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ”ÑŽ Ñ‚Ð° Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–Ñ”ÑŽ Ð´Ð¾ {$reviewDueDate}.<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð´Ð¾ {$responseDueDate} Ð½Ð°Ð´Ñ–ÑˆÐ»Ñ–Ñ‚ÑŒ Ð¼ÐµÐ½Ñ– Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´ÑŒ, Ñ‡Ð¸ Ð¼Ð°Ñ”Ñ‚Ðµ Ð’Ð¸ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ñ–ÑÑ‚ÑŒ Ñ– Ð±Ð°Ð¶Ð°Ð½Ð½Ñ Ð¿Ñ€Ð°Ñ†ÑŽÐ²Ð°Ñ‚Ð¸ Ð½Ð°Ð´ Ñ†Ñ–Ñ”ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ.<br />\n<br />\nÐ”ÑÐºÑƒÑŽ, Ñ‰Ð¾ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÑƒÐ»Ð¸ Ñ†ÐµÐ¹ Ð·Ð°Ð¿Ð¸Ñ‚.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nÐ†Ð½ÑÑ‚Ñ€ÑƒÐºÑ†Ñ–Ñ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ñ–Ð²<br />\n<br />\n{$reviewGuidelines}','Ð¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñƒ Ð¿Ñ€Ð¾ÑÐ¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° Ð²Ð·ÑÑ‚Ð¸ÑÑ Ð·Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð´Ñ€ÑƒÐ³Ð¾Ð³Ð¾ Ñ€Ð°ÑƒÐ½Ð´Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð²Ñ–Ð´Ð¼Ð¾Ð²Ð¸Ñ‚Ð¸ÑÑŒ Ð²Ñ–Ð´ Ñ†Ñ–Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. Ð£ Ð´Ð¾Ð´Ð°Ñ‚ÐºÑƒ Ð´Ð¾ Ð»Ð¸ÑÑ‚Ð° Ð¼Ñ–ÑÑ‚Ð¸Ñ‚ÑŒÑÑ Ñ€ÑƒÐºÐ¾Ð¿Ð¸Ñ, Ð¿Ð¾Ð´Ð°Ð½Ð¸Ð¹ Ð´Ð¾ Ñ€ÐµÐ´Ð°ÐºÑ†Ñ–Ñ—. Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ, ÑÐºÑ‰Ð¾ Ð½Ð° ÐºÑ€Ð¾Ñ†Ñ– 2 ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ð¹ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° \"Ñ”Ð´Ð¸Ð½Ð¸Ð¼ Ð½Ð°Ñ‚Ð¸ÑÐºÐ°Ð½Ð½ÑÐ¼\" (Ñƒ Ñ–Ð½ÑˆÐ¾Ð¼Ñƒ Ð²Ð¸Ð¿Ð°Ð´ÐºÑƒ Ð´Ð¸Ð². REVIEW_REQUEST_SUBSEQUENT.)'),('REVIEW_REQUEST_SUBSEQUENT','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nThis regards the manuscript \"{$submissionTitle},\" which is under consideration by {$contextName}.<br />\n<br />\nFollowing the review of the previous version of the manuscript, the authors have now submitted a revised version of their paper. We would appreciate it if you could help evaluate it.<br />\n<br />\nPlease log into the journal web site by {$responseDueDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation. The web site is {$contextUrl}<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nIf you do not have your username and password for the journal\'s web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission for a second or greater round of review. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('REVIEW_REQUEST_SUBSEQUENT','de_DE','Bitte um ein Gutachten','{$reviewerName},<br />\n<br />\ndiese E-Mail betrifft das Manuskript \"{$submissionTitle}\", das bei {$contextName} in der Begutachtung ist.<br />\n<br />\nNach der Begutachtung der frÃ¼heren Fassung des Manuskripts haben die Autor/innen nun eine Ã¼berarbeitete Fassung ihres Artikels eingereicht. Wir wÃ¼rden uns freuen, wenn Sie bei der Beurteilung helfen kÃ¶nnten.<br />\n<br />\nBitte loggen Sie sich auf der Website der Zeitschrift bis zum {$responseDueDate} ein, um uns Ihre Zu- oder Absage mitzuteilen. Sie finden dort den Beitrag und kÃ¶nnen auch Ihr Gutachten und Ihre Empfehlung dort abgeben. Die Adresse ist {$contextUrl}.<br />\n<br />\nDas Gutachten selbst wÃ¤re fÃ¤llig am {$reviewDueDate}.<br />\n<br />\nFalls Sie nicht Ã¼ber Benutzer/innennamen und Passwort verfÃ¼gen, kÃ¶nnen Sie Ã¼ber folgenden Link Ihr Passwort neu setzen (das Ihnen dann zusammen mit Ihrem Benutzer/innennamen per E-Mail zugesandt wird). {$passwordResetUrl}<br />\n<br />\nURL des Beitrags: {$submissionReviewUrl}<br />\n<br />\nIn der Hoffnung auf eine positive Antwort,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Diese E-Mail wird von der/dem Rubrikredakteur/in an eine/n Gutachter/in gesendet, damit diese/r die Aufgabe, eine Einreichung in einer zweiten oder weiteren Begutachtungsrunde zu beurteilen, Ã¼bernimmt oder ablehnt. Sie Ã¼bermittelt Informationen Ã¼ber die Einreichung wie den Titel und das Abstract, ein FÃ¤lligkeitsdatum fÃ¼r das Gutachten und Informationen, wie auf die Einreichung zugegriffen werden kann. Diese Nachricht wird benutzt, wenn in Schritt 2 des Zeitschriftensetups das Standardbegutachtungsverfahren ausgewÃ¤hlt worden ist. (Ansonsten siehe REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('REVIEW_REQUEST_SUBSEQUENT','eu_ES','Artikulua berrikusteko eskakizuna','{$reviewerName}:<br />\n<br />\nHau \"{$submissionTitle},\" eskuizkribuari dagokio, {$contextName} aldizkariak aintzat hartu duena.<br />\n<br />\nEskuizkribuaren aurreko bertsioaren berrikuspenari jarraituz, egileek orain haien lanaren bertsio berrikusi bat bidali dute. Eskertuko genuke ebaluatzen lagunduko bazenu.<br />\n<br />\nMesedez, sartu aldizkariaren web orrian {$responseDueDate} datarako, adierazteko berrikuspenaz arduratuko zaren edo ez, baita bidalitakora sartzeko eta zure berrikuspena eta gomendioa grabatzeko ere. Web gunea da: {$contextUrl}<br />\n<br />\nBerrikuspenaren epemuga: {$reviewDueDate}.<br />\n<br />\nEz baduzu erabiltzailerik eta pasahitzik aldizkariaren web orrirako, lotura hau erabil dezakezu zure pasahitza berrezartzeko (eta posta elektronikoz bidaliko zaizu ondoren, zure erabiltzailearekin batera). {$passwordResetUrl}<br />\n<br />\nURL aurkezpena: {$submissionReviewUrl}<br />\n<br />\nMila esker eskari hau kontuan hartzeagatik.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Atalen Editoreak Berrikusleari bidalitako mezu honetan berrikusleari eskatzen dio bidalitakoaren bigarren edo hurrengo berrikuspen bat onartu edo baztertu dezala. Bidalitakoari buruzko informazioa ematen du, besteak beste, titulua eta aurkezpena, berrikuspena egiteko muga, eta nola sartu bidalitakora.  Mezu hau erabiltzen da Aldizkariaren Konfigurazioan, 2. urratsean Berrikuspen Estandarraren Prozesua hautatzen denean. (Bestela, ikus BERRIKUSPENA_ESKAKIZUNA_ERANTSIA_ONDORENGOA.)'),('REVIEW_REQUEST_SUBSEQUENT','it_IT','Article Review Request','Gentile {$reviewerName}:<br />\n<br />\nti scrivo riguardo alla proposta \"{$submissionTitle},\" che Ã¨ in revisione per essere pubblicato da {$contextName}.<br />\n<br />\nSeguendo i suggerimenti emersi in precedenza, l\'autore ha modificato il manoscritto e inviato una nuova versione. Ti sarei grato se volessi aiutarci a valutarla.<br />\n<br />\nTi prego quindi di accedere al sito entro il {$responseDueDate} per comunicare se ti incaricherai o meno della revisione e poi per accedere alla proposta e registrare il tuo parere. Il sito Ã¨ {$contextUrl}<br />\n<br />\nLa data di scadenza per l\'incarico di revisione Ã¨ il {$reviewDueDate}.<br />\n<br />\nSe non ricordi la tua username e password, puoi utilizzare la funzione di reset password: {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nTi ringrazio della considerazione<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Questo messaggio viene inviato dall\'editor a un revisore chiedendogli di accettare o rifiutare l\'incarico di revisione di una proposta per un secondo o successivo round di revisione. Esso fornisce informazioni come il titolo e l\'abstract, una data di scadenza e modalitÃ  di accesso alla stessa proposta. Questo messaggio viene utilizzato quando il processo di revisione standard Ã¨ stato selezionato nel Setup, Step 2. (In caso contrario vedi REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('REVIEW_REQUEST_SUBSEQUENT','nl_NL','Verzoek tot reviewen van een artikel','{$reviewerName}:<br />\n<br />\nDit betreft het manuscript \"{$submissionTitle},\" dat wordt overwogen door {$contextName}.<br />\n<br />\nNa de review van een vorige versie van hun manuscript hebben de auteurs een gereviseerde versie ingestuurd. We zouden het waarderen als u wilt helpen die te evalueren.<br />\n<br />\nGelieve in te loggen op de website van het tijdschrift vÃ³Ã³r {$responseDueDate} om aan te geven of u deze review wilt doen of niet, alsmede om toegang te krijgen tot de inzending en uw bevindingen en aanbeveling vast te leggen. De website is {$contextUrl}<br />\n<br />\nDe revieuw moet gereed zijn op {$reviewDueDate}.<br />\n<br />\nAls u uw gebruikersnaam en wachtwoord niet meer heeft, kunt u deze link gebruiken om uw wachtwoord terug te zetten (dat u met uw gebruikersnaam in een e-mail zult ontvangen). {$passwordResetUrl}<br />\n<br />\nURL van de inzending: {$submissionReviewUrl}<br />\n<br />\nHartelijk dank voor het overwegen van dit verzoek.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Deze e-mail van de sectieredacteur aan de reviewer vraagt de reviewer een inzending voor een tweede of latere ronde te reviewen. Het bevat informatie over de inzending zoals titel en samenvatting, de uiterste datum voor de review en de gegevens om de inzending te benaderen. Dit bericht wordt gebruikt bij het standaard review proces, zoals gekozen in instellen, stap 2 (zie verder REVIEW_REQUEST_ATTACHED_SUBSEQUENT)'),('REVIEW_REQUEST_SUBSEQUENT','pt_BR','SolicitaÃ§Ã£o de avaliaÃ§Ã£o de artigo - {$contextName}','{$reviewerName}:<br />\n<br />\nEsta mensagem estÃ¡ relacionada ao trabalho \"{$submissionTitle},\" que estÃ¡ em processo de avaliaÃ§Ã£o na publicaÃ§Ã£o {$contextName}.<br />\n<br />\nSeguindo o processo de de avaliaÃ§Ã£o da versÃ£o anterior, os autores encaminharam uma versÃ£o revisada. Nos seria de grande valia se pudesse ajudar a avaliar essa nova versÃ£o.<br />\n<br />\nPara tanto, acesse o sistema da revista atÃ© {$responseDueDate} para indicar se aceita ou nÃ£o assumir a avaliaÃ§Ã£o, bem como acessar os dados da submissÃ£o e registrar sua avaliaÃ§Ã£o e recomendaÃ§Ã£o. O site da revista Ã© {$contextUrl}<br />\n<br />\nA avaliaÃ§Ã£o deve ser concluÃ­da atÃ©{$reviewDueDate}.<br />\n<br />\nCaso nÃ£o possua seu login e senha para acesso, use o link a seguir para criar uma nova senha (que serÃ¡ encaminha via e-mail junto com seu login). {$passwordResetUrl}<br />\n<br />\nURL da submissÃ£o: {$submissionReviewUrl}<br />\n<br />\nAgradecendo antecipadamente sua consideraÃ§Ã£o em aceitar esta responsabilidade,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission for a second or greater round of review. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('REVIEW_REQUEST_SUBSEQUENT','tr_TR','Makale DeÄŸerlendirme Ä°steÄŸi 2. Tur','{$reviewerName},<br />\n<br />\nKÄ±ymetli Hocam,<br />\n<br />\n{$contextName}\'nde yayÄ±mlanmasÄ± iÃ§in deÄŸerlendirilmek Ã¼zere gÃ¶nderilen \"{$submissionTitle}\" adlÄ± makalenin deÄŸerlendirmesi tarafÄ±nÄ±zdan yapÄ±lmÄ±ÅŸtÄ±.<br />\n<br />\nÃ–nerileriniz doÄŸrultusunda yazar makalesini gÃ¼ncellemiÅŸ ve yeniden incelenmek Ã¼zere dergimize sunmuÅŸtur. SÃ¶z konusu makale yeniden deÄŸerlendirilmek Ã¼zere tarafÄ±nÄ±za gÃ¶nderilmiÅŸtir.<br />\n<br />\nDeÄŸerlendirme iÃ§in Ã¶ncelikle Dergimiz web sitesine giriÅŸ yaparak, {$responseDueDate} tarihine kadar inceleme isteÄŸimizi KABUL veya REDDETTÄ°ÄžÄ°NÄ°ZÄ° belirtmenizi bekliyoruz.<br />\n<br />\nIf you do not have your username and password for the journal\'s web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission for a second or greater round of review. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('REVIEW_REQUEST_SUBSEQUENT','uk_UA','Ð—Ð°Ð¿Ð¸Ñ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ–','{$reviewerName}:<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ ÑÑ‚Ð¾ÑÑƒÑ”Ñ‚ÑŒÑÑ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ \"{$submissionTitle}\", ÑÐºÐ¸Ð¹ Ñ€Ð¾Ð·Ð³Ð»ÑÐ´Ð°Ñ”Ñ‚ÑŒÑÑ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¾Ð¼ {$contextName}.<br />\n<br />\nÐ—Ð³Ñ–Ð´Ð½Ð¾ Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–Ð¹ Ð¿Ð¾Ð¿ÐµÑ€ÐµÐ´Ð½ÑŒÐ¾Ð³Ð¾ Ñ€Ð°ÑƒÐ½Ð´Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ, Ð°Ð²Ñ‚Ð¾Ñ€Ð¸ Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð»Ð¸ Ñ‚ÐµÐ¿ÐµÑ€ Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñƒ Ð²ÐµÑ€ÑÑ–ÑŽ ÑÐ²Ð¾Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. ÐœÐ¸ Ð±ÑƒÐ»Ð¸ Ð± Ð²Ð´ÑÑ‡Ð½Ñ– Ð’Ð°Ð¼ Ð·Ð° Ð´Ð¾Ð¿Ð¾Ð¼Ð¾Ð³Ñƒ Ð² Ð¾Ñ†Ñ–Ð½Ñ†Ñ– Ñ†ÑŒÐ¾Ð³Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ.<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð´Ð¾ {$responseDueDate} Ð·Ð°Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ, Ñ‰Ð¾Ð± Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð¸Ñ‚Ð¸, Ñ‡Ð¸ Ð²Ñ–Ð·ÑŒÐ¼ÐµÑ‚ÐµÑÑ Ð’Ð¸ Ð·Ð° Ñ†ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ, Ð° Ñ‚Ð°ÐºÐ¾Ð¶ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ, Ð·Ð°Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ñ‚Ð° Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–ÑŽ. ÐÐ´Ñ€ÐµÑÐ° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚Ñƒ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ {$contextUrl}<br />\n<br />\nÐœÐ¸ Ñ…Ð¾Ñ‚Ñ–Ð»Ð¸ Ð± Ð¼Ð°Ñ‚Ð¸ Ð³Ð¾Ñ‚Ð¾Ð²Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð´Ð¾ {$reviewDueDate}.<br />\n<br />\nÐ¯ÐºÑ‰Ð¾ Ð’Ð¸ Ð½Ðµ Ð·Ð±ÐµÑ€ÐµÐ³Ð»Ð¸ Ñ–Ð¼ÐµÐ½Ñ– ÐºÐ¾Ñ€Ð¸ÑÑ‚ÑƒÐ²Ð°Ñ‡Ð° Ñ‚Ð° Ð¿Ð°Ñ€Ð¾Ð»ÑŒ Ð´Ð»Ñ Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚Ñƒ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ, Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ ÑÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ñ‚Ð¸ÑÑ Ð½Ð°ÑÑ‚ÑƒÐ¿Ð½Ð¸Ð¼ Ð¿Ð¾ÑÐ¸Ð»Ð°Ð½Ð½ÑÐ¼ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± ÑÐºÐ¸Ð½ÑƒÑ‚Ð¸ ÑÐ²Ñ–Ð¹ Ð¿Ð°Ñ€Ð¾Ð»ÑŒ (Ð¿Ñ–ÑÐ»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ð¿Ð°Ñ€Ð¾Ð»ÑŒ Ñ‚Ð° Ñ–Ð¼\'Ñ ÐºÐ¾Ñ€Ð¸ÑÑ‚ÑƒÐ²Ð°Ñ‡Ð° Ð±ÑƒÐ´ÑƒÑ‚ÑŒ Ð²Ñ–Ð´Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñ– Ð’Ð°Ð¼ ÐµÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾ÑŽ Ð¿Ð¾ÑˆÑ‚Ð¾ÑŽ). {$passwordResetUrl}<br />\n<br />\nURL Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ: {$submissionReviewUrl}<br />\n<br />\nÐ”ÑÐºÑƒÑŽ, Ñ‰Ð¾ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÑƒÐ»Ð¸ Ñ†ÐµÐ¹ Ð·Ð°Ð¿Ð¸Ñ‚.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ð¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñƒ Ð¿Ñ€Ð¾ÑÐ¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° Ð²Ð·ÑÑ‚Ð¸ÑÑ Ð·Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð´Ñ€ÑƒÐ³Ð¾Ð³Ð¾ Ñ€Ð°ÑƒÐ½Ð´Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð²Ñ–Ð´Ð¼Ð¾Ð²Ð¸Ñ‚Ð¸ÑÑŒ Ð²Ñ–Ð´ Ñ†Ñ–Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. Ð£ Ð»Ð¸ÑÑ‚Ñ– Ð¼Ñ–ÑÑ‚Ð¸Ñ‚ÑŒÑÑ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ (Ð½Ð°Ð·Ð²Ð° Ñ‚Ð° Ð°Ð½Ð¾Ñ‚Ð°Ñ†Ñ–Ñ), Ð¿Ñ€Ð¾ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¸Ð¹ Ñ‚ÐµÑ€Ð¼Ñ–Ð½ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° Ð¿Ñ€Ð¾ Ñ‚Ðµ, ÑÐº Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð±ÐµÐ·Ð¿Ð¾ÑÐµÑ€ÐµÐ´Ð½ÑŒÐ¾ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ. Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ, ÑÐºÑ‰Ð¾ Ð½Ð° ÐºÑ€Ð¾Ñ†Ñ– 2 ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ð¹ Ð¡Ñ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ (Ñƒ Ñ–Ð½ÑˆÐ¾Ð¼Ñƒ Ð²Ð¸Ð¿Ð°Ð´ÐºÑƒ Ð´Ð¸Ð². REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('REVIEW_REQUEST_REMIND_AUTO','ca_ES','SolÂ·licitud de revisiÃ³ d\'un article','{$reviewerName}:<br />\n<br />\nConsidero que el vostre perfil Ã©s adequat per revisar el manuscrit Â«{$submissionTitle}Â» tramÃ¨s a la revista {$contextName}. A continuaciÃ³ trobareu un resum de la tramesa, i confio que acceptareu encarregar-vos d\'aquesta tasca important. <br />\n<br />\nUs demano que inicieu la sessiÃ³ a la revista abans del {$responseDueDate} per indicar-nos si accepteu o no encarregar-vos de la revisiÃ³ de la tramesa i, en cas d\'acceptar-la, per accedir-hi i enregistrar-ne la revisiÃ³ i recomanaciÃ³. El lloc web Ã©s {$contextUrl} <br />\n<br />\nLa data lÃ­mit per a la revisiÃ³ Ã©s el {$reviewDueDate}.<br />\n<br />\nSi heu oblidat el vostre nom d\'usuari/Ã ria o la vostra contrasenya per al lloc web de la revista, podeu utilitzar l\'enllaÃ§ segÃ¼ent per reinicialitzar la contrasenya (en rebreu una de nova per correu electrÃ²nic, juntament amb el vostre nom d\'usuari/Ã ria). {$passwordResetUrl} <br />\n<br />\nEnllaÃ§ de la tramesa: {$submissionReviewUrl} <br />\n<br />\nGrÃ cies per tenir en compte aquesta solÂ·licitud. <br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nÂ«{$submissionTitle}Â»<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Aquest missatge de correu electrÃ²nic tÃ© com a remitent l\'editor/a de secciÃ³, i s\'envia a un possible revisor/a perquÃ¨ accepti o rebutgi la revisiÃ³ d\'una tramesa. Proporciona la informaciÃ³ segÃ¼ent relativa a la tramesa: tÃ­tol i resum, data de venciment per a la revisiÃ³ i mode d\'accÃ©s a la tramesa. Aquest missatge s\'utilitza si s\'ha seleccionat el procÃ©s de revisiÃ³ estÃ ndard al pas 2 de la configuraciÃ³ de la revista  (en cas contrari, vegeu el missatge de correu electrÃ²nic REVIEW_REQUEST_REMIND_AUTO_ATTACHED).'),('REVIEW_REQUEST_REMIND_AUTO','cs_CZ','Å½Ã¡dost o zpracovÃ¡nÃ­ recenze ÄlÃ¡nku','{$reviewerName}:<br />\n<br />\nDomnÃ­vÃ¡m se, Å¾e byste mohl bÃ½t vÃ½bornÃ½m recenzentem pÅ™Ã­spÄ›vku \"{$submissionTitle},\" kterÃ½ byl zaslÃ¡n do {$contextName}. Abstrakt pÅ™Ã­spÄ›vku je vloÅ¾en nÃ­Å¾e. VÄ›Å™Ã­m, Å¾e zvÃ¡Å¾Ã­te moÅ¾nost pÅ™ijetÃ­ tohoto pro nÃ¡s dÅ¯leÅ¾itÃ©ho Ãºkolu.<br />\n<br />\nProsÃ­m, pÅ™ihlaste se do {$responseDueDate} na strÃ¡nkÃ¡ch Äasopisu, abyste uvedl, zda recenzi zpracujete nebo ne a takÃ© pro pÅ™Ã­stup k pÅ™Ã­spÄ›vku a zaznamenÃ¡nÃ­ VaÅ¡Ã­ recenze a doporuÄenÃ­. Adresa webovÃ© strÃ¡nky je {$contextUrl}<br />\n<br />\nTermÃ­n pro zpracovÃ¡nÃ­ recenze je {$reviewDueDate}.<br />\n<br />\nPokud nemÃ¡te svÃ© uÅ¾ivatelskÃ© jmÃ©no a heslo pro webovou strÃ¡nku Äasopisu, mÅ¯Å¾ete pouÅ¾Ã­t tento odkaz pro resetovÃ¡nÃ­ VaÅ¡eho hesla (kterÃ© VÃ¡m bude zaslÃ¡no emailem spolu s VaÅ¡Ã­m uÅ¾ivatelskÃ½m jmÃ©nem). {$passwordResetUrl}<br />\n<br />\nURL pÅ™Ã­spÄ›vku: {$submissionReviewUrl}<br />\n<br />\nDÄ›kujeme za zvÃ¡Å¾enÃ­ tÃ©to Å¾Ã¡dosti.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Tento email od editora sekce pro recenzenta Å¾Ã¡dÃ¡, aby recenzent pÅ™ijal nebo odmÃ­tl Ãºkol zpracovat recenzi pÅ™Ã­spÄ›vku. Obsahuje informace o pÅ™Ã­spÄ›vku, jako je nÃ¡zev a abstrakt, termÃ­n pro zpracovÃ¡nÃ­ recenze a jak se dostat k samotnÃ©mu pÅ™Ã­spÄ›vku. Tato zprÃ¡va je pouÅ¾Ã­vÃ¡na, pokud je zvoleno StandardnÃ­ recenzÃ­ Å™Ã­zenÃ­ ve druhÃ©m kroku  NastavenÃ­ Äasopisu. (V jinÃ©m pÅ™Ã­padÄ› viz REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','da_DK','ForespÃ¸rgsel om bedÃ¸mmelse af artikel','{$reviewerName}:<br />\n<br />\nJeg tror, at du vil vÃ¦re en fremragende bedÃ¸mmer af manuskriptet \"{$submissionTitle}\", der er blevet sendt til {$contextName}. Nedenfor finder du et resumÃ© af manuskriptet, og jeg hÃ¥ber, at du vil overveje at pÃ¥tage dig denne vigtige opgave for os.<br />\n<br />\nLog pÃ¥ tidsskriftets websted inden den {$responseDueDate} for at angive, om du vil pÃ¥tage dig bedÃ¸mmelsen eller ej, samt for at fÃ¥ adgang til manuskriptet og registrere din bedÃ¸mmelse og anbefaling. Webstedet er {$contextUrl}<br />\n<br />\nSelve bedÃ¸mmelsen skal afleveres senest den {$reviewDueDate}.<br />\n<br />\nHvis du ikke har dit brugernavn og din adgangskode til tidsskriftets websted, kan du bruge dette link til at nulstille adgangskoden (som sÃ¥ vil blive sendt til dig via e-mail sammen med dit brugernavn). {$passwordResetUrl}<br />\n<br />\nManuskriptets URL-adresse: {$submissionReviewUrl}<br />\n<br />\nTak for din overvejelse af denne forespÃ¸rgsel.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled} {$submissionAbstract}','Denne e-mail fra sektionsredaktÃ¸ren til en bedÃ¸mmer anmoder bedÃ¸mmeren om at acceptere eller afvise at bedÃ¸mme et manuskript. Den indeholder oplysninger om manuskriptet, f.eks. titel og resumÃ©, forfaldsdato for bedÃ¸mmelse, samt hvordan der kan oprettes adgang til selve manuskriptet. Denne meddelelse benyttes, hvis indstillingen StandardbedÃ¸mmelsesproces er valgt under Konfiguration af tidsskrift, trin 2. (Se ellers REVIEW_REQUEST_REMIND_AUTO_ATTACHED).'),('REVIEW_REQUEST_REMIND_AUTO','de_DE','Bitte um ein Gutachten','{$reviewerName},<br />\n<br />\naufgrund Ihrer Forschungsschwerpunkte wÃ¤ren Sie ein/e ausgezeichnete/r Gutachter/in fÃ¼r das Manuskript \"{$submissionTitle}\", das zur Publikation in {$contextName} eingereicht worden ist. Weiter unten finden Sie eine Kurzfassung des Beitrags. Ich hoffe sehr, dass Sie sich bereitfinden kÃ¶nnen, uns mit Ihrer Stellungnahme zu unterstÃ¼tzen. Sie wÃ¤ren uns eine groÃŸe Hilfe.<br />\n<br />\nLoggen Sie sich bitte bis zum {$responseDueDate} auf der Webseite unserer Zeitschrift ein, um uns Ihre Zu- oder Absage mitzuteilen. Sie finden dort den Beitrag und kÃ¶nnen gegebenenfalls auch Ihr Gutachten und Ihre Empfehlung dort abgeben. Die Webseite ist {$contextUrl}.<br />\n<br />\nDas Gutachten wÃ¤re fÃ¤llig am {$reviewDueDate}.<br />\n<br />\nFalls Sie nicht Ã¼ber Benutzer/innennamen und Passwort verfÃ¼gen, kÃ¶nnen Sie Ã¼ber folgenden Link Ihr Passwort neu setzen (Benutzer/innennamen und Passwort gehen Ihnen umgehend per E-Mail zu). {$passwordResetUrl}<br />\n<br />\nURL des Beitrags: {$submissionReviewUrl}<br />\n<br />\nIn der Hoffnung auf eine positive Antwort,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Diese E-Mail von der/dem Rubrikredakteur/in an eine/n Gutachter/in bittet darum, dass diese/r die Aufgabe, eine Einreichung zu begutachten, Ã¼bernimmt oder ablehnt. Sie liefert Informationen Ã¼ber die Einreichung wie Titel und Abstract, ein FÃ¤lligkeitsdatum fÃ¼r das Gutachten und darÃ¼ber, wie auf die Einreichung zugegriffen werden kann. Diese Nachricht wird benutzt, wenn in Schritt 2 des Zeitschriftensetups das Standardbegutachtungsverfahren ausgewÃ¤hlt worden ist. (Ansonsten siehe REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','el_GR','Î‘Î¯Ï„Î·Î¼Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ Î¬ÏÎ¸ÏÎ¿Ï…','{$reviewerName}:<br />\n<br />\nÎ Î¹ÏƒÏ„ÎµÏÎ¿Ï…Î¼Îµ ÏŒÏ„Î¹ Î¸Î± ÏƒÏ…Î½ÎµÎ¹ÏƒÏ†Î­ÏÎµÏ„Îµ Î¼Îµ Ï„Î¿Î½ Ï€Î»Î­Î¿Î½ ÎºÎ±Ï„Î¬Î»Î»Î·Î»Î¿ Ï„ÏÏŒÏ€Î¿ ÏƒÏ„Î¿ Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÏŒ Ï‰Ï‚ Î±Î¾Î¹Î¿Î»Î¿Î³Î·Ï„Î®Ï‚ Î³Î¹Î± Ï„Î·Î½ ÎµÏÎ³Î±ÏƒÎ¯Î±, \"{$submissionTitle},\" Ï€Î¿Ï… Î­Ï‡ÎµÎ¹ Ï…Ï€Î¿Î²Î»Î·Î¸ÎµÎ¯ ÏƒÏ„Î¿ {$contextName}. Î— Î ÎµÏÎ¯Î»Î·ÏˆÎ· Ï„Î·Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ Ï€Î±ÏÎ±Ï„Î¯Î¸ÎµÏ„Î±Î¹ Ï€Î±ÏÎ±ÎºÎ¬Ï„Ï‰ ÎºÎ±Î¹ ÎµÎ»Ï€Î¯Î¶Î¿Ï…Î¼Îµ ÏŒÏ„Î¹ Î¸Î± Î±Î½Î±Î»Î¬Î²ÎµÏ„Îµ Î±Ï…Ï„Î® Ï„Î·Î½ ÏƒÎ·Î¼Î±Î½Ï„Î¹ÎºÎ® ÎµÏÎ³Î±ÏƒÎ¯Î± Î³Î¹Î± Ï„Î¿ Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÏŒ Î¼Î±Ï‚.<br />\n<br />\nÎ˜Î± ÏƒÎ±Ï‚ Ï€Î±ÏÎ±ÎºÎ±Î»Î¿ÏÏƒÎ±Î¼Îµ Î½Î± ÏƒÏ…Î½Î´ÎµÎ¸ÎµÎ¯Ï„Îµ ÏƒÏ„Î¿Î½ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï Î¼Î­Ï‡ÏÎ¹ Ï„Î·Î½ {$responseDueDate}, Î³Î¹Î± Î½Î± Î´Î·Î»ÏŽÏƒÎµÏ„Îµ Î±Î½ Î¸Î± Î±Î½Î±Î»Î¬Î²ÎµÏ„Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î® ÏŒÏ‡Î¹, ÎºÎ±Î¸ÏŽÏ‚ ÎºÎ±Î¹ Î³Î¹Î± Î½Î± Î±Ï€Î¿ÎºÏ„Î®ÏƒÎµÏ„Îµ Ï€ÏÏŒÏƒÎ²Î±ÏƒÎ· ÏƒÏ„Î·Î½ Ï…Ï€Î¿Î²Î¿Î»Î® ÎºÎ±Î¹ Î³Î¹Î± Î½Î± ÎºÎ±Ï„Î±Ï‡Ï‰ÏÎ¯ÏƒÎµÏ„Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ® ÏƒÎ±Ï‚ ÎºÎ±Î¹ Ï„Î¹Ï‚ ÏƒÏ…ÏƒÏ„Î¬ÏƒÎµÎ¹Ï‚ ÏƒÎ±Ï‚. ÎŸ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿Ï‚ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï ÎµÎ¯Î½Î±Î¹ {$contextUrl}<br />\n<br />\nÎ— Ï€ÏÎ¿Î¸ÎµÏƒÎ¼Î¯Î± Î¿Î»Î¿ÎºÎ»Î®ÏÏ‰ÏƒÎ·Ï‚ Ï„Î·Ï‚ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î»Î®Î³ÎµÎ¹ ÏƒÏ„Î¹Ï‚ {$reviewDueDate}.<br />\n<br />\nÎ•Î¬Î½ Î´ÎµÎ½ Î³Î¹Î± Î¿Ï€Î¿Î¹Î¿Î´Î®Ï€Î¿Ï„Îµ Î»ÏŒÎ³Î¿ Î´ÎµÎ½ Î¸Ï…Î¼Î¬ÏƒÏ„Îµ Î® Î´ÎµÎ½ Î­Ï‡ÎµÏ„Îµ ÏƒÏ„Î·Î½ ÎºÎ±Ï„Î¿Ï‡Î® ÏƒÎ±Ï‚ Ï„Î¿ ÏŒÎ½Î¿Î¼Î± Ï‡ÏÎ®ÏƒÏ„Î· ÎºÎ±Î¹ Ï„Î¿Î½ ÎºÏ‰Î´Î¹ÎºÏŒ Ï€ÏÏŒÏƒÎ²Î±ÏƒÎ®Ï‚ ÏƒÎ±Ï‚ Î³Î¹Î± Ï„Î¿Î½ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï, Î¼Ï€Î¿ÏÎµÎ¯Ï„Îµ Î½Î± Ï‡ÏÎ·ÏƒÎ¹Î¼Î¿Ï€Î¿Î¹Î®ÏƒÎµÏ„Îµ Ï„Î¿Î½ Ï€Î±ÏÎ±ÎºÎ¬Ï„Ï‰ ÏƒÏ‡ÎµÏ„Î¹ÎºÏŒ ÏƒÏÎ½Î´ÎµÏƒÎ¼Î¿ Î³Î¹Î± Î½Î± ÎµÏ€Î±Î½Î±Ï†Î­ÏÎµÏ„Îµ Ï„Î¿Î½ ÎºÏ‰Î´Î¹ÎºÏŒ Ï€ÏÏŒÏƒÎ²Î±ÏƒÎ®Ï‚ ÏƒÎ±Ï‚ (Ï€Î¿Ï… Î¸Î± ÏƒÎ±Ï‚ Î±Ï€Î¿ÏƒÏ„Î±Î»Î»ÎµÎ¯ Î¼Îµ email Î¼Î±Î¶Î¯ Î¼Îµ Ï„Î¿ ÏŒÎ½Î¿Î¼Î± Ï‡ÏÎ®ÏƒÏ„Î·). {$passwordResetUrl}<br />\n<br />\nURL Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚: {$submissionReviewUrl}<br />\n<br />\nÎ£Î±Ï‚ ÎµÏ…Ï‡Î±ÏÎ¹ÏƒÏ„Î¿ÏÎ¼Îµ ÎµÎº Ï„Ï‰Î½ Ï€ÏÎ¿Ï„Î­ÏÏ‰Î½ Î³Î¹Î± Ï„Î·Î½ ÎµÎ¾Î­Ï„Î±ÏƒÎ· Ï„Î¿Ï… Î±Î¹Ï„Î®Î¼Î±Ï„ÏŒÏ‚ Î¼Î±Ï‚.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Î¤Î¿ ÏƒÏ…Î³ÎºÎµÎºÏÎ¹Î¼Î­Î½Î¿ Î¼Î®Î½Ï…Î¼Î± ÏƒÏ„Î­Î»Î½ÎµÏ„Î±Î¹ Î±Ï€ÏŒ Ï„Î¿Î½ Î•Ï€Î¹Î¼ÎµÎ»Î·Ï„Î® ÎµÎ½ÏŒÏ„Î·Ï„Î±Ï‚ Ï€ÏÎ¿Ï‚ Ï„Î¿Î½ Î±Î¾Î¹Î¿Î»Î¿Î³Î·Ï„Î® ÎºÎ±Î¹ Ï„Î¿Ï… Î±Î¹Ï„ÎµÎ¯Ï„Î±Î¹ Î½Î± Î´ÎµÏ‡Ï„ÎµÎ¯ Î® Î½Î± Î±Ï€Î¿ÏÏÎ¯ÏˆÎµÎ¹ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î¼Î¹Î±Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚. Î Î±ÏÎ­Ï‡ÎµÎ¹ Ï€Î»Î·ÏÎ¿Ï†Î¿ÏÎ¯ÎµÏ‚ ÏƒÏ‡ÎµÏ„Î¹ÎºÎ¬ Î¼Îµ Ï„Î·Î½ Ï…Ï€Î¿Î²Î¿Î»Î® ÏŒÏ€Ï‰Ï‚ Î¿ Ï„Î¯Ï„Î»Î¿Ï‚ ÎºÎ±Î¹ Ï„Î¿ Î±Ï€ÏŒÏƒÏ€Î±ÏƒÎ¼Î±, Ï„Î·Î½ Î·Î¼ÎµÏÎ¿Î¼Î·Î½Î¯Î± Ï€ÏÎ¿Î¸ÎµÏƒÎ¼Î¯Î±Ï‚ Ï„Î·Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ ÎºÎ±Î¹ Ï„Î¿Î½ Ï„ÏÏŒÏ€Î¿ Ï€ÏÏŒÏƒÎ²Î±ÏƒÎ·Ï‚ ÏƒÏ„Î·Î½ Ï…Ï€Î¿Î²Î¿Î»Î®. Î¤Î¿ ÏƒÏ…Î³ÎºÎµÎºÏÎ¹Î¼Î­Î½Î¿ Î¼Î®Î½Ï…Î¼Î± Ï‡ÏÎ·ÏƒÎ¹Î¼Î¿Ï€Î¿Î¹ÎµÎ¯Ï„Î±Î¹ ÏŒÏ„Î±Î½ Î· Î ÏÏŒÏ„Ï…Ï€Î· Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ (online) Î­Ï‡ÎµÎ¹ ÎµÏ€Î¹Î»ÎµÏ‡Î¸ÎµÎ¯ ÏƒÏ„Î¿ Î¼ÎµÎ½Î¿Ï ÎŸÏÎ³Î¬Î½Ï‰ÏƒÎ· Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï, Î’Î®Î¼Î± 2. (Î£Îµ Î´Î¹Î±Ï†Î¿ÏÎµÏ„Î¹ÎºÎ® Ï€ÎµÏÎ¯Ï€Ï„Ï‰ÏƒÎ· Î±Î½Î±Ï„ÏÎ­Î¾Ï„Îµ ÏƒÏ„Î¿ REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('EDITOR_DECISION_SEND_TO_EXTERNAL','en_US','Editor Decision','{$authorName}:<br />\n<br />\nWe have reached a decision regarding your submission to {$contextName}, &quot;{$submissionTitle}&quot;.<br />\n<br />\nOur decision is to: Send to Review<br />\n<br />\nSubmission URL: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}<br />\n','This email from the Editor or Section Editor to an Author notifies them that their submission is being sent to an external review.'),('REVIEW_REQUEST_REMIND_AUTO','es_AR','Solicitud de revisiÃ³n de artÃ­culo','{$reviewerName}:<br />\n<br />\nTengo el convencimiento de que serÃ­a un/a excelente revisor/a del manuscrito, \"{$submissionTitle},\" que ha sido enviado a {$contextName}. A continuaciÃ³n encontrarÃ¡ un extracto del envÃ­o, con la esperanza de que aceptarÃ¡ llevar a cabo esta importante tarea para nosotros.<br />\n<br />\nPor favor, identifÃ­quese en la revista antes de {$responseDueDate} para decirnos si harÃ¡ o no la revisiÃ³n, asÃ­ como para tener acceso al envÃ­o y para registrar su revisiÃ³n y recomendaciÃ³n. La direcciÃ³n es {$contextUrl}<br />\n<br />\nLa revisiÃ³n propiamente dicha debe estar lista para el {$reviewDueDate}.<br />\n<br />\nSi ha perdido su nombre de usuaria/o y contraseÃ±a puede pinchar en el siguiente enlace para cambiar su contraseÃ±a (le llegarÃ¡ por correo-e junto con su nombre de usuaria/o). {$passwordResetUrl}<br />\n<br />\nURL del envÃ­o: {$submissionReviewUrl}<br />\n<br />\nGracias por tener en cuenta nuestra solicitud.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nResumen<br />\n{$submissionAbstract}','Este correo del / de la Editor/a de SecciÃ³n a un/a revisor/a le solicita que acepte o rechace la revisiÃ³n de un envÃ­o. Proporciona informaciÃ³n sobre el envÃ­o como el tÃ­tulo y el resumen, el plazo de revisiÃ³n, y cÃ³mo acceder al envÃ­o propiamente dicho. Este mensaje se usa cuando se selecciona el Proceso de EnvÃ­o EstÃ¡ndar en la configuraciÃ³n de la revista, paso 2. (En caso de haber seleccionado otra opciÃ³n, REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','es_ES','Solicitud de revisiÃ³n de un artÃ­culo','{$reviewerName}:<br />\n<br />\nCreo que serÃ­a un excelente revisor/a del manuscrito \"{$submissionTitle},\" el cual se enviÃ³ a {$contextName}. El resumen del envÃ­o aparece abajo, espero que considere la posibilidad de llevar a cabo esta importante tarea para nosotros.<br />\n<br />\nInicie sesiÃ³n en el sitio web de la revista antes de {$responseDueDate} para indicar si llevarÃ¡ a cabo la revisiÃ³n o no, ademÃ¡s de para obtener acceso al envÃ­o y registrar su revisiÃ³n y recomendaciÃ³n. El sitio web es {$contextUrl}<br />\n<br />\nLa revisiÃ³n deberÃ¡ entregarse el {$reviewDueDate}.<br />\n<br />\nSi no dispone de un nombre de usuario/a y contraseÃ±a para el sitio web de la revista, puede hacer clic en este enlace para restablecer su contraseÃ±a (se la enviaremos junto con su nombre de usuario/a). {$passwordResetUrl} <br />\n<br />\nURL del envÃ­o: {$submissionReviewUrl}<br />\n<br />\nGracias por considerar esta solicitud. <br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Este correo electrÃ³nico del editor/a de secciÃ³n a un revisor/a solicita que el revisor/a acepte o rechace la tarea de revisar un envÃ­o. AdemÃ¡s, proporciona informaciÃ³n sobre el envÃ­o como el tÃ­tulo, el resumen, la fecha de entrega de la revisiÃ³n y cÃ³mo obtener acceso al propio envÃ­o. Este mensaje se usa cuando se selecciona el proceso de revisiÃ³n estÃ¡ndar en el paso 2 de la configuraciÃ³n de la revista. (Por lo demÃ¡s, vea SOLICITUD_DE_REVISIÃ“N_ADJUNTA).'),('REVIEW_REQUEST_REMIND_AUTO','eu_ES','Artikulua ebaluatzeko eskaera','{$reviewerName}:<br />\n<br />\nUste dut ebaluatzaile bikaina izango zinatekeela {$contextName} aldizkarira bidali diguten {$submissionTitle} eskuizkribuari buruzko iritzia emateko. Artikuluaren laburpena behean duzu, eta espero dut aintzakotzat hartu eta pentsatuko duzula guretzat lan garrantzitsu hau egiteko eskaera.<br />\n<br />\nMesedez, sar zaitez aldizkariaren webgunean {$responseDueDate} aurretik, eta esaguzu ebaluazioa egiteko prest zauden ala ez, eta prest egonez gero, artikulua hartzeko eta zure ebaluazio-txostena eta gomendioa emateko. Webgunea {$contextUrl} da<br />\n<br />\nEbaluazioa egiteko epea {$reviewDueDate} izango litzateke.<br />\n<br />\nEz badaukazu aldizkariaren webgunean sartzeko erabiltzaile-izenik eta pasahitzik, behean ematen den esteka erabil dezakezu pasahitza berrezartzeko (erabiltzaile-izenarekin batera bidaliko dizugu). {$passwordResetUrl}<br />\n<br />\nArtikuluaren URLa: {$submissionReviewUrl}<br />\n<br />\nEskerrik asko gure eskaera kontuan hartzeagatik.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Mezu hau Ataleko editoreak bidaltzen dio Ebaluatzaile bati, artikulu bat ebaluatzea onartuko duen ala ez galdetzeko. Artikuluari buruzko informazioa ematen du, hala nola titulua eta laburpena, ebaluazioa egiteko epea eta artikulua bera hartzeko zer egin behar den. Mezu hau erabiltzen da aldizkariaren Konfigurazioko 2. urratsean Ebaluazio-prozesu estandarra hautatzen denean. (Bestela, ikus REVIEW_REQUEST_REMIND_AUTO_ATTACHED).'),('REVIEW_REQUEST_REMIND_AUTO','fa_IR','Ø¯Ø±Ø®ÙˆØ§Ø³Øª Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ù…Ù‚Ø§Ù„Ù‡','{$reviewerName}:<br />\n<br />\nØ´Ù…Ø§ Ø¨Ù‡ Ø¹Ù†ÙˆØ§Ù† ÛŒÚ© Ú©Ø§Ø±Ø´Ù†Ø§Ø³ Ù…Ù…ØªØ§Ø² Ø¨Ø±Ø§ÛŒ Ø¨Ø±Ø±Ø³ÛŒ Ù…Ù‚Ø§Ù„Ù‡ \"{$submissionTitle}\"Ú©Ù‡ Ø¨Ø±Ø§ÛŒ {$contextName} Ø§Ø±Ø³Ø§Ù„ Ø´Ø¯Ù‡ Ø§Ø³Øª Ø§Ù†ØªØ®Ø§Ø¨ Ø´Ø¯Ù‡ Ø§ÛŒØ¯. Ø¯Ø± Ø°ÛŒÙ„ØŒ Ú†Ú©ÛŒØ¯Ù‡ Ù…Ù‚Ø§Ù„Ù‡ Ø§Ø±Ø³Ø§Ù„ÛŒ Ø¨Ø±Ø§ÛŒ Ø´Ù…Ø§ Ú¯Ù†Ø¬Ø§Ù†Ø¯Ù‡ Ø´Ø¯Ù‡ Ø§Ø³Øª Ùˆ Ø§Ù…ÛŒØ¯ÙˆØ§Ø±Ù… Ú©Ù‡ Ø¯Ø± Ø§ÛŒÙ† Ø²Ù…ÛŒÙ†Ù‡ Ù…Ø§ÛŒÙ„ Ø¨Ù‡ Ù‡Ù…Ú©Ø§Ø±ÛŒ Ø¨Ø§ Ø§ÛŒÙ† Ù…Ø¬Ù„Ù‡ Ø¨Ø§Ø´ÛŒØ¯<br />\n<br />\nÙ„Ø·ÙØ§ Ù‚Ø¨Ù„ Ø§Ø² ØªØ§Ø±ÛŒØ® \"{$responseDueDate}\" ÙˆØ§Ø±Ø¯ ÙˆØ¨ Ø³Ø§ÛŒØª Ù…Ø¬Ù„Ù‡ Ø´Ø¯Ù‡ Ùˆ Ù…Ø´Ø®Øµ Ú©Ù†ÛŒØ¯ Ú©Ù‡ Ø¢ÛŒØ§ Ù…Ø§ÛŒÙ„ Ø¨Ù‡ Ù‚Ø¨ÙˆÙ„ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ù…Ù‚Ø§Ù„Ù‡ Ù‡Ø³ØªÛŒØ¯ ÛŒØ§ Ø®ÛŒØ±. Ù‡Ù…Ú†Ù†ÛŒÙ† Ø¨Ù‡ Ø·ÙˆØ± Ù‡Ù…Ø²Ù…Ø§Ù† Ù…ÛŒ ØªÙˆØ§Ù†ÛŒØ¯ Ø¨Ù‡ Ù…Ù‚Ø§Ù„Ù‡ Ø§Ø±Ø³Ø§Ù„ÛŒ Ø¯Ø³ØªØ±Ø³ÛŒ Ù¾ÛŒØ¯Ø§ Ú©Ø±Ø¯Ù‡ Ùˆ Ù…ØªÙ† Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ùˆ ØªÙˆØµÛŒÙ‡ Ù‡Ø§ÛŒ Ø®ÙˆØ¯Ø±Ø§ Ø°Ø®ÛŒØ±Ù‡ Ú©Ù†ÛŒØ¯. Ø¢Ø¯Ø±Ø³ ÙˆØ¨ Ø³Ø§ÛŒØª Ù…Ø¬Ù„Ù‡ {$contextUrl} Ø§Ø³Øª.<br />\n<br />\nØ¶Ù…Ù†Ø§ Ø¢Ø®Ø±ÛŒÙ† Ù…Ù‡Ù„Øª Ø¨Ø±Ø±Ø³ÛŒ Ø§ÛŒÙ† Ù…Ù‚Ø§Ù„Ù‡ ØªØ§ ØªØ§Ø±ÛŒØ® \"{$reviewDueDate}\" Ù…ÛŒ Ø¨Ø§Ø´Ø¯<br />\n<br />\nÚ†Ù†Ø§Ù†Ú†Ù‡ Ù†Ø§Ù… Ú©Ø§Ø±Ø¨Ø±ÛŒ Ùˆ Ø±Ù…Ø² Ø¹Ø¨ÙˆØ± Ø®ÙˆØ¯ Ù…Ø±Ø¨ÙˆØ· Ø¨Ù‡ ÙˆØ¨ Ø³Ø§ÛŒØª Ø§ÛŒÙ† Ù…Ø¬Ù„Ù‡ Ø±Ø§ Ø¯Ø± Ø¯Ø³ØªØ±Ø³ Ù†Ø¯Ø§Ø±ÛŒØ¯ Ù…ÛŒ ØªÙˆØ§Ù†ÛŒØ¯ Ø§Ø² Ù¾ÛŒÙˆÙ†Ø¯ Ø²ÛŒØ± Ø¬Ù‡Øª ØªÙ†Ø¸ÛŒÙ… Ø¯ÙˆØ¨Ø§Ø±Ù‡ Ø±Ù…Ø²Ø¹Ø¨ÙˆØ± Ø®ÙˆØ¯ Ø§Ø³ØªÙØ§Ø¯Ù‡ Ú©Ù†ÛŒØ¯ (Ú©Ù‡ Ø¨Ù‡ Ù‡Ù…Ø±Ø§Ù‡ Ù†Ø§Ù… Ú©Ø§Ø±Ø¨Ø±ÛŒ Ø¨Ø±Ø§ÛŒØªØ§Ù† Ø§Ø±Ø³Ø§Ù„ Ù…ÛŒ Ú¯Ø±Ø¯Ø¯).<br />\n<br />\n{$passwordResetUrl}<br />\nØ¢Ø¯Ø±Ø³ Ù…Ù‚Ø§Ù„Ù‡ : {$submissionReviewUrl}<br />\n<br />\nØ§Ø² ØªÙˆØ¬Ù‡ Ø´Ù…Ø§ Ø¨Ù‡ Ø§ÛŒÙ† Ø¯Ø±Ø®ÙˆØ§Ø³Øª Ø³Ù¾Ø§Ø³Ú¯Ø²Ø§Ø±ÛŒ Ù…ÛŒ Ú©Ù†Ù….<br />\n<br />\n{$editorialContactSignature}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','fr_CA','Demande d\'Ã©valuation d\'un article','{$reviewerName}:<br />\n<br />\nNous croyons que vous seriez un excellent Ã©valuateur pour le manuscrit intitulÃ© Â« {$submissionTitle} Â» qui a Ã©tÃ© soumis Ã  la revue {$contextName}. Vous trouverez un rÃ©sumÃ© de la soumission ci-dessous.  Nous espÃ©rons que vous accepterez ce travail essentiel Ã  la publication de la revue.<br />\n<br />\nVeuillez accÃ©der au site Web de la revue avant le {$responseDueDate} pour nous laisser savoir si vous acceptez de faire l\'Ã©valuation ou non. Vous pouvez Ã©galement y consulter la soumission et y enregistrer votre Ã©valuation et votre recommandation.<br />\n<br />\nLa date d\'Ã©chÃ©ance de l\'Ã©valuation a Ã©tÃ© fixÃ©e au {$reviewDueDate}.<br />\n<br />\nURL de la soumissionÂ : {$submissionReviewUrl}<br />\n<br />\nSi vous n\'avez pas de nom d\'utilisateur et de mot de passe pour le site Web de la revue, cliquer sur le lien ci-dessous pour rÃ©initialiser votre mot de passe (que vous sera envoyÃ© par courriel avec votre nom d\'utilisateur). {$passwordResetUrl}<br />\n<br />\nEn espÃ©rant que vous accepterez notre demande, veuillez agrÃ©er l\'expression de notre considÃ©ration distinguÃ©e.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nÂ« {$submissionTitle} Â»<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ce courriel du RÃ©dacteur de rubrique Ã  un Ã‰valuateur demande que l\'Ã©valuateur accepte ou refuse la tÃ¢che d\'Ã©valuation d\'une soumission. Il fournit de l\'information sur la soumission, tel son titre et un rÃ©sumÃ©, la date d\'Ã©chÃ©ance pour l\'Ã©valuation, et comment accÃ©der Ã  la soumission elle-mÃªme. Ce message est utilisÃ© quand Â« Processus d\'Ã©valuation standard Â» est sÃ©lectionnÃ© Ã  l\'Ã‰tape 2, dans la Configuration de la revue. (Autrement voir Â« Demande d\'Ã©valuation Â», en piÃ¨ce jointe).'),('REVIEW_REQUEST_REMIND_AUTO','fr_FR','Demande d\'Ã©valuation d\'un article','{$reviewerName}:<br />\n<br />\nNous croyons que vous seriez un excellent Ã©valuateur pour le manuscrit intitulÃ© Â« {$submissionTitle} Â» qui a Ã©tÃ© soumis Ã  la revue {$contextName}. Vous trouverez un rÃ©sumÃ© de la soumission ci-dessous.  Nous espÃ©rons que vous accepterez ce travail essentiel Ã  la publication de la revue.<br />\n<br />\nVeuillez accÃ©der au site Web de la revue avant le {$responseDueDate} pour nous laisser savoir si vous acceptez de faire l\'Ã©valuation ou non. Vous pouvez Ã©galement y consulter la soumission et y enregistrer votre Ã©valuation et votre recommandation. Le site Web se trouve Ã  l\'adresse suivanteÂ : {$contextUrl}<br />\n<br />\nLa date d\'Ã©chÃ©ance de l\'Ã©valuation a Ã©tÃ© fixÃ©e au {$reviewDueDate}.<br />\n<br />\nSi vous n\'avez pas de nom d\'utilisateur et de mot de passe pour le site Web de la revue, cliquer sur le lien ci-dessous pour rÃ©initialiser votre mot de passe (que vous sera envoyÃ© par courriel avec votre nom d\'utilisateur). {$passwordResetUrl}<br />\n<br />\nURL de la soumissionÂ : {$submissionReviewUrl}<br />\n<br />\nEn espÃ©rant que vous accepterez notre demande, veuillez agrÃ©er l\'expression de notre considÃ©ration distinguÃ©e.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nÂ« {$submissionTitle} Â»<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ce courriel du RÃ©dacteur de rubrique Ã  un Ã‰valuateur demande que l\'Ã©valuateur accepte ou refuse la tÃ¢che d\'Ã©valuation d\'une soumission. Il fournit de l\'information sur la soumission, tel son titre et un rÃ©sumÃ©, la date d\'Ã©chÃ©ance pour l\'Ã©valuation, et comment accÃ©der Ã  la soumission elle-mÃªme. Ce message est utilisÃ© quand Â« Processus d\'Ã©valuation standard Â» est sÃ©lectionnÃ© Ã  l\'Ã‰tape 2, dans la Configuration de la revue. (Autrement voir Â« Demande d\'Ã©valuation Â», en piÃ¨ce jointe).'),('REVIEW_REQUEST_REMIND_AUTO','gl_ES','Solicitude de revisiÃ³n de artigo','{$reviewerName}:<br />\n<br />\nTeÃ±o o convencimento de que serÃ­as un/unha excelente revisor/a do manuscrito, \"{$submissionTitle},\" que foi enviado a {$contextName}. A continuaciÃ³n atoparÃ¡s un extracto do envÃ­o, coa esperanza de que aceptarÃ¡s levar a cabo esta importante tarefa para nÃ³s.<br />\n<br />\nPor favor, identifÃ­cate na revista antes de {$responseDueDate} para decirnos si farÃ¡s ou non a revisiÃ³n e para teres acceso ao envÃ­o e poder rexistrar a tÃºa revisiÃ³n e recomendaciÃ³ns. O enderezo Ã© {$contextUrl}<br />\n<br />\nA revisiÃ³n debe estar lista para o {$reviewDueDate}.<br />\n<br />\nSe perdiches o teu nome de usuaria/o e contrasinal podes clicar na seguinte ligazÃ³n para mudar o teu contrasinal (chegarache por correo electrÃ³nico xunto co teu nome de usuaria/o). {$passwordResetUrl}<br />\n<br />\nURL do envÃ­o: {$submissionReviewUrl}<br />\n<br />\nBenzÃ³ns por ter en conta a nosa solicitude.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nResumen<br />\n{$submissionAbstract}','Este correo do/a Editor/a de SecciÃ³n a un/a revisor/a lle solicita que acepte o rechace la revisiÃ³n de un envÃ­o. Proporciona informaciÃ³n sobre el envÃ­o como el tÃ­tulo y el resumen, el plazo de revisiÃ³n, y cÃ³mo acceder al envÃ­o propiamente dicho. Este mensaje se usa cuando se selecciona el Proceso de EnvÃ­o EstÃ¡ndar en la configuraciÃ³n de la revista, paso 2. (En caso de haber seleccionado otra opciÃ³n, REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','hr_HR','Zamolba za recenziju Älanka','PoÅ¡tovana/i {$reviewerName},<br />\n<br />\ns obzirom na vaÅ¡e iskustvo i podruÄje ekspertize, rado bismo vam povjerili zadatak recenzije Älanka \"{$submissionTitle}\" prijavljenog u naÅ¡ Äasopis {$contextName}. SaÅ¾etak Älanka nalazi se u nastavku ove poruke. Nadamo se da Ä‡ete prihvatiti naÅ¡u ponudu te izvrÅ¡iti ovu, za nas iznimno vaÅ¾nu, zadaÄ‡u.<br />\n<br />\nMolimo vas da se kao korisnik prijavite na mreÅ¾nu stranicu Äasopisa do {$responseDueDate} kako biste naznaÄili hoÄ‡ete li preuzeti recenziju ili ne. Potom, ukoliko prihvatite izradu recenzije, na istome mjestu moÅ¾ete pristupiti tekstu Älanka te zabiljeÅ¾ili vaÅ¡u recenziju i preporuku. MreÅ¾na stranica Äasopisa je {$contextUrl}<br />\n<br />\nU sluÄaju da nemate pri ruci svoje korisniÄko ime ili lozinku za mreÅ¾nu stranicu Äasopisa, moÅ¾ete se koristiti ovom poveznicom kako biste promijenili lozinku (koju Ä‡emo vam tada, zajedno s korisniÄkim imenom, poslati putem e-poÅ¡te). {$passwordResetUrl}<br />\n<br />\nSama recenzija trebala bi biti zavrÅ¡ena zakljuÄno s {$reviewDueDate}.<br />\n<br />\nURL Älanka: {$submissionReviewUrl}<br />\n<br />\nSrdaÄno,<br />\n{$editorialContactSignature}<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ovim obrascem e-poÅ¡te urednik rubrike Å¡alje upit recenzentu moÅ¾e li prihvatiti zadatak recenziranja Älanka. Zamolba sadrÅ¾i osnovne informacije u vidu naslova i kratkog sadrÅ¾aja Älanka, datum do kojeg bi recenzija trebala biti napisana te naÄina na koji se recenzent moÅ¾e prijaviti u sustav. Ova poruka se koristi kada je odabran standardni recenzijski postupak u 2. koraku Postavljanja Äasopisa (Ako nije, koristi se Zamolba za recenziju Älanka u privitku)'),('REVIEW_REQUEST_REMIND_AUTO','id_ID','Permintaan Review Artikel','{$reviewerName}:<br />\n<br />\nSaya yakin Anda dapat menjadi reviewer handal manuskrip, \"{$submissionTitle},\" yang telah diserahkan ke {$contextName}. Abstrak naskah disertakan di bawah ini, dan saya harap Anda mempertimbangkan untuk mengambil tugas penting ini untuk kami. <br />\n<br />\n<br />\nMohon login ke web site jurnal sebelum tanggal {$responseDueDate} untuk menunjukkan apakah Anda akan mengambil Review ini atau tidak, serta untuk mengakses naskah dan mencatat Review dan rekomendasi Anda. Web sitenya adalah {$contextUrl}<br />\n<br />\nReview jatuh tempo tanggal {$reviewDueDate}.<br />\n<br />\nJika Anda tidak punya nama pengguna dan kata sandi untuk web site jurnal, Anda dapat menggunakan tautan ini untuk mengatur ulang kata sandi Anda (yang kemudian akan diemail kepada Anda beserta nama pengguna Anda). <br />\n<br />\n{$passwordResetUrl}<br />\n<br />\nURL Penyerahan: {$submissionReviewUrl}<br />\n<br />\nTerima kasih untuk mempertimbangkan permintaan ini.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Email ini dari Editor Bagian untuk Reviewer yang meminta Reviewer untuk menerima atau menolak tugas mereview naskah. Email ini memberikan informasi tentang naskah seperti judul dan abstrak, tanggal jatuh tempo review, dan bagaimana mengakses naskah itu sendiri. Pesan ini digunakan saat proses review standar dipilih di Setup Jurnal, Langkah 2. (Jika tidak, lihat  REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','it_IT','Richiesta di revisione della proposta','Gentile {$reviewerName},<br />\n<br />\nTi propongo la revisione del manoscritto \"{$submissionTitle},\" che Ã¨ stato proposto a {$contextName}. L\'abstract della submission  Ã¨ inserito qui sotto. Spero che vorrai prendere in carico questo compito.<br />\n<br />\nTi chiedo quindi di effettuare il log in al sito web della rivista entro il {$responseDueDate} per indicare se prenderai in carico la revisione o meno.<br />\nPotrai poi accedere alla submission e inviare il tuo parere. Il sito web Ã¨ {$contextUrl}<br />\n<br />\nLa data di scadenza per la revisione Ã¨ fissata al {$reviewDueDate}.<br />\n<br />\nSe non hai una username and password per il sito web della rivista, puoi usare questo link per resettare la  password (che ti sarÃ  quindi mandata per email insieme con la username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nGrazie per la tua collaborazione.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n======<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nAbstract<br />\n{$submissionAbstract}','Questa email dal section editor al revisore richiede che quest\'ultimo accetti o rifiuti il compito di revisionare una submission. Fornisce informazioni sulla submission quali il titolo e l\'abstract, una data attesa per la revisione, e su come accedere alla submission stessa. Questo messaggio Ã¨ usato quando il processo Standard di revisione Ã¨ selezionato nel Journal Setup, fase 2. (Altrimenti vedi  ALLEGATA_RICHIESTA_REVISIONE.)'),('REVIEW_REQUEST_REMIND_AUTO','ja_JP','è«–æ–‡æŸ»èª­ã®ãŠé¡˜ã„','{$reviewerName} æ®¿:<br />\n<br />\né›‘èªŒã€Ž{$contextName}ã€ã¸ã®æŠ•ç¨¿åŽŸç¨¿ã€Œ{$submissionTitle}ã€ã®æŸ»èª­ã‚’ãŠé¡˜ã„ã„ãŸã—ãŸããƒ¡ãƒ¼ãƒ«ã‚’å·®ã—ä¸Šã’ã¾ã—ãŸã€‚æŠ•ç¨¿ç‰©ã®è¦æ—¨ã‚’ä»¥ä¸‹ã«æ·»ä»˜ã—ã¾ã—ãŸã€‚è²´æ®¿ãŒã“ã®é‡è¦ãªä»•äº‹ã‚’å¼•ãå—ã‘ã¦ãã ã•ã‚‹ã“ã¨ã‚’å¸Œæœ›ã„ãŸã—ã¦ãŠã‚Šã¾ã™ã€‚<br />\n<br />\n{$responseDueDate}ã¾ã§ã«ã€é›‘èªŒã®Webã‚µã‚¤ãƒˆã«ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã€æŸ»èª­ã‚’å¼•ãå—ã‘ã¦ã„ãŸã ã‘ã‚‹ã‹ã©ã†ã‹ã‚’ç¤ºã—ã¦ã„ãŸã ã‘ã‚‹ã‚ˆã†ãŠé¡˜ã„ã„ãŸã—ã¾ã™ã€‚å¼•ãå—ã‘ã¦ã„ãŸã ã‘ã‚‹å ´åˆã¯ã€ã“ã®ã‚µã‚¤ãƒˆã§æŠ•ç¨¿ç‰©ã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã€æŸ»èª­çµæžœã¨ç­”ç”³ã‚’è¨˜éŒ²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚é›‘èªŒã®Webã‚µã‚¤ãƒˆã®URLã¯ã€{$contextUrl} ã§ã™ã€‚<br />\n<br />\næŸ»èª­ä½œæ¥­è‡ªä½“ã®æœŸé™æ—¥ã¯ã€{$reviewDueDate}ã§ã™ã€‚<br />\n<br />\né›‘èªŒã®Webã‚µã‚¤ãƒˆã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãƒ¦ãƒ¼ã‚¶åã¨ãƒ‘ã‚¹ãƒ¯ãƒ¼ãƒ‰ã‚’ãŠæŒã¡ã§ãªã„å ´åˆã¯ã€æ¬¡ã®ãƒªãƒ³ã‚¯ã‚’ä½¿ã£ã¦ãƒ‘ã‚¹ãƒ¯ãƒ¼ãƒ‰ã‚’ãƒªã‚»ãƒƒãƒˆã—ã¦ãã ã•ã„ï¼ˆãƒ‘ã‚¹ãƒ¯ãƒ¼ãƒ‰ã¯ãƒ¦ãƒ¼ã‚¶åã¨å…±ã«ãƒ¡ãƒ¼ãƒ«ã§é€ä¿¡ã•ã‚Œã¾ã™ï¼‰: {$passwordResetUrl}<br />\n<br />\n<br />\næŠ•ç¨¿ç‰©ã®URL: {$submissionReviewUrl}<br />\n<br />\nã‚ˆã‚ã—ãã”æ¤œè¨Žãã ã•ã‚‹ã‚ˆã†ã€ãŠé¡˜ã„ã„ãŸã—ã¾ã™ã€‚<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nã€Œ{$submissionTitle}ã€<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ã€ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚¨ãƒ‡ã‚£ã‚¿ã‹ã‚‰æŸ»èª­è€…ã«æŠ•ç¨¿ç‰©ã®æŸ»èª­ã‚’ä¾é ¼ã™ã‚‹ã‚‚ã®ã§ã™ã€‚ãƒ¡ãƒ¼ãƒ«ã«ã¯ã€ã‚¿ã‚¤ãƒˆãƒ«ã‚„è¦æ—¨ãªã©ã®æŠ•ç¨¿ç‰©ã«é–¢ã™ã‚‹æƒ…å ±ã€æŸ»èª­æœŸé™æ—¥ã€æŠ•ç¨¿ç‰©ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹æ–¹æ³•ã‚’ç¤ºã—ã¦ã„ã¾ã™ã€‚ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ã€é›‘èªŒè¨­å®šã®ã‚¹ãƒ†ãƒƒãƒ—2ã§æ¨™æº–çš„æŸ»èª­ãƒ—ãƒ­ã‚»ã‚¹ãŒé¸æŠžã•ã‚ŒãŸå ´åˆã«ä½¿ç”¨ã•ã‚Œã¾ã™ï¼ˆãã†ã§ãªã„å ´åˆã¯ã€REVIEW_REQUEST_REMIND_AUTO_ATTACHEDã‚’å‚ç…§ã—ã¦ãã ã•ã„ï¼‰ã€‚'),('REVIEW_REQUEST_REMIND_AUTO','mk_MK','ÐŸÑ€ÐµÐ³Ð»ÐµÐ´ Ð½Ð° ÑÑ‚Ð°Ñ‚Ð¸Ñ˜Ð°','{$reviewerName}:<br />\n<br />\nÐ’ÐµÑ€ÑƒÐ²Ð°Ð¼Ðµ Ð´ÐµÐºÐ° Ð’Ð¸Ðµ ÑœÐµ Ð±Ð¸Ð´ÐµÑ‚Ðµ Ð¾Ð´Ð»Ð¸Ñ‡ÐµÐ½ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚ Ð½Ð° Ñ€Ð°ÐºÐ¾Ð¿Ð¸ÑÐ¾Ñ‚ \"{$submissionTitle},\" ÐºÐ¾Ñ˜ Ðµ Ð´Ð¾ÑÑ‚Ð°Ð²ÐµÐ½ Ð´Ð¾ {$contextName}.ÐŸÐ¾Ð´Ð½ÐµÑÑƒÐ²Ð°ÑšÐµÑ‚Ð¾ Ð½Ð° Ð°Ð±ÑÑ‚Ñ€Ð°ÐºÑ‚Ð¸ ÑÐµ Ð½Ð°Ð¾Ñ“Ð° Ð¿Ð¾Ð´Ð¾Ð»Ñƒ,ÑÐµ Ð½Ð°Ð´ÐµÐ²Ð°Ð¼ Ð´ÐµÐºÐ° Ð¿Ñ€ÐµÐ²Ð·ÐµÐ¼Ð°ÑšÐµÑ‚Ð¾ Ð½Ð° Ð¾Ð²Ð°Ð° Ð·Ð°Ð´Ð°Ñ‡Ð° ÑœÐµ Ð±Ð¸Ð´Ðµ Ð²Ð°Ð¶Ð½Ð° Ð·Ð° Ð’Ð°Ñ.<br />\n<br />\nÐ’Ðµ Ð¼Ð¾Ð»Ð¸Ð¼Ðµ Ð½Ð°Ñ˜Ð°Ð²ÐµÑ‚Ðµ ÑÐµ Ð½Ð° Ð²ÐµÐ±-ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°Ñ‚Ð° Ð½Ð° ÑÐ¿Ð¸ÑÐ°Ð½Ð¸ÐµÑ‚Ð¾ ÑÐ¾ {$responseDueDate} Ð·Ð° Ð´Ð° ÑÐµ Ð¿Ð¾ÐºÐ°Ð¶Ðµ Ð’Ð°ÑˆÐ°Ñ‚Ð° Ð½Ð°Ñ€ÐµÐ´Ð½Ð° Ð¿Ð¾ÑÑ‚Ð°Ð¿ÐºÐ° Ð½Ð° Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´ Ð¸ Ð·Ð°Ñ‡ÑƒÐ²ÑƒÐ²Ð°ÑšÐµ {$contextUrl}<br />\n<br />\nÐŸÑ€ÐµÐ³Ð»ÐµÐ´Ð¾Ñ‚ ÑÐµ Ð´Ð¾Ð»Ð¶Ð¸ Ð½Ð° {$reviewDueDate}.<br />\n<br />\nÐÐºÐ¾ Ð½ÐµÐ¼Ð°Ñ‚Ðµ ÐºÐ¾Ñ€Ð¸ÑÐ½Ð¸Ñ‡ÐºÐ¾ Ð¸Ð¼Ðµ Ð¸ Ð»Ð¾Ð·Ð¸Ð½ÐºÐ° Ð·Ð° Ð¾Ð²Ð°Ð° Ð²ÐµÐ±-ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°, Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð´Ð° Ð³Ð¾ ÐºÐ¾Ñ€Ð¸ÑÑ‚ÐµÑ‚Ðµ Ð¾Ð²Ð¾Ñ˜ Ð»Ð¸Ð½Ðº Ð·Ð° Ñ€ÐµÑÐ¸Ñ‚Ð¸Ñ€Ð°ÑšÐµ Ð½Ð° Ð»Ð¾Ð·Ð¸Ð½ÐºÐ°Ñ‚Ð° (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nÐŸÐ¾Ð´Ð½ÐµÑÑƒÐ²Ð°ÑšÐµ Ð½Ð° URL: {$submissionReviewUrl}<br />\n<br />\nÐ’Ð¸ Ð±Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€Ð¸Ð¼Ðµ Ð·Ð° Ñ€Ð°Ð·Ð³Ð»ÐµÐ´ÑƒÐ²Ð°ÑšÐµÑ‚Ð¾ Ð½Ð° Ð¾Ð²Ð° Ð±Ð°Ñ€Ð°ÑšÐµ.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','ÐžÐ²Ð°Ð° Ð¿Ð¾Ñ€Ð°ÐºÐ° Ðµ Ð¸ÑÐ¿Ñ€Ð°Ñ‚ÐµÐ½Ð° Ð¾Ð´ ÑƒÑ€ÐµÐ´ÑƒÐ²Ð°Ñ‡ÐºÐ¸Ð¾Ñ‚ ÑÐµÐºÑ‚Ð¾Ñ€, ÐºÐ°Ð´Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ñ‚ Ñ˜Ð° Ð¿Ñ€Ð¸Ñ„Ð°ÑœÐ° Ð¸Ð»Ð¸ Ð¾Ð´Ð±Ð¸Ð²Ð° Ð·Ð°Ð´Ð°Ñ‡Ð°Ñ‚Ð° ÐºÐ¾Ñ˜Ð° Ðµ Ð¿Ñ€Ð°Ñ‚ÐµÐ½Ð° Ð·Ð° Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´. Ð¢Ð°Ð° Ð¾Ð±ÐµÐ·Ð±ÐµÐ´ÑƒÐ²Ð° Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¸ Ð·Ð° Ð¿Ð¾Ð´Ð½ÐµÑÑƒÐ²Ð°ÑšÐµ, ÐºÐ°ÐºÐ¾ Ð½Ð° Ð¿Ñ€Ð¸Ð¼ÐµÑ€ Ð½Ð°ÑÐ»Ð¾Ð²Ð¾Ñ‚ Ð¸ Ð°Ð¿ÑÑ‚Ñ€Ð°ÐºÑ‚Ð¸Ñ‚Ðµ, Ñ€Ð¾Ðº Ð·Ð° Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´... ÐžÐ²Ð°Ð° Ð¿Ð¾Ñ€Ð°ÐºÐ° ÑÐµ ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¸ ÐºÐ¾Ð³Ð° ÑÐ¿Ð¸ÑÐ°Ð½Ð¸ÐµÑ‚Ð¾ Ðµ Ð¾Ð´Ð¾Ð±Ñ€ÐµÐ½Ð¾ Ð¾Ð´ Ñ‡ÐµÐºÐ¾Ñ€. 2 (Otherwise see REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','ml_IN','Article Review Request','{$reviewerName}:<br />\n<br />\nI believe that you would serve as an excellent reviewer of the manuscript, \"{$submissionTitle},\" which has been submitted to {$contextName}. The submission\'s abstract is inserted below, and I hope that you will consider undertaking this important task for us.<br />\n<br />\nPlease log into the journal web site by {$responseDueDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation. The web site is {$contextUrl}<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nIf you do not have your username and password for the journal\'s web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2. (Otherwise see REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','nl_NL','Artikel review verzoek','{$reviewerName}:<br />\n<br />\nIk geloof dat u een excellente reviewer zou zijn voor het manuscript \"{$submissionTitle}\" dat is ingestuurd bij {$contextName}. De samenvatting van de inzending staat hieronder. Ik hoop dat u wilt overwegen deze belangrijke taak voor ons uit te voeren.<br />\n<br />\nWilt u voor {$responseDueDate} inloggen op de website van het tijdschrift om aan te geven of u de review al of niet doet. Daar kunt u ook de inzending vinden en uw review en aanbeveling vastleggen. De website is {$contextUrl}<br />\n<br />\nHet review wordt verwacht op {$reviewDueDate}.<br />\n<br />\nAls u uw gebruikersnaam en het wachtwoord van de website van het tijdschrift niet heeft, kunt u deze link gebruiken voor het herstellen van uw wachtwoord (dat samen met uw gebruikersnaam in een e-mail naar u verstuurd wordt). {$passwordResetUrl}<br />\n<br />\nURL inzending: {$submissionReviewUrl}<br />\n<br />\nDank u voor het overwegen van dit verzoek.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Deze e-mail van de sectieredacteur aan een reviewer vraagt aan de reviewer een review te accepteren of te weigeren. Er wordt informatie meegestuurd over de inzending zoals de titel en de samenvatting, de datum waarop de review gereed moet zijn en instructies voor het benaderen van de inzending. Dit bericht word gebruikt wanneer het standaard reviewproces is geselecteerd in stap 2 van het inrichten van het tijdschrift (zie verder REVIEW_REQUEST_REMIND_AUTO_ATTACHED)'),('REVIEW_REQUEST_REMIND_AUTO','nb_NO','ForespÃ¸rsel om fagfellevurdering','{$reviewerName}:<br />\n<br />\nVÃ¥rt tidsskrift {$contextName} har fÃ¥tt tilsendt manuskriptet \"{$submissionTitle}\". Vi hÃ¥per du er villig til Ã¥ gi en fagfellevurdering av dette manuskriptet, fordi vi mener dette kan passe med din vurderingskompetanse. Sammendraget som var vedlagt manuskriptet er skrevet inn nedenfor, og jeg hÃ¥per du vil pÃ¥ta deg dette viktige oppdraget for oss.<br />\n<br />\nVennligst logg inn pÃ¥ tidsskriftets nettsted innen {$responseDueDate}, for Ã¥ bekrefte om du vil pÃ¥ta deg dette vurderingsoppdraget for oss eller ikke. Hvis du pÃ¥tar deg oppdraget skal du ogsÃ¥ bruke nettstedet for Ã¥ skrive inn vurderingen din, og for Ã¥ registrere den anbefalingen du gir oss. Adressen til nettstedet er {$contextUrl}<br />\n<br />\nVi venter vurderingsoppdraget ferdigstilt innen {$reviewDueDate}.<br />\n<br />\nHvis har mistet eller glemt brukernavnet og passordet ditt til tidsskriftets nettsted, kan du bruke denne lenken for Ã¥ fornye passordet (som du sÃ¥ fÃ¥r tilsendt i en e-post, sammen med brukernavnet ditt). {$passwordResetUrl}<br />\n<br />\nManuskriptets URL: {$submissionReviewUrl}<br />\n<br />\nTakk for at du har sagt deg villig til Ã¥ bidra til arbeidet vÃ¥rt.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','I denne e-posten ber SeksjonsredaktÃ¸ren en Fagkonsulent om Ã¥ akseptere eller avslÃ¥ oppdraget med Ã¥ fagfellevurdere et manuskript. E-posten gir informasjon om 1) manuskriptet (ogsÃ¥ tittel og sammendrag), 2) en ventet-ferdig dato for oppdraget, og 3) informasjon om pÃ¥logging og tilgang til manuskriptet. Denne e-posten brukes nÃ¥r Standard fagvurderingsprosess er valgt i Tidsskriftoppsett, Trinn 2. (Ellers: se e-posten REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','pl_PL','ProÅ›ba o sporzÄ…dzenie recenzji artykuÅ‚u','Szanowny/a Panie/Pani {$reviewerName}:<br />\n<br />\nw naszej opinii jest Pan/Pani wÅ‚aÅ›ciwÄ… osobÄ… do sporzÄ…dzenia recenzji artykuÅ‚u \"{$submissionTitle}\", zgÅ‚oszonego do czasopisma {$contextName}. PoniÅ¼ej zamieszczamy abstrakt artykuÅ‚u. Mamy nadziejÄ™, Å¼e weÅºmie Pan/Pani pod uwagÄ™ realizacjÄ™ tak waÅ¼nego dla nas zadania.<br />\n<br />\nProsimy o zalogowanie siÄ™ na stronie czasopisma nie pÃ³Åºniej niÅ¼ {$responseDueDate} w celu przyjÄ™cia lub odrzucenia naszej proÅ›by. Po akceptacji otrzyma Pan/Pani dostÄ™p do zgÅ‚oszonego tekstu oraz moÅ¼liwoÅ›Ä‡ przesÅ‚ania swojej recenzji i rekomendacji. <br />\n<br />\nStrona czasopisma: {$contextUrl}<br />\n<br />\nTermin przygotowania recenzji: {$reviewDueDate}<br />\n<br />\nJeÅ›li nie posiada Pan/Pani danych niezbÄ™dnych do zalogowania siÄ™ na stronie czasopisma, proszÄ™ o przejÅ›cie na stronÄ™:{$passwordResetUrl}<br />\n<br />\nWWW zgÅ‚oszonego tekstu: {$submissionReviewUrl}<br />\n<br />\nDziÄ™kujemy za rozwaÅ¼enie naszej propozycji,<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','WiadomoÅ›Ä‡ od redaktora dziaÅ‚u przesyÅ‚ana do recenzenta. Zawiera proÅ›bÄ™ o przygotowanie recenzji artykuÅ‚u, jego tytuÅ‚ i abstrakt, a takÅ¼e zalecenie dot. zresetowania hasÅ‚a w sytuacji, gdy recenzent nie pamiÄ™ta danych do logowania. WysyÅ‚ana, jeÅ›li recenzent pracowaÄ‡ bÄ™dzie w systemie.'),('REVIEW_REQUEST_REMIND_AUTO','pt_BR','A revista {$contextName} solicita avaliaÃ§Ã£o de artigo','{$reviewerName},<br />\n<br />\nAcredito que seu conhecimento serÃ¡ fundamental para realizar a avaliaÃ§Ã£o do trabalho \"{$submissionTitle}\" submetido a {$contextName}. InformaÃ§Ãµes sobre a submissÃ£o encontram-se nesta mensagem, e espero que considere assumir esta importante responsabilidade.<br />\n<br />\nAcesse o sistema atÃ© {$responseDueDate} para informar se estarÃ¡ disponÃ­vel ou nÃ£o para realizar a avaliaÃ§Ã£o, bem como acessar os dados completos da submissÃ£o e registrar sua avaliaÃ§Ã£o e recomendaÃ§Ãµes, por meio da URL {$contextUrl}.<br />\n<br />\nO prazo para a conclusÃ£o da avaliaÃ§Ã£o Ã© {$reviewDueDate}.<br />\n<br />\nCaso nÃ£o tenha seu login e senha de acesso para acessar o sistema, use o link a seguir para que o sistema crie uma nova senha que lhe serÃ¡ enviada via e-mail, apÃ³s mensagem de confirmaÃ§Ã£o de solicitaÃ§Ã£o de atualizaÃ§Ã£o de senha, junto com o seu login. Clique no link a seguir para criar sua nova senha: {$passwordResetUrl}<br />\n<br />\nClique no link baixo para acessar o sistema e a submissÃ£o designada.<br />\nURL da submissÃ£o: {$submissionReviewUrl}<br />\n<br />\nAgradecemos desde jÃ¡ sua atenÃ§Ã£o.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n---------------------------------------------------------------<br />\nDados da submissÃ£o<br />\n<br />\nTÃ­tulo<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n<br />\nResumo<br />\n{$submissionAbstract}','Mensagem do Editor de SeÃ§Ã£o para solicitar ao Avaliador que indique disponibilidade ou nÃ£o para realizar uma avaliaÃ§Ã£o. Oferece informaÃ§Ãµes sobre a submissÃ£o, como tÃ­tulo e resumo, alÃ©m da data para a conclusÃ£o dos trabalhos e como acessar o documento. Esta mensagem Ã© usada quando se utiliza o Processo PadrÃ£o de AvaliaÃ§Ã£o, definido no Passo 2 de ConfiguraÃ§Ã£o da Revista. (Caso contrÃ¡rio veja REVIEW_REQ_MULTI_ATTACHED e REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','pt_PT','Pedido de revisÃ£o de artigo','{$reviewerName}:<br />\n<br />\nAcreditamos que o seu conhecimento serÃ¡ fundamental para realizar a revisÃ£o do manuscrito \"{$submissionTitle}\" submetido Ã  {$contextName}. InformaÃ§Ãµes sobre a submissÃ£o encontram-se nesta mensagem, e espero que considere assumir esta importante responsabilidade.<br />\n<br />\nAceda ao sistema atÃ© {$responseDueDate} para confirmar a sua disponibilidade ou nÃ£o para realizar a revisÃ£o, bem como aceder aos dados completos da submissÃ£o e registar a sua revisÃ£o e recomendaÃ§Ãµes, atravÃ©s do URL {$contextUrl}.<br />\n<br />\nO prazo para a entrega da revisÃ£o Ã© {$reviewDueDate}.<br />\n<br />\nCaso ainda nÃ£o possua o seu nome de utilizador e senha de acesso para aceder ao sistema, use o link a seguir para que o sistema crie uma nova senha que lhe serÃ¡ enviada via email, junto com os seus dados de acesso.<br />\n<br />\nCriar nova senha: {$passwordResetUrl}<br />\n<br />\nURL da SubmissÃ£o: {$submissionReviewUrl}<br />\n<br />\nAgradecemos desde jÃ¡ a sua atenÃ§Ã£o.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n---------------------------------------------------------------<br />\nDados da submissÃ£o<br />\n<br />\nTÃ­tulo<br />\n\"{$submissionTitle}\"<br />\n<br />\nResumo<br />\n{$submissionAbstract}','Mensagem do Editor de SecÃ§Ã£o para solicitar ao Revisor que indique disponibilidade ou nÃ£o para realizar uma revisÃ£o. Oferece informaÃ§Ãµes sobre a submissÃ£o, como tÃ­tulo e resumo, alÃ©m da data para a conclusÃ£o dos trabalhos e como aceder ao documento. Esta mensagem Ã© usada quando se utiliza o Processo PadrÃ£o de RevisÃ£o, definido no Passo 2 de ConfiguraÃ§Ã£o da Revista. (Caso contrÃ¡rio veja REVIEW_REQ_MULTI_ATTACHED e REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','ro_RO','Solicitare pentru evaluarea articolului','{$reviewerName}:<br />\n<br />\nSuntem Ã®ncredinÈ›aÈ›i cÄƒ aÈ›i putea face evaluarea acestui manuscris intitulat \"{$submissionTitle}\", care a fost trimis revistei {$contextName}. Abstractul propunerii este introdus mai jos È™i sperÄƒm cÄƒ veÈ›i accepta aceastÄƒ misiune importantÄƒ.<br />\n<br />\nVÄƒ rugÄƒm sÄƒ vÄƒ autentificaÈ›i pe siteul revistei prin {$responseDueDate} pentru a indica dacÄƒ veÈ›i face evaluarea sau nu. De asemenea, veÈ›i putea accesa propunerea È™i veÈ›i putea Ã®nregistra evaluarea precum È™i recomandÄƒrile. Siteul web se aflÄƒ la {$contextUrl}<br />\n<br />\nEvaluarea va trebui fÄƒcutÄƒ pÃ¢nÄƒ la data de {$reviewDueDate}.<br />\n<br />\nDacÄƒ nu aveÈ›i acces la datele privind contul cu nume de utilizator È™i parolÄƒ pentru siteul revistei, puteÈ›i folosi acest link pentru a reseta parola (care mai apoi vÄƒ va fi trimisÄƒ prin email Ã®mpreunÄƒ cu numele de utilizator). {$passwordResetUrl}<br />\n<br />\nURL-ul propunerii: {$submissionReviewUrl}<br />\n<br />\nVÄƒ mulÈ›umim pentru cÄƒ luaÈ›i Ã®n considerare aceastÄƒ solicitare.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Acest email este trimis de cÄƒtre un redactor de secÈ›iune ca rÄƒspuns la solicitarea fÄƒcutÄƒ unui evaluator de a accepta sau refuza misiunea de a evalua o propunere. ConÈ›ine informaÈ›ii despre propunere precum titlul È™i abstractul, data limitÄƒ pentru evaluare È™i cum poate fi accesatÄƒ propunerea. Acest mesaj este trimis atunci cÃ¢nd este selectat procesul standard de evaluare din setÄƒrile revistei la pasul 2. (Altfel, vezi REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','ru_RU','Ð—Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ðµ ÑÑ‚Ð°Ñ‚ÑŒÐ¸','{$reviewerName}!<br />\n<br />\nÐ¯ Ð¿Ð¾Ð»Ð°Ð³Ð°ÑŽ, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð¼Ð¾Ð³Ð»Ð¸ Ð±Ñ‹ Ð±Ñ‹Ñ‚ÑŒ Ð¿Ñ€ÐµÐºÑ€Ð°ÑÐ½Ñ‹Ð¼ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ð¼ Ð´Ð»Ñ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÐ¸ ÑÑ‚Ð°Ñ‚ÑŒÐ¸ Â«{$submissionTitle}Â», ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð±Ñ‹Ð»Ð° Ð½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð° Ð² Ð¶ÑƒÑ€Ð½Ð°Ð» Â«{$contextName}Â». ÐÐ½Ð½Ð¾Ñ‚Ð°Ñ†Ð¸Ñ ÑÑ‚Ð°Ñ‚ÑŒÐ¸ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½Ð° Ð½Ð¸Ð¶Ðµ, Ð¸ Ñ Ð½Ð°Ð´ÐµÑŽÑÑŒ, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð²Ð¾Ð·ÑŒÐ¼ÐµÑ‚ÐµÑÑŒ Ð²Ñ‹Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÑŒ ÑÑ‚Ñƒ Ð²Ð°Ð¶Ð½ÑƒÑŽ Ð·Ð°Ð´Ð°Ñ‡Ñƒ Ð´Ð»Ñ Ð½Ð°Ñ.<br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, Ð²Ð¾Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð´Ð¾ {$responseDueDate}, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÐµ ÑÐ¾Ð³Ð»Ð°ÑÐ¸Ðµ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ðµ ÑÑ‚Ð¾Ð¹ ÑÑ‚Ð°Ñ‚ÑŒÐ¸ Ð¸Ð»Ð¸ Ð¾Ñ‚ÐºÐ°Ð·Ð°Ñ‚ÑŒÑÑ Ð¾Ñ‚ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ, Ð° Ñ‚Ð°ÐºÐ¶Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ðº Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÐ¸ Ð¸ Ð¾ÑÑ‚Ð°Ð²Ð¸Ñ‚ÑŒ ÑÐ²Ð¾ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð¸ Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ð¸ÑŽ. ÐÐ´Ñ€ÐµÑ ÑÐ°Ð¹Ñ‚Ð° Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° â€” {$contextUrl}<br />\n<br />\nÐ¡Ð°Ð¼Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ Ð´Ð¾Ð»Ð¶Ð½Ð° Ð±Ñ‹Ñ‚ÑŒ Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð° Ð´Ð¾ {$reviewDueDate}.<br />\n<br />\nÐ•ÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ Ð½ÐµÑ‚ Ð¸Ð¼ÐµÐ½Ð¸ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð´Ð»Ñ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð° Ðº ÑÐ°Ð¹Ñ‚Ñƒ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð°, Ð’Ñ‹ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð²Ð¾ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÑŒÑÑ ÑÑ‚Ð¾Ð¹ ÑÑÑ‹Ð»ÐºÐ¾Ð¹ Ð´Ð»Ñ ÑÐ±Ñ€Ð¾ÑÐ° Ð’Ð°ÑˆÐµÐ³Ð¾ Ð¿Ð°Ñ€Ð¾Ð»Ñ (Ð¾Ð½ Ð±ÑƒÐ´ÐµÑ‚ Ð½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½ Ð’Ð°Ð¼ Ð²Ð¼ÐµÑÑ‚Ðµ Ñ Ð’Ð°ÑˆÐ¸Ð¼ Ð¸Ð¼ÐµÐ½ÐµÐ¼ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ). {$passwordResetUrl}<br />\n<br />\nÐÐ´Ñ€ÐµÑ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÐ¸: {$submissionReviewUrl}<br />\n<br />\nÐ—Ð°Ñ€Ð°Ð½ÐµÐµ Ð±Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€ÑŽ Ð’Ð°Ñ,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð° Ñ€Ð°Ð·Ð´ÐµÐ»Ð°, Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÐ¼Ð¾Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ñƒ, Ñ Ð·Ð°Ð¿Ñ€Ð¾ÑÐ¾Ð¼ ÑÐ¾Ð³Ð»Ð°ÑÐ¸Ñ Ð¸Ð»Ð¸ Ð¾Ñ‚ÐºÐ°Ð·Ð° Ð¾Ñ‚ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÑÑ‚Ð°Ñ‚ÑŒÐ¸. Ð’ Ð¿Ð¸ÑÑŒÐ¼Ðµ Ð¿Ñ€Ð¸Ð²Ð¾Ð´Ð¸Ñ‚ÑÑ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ ÑÑ‚Ð°Ñ‚ÑŒÐµ, Ñ‚Ð°ÐºÐ°Ñ ÐºÐ°Ðº Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ðµ Ð¸ Ð°Ð½Ð½Ð¾Ñ‚Ð°Ñ†Ð¸Ñ, ÑÑ€Ð¾Ðº Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð¸ ÐºÐ°Ðº Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ðº ÑÐ°Ð¼Ð¾Ð¹ ÑÑ‚Ð°Ñ‚ÑŒÐµ. Ð­Ñ‚Ð¾ ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ðµ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ, ÐµÑÐ»Ð¸ Ð²Ñ‹Ð±Ñ€Ð°Ð½ ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ñ‹Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑÑ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð½Ð° ÑˆÐ°Ð³Ðµ 2 Ð¿Ñ€Ð¾Ñ†ÐµÑÑÐ° Ð½Ð°ÑÑ‚Ñ€Ð¾Ð¹ÐºÐ¸ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð°. (Ð’ Ð¸Ð½Ð¾Ð¼ ÑÐ»ÑƒÑ‡Ð°Ðµ, ÑÐ¼Ð¾Ñ‚Ñ€Ð¸ REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','sv_SE','Article Review Request','<br />\n				{$reviewerName}:<br />\n<br />\n			VÃ¥r tidskrift {$contextName} har fÃ¥tt manuskriptet \"{$submissionTitle}\" tillskickat oss, och vi hoppas att du har mÃ¶jlighet att gÃ¶ra en sakkunnigbdÃ¶mning av manuskriptet eftersom vi anser att manuskriptets Ã¤mne matchar ditt kompetensomrÃ¥de. Manuskriptets sammanfattning Ã¤r bifogad nedan.<br />\n			<br />\n			VÃ¤nligen logga in pÃ¥ tidskriftens hemsida innan {$responseDueDate}, fÃ¶r att bekrÃ¤fta om du har mÃ¶jlighet att Ã¥ta dig uppdraget eller inte. Om du vÃ¤ljer att granska manuskriptet ska du ocksÃ¥ anvÃ¤nda tidkriftens hemsida fÃ¶r att lÃ¤mna kommentarer och bedÃ¶mning. Adressen till hemsidan Ã¤r: {$contextUrl}<br />\n			<br />\n			Sista dag fÃ¶r bedÃ¶mning Ã¤r {$reviewDueDate}.<br />\n			<br />\n			Om du har glÃ¶mt ditt anvÃ¤ndarnamn och/eller lÃ¶senord, anvÃ¤nd fÃ¶ljande lÃ¤nk fÃ¶r att fÃ¶rnya lÃ¶senordet. Dina inloggningsuppgifter mailas dÃ¥ till dig. {$passwordResetUrl}<br />\n			<br />\n			Manuskriptets URL: {$submissionReviewUrl}<br />\n<br />\nTack fÃ¶r hjÃ¤lp, vÃ¤nligen<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n				\"{$submissionTitle}\"<br />\n<br />\n				{$abstractTermIfEnabled}<br />\n				{$submissionAbstract}','Det hÃ¤r meddelandet frÃ¥n SektionsredaktÃ¶ren till SakkuniggbedÃ¶mare innehÃ¥ller begÃ¤ran om att mottagaren ska acceptera eller avbÃ¶ja att granska ett manuskript. Mailet innehÃ¥ller information om manuskriptet, titel och sammanfattning, sista-datum fÃ¶r bedÃ¶mning, samt information om inloggning till tidskriften. Meddelandet anvÃ¤nds nÃ¤r StandardbedÃ¶mningsprocessen Ã¤r vald i TidskriftsinstÃ¤llningar, Steg 2. (Annars, se mailet: REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','tr_TR','Makale DeÄŸerlendirme Ä°steÄŸi','SayÄ±n {$reviewerName},<br />\n<br />\n{$contextName} iÃ§in gÃ¶nderilen \"{$submissionTitle}\" baÅŸlÄ±klÄ± Ã§alÄ±ÅŸmanÄ±n sizin ilgi alanlarÄ±nÄ±z ile uyuÅŸtuÄŸunu ve dergimizde yayÄ±nlanabilirliÄŸi aÃ§Ä±sÄ±ndan inceleyebileceÄŸinize inanoyoruz. BaÅŸvurunun iÃ§eriÄŸi aÅŸaÄŸÄ±ya eklenmiÅŸtir. Bu gÃ¶revin bizim iÃ§in ne kadar Ã¶nemli olduÄŸunu gÃ¶z Ã¶nÃ¼nde bulunduracaÄŸÄ±nÄ±zÄ± umuyoruz.<br />\n<br />\n{$responseDueDate} tarihine kadar, bu Ã§alÄ±ÅŸmanÄ±n hakemliÄŸini kabul edip etmediÄŸinizi belirtmek, ilgili Ã§alÄ±ÅŸmaya ulaÅŸmak, eleÅŸtiri ve Ã¶nerilerinizi kaydetmek iÃ§in dergi internet sitesine giriÅŸ yapabilirsiniz. Dergi adresi: {$contextUrl} <br />\n<br />\nDeÄŸerlendirme iÃ§in son tarih: {$reviewDueDate}.<br />\n<br />\nEÄŸer derginin web sitesine giriÅŸ iÃ§in kullanÄ±cÄ± adÄ± ve ÅŸifreniz yoksa veya unuttunuz ise, ÅŸifrenizi yenilemek iÃ§in bu baÄŸlantÄ±yÄ± kullanabilirsiniz (KullanÄ±cÄ± adÄ±nÄ±zla birlikte ÅŸifreniz size postalanacaktÄ±r). {$passwordResetUrl}<br />\n<br />\nMakale EriÅŸim Adresi: {$submissionReviewUrl}<br />\n<br />\nBu dileÄŸimizi deÄŸerlendirdiÄŸiniz iÃ§in teÅŸekkÃ¼r ederiz.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nÃ–zet:<br />\n{$submissionAbstract}','Bu eposta BÃ¶lÃ¼m EditÃ¶rÃ¼nden bir hakeme bir Ã§alÄ±ÅŸmanÄ±n hakemlik gÃ¶revine cavet amacÄ± ile iletir. GÃ¶nderiyle ilgili baÅŸlÄ±k ve Ã¶zet gibi bilgileri, deÄŸerlendirme sona erme tarihini ve kendisinin baÅŸvuruya nasÄ±l eriÅŸilebileceÄŸi ile ilgili bilgileri iÃ§erir.	Bu mesaj Dergi AyarlarÄ± AdÄ±m 2\'de seÃ§ilen Standart DeÄŸerlendirme SÃ¼recinde kullanÄ±lÄ±r. (AyrÄ±ca bkz.: REVIEW_REQ_MULTI_ATTACHED ve REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','uk_UA','Ð—Ð°Ð¿Ð¸Ñ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ–','{$reviewerName}:<br />\n<br />\nÐ¯ Ð²Ñ–Ñ€ÑŽ, Ñ‰Ð¾ Ð’Ð¸ Ð¼Ð¾Ð³Ð»Ð¸ Ð± ÑÑ‚Ð°Ñ‚Ð¸ Ð¿Ñ€ÐµÐºÑ€Ð°ÑÐ½Ð¸Ð¼ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ð¼ Ð´Ð»Ñ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ \"{$submissionTitle}\", Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð½Ð¾Ð³Ð¾ Ð´Ð¾ Ð²Ð¸Ð´Ð°Ð½Ð½Ñ \"{$contextName}\". ÐÐ¸Ð¶Ñ‡Ðµ Ð¿Ð¾Ð´Ð°Ð½Ð° Ð°Ð½Ð¾Ñ‚Ð°Ñ†Ñ–Ñ Ñ†Ñ–Ñ”Ñ— Ð¿Ñ€Ð°Ñ†Ñ–, Ñ–, Ñ…Ð¾Ñ‡Ñƒ ÑÐ¿Ð¾Ð´Ñ–Ð²Ð°Ñ‚Ð¸ÑÑŒ, Ð’Ð¸ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÐµÑ‚Ðµ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ñ–ÑÑ‚ÑŒ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ†Ñ–Ñ”Ñ— Ð²Ð°Ð¶Ð»Ð¸Ð²Ð¾Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ Ð´Ð»Ñ Ð½Ð°Ñ.<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð´Ð¾ {$responseDueDate} Ð·Ð°Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ, Ñ‰Ð¾Ð± Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð¸Ñ‚Ð¸, Ñ‡Ð¸ Ð²Ñ–Ð·ÑŒÐ¼ÐµÑ‚ÐµÑÑ Ð’Ð¸ Ð·Ð° Ñ†ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ, Ð° Ñ‚Ð°ÐºÐ¾Ð¶ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ, Ð·Ð°Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ñ‚Ð° Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–ÑŽ. ÐÐ´Ñ€ÐµÑÐ° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚Ñƒ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ {$contextUrl}<br />\n<br />\nÐœÐ¸ Ñ…Ð¾Ñ‚Ñ–Ð»Ð¸ Ð± Ð¼Ð°Ñ‚Ð¸ Ð³Ð¾Ñ‚Ð¾Ð²Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð´Ð¾ {$reviewDueDate}.<br />\n<br />\nÐ¯ÐºÑ‰Ð¾ Ð’Ð¸ Ð½Ðµ Ð·Ð±ÐµÑ€ÐµÐ³Ð»Ð¸ Ñ–Ð¼ÐµÐ½Ñ– ÐºÐ¾Ñ€Ð¸ÑÑ‚ÑƒÐ²Ð°Ñ‡Ð° Ñ‚Ð° Ð¿Ð°Ñ€Ð¾Ð»ÑŒ Ð´Ð»Ñ Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚Ñƒ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ, Ð’Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ ÑÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ñ‚Ð¸ÑÑ Ð½Ð°ÑÑ‚ÑƒÐ¿Ð½Ð¸Ð¼ Ð¿Ð¾ÑÐ¸Ð»Ð°Ð½Ð½ÑÐ¼ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± ÑÐºÐ¸Ð½ÑƒÑ‚Ð¸ ÑÐ²Ñ–Ð¹ Ð¿Ð°Ñ€Ð¾Ð»ÑŒ (Ð¿Ñ–ÑÐ»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ð¿Ð°Ñ€Ð¾Ð»ÑŒ Ñ‚Ð° Ñ–Ð¼\'Ñ ÐºÐ¾Ñ€Ð¸ÑÑ‚ÑƒÐ²Ð°Ñ‡Ð° Ð±ÑƒÐ´ÑƒÑ‚ÑŒ Ð²Ñ–Ð´Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñ– Ð’Ð°Ð¼ ÐµÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾ÑŽ Ð¿Ð¾ÑˆÑ‚Ð¾ÑŽ). {$passwordResetUrl}<br />\n<br />\nURL Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ: {$submissionReviewUrl}<br />\n<br />\nÐ”ÑÐºÑƒÑŽ, Ñ‰Ð¾ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÑƒÐ»Ð¸ Ñ†ÐµÐ¹ Ð·Ð°Ð¿Ð¸Ñ‚.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ð¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñƒ Ð¿Ñ€Ð¾ÑÐ¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° Ð²Ð·ÑÑ‚Ð¸ÑÑ Ð·Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ— Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð²Ñ–Ð´Ð¼Ð¾Ð²Ð¸Ñ‚Ð¸ÑÑŒ Ð²Ñ–Ð´ Ñ†Ñ–Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. Ð£ Ð»Ð¸ÑÑ‚Ñ– Ð¼Ñ–ÑÑ‚Ð¸Ñ‚ÑŒÑÑ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ (Ð½Ð°Ð·Ð²Ð° Ñ‚Ð° Ð°Ð½Ð¾Ñ‚Ð°Ñ†Ñ–Ñ), Ð¿Ñ€Ð¾ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¸Ð¹ Ñ‚ÐµÑ€Ð¼Ñ–Ð½ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° Ð¿Ñ€Ð¾ Ñ‚Ðµ, ÑÐº Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð±ÐµÐ·Ð¿Ð¾ÑÐµÑ€ÐµÐ´Ð½ÑŒÐ¾ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ. Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ, ÑÐºÑ‰Ð¾ Ð½Ð° ÐºÑ€Ð¾Ñ†Ñ– 2 ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ð¹ Ð¡Ñ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ (Ñƒ Ñ–Ð½ÑˆÐ¾Ð¼Ñƒ Ð²Ð¸Ð¿Ð°Ð´ÐºÑƒ Ð´Ð¸Ð². REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','vi_VN','Äá» nghá»‹ pháº£n biá»‡n bÃ i ná»™p','{$reviewerName}:<br />\n<br />\nTÃ´i tin ráº±ng quÃ½ vá»‹ sáº½ lÃ  ngÆ°á»i pháº£n biá»‡n xuáº¥t sáº¯c Ä‘á»‘i vá»›i báº£n tháº£o bÃ i viáº¿t, \"{$submissionTitle},\" ná»™p cho táº¡p chÃ­ {$contextName}. TÃ³m táº¯t cá»§a bÃ i ná»™p Ä‘Æ°á»£c kÃ¨m á»Ÿ cuá»‘i thÆ°, hy vá»ng ráº±ng quÃ½ vá»‹ sáº½ cÃ¢n nháº¯c nháº­n giÃºp cho cÃ´ng viá»‡c quan trá»ng nÃ y.<br />\n<br />\nXin vui lÃ²ng Ä‘Äƒng nháº­p vÃ o website trÆ°á»›c ngÃ y {$responseDueDate} Ä‘á»ƒ bÃ¡o cho BBT biáº¿t liá»‡u quÃ½ vá»‹ cÃ³ nháº­n lá»i pháº£n biá»‡n hay khÃ´ng, Ä‘á»“ng thá»i truy cáº­p vÃ o bÃ i ná»™p, ghi láº¡i lá»i pháº£n biá»‡n vÃ  Ä‘á» xuáº¥t. Äá»‹a chá»‰ cá»§a website lÃ  {$contextUrl}<br />\n<br />\nThá»i háº¡n pháº£n biá»‡n lÃ  {$reviewDueDate}.<br />\n<br />\nNáº¿u quÃ½ vá»‹ khÃ´ng nhá»› bÃ­ danh vÃ  máº­t kháº©u dÃ¹ng cho website cá»§a táº¡p chÃ­ nÃ y, quÃ½ vá»‹ cÃ³ thá»ƒ sá»­ dá»¥ng Ä‘Æ°á»ng dáº«n Ä‘á»ƒ Ä‘á»•i láº¡i máº­t kháº©u (sáº½ Ä‘Æ°á»£c gá»­i tá»›i email cá»§a quÃ½ vá»‹ cÃ¹ng vá»›i bÃ­ danh). {$passwordResetUrl}<br />\n<br />\nÄÆ°á»ng dáº«n (URL) bÃ i viáº¿t: {$submissionReviewUrl}<br />\n<br />\nCáº£m Æ¡n vÃ¬ Ä‘Ã£ xem xÃ©t Ä‘á» nghá»‹ nÃ y.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Email nÃ y Ä‘Æ°á»£c gá»­i tá»« BTV ChuyÃªn má»¥c tá»›i má»™t NgÆ°á»i pháº£n biá»‡n Ä‘á» nghá»‹ cho biáº¿t Ã½ kiáº¿n Ä‘á»“ng Ã½ hay tá»« chá»‘i pháº£n biá»‡n má»™t bÃ i ná»™p. NÃ³ cung cáº¥p thÃ´ng tin vá» bÃ i ná»™p nhÆ° tiÃªu Ä‘á» vÃ  tÃ³m táº¯t, thá»i háº¡n pháº£n biá»‡n vÃ  cÃ¡c truy cáº­p vÃ o bÃ i ná»™p. Email nÃ y Ä‘Æ°á»£c sá»­ dá»¥ng khi QuÃ¡ trÃ¬nh Pháº£n biá»‡n chuáº©n lá»±a chá»n khi Thiáº¿t láº­p Táº¡p chÃ­, BÆ°á»›c 2. (Náº¿u khÃ´ng, xem REVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','zh_CN','é‚€è¯·æ‚¨å®¡æŸ¥ç¨¿ä»¶','{$reviewerName}æ‚¨å¥½ï¼š<br />\n<br />\nã€Š{$contextName}ã€‹çš„ç¼–è¾‘å›¢é˜Ÿç›¸ä¿¡æ‚¨æ˜¯æŠ•ç¨¿åˆ°æœ¬æœŸåˆŠä¹‹ç¨¿ä»¶ã€ˆ{$submissionTitle}ã€‰çš„æœ€ä½³å®¡æŸ¥äººé€‰ã€‚è¯¥ä»½ç¨¿ä»¶çš„æ‘˜è¦å¦‚ä¸‹ï¼Œè€Œæˆ‘ä»¬å¸Œæœ›æ‚¨ä¼šè€ƒè™‘è¿›è¡Œè¿™ä»½å¯¹æˆ‘ä»¬æ¥è¯´ç›¸å½“é‡è¦çš„ä¸€ä¸ªå·¥ä½œã€‚<br />\n<br />\næ— è®ºæ‚¨æ˜¯å¦æŽ¥å—å®¡æŸ¥å·¥ä½œä¸Žå¦ï¼Œéƒ½è¯·åœ¨{$responseDueDate}ä¹‹å‰ç™»å…¥è¿™ä¸ªæœŸåˆŠç½‘ç«™ï¼ŒåŒæ—¶æ£€é˜…è¿™ä»½ç¨¿ä»¶å¹¶ä¸”è®°å½•æ‚¨çš„å®¡æŸ¥æ„è§å’Œç¼–è¾‘å»ºè®®ã€‚ç½‘ç«™ä¸ºï¼š{$contextUrl}<br />\n<br />\nè¯·æ³¨æ„å®¡æŸ¥å·¥ä½œçš„æœŸé™ä¸ºï¼š{$reviewDueDate}ã€‚<br />\n<br />\nå¦‚æžœæ‚¨æ²¡æœ‰æ‚¨åœ¨è¿™ä¸ªæœŸåˆŠç½‘ç«™çš„ç”¨æˆ·å¸å·å’Œå¯†ç ã€‚æ‚¨å¯ä»¥ä½¿ç”¨è¿™ä¸ªé“¾æŽ¥åŽ»é‡æ–°è®¾å®šæ‚¨çš„å¯†ç ï¼ˆè¯¥å¯†ç ä¼šå’Œæ‚¨çš„ç”¨æˆ·å¸å·åç§°ä¸€èµ·ç”µé‚®ç»™æ‚¨ï¼‰ï¼š{$passwordResetUrl}<br />\n<br />\nç¨¿ä»¶ç½‘å€ï¼š{$submissionReviewUrl}<br />\n<br />\néžå¸¸æ„Ÿè°¢æ‚¨è€ƒè™‘æˆ‘ä»¬çš„é‚€è¯·ã€‚<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nã€ˆ{$submissionTitle}ã€‰<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','è¿™å°ç”µå­é‚®ä»¶æ˜¯ç”±åŒºæ®µç¼–è¾‘å¯„å‘ç»™å®¡æŸ¥äººä¸€ä»½é‚€è¯·å‡½ï¼Œè¯¢é—®å®¡æŸ¥äººæŽ¥å—æˆ–å©‰è°¢ä¸€ä»½ç¨¿ä»¶çš„å®¡æŸ¥å·¥ä½œã€‚é‚®ä»¶ä¸­å«æœ‰å…³äºŽç¨¿ä»¶æ ‡é¢˜å’Œæ‘˜è¦çš„ä¿¡æ¯ï¼Œä¸€ä¸ªå®¡æŸ¥å·¥ä½œåˆ°æœŸæ—¥ï¼Œä»¥åŠå¦‚ä½•è®¿é—®ç¨¿ä»¶çš„è¯´æ˜Žä¿¡æ¯ã€‚åœ¨ã€ŒæœŸåˆŠè®¾å®šã€ä¹‹æ­¥éª¤2ä¸­é€‰æ‹©ã€Œæ ‡å‡†å®¡æŸ¥æµç¨‹ã€é€‰é¡¹æ—¶ï¼Œæ‰ä¼šç”¨åˆ°è¿™ä»½æ¶ˆæ¯ã€‚(å¦åˆ™è¯·è§ï¼šREVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO','zh_TW','é‚€è«‹æ‚¨å¯©æŸ¥ç¨¿ä»¶','{$reviewerName}æ‚¨å¥½ï¼š<br />\n<br />\nã€Š{$contextName}ã€‹çš„ç·¨è¼¯åœ˜éšŠç›¸ä¿¡æ‚¨æ˜¯æŠ•ç¨¿åˆ°æœ¬æœŸåˆŠä¹‹ç¨¿ä»¶ã€ˆ{$submissionTitle}ã€‰çš„æœ€ä½³å¯©æŸ¥äººé¸ã€‚è©²ä»½ç¨¿ä»¶çš„æ‘˜è¦å¦‚ä¸‹ï¼Œè€Œæˆ‘å€‘å¸Œæœ›æ‚¨æœƒè€ƒæ…®é€²è¡Œé€™ä»½å°æˆ‘å€‘ä¾†èªªç›¸ç•¶é‡è¦çš„ä¸€å€‹å·¥ä½œã€‚<br />\n<br />\nç„¡è«–æ‚¨æ˜¯å¦æŽ¥å—å¯©æŸ¥å·¥ä½œèˆ‡å¦ï¼Œéƒ½è«‹åœ¨{$responseDueDate}ä¹‹å‰ç™»å…¥é€™å€‹æœŸåˆŠç¶²ç«™ï¼ŒåŒæ™‚æª¢é–±é€™ä»½ç¨¿ä»¶ä¸¦ä¸”è¨˜éŒ„æ‚¨çš„å¯©æŸ¥æ„è¦‹å’Œç·¨è¼¯å»ºè­°ã€‚ç¶²ç«™ç‚ºï¼š{$contextUrl}<br />\n<br />\nè«‹æ³¨æ„å¯©æŸ¥å·¥ä½œçš„æœŸé™ç‚ºï¼š{$reviewDueDate}ã€‚<br />\n<br />\nå¦‚æžœæ‚¨æ²’æœ‰æ‚¨åœ¨é€™å€‹æœŸåˆŠç¶²ç«™çš„ä½¿ç”¨è€…å¸³è™Ÿå’Œå¯†ç¢¼ã€‚æ‚¨å¯ä»¥ä½¿ç”¨é€™å€‹é€£çµåŽ»é‡æ–°è¨­å®šæ‚¨çš„å¯†ç¢¼ï¼ˆè©²å¯†ç¢¼æœƒå’Œæ‚¨çš„ä½¿ç”¨è€…å¸³è™Ÿåç¨±ä¸€èµ·é›»éƒµçµ¦æ‚¨ï¼‰ï¼š{$passwordResetUrl}<br />\n<br />\nç¨¿ä»¶ç¶²å€ï¼š{$submissionReviewUrl}<br />\n<br />\néžå¸¸æ„Ÿè¬æ‚¨è€ƒæ…®æˆ‘å€‘çš„é‚€è«‹ã€‚<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nã€ˆ{$submissionTitle}ã€‰<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','é€™å°é›»å­éƒµä»¶æ˜¯ç”±å€æ®µç·¨è¼¯å¯„ç™¼çµ¦å¯©æŸ¥äººä¸€ä»½é‚€è«‹å‡½ï¼Œè©¢å•å¯©æŸ¥äººæŽ¥å—æˆ–å©‰è¬ä¸€ä»½ç¨¿ä»¶çš„å¯©æŸ¥å·¥ä½œã€‚éƒµä»¶ä¸­å«æœ‰é—œæ–¼ç¨¿ä»¶æ¨™é¡Œå’Œæ‘˜è¦çš„è³‡è¨Šï¼Œä¸€å€‹å¯©æŸ¥å·¥ä½œåˆ°æœŸæ—¥ï¼Œä»¥åŠå¦‚ä½•å­˜å–ç¨¿ä»¶çš„èªªæ˜Žè³‡è¨Šã€‚åœ¨ã€ŒæœŸåˆŠè¨­å®šã€ä¹‹æ­¥é©Ÿ2ä¸­é¸æ“‡ã€Œæ¨™æº–å¯©æŸ¥æµç¨‹ã€é¸é …æ™‚ï¼Œæ‰æœƒç”¨åˆ°é€™ä»½è¨Šæ¯ã€‚(å¦å‰‡è«‹è¦‹ï¼šREVIEW_REQUEST_REMIND_AUTO_ATTACHED.)'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','ar_IQ','Ø¥Ù„ØªÙ…Ø§Ø³ ØªØ­ÙƒÙŠÙ… Ù…Ø¤Ù„ÙŽÙ‘Ù','{$reviewerName}:<br />\n<br />\nÙƒÙ„ÙŠ Ø«Ù‚Ø© Ø¨Ø£Ù†Ùƒ Ø³ØªÙƒÙˆÙ† Ù…Ø­ÙƒÙ…Ø§Ù‹ Ù…ØªÙ…ÙŠØ²Ø§Ù‹ Ù„Ù„Ù…Ø¤Ù„ÙŽÙ‘Ù Ø§Ù„Ù…ÙˆØ³ÙˆÙ… \"{$submissionTitle}ØŒ\" ÙˆØ§Ù„Ø°ÙŠ Ø£ÙØ±Ø³Ù„ Ø·Ù„Ø¨ Ù„Ù†Ø´Ø±Ù‡ Ø¥Ù„Ù‰ {$contextName}. Ø¥Ù† Ù…Ù„Ø®Øµ Ù…ÙˆØ¶ÙˆØ¹Ù‡ Ù…Ø¨ÙŠÙ† Ø£Ø¯Ù†Ø§Ù‡ØŒ ÙˆØ£Ù†Ø§ Ø£Ø±Ø¬Ùˆ Ø£Ù†Ùƒ Ø³ØªØ£Ø®Ø° Ø¹Ù„Ù‰ Ø¹Ø§ØªÙ‚Ùƒ Ø¥Ù†Ø¬Ø§Ø² Ù‡Ø°Ù‡ Ø§Ù„Ù…Ù‡Ù…Ø© Ù„Ù…Ø¬Ù„ØªÙ†Ø§.<br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ø£Ø¯Ø®Ù„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© Ø¨Ø¹Ø¯ Ù…Ø±ÙˆØ± {$responseDueDate} Ø£Ø³Ø¨ÙˆØ¹/Ø£Ø³Ø§Ø¨ÙŠØ¹ Ù„ØªØ¨ÙŠÙ† Ù„Ù†Ø§ ÙÙŠÙ…Ø§ Ù„Ùˆ Ø£Ù†Ùƒ Ù…ÙˆØ§ÙÙ‚ Ø¹Ù„Ù‰ Ù‡Ø°Ø§ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø£Ù… Ù„Ø§ØŒ ÙƒÙ…Ø§ ÙŠÙ…ÙƒÙ†Ùƒ Ø£ÙŠØ¶Ø§Ù‹ Ø¹Ø¨Ø± Ø§Ù„Ø±Ø§Ø¨Ø· Ø£Ø¯Ù†Ø§Ù‡ Ø§Ù„ÙˆØµÙˆÙ„ Ø¥Ù„Ù‰ Ù…ØªØ¹Ù„Ù‚Ø§Øª Ø·Ù„Ø¨ Ø§Ù„Ù†Ø´Ø± Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ ÙˆØªØ«Ø¨ÙŠØª ØªÙ‚ÙŠÙŠÙ…Ùƒ Ù„Ù‡ ÙˆÙ…Ù„Ø§Ø­Ø¸Ø§ØªÙƒ Ø¨Ø´Ø£Ù†Ù‡.<br />\n<br />\nØ£Ù…Ø§ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù†ÙØ³Ù‡ØŒ ÙØ¥Ù† Ù…ÙˆØ¹Ø¯Ù‡ Ø§Ù„Ù†Ù‡Ø§Ø¦ÙŠ Ø³ÙŠÙƒÙˆÙ†: {$reviewDueDate}.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø·Ù„Ø¨ Ø§Ù„ØªÙ‚Ø¯ÙŠÙ…: {$submissionReviewUrl}<br />\n<br />\nÙ†Ø´ÙƒØ± Ù„Ùƒ Ø§Ù‡ØªÙ…Ø§Ù…Ùƒ Ø¨Ø§Ù„ØªÙ…Ø§Ø³Ù†Ø§ Ù‡Ø°Ø§.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ±Ø³Ù„Ù‡Ø§ Ù…Ø­Ø±Ø± Ù‚Ø³Ù… Ø§Ù„Ù…Ø¬Ù„Ø© Ø¥Ù„Ù‰ Ø£Ø­Ø¯ Ø§Ù„Ù…Ø­ÙƒÙ…ÙŠÙ† Ù„ÙŠÙ„ØªÙ…Ø³ Ù…Ù†Ù‡ Ù‚Ø¨ÙˆÙ„ Ù…Ù‡Ù…Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø£Ùˆ Ø±ÙØ¶Ù‡Ø§. ÙˆÙ‡ÙŠ ØªÙˆÙØ± Ù…Ø¹Ù„ÙˆÙ…Ø§Øª Ù…ØªØ¹Ù„Ù‚Ø© Ø¨Ø·Ù„Ø¨ Ø§Ù„Ù†Ø´Ø± Ù…Ù† Ø¹Ù†ÙˆØ§Ù†Ù‡ ÙˆÙ…Ù„Ø®ØµÙ‡ØŒ ÙØ¶Ù„Ø§Ù‹ Ø¹Ù† Ù…ÙˆØ¹Ø¯ Ø§Ø³ØªÙŠØ¬Ø§Ø¨ Ø§Ù„ØªØ­ÙƒÙŠÙ… ÙˆØ±Ø§Ø¨Ø· Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ø§Ù„Ù…ÙˆÙ‚Ø¹ Ù„Ù„Ø§Ø·Ù„Ø§Ø¹ Ø¹Ù„Ù‰ Ø§Ù„Ø·Ù„Ø¨ Ù†ÙØ³Ù‡. Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªØ³ØªØ¹Ù…Ù„ Ø¹Ù†Ø¯Ù…Ø§ ÙŠÙƒÙˆÙ† Ø§Ù„ØªØ­ÙƒÙŠÙ… ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø© Ù…ØªØ¨Ø¹Ø§Ù‹ Ù„Ø¹Ù…Ù„ÙŠØ© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø§Ù„Ù‚ÙŠØ§Ø³ÙŠØ© ÙˆØ°Ù„Ùƒ Ø¹Ø¨Ø± ØªÙØ¹ÙŠÙ„Ù‡ Ø¶Ù…Ù† Ø¥Ø¹Ø¯Ø§Ø¯Ø§Øª Ø§Ù„Ù…Ø¬Ù„Ø©ØŒ Ø§Ù„Ù…Ø±Ø­Ù„Ø© (2) Ù…Ù†Ù‡Ø§ØŒ Ù…Ø¹ ØªÙØ¹ÙŠÙ„ Ø§Ù„ÙˆØµÙˆÙ„ Ø§Ù„Ù…Ø¨Ø§Ø´Ø± Ù„Ù„Ù…Ø­ÙƒÙ… Ø£ÙŠØ¶Ø§Ù‹'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','ca_ES','SolÂ·licitud de revisiÃ³ d\'un article','{$reviewerName}:<br />\n<br />\nConsidero que el vostre perfil Ã©s adequat per revisar el manuscrit Â«{$submissionTitle}Â» tramÃ¨s a la revista {$contextName}. A continuaciÃ³ trobareu un resum de la tramesa, i confio que acceptareu encarregar-vos d\'aquesta important tasca.<br />\n<br />\nUs demano que inicieu la sessiÃ³ a la revista abans del {$responseDueDate} per indicar-nos si accepteu o no encarregar-vos de la revisiÃ³ de la tramesa i, en cas d\'acceptar-la, per accedir-hi i enregistrar-ne la revisiÃ³ i recomanaciÃ³.<br />\n<br />\nLa data lÃ­mit per a la revisiÃ³ Ã©s el {$reviewDueDate}.<br />\n<br />\nEnllaÃ§ de la tramesa: {$submissionReviewUrl}<br />\n<br />\nGrÃ cies per tenir en compte aquesta solÂ·licitud.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nÂ«{$submissionTitle}Â»<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Aquest missatge de correu electrÃ²nic tÃ© com a remitent l\'editor/a de secciÃ³, i s\'envia a un possible revisor/a perquÃ¨ accepti o rebutgi la revisiÃ³ d\'una tramesa. Proporciona la informaciÃ³ segÃ¼ent relativa a la tramesa: tÃ­tol i resum, data de venciment per a la revisiÃ³ i mode d\'accÃ©s a la tramesa. Aquest missatge s\'utilitza si s\'ha seleccionat el procÃ©s de revisiÃ³ estÃ ndard al pas 2 de la configuraciÃ³ de la revista i s\'ha habilitat l\'accÃ©s a la revisiÃ³ en un clic.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','cs_CZ','Å½Ã¡dost o zpracovÃ¡nÃ­ recenze ÄlÃ¡nku','{$reviewerName}:<br />\n<br />\nDomnÃ­vÃ¡m se, Å¾e byste mohl bÃ½t vÃ½bornÃ½m recenzentem pÅ™Ã­spÄ›vku \"{$submissionTitle},\" kterÃ½ byl zaslÃ¡n do {$contextName}. Abstrakt pÅ™Ã­spÄ›vku je vloÅ¾en nÃ­Å¾e. VÄ›Å™Ã­m, Å¾e zvÃ¡Å¾Ã­te moÅ¾nost pÅ™ijetÃ­ tohoto pro nÃ¡s dÅ¯leÅ¾itÃ©ho Ãºkolu.<br />\n<br />\nProsÃ­m, pÅ™ihlaste se do {$responseDueDate} na strÃ¡nkÃ¡ch Äasopisu, abyste uvedl, zda recenzi zpracujete nebo ne a takÃ© pro pÅ™Ã­stup k pÅ™Ã­spÄ›vku a zaznamenÃ¡nÃ­ VaÅ¡Ã­ recenze a doporuÄenÃ­.<br />\n<br />\nTermÃ­n pro zpracovÃ¡nÃ­ recenze je {$reviewDueDate}.<br />\n<br />\nURL pÅ™Ã­spÄ›vku: {$submissionReviewUrl}<br />\n<br />\nDÄ›kujeme za zvÃ¡Å¾enÃ­ tÃ©to Å¾Ã¡dosti.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Tento email od editora sekce pro recenzenta Å¾Ã¡dÃ¡, aby recenzent pÅ™ijal nebo odmÃ­tl Ãºkol zpracovat recenzi pÅ™Ã­spÄ›vku. Obsahuje informace o pÅ™Ã­spÄ›vku, jako je nÃ¡zev a abstrakt, termÃ­n pro zpracovÃ¡nÃ­ recenze a jak se dostat k samotnÃ©mu pÅ™Ã­spÄ›vku. Tato zprÃ¡va je pouÅ¾Ã­vÃ¡na, pokud je zvoleno StandardnÃ­ recenzÃ­ Å™Ã­zenÃ­ ve druhÃ©m kroku  NastavenÃ­ Äasopisu a je povolen pÅ™Ã­stup recenzenta na jedno kliknutÃ­.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','da_DK','ForespÃ¸rgsel om bedÃ¸mmelse af artikel','{$reviewerName}:<br />\n<br />\nJeg tror, at du vil vÃ¦re en fremragende bedÃ¸mmer af manuskriptet \"{$submissionTitle}\", der er blevet sendt til {$contextName}. Nedenfor finder du et resumÃ© af manuskriptet, og jeg hÃ¥ber, at du vil overveje at pÃ¥tage dig denne vigtige opgave for os.<br />\n<br />\nLog pÃ¥ tidsskriftets websted inden den {$responseDueDate} for at angive, om du vil pÃ¥tage dig bedÃ¸mmelsen eller ej, samt for at fÃ¥ adgang til manuskriptet og registrere din bedÃ¸mmelse og anbefaling.<br />\n<br />\nSelve bedÃ¸mmelsen skal afleveres senest den {$reviewDueDate}.<br />\n<br />\nManuskriptets URL-adresse: {$submissionReviewUrl}<br />\n<br />\nTak for din overvejelse af denne forespÃ¸rgsel.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled} {$submissionAbstract}','Denne e-mail fra sektionsredaktÃ¸ren til en bedÃ¸mmer anmoder bedÃ¸mmeren om at acceptere eller afvise at bedÃ¸mme et manuskript. Den indeholder oplysninger om manuskriptet, f.eks. titel og resumÃ©, forfaldsdato for bedÃ¸mmelse, samt hvordan der kan oprettes adgang til selve manuskriptet. Denne meddelelse benyttes, hvis indstillingen StandardbedÃ¸mmelsesproces er valgt under Konfiguration af tidsskrift, trin 2, og adgang for bedÃ¸mmere ved hjÃ¦lp af Ã©t klik er aktiveret.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','de_DE','Bitte um ein Gutachten','{$reviewerName},<br />\n<br />\naufgrund Ihrer Forschungsschwerpunkte wÃ¤ren Sie ein/e ausgezeichnete/r Gutachter/in fÃ¼r das Manuskript \"{$submissionTitle}\", das zur Publikation in {$contextName} eingereicht worden ist. Weiter unten finden Sie eine Kurzfassung des Beitrags. Ich hoffe sehr, dass Sie sich bereitfinden kÃ¶nnen, uns mit Ihrer Stellungnahme zu unterstÃ¼tzen. Sie wÃ¤ren uns eine groÃŸe Hilfe.<br />\n<br />\nLoggen Sie sich bitte bis zum {$responseDueDate} auf der Webseite unserer Zeitschrift ein, um uns Ihre Zu- oder Absage mitzuteilen. Sie finden dort den Beitrag und kÃ¶nnen gegebenenfalls auch Ihr Gutachten und Ihre Empfehlung dort abgeben.<br />\n<br />\nDas Gutachten wÃ¤re fÃ¤llig am {$reviewDueDate}.<br />\n<br />\nURL des Beitrags: {$submissionReviewUrl}<br />\n<br />\nIn der Hoffnung auf eine positive Antwort,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Diese E-Mail von der/dem Rubrikredakteur/in an eine/n Gutachter/in bittet darum, dass diese/r die Aufgabe, eine Einreichung zu begutachten, Ã¼bernimmt oder ablehnt. Sie liefert Informationen Ã¼ber die Einreichung wie Titel und Abstract, ein FÃ¤lligkeitsdatum fÃ¼r das Gutachten und darÃ¼ber, wie auf die Einreichung zugegriffen werden kann. Diese Nachricht wird benutzt, wenn in Schritt 2 des Zeitschriftensetups das Standardbegutachtungsverfahren ausgewÃ¤hlt worden ist und wenn der One-Click-Zugang fÃ¼r Gutachter/innen aktiviert ist.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','el_GR','Î‘Î¯Ï„Î·Î¼Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ Î¬ÏÎ¸ÏÎ¿Ï…','{$reviewerName}:<br />\n<br />\nÎ Î¹ÏƒÏ„ÎµÏÎ¿Ï…Î¼Îµ ÏŒÏ„Î¹ Î¸Î± Î¼Ï€Î¿ÏÎ¿ÏÏƒÎ±Ï„Îµ Î½Î± ÏƒÏ…Î½ÎµÎ¹ÏƒÏ†Î­ÏÎµÏ„Îµ ÏƒÏ„Î·Î½ Î­ÎºÎ´Î¿ÏƒÎ· Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï Î¼Î±Ï‚ ÏŽÏ‚ Î­Î½Î±Ï‚ ÎµÎ¾Î±Î¯ÏÎµÏ„Î¿Ï‚ Î±Î¾Î¹Î¿Î»Î¿Î³Î·Ï„Î®Ï‚ Î³Î¹Î± Ï„Î·Î½ ÎµÏÎ³Î±ÏƒÎ¯Î±, \"{$submissionTitle},\" Ï€Î¿Ï… Î­Ï‡ÎµÎ¹ Ï…Ï€Î¿Î²Î»Î·Î¸ÎµÎ¯ ÏƒÏ„Î¿ {$contextName}. Î— Ï€ÎµÏÎ¯Î»Î·ÏˆÎ· Ï„Î·Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ Ï€Î±ÏÎ±Ï„Î¯Î¸ÎµÏ„Î±Î¹ Ï€Î±ÏÎ±ÎºÎ¬Ï„Ï‰, ÎºÎ±Î¹ ÎµÎ»Ï€Î¯Î¶Î¿Ï…Î¼Îµ ÏŒÏ„Î¹ Î¸Î± Î´ÎµÏ‡Î¸ÎµÎ¯Ï„Îµ Î½Î± Î±Î½Î±Î»Î¬Î²ÎµÏ„Îµ Î±Ï…Ï„Î® Ï„Î·Î½ ÏƒÎ·Î¼Î±Î½Ï„Î¹ÎºÎ® ÎµÏÎ³Î±ÏƒÎ¯Î± Î³Î¹Î± ÎµÎ¼Î¬Ï‚.<br />\n<br />\nÎ£Îµ ÎºÎ¬Î¸Îµ Ï€ÎµÏÎ¯Ï€Ï„Ï‰ÏƒÎ· Î¸Î± ÏƒÎ±Ï‚ Ï€Î±ÏÎ±ÎºÎ±Î»Î¿ÏÏƒÎ±Î¼Îµ Î½Î± ÏƒÏ…Î½Î´ÎµÎ¸ÎµÎ¯Ï„Îµ ÏƒÏ„Î¿Î½ Î¹ÏƒÏ„ÏŒÏ„Î¿Ï€Î¿ Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï Î¼Î­Ï‡ÏÎ¹ Ï„Î·Î½ {$responseDueDate} Î³Î¹Î± Î½Î± Î¼Î±Ï‚ Î³Î½Ï‰ÏƒÏ„Î¿Ï€Î¿Î¹Î®ÏƒÎµÏ„Îµ ÎµÎ¬Î½ Î¸Î± Î±Î½Î±Î»Î¬Î²ÎµÏ„Îµ Ï„Î·Î½ ÏƒÏ…Î³ÎºÎµÎºÏÎ¹Î¼Î­Î½Î· Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î® ÏŒÏ‡Î¹, ÎºÎ±Î¹ ÏƒÎµ Ï€ÎµÏÎ¯Ï€Ï„Ï‰ÏƒÎ· Î¸ÎµÏ„Î¹ÎºÎ®Ï‚ Î±Ï€Î¬Î½Ï„Î·ÏƒÎ·Ï‚ Î½Î± Î±Ï€Î¿ÎºÏ„Î®ÏƒÎµÏ„Îµ Ï€ÏÏŒÏƒÎ²Î±ÏƒÎ· ÏƒÏ„Î¿ Ï€Î»Î®ÏÎµÏ‚ ÎºÎµÎ¯Î¼ÎµÎ½Î¿ Ï„Î·Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ ÎºÎ±Î¹ Î½Î± ÎºÎ±Ï„Î±Ï‡Ï‰ÏÎ¯ÏƒÎµÏ„Îµ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ® ÏƒÎ±Ï‚ ÎºÎ±Î¹ Ï„Î¹Ï‚ ÏƒÏ…ÏƒÏ„Î¬ÏƒÎµÎ¹Ï‚ ÏƒÎ±Ï‚.<br />\n<br />\nÎ— Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î»Î®Î³ÎµÎ¹ ÏƒÏ„Î¹Ï‚ {$reviewDueDate}.<br />\n<br />\nURL Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚: {$submissionReviewUrl}<br />\n<br />\nÎ£Î±Ï‚ ÎµÏ…Ï‡Î±ÏÎ¹ÏƒÏ„Î¿ÏÎ¼Îµ ÎµÎº Ï„Ï‰Î½ Ï€ÏÎ¿Ï„Î­ÏÏ‰Î½ Î³Î¹Î± Ï„Î·Î½ ÎµÎ¾Î­Ï„Î±ÏƒÎ· Ï„Î¿Ï… Î±Î¹Ï„Î®Î¼Î±Ï„ÏŒÏ‚ Î¼Î±Ï‚.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}',' Î¤Î¿ ÏƒÏ…Î³ÎºÎµÎºÏÎ¹Î¼Î­Î½Î¿ Î¼Î®Î½Ï…Î¼Î± ÏƒÏ„Î­Î»Î½ÎµÏ„Î±Î¹ Î±Ï€ÏŒ Ï„Î¿Î½ Î•Ï€Î¹Î¼ÎµÎ»Î·Ï„Î® ÎµÎ½ÏŒÏ„Î·Ï„Î±Ï‚ Ï€ÏÎ¿Ï‚ Ï„Î¿Î½ Î±Î¾Î¹Î¿Î»Î¿Î³Î·Ï„Î® ÎºÎ±Î¹ Ï„Î¿Ï… Î±Î¹Ï„ÎµÎ¯Ï„Î±Î¹ Î½Î± Î´ÎµÏ‡Ï„ÎµÎ¯ Î® Î½Î± Î±Ï€Î¿ÏÏÎ¯ÏˆÎµÎ¹ Ï„Î·Î½ Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ· Î¼Î¹Î±Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚. Î Î±ÏÎ­Ï‡ÎµÎ¹ Ï€Î»Î·ÏÎ¿Ï†Î¿ÏÎ¯ÎµÏ‚ ÏƒÏ‡ÎµÏ„Î¹ÎºÎ¬ Î¼Îµ Ï„Î·Î½ Ï…Ï€Î¿Î²Î¿Î»Î® ÏŒÏ€Ï‰Ï‚ Î¿ Ï„Î¯Ï„Î»Î¿Ï‚ ÎºÎ±Î¹ Ï„Î¿ Î±Ï€ÏŒÏƒÏ€Î±ÏƒÎ¼Î±, Ï„Î·Î½ Î·Î¼ÎµÏÎ¿Î¼Î·Î½Î¯Î± Ï€ÏÎ¿Î¸ÎµÏƒÎ¼Î¯Î±Ï‚ Ï„Î·Ï‚ Ï…Ï€Î¿Î²Î¿Î»Î®Ï‚ ÎºÎ±Î¹ Ï„Î¿Î½ Ï„ÏÏŒÏ€Î¿ Ï€ÏÏŒÏƒÎ²Î±ÏƒÎ·Ï‚ ÏƒÏ„Î·Î½ Ï…Ï€Î¿Î²Î¿Î»Î®. Î¤Î¿ ÏƒÏ…Î³ÎºÎµÎºÏÎ¹Î¼Î­Î½Î¿ Î¼Î®Î½Ï…Î¼Î± Ï‡ÏÎ·ÏƒÎ¹Î¼Î¿Ï€Î¿Î¹ÎµÎ¯Ï„Î±Î¹ ÏŒÏ„Î±Î½ Î· Î ÏÏŒÏ„Ï…Ï€Î· Î´Î¹Î±Î´Î¹ÎºÎ±ÏƒÎ¯Î± Î±Î¾Î¹Î¿Î»ÏŒÎ³Î·ÏƒÎ·Ï‚ (online) Î­Ï‡ÎµÎ¹ ÎµÏ€Î¹Î»ÎµÏ‡Î¸ÎµÎ¯ ÏƒÏ„Î¿ Î¼ÎµÎ½Î¿Ï ÎŸÏÎ³Î¬Î½Ï‰ÏƒÎ· Ï„Î¿Ï… Ï€ÎµÏÎ¹Î¿Î´Î¹ÎºÎ¿Ï, Î’Î®Î¼Î± 2, ÎºÎ±Î¹ Î­Ï„ÏƒÎ¹ ÎµÎ½ÎµÏÎ³Î¿Ï€Î¿Î¹ÎµÎ¯Ï„Î±Î¹ Î· Ï€ÏÏŒÏƒÎ²Î±ÏƒÎ· Ï„Î¿Ï… Î±Î¾Î¹Î¿Î»Î¿Î³Î·Ï„Î® Î¼Îµ Î­Î½Î± Î¼ÏŒÎ½Î¿ ÎºÎ»Î¹Îº.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','es_AR','PeticiÃ³n de RevisiÃ³n de ArtÃ­culo','{$reviewerName}:<br />\n<br />\nTengo el convencimiento de que serÃ­a un/a excelente revisor/a del manuscrito,\"{$submissionTitle},\" que ha sido enviado a {$contextName}.  A continuaciÃ³n encontrarÃ¡ un extracto del envÃ­o, con la esperanza de que aceptarÃ¡ llevar a cabo esta importante tarea para nosotros.<br />\n<br />\nPor favor, identifÃ­quese en la revista antes de {$responseDueDate} para decirnos si harÃ¡ o no la revisiÃ³n, asÃ­ como para tener acceso al envÃ­o y para registrar su revisiÃ³n y recomendaciÃ³n.<br />\n<br />\nLa revisiÃ³n propiamente dicha debe estar lista para el {$reviewDueDate}.<br />\n<br />\nURL del envÃ­o: {$submissionReviewUrl}<br />\n<br />\nGracias por tener en cuenta nuestra solicitud.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nResumen<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Este correo del / de la Editor/a de SecciÃ³n a un/a revisor/a le solicita que acepte o rechace la revisiÃ³n de un envÃ­o. Proporciona informaciÃ³n sobre el envÃ­o como el tÃ­tulo y el resumen, el plazo de revisiÃ³n, y cÃ³mo acceder al envÃ­o propiamente dicho. Este mensaje se usa cuando se selecciona el Proceso de EnvÃ­o EstÃ¡ndar en la configuraciÃ³n de la revista, paso 2, y estÃ¡ activado el acceso a la revisiÃ³n en un click.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','es_ES','Solicitud de revisiÃ³n de un artÃ­culo','{$reviewerName}:<br />\n<br />\nCreo que serÃ­a un excelente revisor/a del manuscrito \"{$submissionTitle},\" el cual se enviÃ³ a {$contextName}. El resumen del envÃ­o aparece abajo, espero que considere la posibilidad de llevar a cabo esta importante tarea para nosotros.<br />\n<br />\nInicie sesiÃ³n en el sitio web de la revista antes de {$responseDueDate} para indicar si llevarÃ¡ a cabo la revisiÃ³n o no, ademÃ¡s de para obtener acceso al envÃ­o y registrar su revisiÃ³n y recomendaciÃ³n.<br />\n<br />\nLa revisiÃ³n deberÃ¡ ser entregada el {$reviewDueDate}.<br />\n<br />\nURL del envÃ­o: {$submissionReviewUrl}<br />\n<br />\nGracias por considerar esta solicitud.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Este correo electrÃ³nico del editor/a de secciÃ³n a un revisor/a solicita que el revisor/a acepte o rechace la tarea de revisar un envÃ­o. AdemÃ¡s, proporciona informaciÃ³n sobre el envÃ­o como el tÃ­tulo, el resumen, la fecha de entrega de la revisiÃ³n y cÃ³mo obtener acceso al propio envÃ­o. Este mensaje se usa cuando se selecciona el proceso de revisiÃ³n estÃ¡ndar en el paso 2 de la configuraciÃ³n de la revista y cuando se habilita el acceso al revisor/a con un solo clic.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','eu_ES','Artikulua ebaluatzeko eskaera','{$reviewerName}:<br />\n<br />\nUste dut ebaluatzaile bikaina izango zinatekeela {$contextName} aldizkarira bidali diguten {$submissionTitle} eskuizkribuari buruzko iritzia emateko. Artikuluaren laburpena behean duzu, eta espero dut aintzakotzat hartu eta pentsatuko duzula guretzat lan garrantzitsu hau egiteko eskaera.<br />\n<br />\nMesedez, sar zaitez aldizkariaren webgunean {$responseDueDate} aurretik, eta esaguzu ebaluazioa egiteko prest zauden ala ez, eta prest egonez gero, artikulua hartzeko eta zure ebaluazio-txostena eta gomendioa emateko.<br />\n<br />\nEbaluazioa egiteko epea {$reviewDueDate} izango litzateke.<br />\n<br />\nArtikuluaren URLa: {$submissionReviewUrl}<br />\n<br />\nEskerrik asko gure eskaera kontuan hartzeagatik.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Mezu hau Ataleko editoreak bidaltzen dio Ebaluatzaile bati, artikulu bat ebaluatzea onartuko duen ala ez galdetzeko. Artikuluari buruzko informazioa ematen du, hala nola titulua eta laburpena, ebaluazioa egiteko epea eta artikulua bera hartzeko zer egin behar den. Mezu hau erabiltzen da aldizkariaren Konfigurazioko 2. urratsean Ebaluazio-prozesu estandarra hautatzen denean, eta klik bakarreko ebaluatzaile-sarbidea gaitzen denean.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','fa_IR','Ø¯Ø±Ø®ÙˆØ§Ø³Øª Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ù…Ù‚Ø§Ù„Ù‡','{$reviewerName}:<br />\n<br />\nØ´Ù…Ø§ Ø¨Ù‡ Ø¹Ù†ÙˆØ§Ù† ÛŒÚ© Ú©Ø§Ø±Ø´Ù†Ø§Ø³ Ù…Ù…ØªØ§Ø² Ø¨Ø±Ø§ÛŒ Ø¨Ø±Ø±Ø³ÛŒ Ù…Ù‚Ø§Ù„Ù‡ \"{$submissionTitle}\" Ú©Ù‡ Ø¨Ø±Ø§ÛŒ {$contextName} Ø§Ø±Ø³Ø§Ù„ Ø´Ø¯Ù‡ Ø§Ø³Øª Ø§Ù†ØªØ®Ø§Ø¨ Ø´Ø¯Ù‡ Ø§ÛŒØ¯. Ø¯Ø± Ø°ÛŒÙ„ØŒ Ú†Ú©ÛŒØ¯Ù‡ Ù…Ù‚Ø§Ù„Ù‡ Ø§Ø±Ø³Ø§Ù„ÛŒ Ø¨Ø±Ø§ÛŒ Ø´Ù…Ø§ Ú¯Ù†Ø¬Ø§Ù†Ø¯Ù‡ Ø´Ø¯Ù‡ Ø§Ø³Øª Ùˆ Ø§Ù…ÛŒØ¯ÙˆØ§Ø±Ù… Ú©Ù‡ Ø¯Ø± Ø§ÛŒÙ† Ø²Ù…ÛŒÙ†Ù‡ Ù…Ø§ÛŒÙ„ Ø¨Ù‡ Ù‡Ù…Ú©Ø§Ø±ÛŒ Ø¨Ø§ Ø§ÛŒÙ† Ù…Ø¬Ù„Ù‡ Ø¨Ø§Ø´ÛŒØ¯.<br />\n<br />\nÙ„Ø·ÙØ§ Ù‚Ø¨Ù„ Ø§Ø² ØªØ§Ø±ÛŒØ® {$reviewDueDate} ÙˆØ§Ø±Ø¯ ÙˆØ¨ Ø³Ø§ÛŒØª Ù…Ø¬Ù„Ù‡ Ø´Ø¯Ù‡ Ùˆ Ù…Ø´Ø®Øµ Ø³Ø§Ø²ÛŒØ¯ Ú©Ù‡ Ø¢ÛŒØ§ Ù…Ø§ÛŒÙ„ Ø¨Ù‡ Ù‚Ø¨ÙˆÙ„ Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ù‡Ø³ØªÛŒØ¯ ÛŒØ§ Ø®ÛŒØ±ØŸ Ù‡Ù…Ú†Ù†ÛŒÙ† Ø¨Ù‡ Ø·ÙˆØ± Ù‡Ù…Ø²Ù…Ø§Ù† Ù…ÛŒ ØªÙˆØ§Ù†ÛŒØ¯ Ø¨Ù‡ Ù…Ù‚Ø§Ù„Ù‡ Ø§Ø±Ø³Ø§Ù„ÛŒ Ø¯Ø³ØªØ±Ø³ÛŒ Ù¾ÛŒØ¯Ø§ Ú©Ø±Ø¯Ù‡ Ùˆ Ù…ØªÙ† Ú©Ø§Ø±Ø´Ù†Ø§Ø³ÛŒ Ùˆ ØªÙˆØµÛŒÙ‡ Ù‡Ø§ÛŒ Ø®ÙˆØ¯Ø±Ø§ Ø°Ø®ÛŒØ±Ù‡ Ú©Ù†ÛŒØ¯.<br />\n<br />\nØ¶Ù…Ù†Ø§ Ø¢Ø®Ø±ÛŒÙ† Ù…Ù‡Ù„Øª Ø¨Ø±Ø±Ø³ÛŒ Ø§ÛŒÙ† Ù…Ù‚Ø§Ù„Ù‡ ØªØ§ ØªØ§Ø±ÛŒØ® {$reviewDueDate} Ù…ÛŒ Ø¨Ø§Ø´Ø¯.<br />\n<br />\nØ¢Ø¯Ø±Ø³ Ù…Ù‚Ø§Ù„Ù‡: {$submissionReviewUrl}<br />\n<br />\nØ§Ø² ØªÙˆØ¬Ù‡ Ø´Ù…Ø§ Ø¨Ù‡ Ø§ÛŒÙ† Ø¯Ø±Ø®ÙˆØ§Ø³Øª Ù…ØªØ´Ú©Ø±Ù….<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n--------------------------------<br />\n\"{$submissionTitle}\"<br />\n<br />\nÚ†Ú©ÛŒØ¯Ù‡:<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2, and one-click reviewer access is enabled.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','fr_CA','Demande d\'Ã©valuation d\'un article','{$reviewerName}:<br />\n<br />\nNous croyons que vous seriez un excellent Ã©valuateur pour le manuscrit intitulÃ© Â« {$submissionTitle} Â» qui a Ã©tÃ© soumis Ã  la revue {$contextName}. Vous trouverez un rÃ©sumÃ© de la soumission ci-dessous.  Nous espÃ©rons que vous accepterez ce travail essentiel Ã  la publication de la revue.<br />\n<br />\nVeuillez accÃ©der au site Web de la revue avant le {$responseDueDate} pour nous informer si vous acceptez de faire l\'Ã©valuation ou non. Vous pouvez Ã©galement y consulter la soumission et y enregistrer votre Ã©valuation et votre recommandation.<br />\n<br />\nDate limite pour l\'Ã©valuation {$reviewDueDate}.<br />\n<br />\nURL de la soumission : {$submissionReviewUrl}.<br />\n<br />\nEn espÃ©rant que vous accepterez notre demande, veuillez agrÃ©er l\'expression de notre considÃ©ration distinguÃ©e.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nÂ« {$submissionTitle} Â»<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ce courriel du RÃ©dacteur de rubrique Ã  un Ã‰valuateur demande que l\'Ã©valuateur accepte ou dÃ©cline la tÃ¢che d\'Ã©valuation d\'une soumission. Il contient des informations sur la soumission tel que son titre et un rÃ©sumÃ©, la date d\'Ã©chÃ©ance pour faire l\'Ã©valuation, et comment accÃ©der Ã  la soumission. Ce message est utilisÃ© quand Â« Processus d\'Ã©valuation standard Â» a Ã©tÃ© sÃ©lectionnÃ© Ã  l\'Ã‰tape 2  de la Configuration de la revue, et que l\'accÃ¨s en Â« un clic Â» de l\'Ã©valuateur a Ã©tÃ© activÃ©.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','fr_FR','Demande d\'Ã©valuation d\'un article','{$reviewerName}:<br />\n<br />\nNous croyons que vous seriez un excellent Ã©valuateur pour le manuscrit intitulÃ© Â« {$submissionTitle} Â» qui a Ã©tÃ© soumis Ã  la revue {$contextName}. Vous trouverez un rÃ©sumÃ© de la soumission ci-dessous.  Nous espÃ©rons que vous accepterez ce travail essentiel Ã  la publication de la revue.<br />\n<br />\nVeuillez accÃ©der au site Web de la revue avant le {$responseDueDate} pour nous informer si vous acceptez de faire l\'Ã©valuation ou non. Vous pouvez Ã©galement y consulter la soumission et y enregistrer votre Ã©valuation et votre recommandation. <br />\n<br />\nDate limite pour l\'Ã©valuation {$reviewDueDate}.<br />\n<br />\nURL de la soumission : {$submissionReviewUrl}.<br />\n<br />\nEn espÃ©rant que vous accepterez notre demande, veuillez agrÃ©er l\'expression de notre considÃ©ration distinguÃ©e.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nÂ« {$submissionTitle} Â»<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ce courriel du RÃ©dacteur de rubrique Ã  un Ã‰valuateur demande que l\'Ã©valuateur accepte ou dÃ©cline la tÃ¢che d\'Ã©valuation d\'une soumission. Il contient des informations sur la soumission tel que son titre et un rÃ©sumÃ©, la date d\'Ã©chÃ©ance pour faire l\'Ã©valuation, et comment accÃ©der Ã  la soumission. Ce message est utilisÃ© quand Â« Processus d\'Ã©valuation standard Â» a Ã©tÃ© sÃ©lectionnÃ© Ã  l\'Ã‰tape 2  de la Configuration de la revue, et que l\'accÃ¨s en Â« un clic Â» de l\'Ã©valuateur a Ã©tÃ© activÃ©.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','gl_ES','PeticiÃ³n de RevisiÃ³n de ArtÃ­culo','{$reviewerName}:<br />\n				<br />\nTeÃ±o o convencimento de que serÃ­as un/unha excelente revisor/a do manuscrito, \"{$submissionTitle},\" que foi enviado a {$contextName}. A continuaciÃ³n atoparÃ¡s un extracto do envÃ­o, coa esperanza de que aceptarÃ¡s levar a cabo esta importante tarefa para nÃ³s.<br />\n<br />\nPor favor, identifÃ­cate na revista antes de {$responseDueDate} para decirnos si farÃ¡s ou non a revisiÃ³n e para teres acceso ao envÃ­o e poder rexistrar a tÃºa revisiÃ³n e recomendaciÃ³ns. O enderezo Ã© {$contextUrl}<br />\n<br />\nA revisiÃ³n debe estar lista para o {$reviewDueDate}.<br />\n<br />\nSe perdiches o teu nome de usuaria/o e contrasinal podes clicar na seguinte ligazÃ³n para mudar o teu contrasinal (chegarache por correo electrÃ³nico xunto co teu nome de usuaria/o). {$passwordResetUrl}<br />\n<br />\nURL do envÃ­o: {$submissionReviewUrl}<br />\n<br />\nBenzÃ³ns por ter en conta a nosa solicitude.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nResumen<br />\n{$submissionAbstract}','Este correo do / da Editor/a de SecciÃ³n a un/a revisor/a ll solicita que acepte ou rexeite a revisiÃ³n dun envÃ­o.Fornece informaciÃ³n sobre o envÃ­o como o tÃ­tulo e o resumo, o prazo de revisiÃ³n, e sobre como acceder ao envÃ­o. Esta mensaxe emprÃ©gase cando se selecciona o Proceso de EnvÃ­o EstÃ¡ndar na configuraciÃ³n da revista, paso 2, e estÃ¡ activado o acceso Ã¡ revisiÃ³n nun clic.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','hr_HR','Zamolba za recenziju Älanka','PoÅ¡tovana/i {$reviewerName},<br />\n<br />\ns obzirom na vaÅ¡e iskustvo i podruÄje ekspertize, rado bismo vam povjerili zadatak recenzije Älanka \"{$submissionTitle}\" prijavljenog u naÅ¡ Äasopis {$contextName}. SaÅ¾etak Älanka nalazi se u nastavku ove poruke. Nadamo se da Ä‡ete prihvatiti naÅ¡u ponudu te izvrÅ¡iti ovu, za nas iznimno vaÅ¾nu, zadaÄ‡u.<br />\n<br />\nMolimo vas da se kao korisnik prijavite na mreÅ¾nu stranicu Äasopisa do {$responseDueDate} kako biste naznaÄili hoÄ‡ete li preuzeti recenziju ili ne. Potom, ukoliko prihvatite izradu recenzije, na istome mjestu moÅ¾ete pristupiti tekstu Älanka te zabiljeÅ¾ili vaÅ¡u recenziju i preporuku.<br />\n<br />\nSama recenzija trebala bi biti zavrÅ¡ena zakljuÄno s {$reviewDueDate}.<br />\n<br />\nDo priloga moÅ¾ete doÄ‡i izravno prateÄ‡i ovu kodiranu pozivnicu: {$submissionReviewUrl}<br />\n<br />\nSrdaÄno,<br />\n{$editorialContactSignature}<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ovim obrascem e-poÅ¡te urednik rubrike Å¡alje upit recenzentu moÅ¾e li prihvatiti ili je prisiljen odbiti zadatak recenziranja Älanka. Zamolba sadrÅ¾i osnovne informacije u vidu naslova i kratkog sadrÅ¾aja Älanka, datum do kojeg bi recenzija trebala biti napisana te naÄina na koji  recenzent moÅ¾e pristupiti Älanku. Ova poruka se koristi kada je odabran standardni recenzijski postupak u 2. koraku Postavljanja Äasopisa, a recenzentu je omoguÄ‡en pristup jednim klikom.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','id_ID','Permintaan Review Artikel','{$reviewerName}:<br />\n<br />\nSaya yakin Anda akan berperan sebagai Reviewer handal manuskrip, \"{$submissionTitle},\" yang telah diserahkan ke {$contextName}. Abstrak naskah disertakan di bawah ini, dan saya harap Anda akan mempertimbangkan untuk mengambil tugas penting ini untuk kami.<br />\n<br />\nLogin ke web site jurnal sebelum tanggal {$responseDueDate} untuk menunjukkan apakah Anda akan mengambil review atau tidak, serta untuk mengakses naskah dan mencatat review dan rekomendasi Anda.<br />\n<br />\nReview jatuh tempo sebelum tanggal {$reviewDueDate}.<br />\n<br />\nURL Penyerahan: {$submissionReviewUrl}<br />\n<br />\nTerima kasih untuk mempertimbangkan permintaan ini.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Email ini dari Editor Bagian untuk Reviewer yang meminta Reviewer untuk menerima atau menolak tugas mereview naskah. Email ini memberikan informasi tentang naskah seperti judul dan abstrak, tanggal jatuh tempo tijauan, dan bagaimana mengakses naskah itu sendiri. Pesan ini digunakan saat proses review standar dipilih di Setup Jurnal, Langkah 2 dan akses Reviewer satu kali klik dapat digunakan. '),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','it_IT','Richiesta di revisione della proposta','Gentile {$reviewerName}:<br />\n<br />\nTi propongo la revisione del manoscritto \"{$submissionTitle},\" che Ã¨ stato inviato a {$contextName}. L\'abstract della proposta Ã¨ piÃ¹ sotto. Spero che vorrai prendere in carico questo compito.<br />\n<br />\nTi chiedo quindi di effettuare il log in al sito web della rivista entro il {$responseDueDate} per indicare se prenderai in carico la revisione o meno. Potrai poi accedere alla submission e inviare il tuo parere.<br />\n<br />\nLa data di scadenza per la revisione Ã¨ fissata al {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nGrazie per la tua collaborazione<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nAbstract<br />\n{$submissionAbstract}','Questa email dal section editor al revisore richiede che quest\'ultimo accetti o rifiuti il compito di revisionare una submission. Fornisce informazioni sulla submission quali il titolo e l\'abstract, una data attesa per la revisione, e su come accedere alla submission stessa. Questo messaggio Ã¨ usato quando il processo Standard di revisione Ã¨ selezionato nel Journal Setup, fase 2, e il accesso one-click del revisore Ã¨ attivato.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','ja_JP','è«–æ–‡æŸ»èª­ã®ãŠé¡˜ã„','{$reviewerName} æ®¿:<br />\n<br />\né›‘èªŒã€Ž{$contextName}ã€ã¸ã®æŠ•ç¨¿åŽŸç¨¿ã€Œ{$submissionTitle}ã€ã®æŸ»èª­ã‚’ãŠé¡˜ã„ã„ãŸã—ãŸããƒ¡ãƒ¼ãƒ«ã‚’å·®ã—ä¸Šã’ã¾ã—ãŸã€‚æŠ•ç¨¿ç‰©ã®è¦æ—¨ã‚’ä»¥ä¸‹ã«æ·»ä»˜ã—ã¾ã—ãŸã€‚è²´æ®¿ãŒã“ã®é‡è¦ãªä»•äº‹ã‚’å¼•ãå—ã‘ã¦ãã ã•ã‚‹ã“ã¨ã‚’å¸Œæœ›ã„ãŸã—ã¦ãŠã‚Šã¾ã™ã€‚<br />\n<br />\n{$responseDueDate}ã¾ã§ã«ã€é›‘èªŒã®Webã‚µã‚¤ãƒˆã«ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ã€æŸ»èª­ã‚’å¼•ãå—ã‘ã¦ã„ãŸã ã‘ã‚‹ã‹ã©ã†ã‹ã‚’ç¤ºã—ã¦ã„ãŸã ã‘ã‚‹ã‚ˆã†ãŠé¡˜ã„ã„ãŸã—ã¾ã™ã€‚å¼•ãå—ã‘ã¦ã„ãŸã ã‘ã‚‹å ´åˆã¯ã€ã“ã®ã‚µã‚¤ãƒˆã§æŠ•ç¨¿ç‰©ã«ã‚¢ã‚¯ã‚»ã‚¹ã—ã€æŸ»èª­çµæžœã¨ç­”ç”³ã‚’è¨˜éŒ²ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚é›‘èªŒã®Webã‚µã‚¤ãƒˆã®URLã¯ã€{$contextUrl} ã§ã™ã€‚<br />\n<br />\næŸ»èª­ä½œæ¥­è‡ªä½“ã®æœŸé™æ—¥ã¯ã€{$reviewDueDate}ã§ã™ã€‚<br />\n<br />\næŠ•ç¨¿ç‰©ã®URL: {$submissionReviewUrl}<br />\n<br />\nã‚ˆã‚ã—ãã”æ¤œè¨Žãã ã•ã‚‹ã‚ˆã†ã€ãŠé¡˜ã„ã„ãŸã—ã¾ã™ã€‚<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nã€Œ{$submissionTitle}ã€<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ã€ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã‚¨ãƒ‡ã‚£ã‚¿ã‹ã‚‰æŸ»èª­è€…ã«æŠ•ç¨¿ç‰©ã®æŸ»èª­ã‚’ä¾é ¼ã™ã‚‹ã‚‚ã®ã§ã™ã€‚ãƒ¡ãƒ¼ãƒ«ã«ã¯ã€ã‚¿ã‚¤ãƒˆãƒ«ã‚„è¦æ—¨ãªã©ã®æŠ•ç¨¿ç‰©ã«é–¢ã™ã‚‹æƒ…å ±ã€æŸ»èª­æœŸé™æ—¥ã€æŠ•ç¨¿ç‰©ã¸ã®ã‚¢ã‚¯ã‚»ã‚¹æ–¹æ³•ã‚’ç¤ºã—ã¦ã„ã¾ã™ã€‚ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯ã€é›‘èªŒè¨­å®šã®ã‚¹ãƒ†ãƒƒãƒ—2ã§æ¨™æº–çš„æŸ»èª­ãƒ—ãƒ­ã‚»ã‚¹ãŒé¸æŠžã•ã‚Œã€ãƒ¯ãƒ³ã‚¯ãƒªãƒƒã‚¯æŸ»èª­è€…ã‚¢ã‚¯ã‚»ã‚¹ãŒæœ‰åŠ¹ãªå ´åˆã«ä½¿ç”¨ã•ã‚Œã¾ã™ã€‚'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','mk_MK','ÐŸÑ€ÐµÐ³Ð»ÐµÐ´ Ð½Ð° ÑÑ‚Ð°Ñ‚Ð¸Ñ˜Ð°','{$reviewerName}:<br />\n<br />\nÐ’ÐµÑ€ÑƒÐ²Ð°Ð¼Ðµ Ð´ÐµÐºÐ° Ð’Ð¸Ðµ ÑœÐµ Ð±Ð¸Ð´ÐµÑ‚Ðµ Ð¾Ð´Ð»Ð¸Ñ‡ÐµÐ½ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚ Ð½Ð° Ñ€Ð°ÐºÐ¾Ð¿Ð¸ÑÐ¾Ñ‚ \"{$submissionTitle},\" ÐºÐ¾Ñ˜ Ðµ Ð´Ð¾ÑÑ‚Ð°Ð²ÐµÐ½ Ð´Ð¾ {$contextName}. ÐŸÐ¾Ð´Ð½ÐµÑÑƒÐ²Ð°ÑšÐµÑ‚Ð¾ Ð½Ð° Ð°Ð¿ÑÑ‚Ñ€Ð°ÐºÑ‚Ð¸ ÑÐµ Ð½Ð°Ð¾Ñ“Ð° Ð¿Ð¾Ð´Ð¾Ð»Ñƒ,ÑÐµ Ð½Ð°Ð´ÐµÐ²Ð°Ð¼ Ð´ÐµÐºÐ° Ð¿Ñ€ÐµÐ²Ð·ÐµÐ¼Ð°ÑšÐµÑ‚Ð¾ Ð½Ð° Ð¾Ð²Ð°Ð° Ð·Ð°Ð´Ð°Ñ‡Ð° ÑœÐµ Ð±Ð¸Ð´Ðµ Ð²Ð°Ð¶Ð½Ð° Ð·Ð° Ð’Ð°Ñ.<br />\n<br />\nÐ’Ðµ Ð¼Ð¾Ð»Ð¸Ð¼Ðµ Ð½Ð°Ñ˜Ð°Ð²ÐµÑ‚Ðµ ÑÐµ Ð½Ð° Ð²ÐµÐ±-ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ð°Ñ‚Ð° Ð½Ð° ÑÐ¿Ð¸ÑÐ°Ð½Ð¸ÐµÑ‚Ð¾ ÑÐ¾ {$responseDueDate} Ð·Ð° Ð´Ð° ÑÐµ Ð¿Ð¾ÐºÐ°Ð¶Ðµ Ð’Ð°ÑˆÐ°Ñ‚Ð° Ð½Ð°Ñ€ÐµÐ´Ð½Ð° Ð¿Ð¾ÑÑ‚Ð°Ð¿ÐºÐ° Ð½Ð° Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´ Ð¸ Ð·Ð°Ñ‡ÑƒÐ²ÑƒÐ²Ð°ÑšÐµ.<br />\n<br />\nÐŸÑ€ÐµÐ³Ð»ÐµÐ´Ð¾Ñ‚ ÑÐµ Ð´Ð¾Ð»Ð¶Ð¸ Ð½Ð° {$reviewDueDate}.<br />\n<br />\nÐŸÐ¾Ð´Ð½ÐµÑÑƒÐ²Ð°ÑšÐµ Ð½Ð° URL: {$submissionReviewUrl}<br />\n<br />\nÐ’Ð¸ Ð±Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€Ð¸Ð¼Ðµ Ð·Ð° Ñ€Ð°Ð·Ð³Ð»ÐµÐ´ÑƒÐ²Ð°ÑšÐµÑ‚Ð¾ Ð½Ð° Ð¾Ð²Ð° Ð±Ð°Ñ€Ð°ÑšÐµ.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','ÐžÐ²Ð°Ð° Ð¿Ð¾Ñ€Ð°ÐºÐ° Ðµ Ð¸ÑÐ¿Ñ€Ð°Ñ‚ÐµÐ½Ð° Ð¾Ð´ ÑƒÑ€ÐµÐ´ÑƒÐ²Ð°Ñ‡ÐºÐ¸Ð¾Ñ‚ ÑÐµÐºÑ‚Ð¾Ñ€, ÐºÐ°Ð´Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ñ‚ Ñ˜Ð° Ð¿Ñ€Ð¸Ñ„Ð°ÑœÐ° Ð¸Ð»Ð¸ Ð¾Ð´Ð±Ð¸Ð²Ð° Ð·Ð°Ð´Ð°Ñ‡Ð°Ñ‚Ð° ÐºÐ¾Ñ˜Ð° Ðµ Ð¿Ñ€Ð°Ñ‚ÐµÐ½Ð° Ð·Ð° Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´. Ð¢Ð°Ð° Ð¾Ð±ÐµÐ·Ð±ÐµÐ´ÑƒÐ²Ð° Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ð¸ Ð·Ð° Ð¿Ð¾Ð´Ð½ÐµÑÑƒÐ²Ð°ÑšÐµ, ÐºÐ°ÐºÐ¾ Ð½Ð° Ð¿Ñ€Ð¸Ð¼ÐµÑ€ Ð½Ð°ÑÐ»Ð¾Ð²Ð¾Ñ‚ Ð¸ Ð°Ð¿ÑÑ‚Ñ€Ð°ÐºÑ‚Ð¸Ñ‚Ðµ, Ñ€Ð¾Ðº Ð·Ð° Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´... ÐžÐ²Ð°Ð° Ð¿Ð¾Ñ€Ð°ÐºÐ° ÑÐµ ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¸ ÐºÐ¾Ð³Ð° ÑÐ¿Ð¸ÑÐ°Ð½Ð¸ÐµÑ‚Ð¾ Ðµ Ð¾Ð´Ð¾Ð±Ñ€ÐµÐ½Ð¾ Ð¾Ð´ Ñ‡ÐµÐºÐ¾Ñ€. 2 '),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','ml_IN','Article Review Request','{$reviewerName}:<br />\n<br />\nI believe that you would serve as an excellent reviewer of the manuscript, \"{$submissionTitle},\" which has been submitted to {$contextName}. The submission\'s abstract is inserted below, and I hope that you will consider undertaking this important task for us.<br />\n<br />\nPlease log into the journal web site by {$responseDueDate} to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','This email from the Section Editor to a Reviewer requests that the reviewer accept or decline the task of reviewing a submission. It provides information about the submission such as the title and abstract, a review due date, and how to access the submission itself. This message is used when the Standard Review Process is selected in Journal Setup, Step 2, and one-click reviewer access is enabled.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','nl_NL','Artikel review verzoek','{$reviewerName}:<br />\n<br />\nIk geloof dat u een excellente reviewer zou zijn voor het manuscript \"{$submissionTitle}\" dat is ingestuurd bij {$contextName}. De samenvatting van de inzending staat hieronder. Ik hoop dat u wilt overwegen deze belangrijke taak voor ons uit te voeren.<br />\n<br />\nWilt u voor {$responseDueDate} inloggen op de website van het tijdschrift om aan te geven of u de review al of niet doet. Daar kunt u ook de inzending vinden en uw review en aanbeveling vastleggen.<br />\n<br />\nHet review wordt verwacht op {$reviewDueDate}.<br />\n<br />\nURL inzending: {$submissionReviewUrl}<br />\n<br />\nDank u voor het overwegen van dit verzoek.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Deze e-mail van de sectieredacteur aan een reviewer vraagt aan de reviewer een review te accepteren of te weigeren. Er wordt informatie meegestuurd over de inzending zoals de titel en de samenvatting, de datum waarop de review gereed moet zijn en instructies voor het benaderen van de inzending. Dit bericht word gebruikt wanneer het standaard reviewproces is geselecteerd in stap 2 van het inrichten van het tijdschrift en de een-klik toegang voor de reviewer is ingeschakeld.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','nb_NO','ForespÃ¸rsel om fagfellevurdering','{$reviewerName}:<br />\n<br />\nVÃ¥rt tidsskrift {$contextName} har fÃ¥tt tilsendt manuskriptet \"{$submissionTitle}\". Vi hÃ¥per du er villig til Ã¥ gi en fagfellevurdering av dette manuskriptet, fordi vi mener dette kan passe med din vurderingskompetanse. Sammendraget som var vedlagt manuskriptet er skrevet inn nedenfor, og jeg hÃ¥per du vil pÃ¥ta deg dette viktige oppdraget for oss.<br />\n<br />\nVennligst logg inn pÃ¥ tidsskriftets nettsted innen {$responseDueDate}, for Ã¥ bekrefte om du vil pÃ¥ta deg dette vurderingsoppdraget for oss eller ikke. Hvis du pÃ¥tar deg oppdraget skal du ogsÃ¥ bruke nettstedet for Ã¥ skrive inn vurderingen din, og for Ã¥ registrere den anbefalingen du gir oss.<br />\n<br />\nVi venter vurderingsoppdraget ferdigstilt innen {$reviewDueDate}.<br />\n<br />\nManuskriptets URL: {$submissionReviewUrl}<br />\n<br />\nTakk for at du har sagt deg villig til Ã¥ bidra til arbeidet vÃ¥rt.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','I denne e-posten ber SeksjonsredaktÃ¸ren en Fagkonsulent om Ã¥ akseptere eller avslÃ¥ oppdraget med Ã¥ fagfellevurdere et manuskript. E-posten gir informasjon om 1) manuskriptet (ogsÃ¥ tittel og sammendrag), 2) en ventet-ferdig dato for oppdraget, og 3) informasjon om pÃ¥logging og tilgang til manuskriptet. Denne e-posten brukes nÃ¥r Standard fagvurderingsprosess er valgt i Tidsskriftoppsett, Trinn 2., og ettklikks tilgang for fagkonsulenter er slÃ¥tt pÃ¥.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','pl_PL','ProÅ›ba o sporzÄ…dzenie recenzji artykuÅ‚u','Szanowny/a Panie/Pani {$reviewerName}:<br />\n<br />\nw naszej opinii jest Pan/Pani wÅ‚aÅ›ciwÄ… osobÄ… do sporzÄ…dzenia recenzji artykuÅ‚u \"{$submissionTitle}\", zgÅ‚oszonego do czasopisma {$contextName}. PoniÅ¼ej zamieszczamy abstrakt artykuÅ‚u. Mamy nadziejÄ™, Å¼e weÅºmie Pan/Pani pod uwagÄ™ realizacjÄ™ tak waÅ¼nego dla nas zadania.<br />\n<br />\nProsimy o zalogowanie siÄ™ na stronie czasopisma nie pÃ³Åºniej niÅ¼ {$responseDueDate} w celu przyjÄ™cia lub odrzucenia naszej proÅ›by. Po akceptacji otrzyma Pan/Pani dostÄ™p do zgÅ‚oszonego tekstu oraz moÅ¼liwoÅ›Ä‡ przesÅ‚ania swojej recenzji i rekomendacji. <br />\n<br />\nTermin przygotowania recenzji: {$reviewDueDate}<br />\n<br />\nWWW tekstu: {$submissionReviewUrl}<br />\n<br />\n<br />\nDziÄ™kujemy za rozwaÅ¼enie naszej propozycji,<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','WiadomoÅ›Ä‡ od redaktora dziaÅ‚u przesyÅ‚ana do recenzenta. Zawiera proÅ›bÄ™ o przygotowanie recenzji artykuÅ‚u, jego tytuÅ‚ i abstrakt. PrzesyÅ‚ane, jeÅ›li opcja one-click reviewer jest dostÄ™pna i jeÅ›li recenzent nie jest mistrzem IT :)))'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','pt_BR','A revista {$contextName} solicita avaliaÃ§Ã£o de artigo','{$reviewerName},<br />\n<br />\nAcredito que seu conhecimento serÃ¡ fundamental para realizar a avaliaÃ§Ã£o do manuscrito \"{$submissionTitle}\" submetido a {$contextName}. InformaÃ§Ãµes sobre a submissÃ£o encontram-se abaixo, e espero que considere assumir esta importante responsabilidade.<br />\n<br />\nAcesse o sistema atÃ© {$responseDueDate} para informar se estarÃ¡ disponÃ­vel ou nÃ£o para realizar a avaliaÃ§Ã£o, bem como acessar os dados completos da submissÃ£o e registrar sua avaliaÃ§Ã£o e recomendaÃ§Ãµes.<br />\n<br />\nO prazo para a entrega da avaliaÃ§Ã£o Ã© {$reviewDueDate}.<br />\n<br />\nURL da SubmissÃ£o: {$submissionReviewUrl}<br />\nA URL da submissÃ£o permite acesso direto, sem a necessidade de informar login e senha, que serÃ£o necessÃ¡rios para acessar outras Ã¡reas.<br />\n<br />\nAgradecendo desde jÃ¡ a atenÃ§Ã£o dispensada,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n----------------------------------------------------<br />\nDados da submissÃ£o<br />\n<br />\nTÃ­tulo:<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n<br />\nResumo:<br />\n{$submissionAbstract}','Mensagem do Editor de SeÃ§Ã£o para solicitar ao Avaliador que indique disponibilidade ou nÃ£o para realizar uma avaliaÃ§Ã£o. Oferece informaÃ§Ãµes sobre a submissÃ£o, como tÃ­tulo e resumo, alÃ©m da data para a conclusÃ£o dos trabalhos e como acessar o documento. Esta mensagem Ã© usada quando se utiliza o Processo PadrÃ£o de AvaliaÃ§Ã£o, definido no Passo 2 de ConfiguraÃ§Ã£o da Revista e a opÃ§Ã£o de acesso one-click estÃ¡ habilitada (Caso contrÃ¡rio veja REVIEW_REQ_MULTI_ATTACHED e REVIEW_REQUEST_REMIND_AUTO_ATTACHED).'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','pt_PT','Pedido de revisÃ£o de artigo','{$reviewerName}:<br />\n<br />\nAcreditamos que o seu conhecimento serÃ¡ fundamental para realizar a revisÃ£o do manuscrito \"{$submissionTitle}\" submetido Ã  {$contextName}. InformaÃ§Ãµes sobre a submissÃ£o encontram-se abaixo, e espero que considere assumir esta importante responsabilidade.<br />\n<br />\nAceda ao sistema atÃ© {$responseDueDate} para confirmar a sua disponibilidade ou nÃ£o para realizar a revisÃ£o, bem como aceder aos dados completos da submissÃ£o e registar a sua revisÃ£o e recomendaÃ§Ãµes.<br />\n<br />\nO prazo para a entrega da revisÃ£o Ã© {$reviewDueDate}.<br />\n<br />\nURL da SubmissÃ£o: {$submissionReviewUrl}<br />\n<br />\nAgradecemos desde jÃ¡ a sua atenÃ§Ã£o.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n----------------------------------------------------<br />\nDados da submissÃ£o<br />\n<br />\nTÃ­tulo<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n<br />\nResumo<br />\n{$submissionAbstract}','Mensagem do Editor de SecÃ§Ã£o para solicitar ao Revisor que indique disponibilidade ou nÃ£o para realizar uma revisÃ£o. Fornece informaÃ§Ãµes sobre a submissÃ£o, como tÃ­tulo e resumo, alÃ©m da data para a conclusÃ£o dos trabalhos e como aceder ao documento. Esta mensagem Ã© usada quando se utiliza o Processo PadrÃ£o de RevisÃ£o, definido no Passo 2 de ConfiguraÃ§Ã£o da Revista e a opÃ§Ã£o de acesso one-click estÃ¡ activada (Caso contrÃ¡rio veja REVIEW_REQ_MULTI_ATTACHED e REVIEW_REQUEST_REMIND_AUTO_ATTACHED).'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','ro_RO','Solicitare pentru evaluarea articolului','{$reviewerName}:<br />\n<br />\nSuntem Ã®ncredinÈ›aÈ›i cÄƒ aÈ›i putea face evaluarea acestui manuscris intitulat \"{$submissionTitle},\" care a fost trimis revistei {$contextName}. Abstractul propunerii este introdus mai jos È™i sperÄƒm cÄƒ veÈ›i accepta aceastÄƒ misiune importantÄƒ.<br />\n<br />\nVÄƒ rugÄƒm sÄƒ vÄƒ autentificaÈ›i pe siteul revistei prin {$responseDueDate} pentru a indica dacÄƒ veÈ›i face evaluarea sau nu. De asemenea, veÈ›i putea accesa propunerea È™i veÈ›i putea Ã®nregistra evaluarea precum È™i recomandÄƒrile.<br />\n<br />\nEvaluarea va trebui fÄƒcutÄƒ pÃ¢nÄƒ la data de {$reviewDueDate}.<br />\n<br />\nURL-ul propunerii: {$submissionReviewUrl}<br />\n<br />\nVÄƒ mulÈ›umim pentru cÄƒ luaÈ›i Ã®n considerare aceastÄƒ solicitare.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Acest email este trimis de cÄƒtre un redactor de secÈ›iune ca rÄƒspuns la solicitarea fÄƒcutÄƒ unui evaluator de a accepta sau refuza misiunea de a evalua o propunere. Sunt incluse informaÈ›ii despre propunere precum titlul È™i abstractul, data limitÄƒ pentru evaluare È™i cum poate fi accesat materialul Ã®n sine. Acest mesaj este trimis atunci cÃ¢nd este selectat procesul standard de evaluare din setÄƒrile revistei la pasul 2 fiind oferit evaluatorului accesul printr-un singur clic.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','ru_RU','Ð—Ð°Ð¿Ñ€Ð¾Ñ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ðµ ÑÑ‚Ð°Ñ‚ÑŒÐ¸','{$reviewerName}!<br />\n<br />\nÐ¯ Ð¿Ð¾Ð»Ð°Ð³Ð°ÑŽ, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð¼Ð¾Ð³Ð»Ð¸ Ð±Ñ‹ Ð±Ñ‹Ñ‚ÑŒ Ð¿Ñ€ÐµÐºÑ€Ð°ÑÐ½Ñ‹Ð¼ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ð¼ Ð´Ð»Ñ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÐ¸ ÑÑ‚Ð°Ñ‚ÑŒÐ¸ Â«{$submissionTitle}Â», ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð±Ñ‹Ð»Ð° Ð½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð° Ð² Ð¶ÑƒÑ€Ð½Ð°Ð» Â«{$contextName}Â». ÐÐ½Ð½Ð¾Ñ‚Ð°Ñ†Ð¸Ñ ÑÑ‚Ð°Ñ‚ÑŒÐ¸ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½Ð° Ð½Ð¸Ð¶Ðµ, Ð¸ Ñ Ð½Ð°Ð´ÐµÑŽÑÑŒ, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð²Ð¾Ð·ÑŒÐ¼ÐµÑ‚ÐµÑÑŒ Ð²Ñ‹Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÑŒ ÑÑ‚Ñƒ Ð²Ð°Ð¶Ð½ÑƒÑŽ Ð·Ð°Ð´Ð°Ñ‡Ñƒ Ð´Ð»Ñ Ð½Ð°Ñ.<br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, Ð²Ð¾Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð´Ð¾ {$responseDueDate}, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÐµ ÑÐ¾Ð³Ð»Ð°ÑÐ¸Ðµ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ðµ ÑÑ‚Ð¾Ð¹ ÑÑ‚Ð°Ñ‚ÑŒÐ¸ Ð¸Ð»Ð¸ Ð¾Ñ‚ÐºÐ°Ð·Ð°Ñ‚ÑŒÑÑ Ð¾Ñ‚ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ, Ð° Ñ‚Ð°ÐºÐ¶Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ðº Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÐ¸ Ð¸ Ð¾ÑÑ‚Ð°Ð²Ð¸Ñ‚ÑŒ ÑÐ²Ð¾ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð¸ Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ð¸ÑŽ.<br />\n<br />\nÐ¡Ð°Ð¼Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ Ð´Ð¾Ð»Ð¶Ð½Ð° Ð±Ñ‹Ñ‚ÑŒ Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð° Ð´Ð¾ {$reviewDueDate}.<br />\n<br />\nÐÐ´Ñ€ÐµÑ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÐ¸: {$submissionReviewUrl}<br />\n<br />\nÐ—Ð°Ñ€Ð°Ð½ÐµÐµ Ð±Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€ÑŽ Ð’Ð°Ñ,<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð° Ñ€Ð°Ð·Ð´ÐµÐ»Ð°, Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÐ¼Ð¾Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ñƒ, Ñ Ð·Ð°Ð¿Ñ€Ð¾ÑÐ¾Ð¼ ÑÐ¾Ð³Ð»Ð°ÑÐ¸Ñ Ð¸Ð»Ð¸ Ð¾Ñ‚ÐºÐ°Ð·Ð° Ð¾Ñ‚ Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÑÑ‚Ð°Ñ‚ÑŒÐ¸. Ð’ Ð¿Ð¸ÑÑŒÐ¼Ðµ Ð¿Ñ€Ð¸Ð²Ð¾Ð´Ð¸Ñ‚ÑÑ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ ÑÑ‚Ð°Ñ‚ÑŒÐµ, Ñ‚Ð°ÐºÐ°Ñ ÐºÐ°Ðº Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ðµ Ð¸ Ð°Ð½Ð½Ð¾Ñ‚Ð°Ñ†Ð¸Ñ, ÑÑ€Ð¾Ðº Ð²Ñ‹Ð¿Ð¾Ð»Ð½ÐµÐ½Ð¸Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð¸ ÐºÐ°Ðº Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ðº ÑÐ°Ð¼Ð¾Ð¹ ÑÑ‚Ð°Ñ‚ÑŒÐµ. Ð­Ñ‚Ð¾ ÑÐ¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ðµ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ, ÐµÑÐ»Ð¸ Ð²Ñ‹Ð±Ñ€Ð°Ð½ ÑÑ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ñ‹Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑÑ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð½Ð° ÑˆÐ°Ð³Ðµ 2 Ð¿Ñ€Ð¾Ñ†ÐµÑÑÐ° Ð½Ð°ÑÑ‚Ñ€Ð¾Ð¹ÐºÐ¸ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¸ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½ Ð¿Ñ€ÑÐ¼Ð¾Ð¹ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° Ð¿Ð¾ ÑÑÑ‹Ð»ÐºÐµ.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','sv_SE','BegÃ¤ran om sakkunigbedÃ¶mning','<br />\n				{$reviewerName}:<br />\n<br />\n				VÃ¥r tidskrift {$contextName} har fÃ¥tt manuskriptet \"{$submissionTitle},\" tillskickat oss. UtifrÃ¥n dina Ã¤mneskunskaper tror vi att du skulle sakkunnigbedÃ¶ma manuskriptet pÃ¥ ett ypperligt sÃ¤tt. Manuskriptets sammanfattning Ã¤r bifogat nedan, och vi hoppas att du har mÃ¶jlighet att genomfÃ¶ra detta viktiga arbete.<br />\n<br />\n				VÃ¤nligen logga in i tidskriften senast {$responseDueDate} fÃ¶r att meddela om du avser granska manuskriptet eller inte. VÃ¤l inloggad kan du Ã¤ven lÃ¤sa manuskriptet, avge bedÃ¶mning samt lÃ¤mna kommnetarer och rekommendationer.<br />\n<br />\n				BedÃ¶mningen ska vara genomfÃ¶rd innan {$reviewDueDate}.<br />\n<br />\n				Manuskriptets URL: {$submissionReviewUrl}<br />\n<br />\n				Tack fÃ¶r din tid.<br />\n<br />\n				{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n				\"{$submissionTitle}\"<br />\n<br />\n				{$abstractTermIfEnabled}<br />\n				{$submissionAbstract}','Det hÃ¤r meddelandet frÃ¥n SektionsredaktÃ¶ren till SakkunnigbedÃ¶mare innehÃ¥ller begÃ¤ran om att mottagaren ska acceptera eller avbÃ¶ja att granska ett manuskript. Meddelandet innehÃ¥ller information om manuskriptet, titel och sammanfattning, ett sista-datum fÃ¶r bedÃ¶mning och inloggningsinformation. Meddelandet anvÃ¤nds nÃ¤r StandardbedÃ¶mningsprocessen Ã¤r vald i TidskriftsinstÃ¤llningar, Steg 2, och med one-click bedÃ¶mning Ã¤r aktiverad.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','tr_TR','Makale DeÄŸerlendirme Ä°steÄŸi','SayÄ±n {$reviewerName},<br />\n<br />\n{$contextName} iÃ§in yayÄ±nlanmak Ã¼zere gÃ¶nderilen \"{$submissionTitle}\" baÅŸlÄ±klÄ± makaleyi deÄŸerlendiremek iÃ§in en uygun hakemlerden birisi olarak, yazÄ± hakkÄ±ndaki deÄŸerli gÃ¶rÃ¼ÅŸlerinizi bize ileteceÄŸinizi umuyoruz. BaÅŸvurunun Ã¶nemli Ã¶zellikleri aÅŸaÄŸÄ±da iletilmiÅŸtir. Dergimiz iÃ§in Ã§ok deÄŸerli olan gÃ¶rÃ¼ÅŸlerinizden bizi mahrum etmeyeceÄŸinizi umuyoruz.<br />\n<br />\nDergimiz web sitesine girerek, {$responseDueDate} sÃ¼resinde gÃ¶zden geÃ§irme isteÄŸimizi kabul ettiÄŸinizi bildiriniz. Ä°lgili sayfadan yazÄ±nÄ±n tam metnine ulaÅŸabileceksiniz.<br />\n<br />\nDeÄŸerlendirme raporunuz iÃ§in son tarih {$reviewDueDate}.<br />\n<br />\nBaÅŸvuruya ulaÅŸÄ±m iÃ§in adres: {$submissionReviewUrl}<br />\n<br />\nÄ°steÄŸimize olumlu yaklaÅŸÄ±mÄ±nÄ±z iÃ§in ÅŸimdiden teÅŸekkÃ¼r ederiz.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\nÃ–zet<br />\n{$submissionAbstract}','YazÄ±nÄ±n hakemlere Ã¶nerilmesi iÃ§in kullanÄ±lan mesajdÄ±r. Ayarlarda \"tek tÄ±klama Ã¶zelliÄŸi\" etkinleÅŸtirildi ise kullanÄ±lÄ±r..'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','uk_UA','Ð—Ð°Ð¿Ð¸Ñ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ ÑÑ‚Ð°Ñ‚Ñ‚Ñ–','{$reviewerName}:<br />\n<br />\nÐ¯ Ð²Ñ–Ñ€ÑŽ, Ñ‰Ð¾ Ð’Ð¸ Ð¼Ð¾Ð³Ð»Ð¸ Ð± ÑÑ‚Ð°Ñ‚Ð¸ Ð¿Ñ€ÐµÐºÑ€Ð°ÑÐ½Ð¸Ð¼ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ð¼ Ð´Ð»Ñ Ñ€ÑƒÐºÐ¾Ð¿Ð¸ÑÑƒ \"{$submissionTitle}\", Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð½Ð¾Ð³Ð¾ Ð´Ð¾ Ð²Ð¸Ð´Ð°Ð½Ð½Ñ \"{$contextName}\". ÐÐ¸Ð¶Ñ‡Ðµ Ð¿Ð¾Ð´Ð°Ð½Ð° Ð°Ð½Ð¾Ñ‚Ð°Ñ†Ñ–Ñ Ñ†Ñ–Ñ”Ñ— Ð¿Ñ€Ð°Ñ†Ñ–, Ñ–, Ñ…Ð¾Ñ‡Ñƒ ÑÐ¿Ð¾Ð´Ñ–Ð²Ð°Ñ‚Ð¸ÑÑŒ, Ð’Ð¸ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÐµÑ‚Ðµ Ð¼Ð¾Ð¶Ð»Ð¸Ð²Ñ–ÑÑ‚ÑŒ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ†Ñ–Ñ”Ñ— Ð²Ð°Ð¶Ð»Ð¸Ð²Ð¾Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ Ð´Ð»Ñ Ð½Ð°Ñ.<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð´Ð¾ {$responseDueDate} Ð·Ð°Ð¹Ð´Ñ–Ñ‚ÑŒ Ð½Ð° ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ, Ñ‰Ð¾Ð± Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð¸Ñ‚Ð¸, Ñ‡Ð¸ Ð²Ñ–Ð·ÑŒÐ¼ÐµÑ‚ÐµÑÑ Ð’Ð¸ Ð·Ð° Ñ†ÑŽ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ, Ð° Ñ‚Ð°ÐºÐ¾Ð¶ Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, Ñ‰Ð¾Ð± Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ, Ð·Ð°Ð¿Ð¸ÑÐ°Ñ‚Ð¸ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ñ‚Ð° Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–ÑŽ.<br />\n<br />\nÐœÐ¸ Ñ…Ð¾Ñ‚Ñ–Ð»Ð¸ Ð± Ð¼Ð°Ñ‚Ð¸ Ð³Ð¾Ñ‚Ð¾Ð²Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–ÑŽ Ð´Ð¾ {$reviewDueDate}.<br />\n<br />\nURL Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ: {$submissionReviewUrl}<br />\n<br />\nÐ”ÑÐºÑƒÑŽ, Ñ‰Ð¾ Ñ€Ð¾Ð·Ð³Ð»ÑÐ½ÑƒÐ»Ð¸ Ñ†ÐµÐ¹ Ð·Ð°Ð¿Ð¸Ñ‚.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Ð¦Ð¸Ð¼ Ð»Ð¸ÑÑ‚Ð¾Ð¼ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñƒ Ð¿Ñ€Ð¾ÑÐ¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° Ð²Ð·ÑÑ‚Ð¸ÑÑ Ð·Ð° Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ñ–Ñ— Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ð²Ñ–Ð´Ð¼Ð¾Ð²Ð¸Ñ‚Ð¸ÑÑŒ Ð²Ñ–Ð´ Ñ†Ñ–Ñ”Ñ— Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸. Ð£ Ð»Ð¸ÑÑ‚Ñ– Ð¼Ñ–ÑÑ‚Ð¸Ñ‚ÑŒÑÑ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ (Ð½Ð°Ð·Ð²Ð° Ñ‚Ð° Ð°Ð½Ð¾Ñ‚Ð°Ñ†Ñ–Ñ), Ð¿Ñ€Ð¾ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¸Ð¹ Ñ‚ÐµÑ€Ð¼Ñ–Ð½ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° Ð¿Ñ€Ð¾ Ñ‚Ðµ, ÑÐº Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ñ‚Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿ Ð±ÐµÐ·Ð¿Ð¾ÑÐµÑ€ÐµÐ´Ð½ÑŒÐ¾ Ð´Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ. Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ, ÑÐºÑ‰Ð¾ Ð½Ð° ÐºÑ€Ð¾Ñ†Ñ– 2 ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ð¹ Ð¡Ñ‚Ð°Ð½Ð´Ð°Ñ€Ñ‚Ð½Ð¸Ð¹ Ð¿Ñ€Ð¾Ñ†ÐµÑ Ñ€ÐµÑ†ÐµÐ½Ð·ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð° Ð¾Ð¿Ñ†Ñ–Ñ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð° \"Ñ”Ð´Ð¸Ð½Ð¸Ð¼ Ð½Ð°Ñ‚Ð¸ÑÐºÐ°Ð½Ð½ÑÐ¼\".'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','vi_VN','Äá» nghá»‹ pháº£n biá»‡n bÃ i ná»™p','{$reviewerName}:<br />\n<br />\nTÃ´i tin ráº±ng quÃ½ vá»‹ sáº½ lÃ  ngÆ°á»i pháº£n biá»‡n xuáº¥t sáº¯c Ä‘á»‘i vá»›i báº£n tháº£o bÃ i viáº¿t, \"{$submissionTitle},\" ná»™p cho táº¡p chÃ­ {$contextName}. TÃ³m táº¯t cá»§a bÃ i ná»™p Ä‘Æ°á»£c kÃ¨m á»Ÿ cuá»‘i thÆ°, hy vá»ng ráº±ng quÃ½ vá»‹ sáº½ cÃ¢n nháº¯c nháº­n giÃºp cho cÃ´ng viá»‡c quan trá»ng nÃ y.<br />\n<br />\nXin vui lÃ²ng Ä‘Äƒng nháº­p vÃ o website trÆ°á»›c ngÃ y {$responseDueDate} Ä‘á»ƒ bÃ¡o cho BBT biáº¿t liá»‡u quÃ½ vá»‹ cÃ³ nháº­n lá»i pháº£n biá»‡n hay khÃ´ng, Ä‘á»“ng thá»i truy cáº­p vÃ o bÃ i ná»™p, ghi láº¡i lá»i pháº£n biá»‡n vÃ  Ä‘á» xuáº¥t. Äá»‹a chá»‰ cá»§a website lÃ  {$contextUrl}<br />\n<br />\nThá»i háº¡n pháº£n biá»‡n lÃ  {$reviewDueDate}.<br />\n<br />\nÄÆ°á»ng dáº«n (URL) bÃ i viáº¿t: {$submissionReviewUrl}<br />\n<br />\nCáº£m Æ¡n vÃ¬ Ä‘Ã£ xem xÃ©t Ä‘á» nghá»‹ nÃ y.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\n\"{$submissionTitle}\"<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','Email nÃ y Ä‘Æ°á»£c gá»­i tá»« BTV ChuyÃªn má»¥c tá»›i má»™t NgÆ°á»i pháº£n biá»‡n Ä‘á» nghá»‹ cho biáº¿t Ã½ kiáº¿n Ä‘á»“ng Ã½ hay tá»« chá»‘i pháº£n biá»‡n má»™t bÃ i ná»™p. NÃ³ cung cáº¥p thÃ´ng tin vá» bÃ i ná»™p nhÆ° tiÃªu Ä‘á» vÃ  tÃ³m táº¯t, thá»i háº¡n pháº£n biá»‡n vÃ  cÃ¡c truy cáº­p vÃ o bÃ i ná»™p. Email nÃ y Ä‘Æ°á»£c sá»­ dá»¥ng khi QuÃ¡ trÃ¬nh Pháº£n biá»‡n chuáº©n lá»±a chá»n khi Thiáº¿t láº­p Táº¡p chÃ­, BÆ°á»›c 2, vÃ  chá»©c nÄƒng truy cáº­p báº±ng má»™t nháº¥p chuá»™t dÃ nh cho ngÆ°á»i pháº£n biá»‡n Ä‘Æ°á»£c kÃ­ch hoáº¡t.'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','zh_CN','å®¡ç¨¿è¯·æ±‚','{$reviewerName}:<br />\n<br />\nã€Š{$contextName}ã€‹çš„ç¼–è¾‘å›¢é˜Ÿç›¸ä¿¡æ‚¨æ˜¯æŠ•ç¨¿åˆ°æœ¬æœŸåˆŠä¹‹ç¨¿ä»¶ã€ˆ{$submissionTitle}ã€‰çš„æœ€ä½³å®¡æŸ¥äººé€‰ã€‚è¯¥ä»½ç¨¿ä»¶çš„æ‘˜è¦å¦‚ä¸‹ï¼Œè€Œæˆ‘ä»¬å¸Œæœ›æ‚¨ä¼šè€ƒè™‘è¿›è¡Œè¿™é¡¹å¯¹æˆ‘ä»¬æ¥è¯´ç›¸å½“é‡è¦çš„å·¥ä½œã€‚<br />\n<br />\næ— è®ºæ‚¨æ˜¯å¦æŽ¥å—å®¡æŸ¥å·¥ä½œä¸Žå¦ï¼Œéƒ½è¯·åœ¨{$responseDueDate}ä¹‹å‰ç™»å…¥è¿™ä¸ªæœŸåˆŠç½‘ç«™ï¼ŒåŒæ—¶æ£€é˜…è¿™ä»½ç¨¿ä»¶å¹¶ä¸”è®°å½•æ‚¨çš„å®¡æŸ¥æ„è§å’Œç¼–è¾‘å»ºè®®ã€‚<br />\n<br />\nè¯·æ³¨æ„å®¡æŸ¥å·¥ä½œçš„æœŸé™ä¸ºï¼š{$reviewDueDate}ã€‚<br />\n<br />\nç¨¿ä»¶ç½‘å€ï¼š{$submissionReviewUrl}<br />\n<br />\néžå¸¸æ„Ÿè°¢æ‚¨è€ƒè™‘æˆ‘ä»¬çš„é‚€è¯·ã€‚<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nã€ˆ{$submissionTitle}ã€‰<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','è¿™å°ç”µå­é‚®ä»¶è¿™å°ç”µå­é‚®ä»¶æ˜¯ç”±åŒºæ®µç¼–è¾‘å¯„å‘ç»™å®¡æŸ¥äººä¸€ä»½é‚€è¯·å‡½ï¼Œè¯¢é—®å®¡æŸ¥äººæŽ¥å—æˆ–å©‰è°¢ä¸€ä»½ç¨¿ä»¶çš„å®¡æŸ¥å·¥ä½œã€‚é‚®ä»¶ä¸­å«æœ‰å…³äºŽç¨¿ä»¶æ ‡é¢˜å’Œæ‘˜è¦çš„ä¿¡æ¯ï¼Œä¸€ä¸ªå®¡æŸ¥å·¥ä½œåˆ°æœŸæ—¥ï¼Œä»¥åŠå¦‚ä½•è®¿é—®ç¨¿ä»¶çš„è¯´æ˜Žä¿¡æ¯ã€‚åœ¨ã€ŒæœŸåˆŠè®¾å®šã€ä¹‹æ­¥éª¤2ä¸­é€‰æ‹©ã€Œæ ‡å‡†å®¡æŸ¥æµç¨‹ã€é€‰é¡¹ï¼Œå¹¶ä¸”å¯ç”¨ã€Œå®¡æŸ¥äººä¸€ç‚¹å³å¾€ã€çš„åŠŸèƒ½ï¼Œæ‰ä¼šç”¨åˆ°è¿™ä»½æ¶ˆæ¯ã€‚'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','zh_TW','é‚€è«‹æ‚¨å¯©æŸ¥ç¨¿ä»¶','{$reviewerName}æ‚¨å¥½ï¼š<br />\n<br />\nã€Š{$contextName}ã€‹çš„ç·¨è¼¯åœ˜éšŠç›¸ä¿¡æ‚¨æ˜¯æŠ•ç¨¿åˆ°æœ¬æœŸåˆŠä¹‹ç¨¿ä»¶ã€ˆ{$submissionTitle}ã€‰çš„æœ€ä½³å¯©æŸ¥äººé¸ã€‚è©²ä»½ç¨¿ä»¶çš„æ‘˜è¦å¦‚ä¸‹ï¼Œè€Œæˆ‘å€‘å¸Œæœ›æ‚¨æœƒè€ƒæ…®é€²è¡Œé€™ä»½å°æˆ‘å€‘ä¾†èªªç›¸ç•¶é‡è¦çš„ä¸€å€‹å·¥ä½œã€‚<br />\n<br />\nç„¡è«–æ‚¨æ˜¯å¦æŽ¥å—å¯©æŸ¥å·¥ä½œèˆ‡å¦ï¼Œéƒ½è«‹åœ¨{$responseDueDate}ä¹‹å‰ç™»å…¥é€™å€‹æœŸåˆŠç¶²ç«™ï¼ŒåŒæ™‚æª¢é–±é€™ä»½ç¨¿ä»¶ä¸¦ä¸”è¨˜éŒ„æ‚¨çš„å¯©æŸ¥æ„è¦‹å’Œç·¨è¼¯å»ºè­°ã€‚ç¶²ç«™ç‚ºï¼š{$contextUrl}<br />\n<br />\nè«‹æ³¨æ„å¯©æŸ¥å·¥ä½œçš„æœŸé™ç‚ºï¼š{$reviewDueDate}ã€‚<br />\n<br />\nç¨¿ä»¶ç¶²å€ï¼š{$submissionReviewUrl}<br />\n<br />\néžå¸¸æ„Ÿè¬æ‚¨è€ƒæ…®æˆ‘å€‘çš„é‚€è«‹ã€‚<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\n<br />\nã€ˆ{$submissionTitle}ã€‰<br />\n<br />\n{$abstractTermIfEnabled}<br />\n{$submissionAbstract}','é€™å°é›»å­éƒµä»¶é€™å°é›»å­éƒµä»¶æ˜¯ç”±å€æ®µç·¨è¼¯å¯„ç™¼çµ¦å¯©æŸ¥äººä¸€ä»½é‚€è«‹å‡½ï¼Œè©¢å•å¯©æŸ¥äººæŽ¥å—æˆ–å©‰è¬ä¸€ä»½ç¨¿ä»¶çš„å¯©æŸ¥å·¥ä½œã€‚éƒµä»¶ä¸­å«æœ‰é—œæ–¼ç¨¿ä»¶æ¨™é¡Œå’Œæ‘˜è¦çš„è³‡è¨Šï¼Œä¸€å€‹å¯©æŸ¥å·¥ä½œåˆ°æœŸæ—¥ï¼Œä»¥åŠå¦‚ä½•å­˜å–ç¨¿ä»¶çš„èªªæ˜Žè³‡è¨Šã€‚åœ¨ã€ŒæœŸåˆŠè¨­å®šã€ä¹‹æ­¥é©Ÿ2ä¸­é¸æ“‡ã€Œæ¨™æº–å¯©æŸ¥æµç¨‹ã€é¸é …ï¼Œä¸¦ä¸”å•Ÿç”¨ã€Œå¯©æŸ¥äººä¸€é»žå³å¾€ã€çš„åŠŸèƒ½ï¼Œæ‰æœƒç”¨åˆ°é€™ä»½è¨Šæ¯ã€‚'),('OFR_REVIEW_REMINDER','ca_ES','Objecte per revisar: Recordatori de data de venciment','Benvolgut/da {$authorName}:<br />\n<br />\nAquest Ã©s un recordatori per l\'objecte de revisiÃ³ {$objectForReviewTitle} previst per la data {$objectForReviewDueDate}.<br />\n<br />\nPer a enviar el teu objecte de revisiÃ³, cal que entreu al lloc web de la revista i completeu el procÃ©s de tramesa de l\'article. Per a la vostre comoditat, et fem arribar la URL de la tramesa.<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, contacteu amb nosaltres si teniu alguna pregunta o dubte sobre aquest objecte de revisiÃ³.<br />\n<br />\nQuedem a l\'espera de la tramesa, molt agraÃ¯ts per la vostre contribuciÃ³ a la revista.<br />\n<br />\n{$editorialContactSignature}','Aquest Ã©s un correu electrÃ²nic generat automÃ ticament i enviat a l\'autor de l\'objecte de revisiÃ³ com a recordatori quan la data de venciment de la revisiÃ³ s\'apropa.'),('OFR_REVIEW_REMINDER_LATE','ca_ES','Objecte per revisar: Venciment de la data de revisiÃ³','Benvolgut/da {$authorName}:<br />\n<br />\nAquest Ã©s un recordatori per l\'objecte de revisiÃ³ {$objectForReviewTitle} previst per la data {$objectForReviewDueDate} perÃ² que encara no s\'ha rebut.<br />\n<br />\nPer a enviar el vostre objecte de revisiÃ³, cal que entreu al lloc web de la revista i completeu el procÃ©s de tramesa de l\'article. Per a la vostre comoditat, us fem arribar la URL de la tramesa.<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, contacteu amb nosaltres si teniu alguna pregunta o dubte sobre aquest objecte de revisiÃ³.<br />\n<br />\nQuedem a l\'espera de la tramesa, molt agraÃ¯ts per la vostre contribuciÃ³ a la revista.<br />\n<br />\n{$editorialContactSignature}','Aquest Ã©s un correu electrÃ²nic generat automÃ ticament i enviat a l\'autor de l\'objecte de revisiÃ³ com a recordatori quan la data de venciment s\'ha superat.'),('OFR_REVIEWER_REMOVED','ca_ES','Objecte per revisar','Benvolgut/da {$authorName}:<br />\n<br />\nAquest correu electrÃ²nic confirma que ja no sou revisor de {$objectForReviewTitle}.<br />\n<br />\nEsperem que considereu revisar altres objectes de la nostre llista, ja sigui ara o en un futur.<br />\n<br />\n{$editorialContactSignature}','Aquest correu l\'envia l\'editor als autors interessats quan l\'objecte ja no estÃ  disponible per ser revisat.'),('OFR_OBJECT_ASSIGNED','ca_ES','Objecte per revisar: Objecte assignat','Benvolgut/da {$authorName}:<br />\n<br />\nAquest correu confirma que se us ha assignat {$objectForReviewTitle} i que la revisiÃ³ s\'ha de completar abans de {$objectForReviewDueDate}.<br />\n<br />\nUs demanem que confirmeu que la vostre adreÃ§a de correu postal del vostre perfil estÃ  actualitzada.<br />\n<br />\nL\'adreÃ§a actual Ã©s:<br />\n{$authorMailingAddress}<br />\n<br />\nSi aquesta adreÃ§a fos incomplerta o ja no Ã©s correcte, visiteu el vostre perfil d\'usuari per actualitzar-la:<br />\n<br />\nEnllaÃ§ al perfil d\'usuari: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPer a enviar el vostre objecte de revisiÃ³, cal que entreu al lloc web de la revista i completeu el procÃ©s de tramesa de l\'article. Per a la vostre comoditat, us fem arribar l\'enllaÃ§ de la tramesa.<br />\n<br />\nEnllaÃ§: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, contacteu amb nosaltres si teniu alguna pregunta o dubte sobre aquest objecte de revisiÃ³.<br />\n<br />\nQuedem a l\'espera de la tramesa, molt agraÃ¯ts per la vostre contribuciÃ³ a la revista.<br />\n<br />\n{$editorialContactSignature}','Aquest correu l\'envia l\'editor a l\'autor de l\'objecte de revisiÃ³ quan l\'editor assigna l\'objecte a l\'autor.'),('OFR_OBJECT_DENIED','ca_ES','Objecte per revisar','Benvolgut/da {$authorName}:<br />\n<br />\nDesgraciadament, en aquests moments no us podem assignar {$objectForReviewTitle} com a objecte de revisiÃ³.<br />\n<br />\nEsperem que considereu revisar altres objectes de la nostre llista, ja sigui ara o en un futur.<br />\n<br />\n{$editorialContactSignature}','Aquest correu l\'envia l\'editor als autors interessats quan l\'objecte ja no estÃ  disponible per a ser revisat.'),('OFR_OBJECT_REQUESTED','ca_ES','Objecte per revisar: Objecte solÂ·licitat','Benvolgut/da {$editorName}:<br />\n<br />\nEstic interessat a escriure una revisiÃ³ de l\'objecte {$objectForReviewTitle}.<br />\n<br />\nPodrÃ­eu confirmar que l\'objecte encara estÃ  disponible per a ser revisat?<br />\n<br />\n{$authorContactSignature}','Aquest correu s\'envia a l\'editor per l\'autor interessat en escriure una revisiÃ³ d\'un objecte del llistat.'),('OFR_OBJECT_MAILED','ca_ES','Objecte per revisar: Objecte enviat','Benvolgut/da {$authorName}:<br />\n<br />\nAquest correu confirma que us hem enviat una copia de {$objectForReviewTitle} a la segÃ¼ent adreÃ§a de correu del teu perfil d\'usuari:<br />\n{$authorMailingAddress}<br />\n<br />\nPer a enviar la vostre revisiÃ³ d\'objecte, si us plau, entreu al lloc web de la revista i completeu el procÃ©s en lÃ­nia de tramesa d\'articles.<br />\n<br />\nEnllaÃ§ de tramesa: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, contacteu amb nosatres si teniu alguna pregunta o dubte sobre aquest objecte de revisiÃ³.<br />\n<br />\n{$editorialContactSignature}','Aquest correu l\'envia l\'editor als autors interessats quan l\'editor ha enviat per correu a l\'autor una copia de l\'objecte.'),('OFR_REVIEW_REMINDER','cs_CZ','Objekt k recenzi: PÅ™ipomenutÃ­ termÃ­nu','VÃ¡Å¾enÃ½ pane/vÃ¡Å¾enÃ¡ panÃ­ {$authorName}:<br />\n<br />\nRÃ¡di bychom vÃ¡m pÅ™ipomenuli, Å¾e recenze objektu {$objectForReviewTitle} by mÄ›la bÃ½t ukonÄena do {$objectForReviewDueDate}.<br />\n<br />\nK odevzdÃ¡nÃ­ recenze objektu, pÅ™ihlaste se, prosÃ­m na strÃ¡nkÃ¡ch Äasopisua ukonÄete proces odevzdÃ¡nÃ­ ÄlÃ¡nku. Pro usnadnÄ›nÃ­ najdete nÃ­Å¾e pÅ™Ã­mÃ½ odkaz na vÃ¡Å¡ pÅ™Ã­spÄ›vek<br />\n<br />\nURL pÅ™Ã­spÄ›vku: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPokud mÃ¡te jakÃ©koliv dotazy kolem recenze objektu, nevÃ¡hejte mne kontaktovat.<br />\n<br />\nDÄ›kujeme vÃ¡m za spoluprÃ¡ci a tÄ›Å¡Ã­me se na vÃ¡Å¡ pÅ™Ã­spÄ›vek.<br />\n<br />\n{$editorialContactSignature}','Toto je automaticky generovanÃ½ e-mail posÃ­lanÃ½ recenzentovi objektu v momentÄ›, kdy se blÃ­Å¾Ã­ datum odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku.'),('OFR_REVIEW_REMINDER_LATE','cs_CZ','Objekt k recenzi: Uplynula lhÅ¯ta','ZprÃ¡va pro recenzenta: {$authorName}:<br />\n<br />\nVÃ¡Å¾enÃ¡ panÃ­ kolegynÄ›/VÃ¡Å¾enÃ½ pane kolego,<br />\n<br />\ndovolujeme si VÃ¡m zdvoÅ™ile pÅ™ipomenout naÅ¡i Å¾Ã¡dost o zpracovÃ¡nÃ­ recenze  objektu \"{$objectForReviewTitle}\". Doufali jsme, Å¾e budeme mÃ­t tuto recenzi hotovou do {$objectForReviewDueDate} a tento email byl automaticky vygenerovÃ¡n a poslÃ¡n, jelikoÅ¾ stanovenÃ½ termÃ­n jiÅ¾ vyprÅ¡el. Budeme velice rÃ¡di, kdyÅ¾ od VÃ¡s recenzi dostaneme hned, jak ji budete moci dokonÄit.<br />\n<br />\nPro odevzdÃ¡nÃ­ recenze se, prosÃ­m pÅ™ihlaste na strÃ¡nkÃ¡ch Äasopisu, pro usnadnÄ›nÃ­ vyuÅ¾ijte, prosÃ­m nÃ¡sledujÃ­cÃ­ odkaz:<br />\n<br />\nURL pro odevzdÃ¡nÃ­ recenze: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPokud mÃ¡te jakÃ©koliv dotazy k odevzdÃ¡nÃ­ recenze, nevÃ¡hejte mne kontaktovat.<br />\n<br />\nDÄ›kujeme za vaÅ¡i spoluprÃ¡ci s naÅ¡Ã­m Äasopisem a tÄ›Å¡Ã­me se na vaÅ¡i recenzi.<br />\n<br />\n{$editorialContactSignature}','Tento email je automaticky zasÃ­lÃ¡n autorovi recenze po uplynutÃ­ termÃ­nu odevzdÃ¡nÃ­ recenze.'),('OFR_OBJECT_ASSIGNED','cs_CZ','Objekt pro recenzi: PÅ™idÄ›lenÃ­ objektu','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nTento email potvrzuje, Å¾e objekt {$objectForReviewTitle} vÃ¡m byl pÅ™idÄ›len k recenzi objektu, kterÃ¡ by mÄ›la bÃ½t dokonÄena do {$objectForReviewDueDate}.<br />\n<br />\nUjistÄ›te se, prosÃ­m, Å¾e e-mailovÃ¡ adresa ve vaÅ¡em profilu je aktuÃ¡lnÃ­.<br />\n<br />\nE-mailovÃ¡ adresa, kterou mÃ¡me v souÄasnosti uloÅ¾enou ve vaÅ¡em profilu je:<br />\n{$authorMailingAddress}<br />\n<br />\nPokud nenÃ­ adresa kompletnÃ­, nebo pokud nenÃ­ aktuÃ¡lnÃ­, pouÅ¾ijte, prosÃ­m nÃ¡sledujÃ­cÃ­ odkaz na Ãºpravu vaÅ¡eho profilu:<br />\n<br />\nOdkaz na vÃ¡Å¡ profil: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nK odevzdÃ¡nÃ­ recenze objektu se, prosÃ­m, zalogujte na strÃ¡nkÃ¡ch Äasopisu a pouÅ¾ijte odkaz na odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku.<br />\n<br />\nOdkaz na odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPokud mÃ¡te jakÃ©koliv dotazy k recenzi objektu, nevÃ¡hejte mne kontaktovat.<br />\n<br />\n{$editorialContactSignature}','Tento email posÃ­lÃ¡ editor recenzentovi knihy bezprostÅ™ednÄ› po pÅ™idÄ›lenÃ­ recenze.'),('OFR_OBJECT_DENIED','cs_CZ','Objekt k recenzi','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nBohuÅ¾el vÃ¡m jiÅ¾ nemohu pÅ™idÄ›lit k recenzi objekt {$objectForReviewTitle}.<br />\n<br />\nDoufÃ¡me, Å¾e si k recenzi vyberete jinÃ½ z objektÅ¯ na naÅ¡em seznamu buÄ hned teÄ, Äi kdykoliv v budoucnu.<br />\n<br />\n{$editorialContactSignature}','Tento email zasÃ­lÃ¡ editor zÃ¡jemci o recenzi objektu, kterÃ½ jiÅ¾ k recenzi nenÃ­ dostupnÃ½.'),('OFR_OBJECT_REQUESTED','cs_CZ','Objekt k recenzi: Objekt je poÅ¾adovÃ¡n','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$editorName}:<br />\n<br />\nmÄ›l/a bych zÃ¡jem o recenzi objektu {$objectForReviewTitle}.<br />\n<br />\nMÅ¯Å¾ete mi, prosÃ­m, potvrdit, Å¾e tento objekt je jeÅ¡tÄ› dostupnÃ½ pro recenzi?<br />\n<br />\n{$authorContactSignature}','Tento email posÃ­lÃ¡ zÃ¡jemce o recenzi objektu editorovi.'),('OFR_OBJECT_MAILED','cs_CZ','Objekt k recenzi: Objekt byl odeslÃ¡n','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nTÃ­mto e-mailem potvrzujeme, Å¾e jsme vÃ¡m zaslali k recenzi objekt {$objectForReviewTitle} na nÃ¡sledujÃ­cÃ­ e-mailovou adresu, uvedenou ve vaÅ¡em profilu:<br />\n{$authorMailingAddress}<br />\n<br />\nK odevzdÃ¡nÃ­ recenze objektu se, prosÃ­m pÅ™ihlaste na strÃ¡nkÃ¡ch naÅ¡eho Äasopisu a vyuÅ¾ijte odkazu k odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku.<br />\n<br />\nOdkaz na odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nNevÃ¡hejte mne kontaktovat, pokud mÃ¡te jakÃ©koliv dotazy k recenzi objektu.<br />\n<br />\n{$editorialContactSignature}','Tento email zasÃ­lÃ¡ editor autorovi recenze objektu potÃ©, co mu zaÅ¡le mailem objekt k recenzi.'),('OFR_REVIEWER_REMOVED','cs_CZ','Objekt k recenzi','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nTento e-mail potvrzuje, Å¾e recenze objektu {$objectForReviewTitle} vÃ¡m byla odebrÃ¡na.<br />\n<br />\nDoufÃ¡me, Å¾e si zvolÃ­te z naÅ¡eho seznamu jinÃ½ objekt k recenzi, aÅ¥ jiÅ¾ nynÃ­, Äi kdykoliv v budoucnosti.<br />\n<br />\n{$editorialContactSignature}','Tento email posÃ­lÃ¡ editor autorovi recenze objektu v momentÄ›, kdy mu odebere recenzi tohoto objektu.'),('OFR_REVIEW_REMINDER','da_DK','BedÃ¸mmelse: Husk forfaldsdato','KÃ¦re {$authorName}:<br />\n<br />\nDette er blot for at minde dig om vores forespÃ¸rgsel om din bedÃ¸mmelse af  {$objectForReviewTitle} er forfalden {$objectForReviewDueDate}.<br />\n<br />\nFor at indsende din bedÃ¸mmelse bedes du logge dig ind pÃ¥ tidsskriftets hjemmeside og fÃ¦rdiggÃ¸re online indsendelsen. For nemheds skyld finder du URL-adressen her: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDu er velkommen til at kontakte mig, hvis du spÃ¸rgsmÃ¥l eller betÃ¦nkeligheder omkring denne bedÃ¸mmelse.<br />\n<br />\nTak for dit bidrag. Jeg ser frem til at hÃ¸re fra dig.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to an object for review author as a reminder that the due date for the review is approaching.'),('OFR_REVIEW_REMINDER_LATE','da_DK','Object for Review: Review Due','KÃ¦re {$authorName}:<br />\n<br />\nDette blot for at minde dig om, at din bedÃ¸mmelse af {$objectForReviewTitle} skulle have vÃ¦re afsendt {$objectForReviewDueDate}. Imidlertid har vi intet modtaget.<br />\n<br />\nFor at fÃ¦rdiggÃ¸re din bedÃ¸mmelse, bedes du logge ind pÃ¥ tidsskriftets hjemmeside og udfylde indsendelsen. For nemheds skyld finder du URL-adressen nedenfor.<br />\n<br />\nIndsendelses-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDu er velkommen til at kontakte mig, hvis du har spÃ¸rgsmÃ¥l eller betÃ¦nkeligheder omkring denne bedÃ¸mmelse.<br />\n<br />\nTak for dit bidrag. Jeg ser frem til at modtage din indsendelse.<br />\n<br />\n{$editorialContactSignature}',''),('OFR_OBJECT_ASSIGNED','da_DK','Object for Review: Object Assigned','KÃ¦re {$authorName}:<br />\n<br />\nDenne e-mail bekrÃ¦fter, at {$objectForReviewTitle} er blevet tildelt dig til bedÃ¸mmelse med forfaldsdato {$objectForReviewDueDate}.<br />\n<br />\nVÃ¦r venlig at sikre, at din mailadresse i din brugerprofil er opdateret. Denne adresse vil blive benyttet nÃ¥r objektet skal vidersendes til bedÃ¸mmelse.<br />\n<br />\nI din brugerprofil stÃ¥r fÃ¸lgende mailadresse:<br />\n{$authorMailingAddress}<br />\n<br />\nHvis denne adresse er ufuldstÃ¦ndig eller ugyldig bedes du opdatere den via fÃ¸lgende URL:<br />\n<br />\nBrugerprofil-URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nFor at fÃ¦rdiggÃ¸re din bedÃ¸mmelse, bedes du logge ind pÃ¥ tidsskriftets hjemmeside og udfylde indsendelsen vis fÃ¸lgende URL-adresse:<br />\n<br />\nIndsendelses-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDu er velkommen til at kontakte mig, hvis du har spÃ¸rgsmÃ¥l eller betÃ¦nkeligheder omkring denne bedÃ¸mmelse.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an object review author when an editor assigns the object for review to the author.'),('OFR_OBJECT_DENIED','da_DK','Object for Review','KÃ¦re {$authorName}:<br />\n<br />\nDesvÃ¦rre kan jeg ikke denne gang tildele dig {$objectForReviewTitle} til viderebedÃ¸mmelse.<br />\n<br />\nJeg hÃ¥ber, du vil overveje at bedÃ¸mme et andet objekt fra vores liste enten nu eller senere.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when an object is no longer available for review.'),('OFR_OBJECT_REQUESTED','da_DK','Object for Review: Object Requested','KÃ¦re {$editorName}:<br />\n<br />\nJeg vil gerne foretage en bedÃ¸mmelse af {$objectForReviewTitle}.<br />\n<br />\nKan du bekrÃ¦fte om der stadig er mulighed for dette?<br />\n<br />\n{$authorContactSignature}','This email is sent to an editor by an author interested in writing an object review for a listed object.'),('OFR_OBJECT_MAILED','da_DK','Object for Review: Object Mailed','KÃ¦re {$authorName}:<br />\n<br />\nDenne e-mail bekrÃ¦fter, at jeg har sendt en kopi af {$objectForReviewTitle} til fÃ¸lgende mailadresse fra din online brugerprofil:<br />\n{$authorMailingAddress}<br />\n <br />\nFor at indsende din bedÃ¸mmelse bedes du logge ind pÃ¥ tidsskriftets hjemmeside og fÃ¦rdiggÃ¸re online-bedÃ¸mmelsen via fÃ¸lgende URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDu er velkommen til at kontakte mig, hvis du har spÃ¸rgsmÃ¥l eller betÃ¦nkeligheder omkring denne bedÃ¸mmelse.<br />\n<br />\n{$editorialContactSignature}',''),('OFR_REVIEWER_REMOVED','da_DK','Object for Review','KÃ¦re {$authorName}:<br />\n<br />\nDenne e-mail bekrÃ¦fter, at du er blevet slettet som bedÃ¸mmer af {$objectForReviewTitle}.<br />\n<br />\nJeg hÃ¥ber, du vil overveje at bedÃ¸mme et andet objekt fra vores liste enten nu eller senere.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when an object is no longer available for review.'),('OFR_REVIEW_REMINDER','de_DE','Objekt zur Rezension: Erinnerung an FÃ¤lligkeitsdatum','Liebe/r {$authorName},<br />\n<br />\ndies ist eine freundliche Erinnerung, dass Ihre Rezension von {$objectForReviewTitle} am {$objectForReviewDueDate} fÃ¤llig ist.<br />\n<br />\nUm Ihre Rezension dieses Objekts einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab. Um es Ihnen zu erleichtern, ist ein URL zur Einreichung hier aufgefÃ¼hrt:<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Rezension haben.<br />\n<br />\nHerzlichen Dank fÃ¼r Ihren Beitrag zu der Zeitschrift. Ich freue mich darauf, Ihre Einreichung zu erhalten.<br />\n<br />\n{$editorialContactSignature}','Dies ist eine automatisch erzeugte E-Mail, die an eine/n Autor/in gesendet wird, der/die eine Rezension Ã¼bernommen hat, als eine Erinnerung, dass die Rezension bald fÃ¤llig ist.'),('OFR_REVIEW_REMINDER_LATE','de_DE','Objekt zur Rezension: Rezension fÃ¤llig','Liebe/r {$authorName},<br />\n<br />\ndies ist eine freundliche Erinnerung, dass Ihre Rezension von {$objectForReviewTitle} am {$objectForReviewDueDate} fÃ¤llig gewesen ist, aber noch nicht hier eingegangen ist.<br />\n<br />\nUm Ihre Rezension des Objekts einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab. Um es Ihnen zu erleichtern, ist ein URL zur Einreichung hier aufgefÃ¼hrt:<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Rezension haben.<br />\n<br />\nHerzlichen Dank fÃ¼r Ihren Beitrag zu der Zeitschrift. Ich freue mich darauf, Ihre Einreichung zu erhalten.<br />\n<br />\n{$editorialContactSignature}','Dies ist eine automatisch erzeugte E-Mail, die an eine/n Autor/in gesendet wird, die eine Rezension Ã¼bernommen hat, nachdem das FÃ¤lligkeitsdatum verstrichen ist.'),('OFR_OBJECT_ASSIGNED','de_DE','Objekt zur Rezension: Objekt zugeteilt','Liebe/r {$authorName},<br />\n<br />\ndiese E-Mail bestÃ¤tigt, dass Ihnen {$objectForReviewTitle} zur Rezension zugeteilt worden ist, die bis {$objectForReviewDueDate} fÃ¤llig ist.<br />\n<br />\nBitte stellen Sie sicher, dass Ihre Anschrift in Ihrem Benutzer/innenprofil aktuell ist. Diese Adresse wird genutzt werden, um Ihnen ein Exemplar des Objekts fÃ¼r die Besprechung zukommen zu lassen.<br />\n<br />\nDie Anschrift, die wir momentan in unseren Unterlagen haben, ist:<br />\n{$authorMailingAddress}<br />\n<br />\nWenn diese Adresse unvollstÃ¤ndig ist oder Sie nicht mehr unter dieser Anschrift erreichbar sind, benutzen Sie bitte den folgenden URL zum Benutzer/innenprofil, um Ihre Anschrift zu aktualisieren:<br />\n<br />\nBenutzer/innenprofil-URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nUm Ihre Rezension einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab.<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Rezension haben.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n Rezensent/in geschickt, wenn ein/e Redakteur/in das Objekt dem/der Rezensent/in zugewiesen hat.'),('OFR_OBJECT_DENIED','de_DE','Objekt zur Rezension','Liebe/r {$authorName},<br />\n<br />\nleider kann ich Ihnen {$objectForReviewTitle} derzeit nicht zu einer Rezension zuteilen.<br />\n<br />\nIch hoffe, dass Sie in ErwÃ¤gung ziehen, ein anderes Objekt aus unserer Liste zu besprechen - jetzt oder in Zukunft.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n interessierte/n Rezensent/in geschickt, wenn das Objekt nicht zur Rezension zugeteilt werden kann.'),('OFR_OBJECT_REQUESTED','de_DE','Objekt zur Rezension: Anfrage','Liebe/r {$editorName},<br />\n<br />\nich bin daran interessiert, eine Rezension von {$objectForReviewTitle} zu verfassen.<br />\n<br />\nKÃ¶nnen Sie bitte bestÃ¤tigen, dass das Objekt noch zur Rezension zur VerfÃ¼gung steht?<br />\n<br />\n{$authorContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n Autor/in gesendet, der/die daran interessiert ist, eine Besprechung zu einem gelisteten Objekt zu verfassen.'),('OFR_OBJECT_MAILED','de_DE','Objekt zur Rezension: Objekt verschickt','Liebe/r {$authorName},<br />\n<br />\ndiese E-Mail bestÃ¤tigt, dass ich Ihnen ein Exemplar von {$objectForReviewTitle} an die folgende Anschrift aus Ihrem Benutzer/innenprofil geschickt habe:<br />\n{$authorMailingAddress}<br />\n <br />\nUm Ihre Rezension einzureichen, loggen Sie sich bitte auf der Website der Zeitschrift ein und schlieÃŸen Sie den Einreichungsprozess ab.<br />\n<br />\nEinreichungs-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nBitte zÃ¶gern Sie nicht, mich zu kontaktieren, wenn Sie Fragen oder Bedenken zu dieser Rezension haben.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n Rezensent/in geschickt, wenn die/der Redakteur/in ein Exemplar des Objekts an den/die Rezensent/in gesendet hat.'),('OFR_REVIEWER_REMOVED','de_DE','Objekt zur Rezension','Liebe/r {$authorName},<br />\n<br />\ndiese E-Mail bestÃ¤tigt, dass Sie als Rezensent/in fÃ¼r {$objectForReviewTitle} entfernt worden sind, das nun anderen Autor/innen, die eine Rezension dazu verfassen mÃ¶chten, zur VerfÃ¼gung steht.<br />\n<br />\nIch hoffe, dass Sie in ErwÃ¤gung ziehen, ein anderes Objekt aus unserer Liste zu rezensieren - jetzt oder in der Zukunft.<br />\n<br />\n{$editorialContactSignature}','Diese E-Mail wird durch eine/n Redakteur/in an eine/n interessierte/n Autor/in geschickt, wenn ein Objekt nicht mehr zur Rezension zur VerfÃ¼gung steht.'),('OFR_REVIEW_REMINDER','en_US','Object for Review: Due Date Reminder','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your object review of {$objectForReviewTitle} is due {$objectForReviewDueDate}.<br />\n<br />\nTo submit your object review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to an object for review author as a reminder that the due date for the review is approaching.'),('OFR_REVIEW_REMINDER_LATE','en_US','Object for Review: Review Due','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your object review of {$objectForReviewTitle} was due {$objectForReviewDueDate} but has not been received yet.<br />\n<br />\nTo submit your object review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to an object for review author after the review due date has passed.'),('OFR_OBJECT_ASSIGNED','en_US','Object for Review: Object Assigned','Dear {$authorName}:<br />\n<br />\nThis email confirms that {$objectForReviewTitle} has been assigned to you for an object review to be completed by {$objectForReviewDueDate}.<br />\n<br />\nPlease ensure that your mailing address in your online user profile is up-to-date. This address will be used to mail a copy of the object to you for the review.<br />\n<br />\nThe mailing address that we currently have on file is:<br />\n{$authorMailingAddress}<br />\n<br />\nIf this address is incomplete or you are no longer at this address, please use the following user profile URL to update your address:<br />\n<br />\nUser Profile URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nTo submit your object review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an object review author when an editor assigns the object for review to the author.'),('OFR_OBJECT_DENIED','en_US','Object for Review','Dear {$authorName}:<br />\n<br />\nUnfortunately, I am not able to assign {$objectForReviewTitle} to you at this time for an object review.<br />\n<br />\nI hope you consider reviewing another object from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when an object is no longer available for review.'),('OFR_OBJECT_REQUESTED','en_US','Object for Review: Object Requested','Dear {$editorName}:<br />\n<br />\nI am interested in writing an object review of {$objectForReviewTitle}.<br />\n<br />\nCan you please confirm whether this object is still available for review?<br />\n<br />\n{$authorContactSignature}','This email is sent to an editor by an author interested in writing an object review for a listed object.'),('OFR_OBJECT_MAILED','en_US','Object for Review: Object Mailed','Dear {$authorName}:<br />\n<br />\nThis email confirms that I have mailed a copy of {$objectForReviewTitle} to the following mailing address from your online user profile:<br />\n{$authorMailingAddress}<br />\n <br />\nTo submit your object review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an object review author when the editor has mailed a copy of the object to the author.'),('OFR_REVIEWER_REMOVED','en_US','Object for Review','Dear {$authorName}:<br />\n<br />\nThis email confirms that you have been removed as the object reviewer for {$objectForReviewTitle}.<br />\n<br />\nI hope you consider reviewing another object from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when an object is no longer available for review.'),('OFR_REVIEW_REMINDER','es_ES','Objeto a revisar: Recordatorio de fecha de vencimiento','Apreciado/da {$authorName}:<br />\n<br />\nEste es un recordatorio del objeto de revisiÃ³n {$objectForReviewTitle} previsto para la fecha {$objectForReviewDueDate}.<br />\n<br />\nPara enviar tu objeto de revisiÃ³n, es necesario que entres en el sitio web de la revista y completes el proceso de envÃ­o del artÃ­culo. Para tu comodidad, te mandamos la URL del envÃ­o.<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPor favor, contacta con nosotros si tienes algÃºn problema o duda sobre este objeto de revisiÃ³n.<br />\n<br />\nQuedamos a la espera de tu envÃ­o, muy agradecidos por tu contribuciÃ³n a la revista.<br />\n<br />\n{$editorialContactSignature}','Este es un correo electrÃ³nico generado automÃ¡ticamente y enviado al autor del objeto de revisiÃ³n como recordatorio cuando la fecha de vencimiento se acerca.'),('OFR_REVIEW_REMINDER_LATE','es_ES','Objeto a revisar: Vencimiento de la fecha de revisiÃ³n','Apreciado/da {$authorName}:<br />\n<br />\nEste es un recordatorio del objeto de revisiÃ³n {$objectForReviewTitle} previsto para la fecha {$objectForReviewDueDate} pero que todavÃ­a no hemos recibido.<br />\n<br />\nPara enviar tu objeto de revisiÃ³n, es necesario que entres en el sitio web de la revista y completes el proceso de envÃ­o del artÃ­culo. Para tu comodidad, te mandamos la URL del envÃ­o.<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPor favor, contacta con nosotros si tienes algÃºn problema o duda sobre este objeto de revisiÃ³n.<br />\n<br />\nQuedamos a la espera de tu envÃ­o, muy agradecidos por tu contribuciÃ³n a la revista.<br />\n<br />\n{$editorialContactSignature}','Este es un correo electrÃ³nico generado automÃ¡ticamente y enviado al autor del objeto de revisiÃ³n como recordatorio cuando la fecha de vencimiento se ha superado.'),('OFR_REVIEWER_REMOVED','es_ES','Objeto a revisar','Apreciado/da {$authorName}:<br />\n<br />\nEste correo electrÃ³nico confirma que ya no eres revisor de {$objectForReviewTitle}.<br />\n<br />\nEsperamos que consideres revisar otros objetos de nuestra lista, ja sea ahora o en un futuro.<br />\n<br />\n{$editorialContactSignature}','Este correo lo envÃ­a el editor a los autores interesados cuando el objeto de revisiÃ³n ya no estÃ¡ disponible.'),('OFR_OBJECT_ASSIGNED','es_ES','Objeto a revisar: Objeto asignado','Apreciado/da {$authorName}:<br />\n<br />\nEste correo confirma que se te ha asignado {$objectForReviewTitle} y que la revisiÃ³n se ha de completar antes de  {$objectForReviewDueDate}.<br />\n<br />\nTe pedimos que confirmes que la direcciÃ³n de correo de tu perfil estÃ¡ actualizada.<br />\n<br />\nTu direcciÃ³n actual es:<br />\n{$authorMailingAddress}<br />\n<br />\nSi esta direcciÃ³n fuese incompleta o ya no es correcta, vista tu perfil de usuario para actualizarla:<br />\n<br />\nURL del perfil de usuario: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPara enviar tu objeto de revisiÃ³n, es necesario que entres en el sitio web de la revista y completes el proceso de envÃ­o del artÃ­culo. Para tu comodidad, te aÃ±adimos la URL del envÃ­o.<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPor favor, contacta con nosotros si tienes alguna pregunta o duda sobre este objeto de revisiÃ³n.<br />\n<br />\nQuedamos a la espera de tu envÃ­o, muy agradecidos por tu contribuciÃ³n a la revista.<br />\n<br />\n{$editorialContactSignature}','Este correo lo envÃ­a el editor al autor del objeto de revisiÃ³n cuando el editor asigna el objeto al autor.'),('OFR_OBJECT_DENIED','es_ES','Objeto a revisar','Apreciado/da {$authorName}:<br />\n<br />\nDesgraciadamente, en estos momentos no te podemos asignar {$objectForReviewTitle} como objeto de revisiÃ³n.<br />\n<br />\nEsperamos que consideres revisar otros objetos de nuestra lista, ja sea ahora o en un futuro.<br />\n<br />\n{$editorialContactSignature}','Este correo lo envÃ­a el editor a los autores interesados cuando el objeto ya no estÃ¡ disponible para ser revisado.'),('OFR_OBJECT_REQUESTED','es_ES','Objeto a revisar: Objeto solicitado','Apreciado/da {$editorName}:<br />\n<br />\nEstoy interesado en escribir una revisiÃ³n del objeto {$objectForReviewTitle}.<br />\n<br />\nÂ¿PodrÃ­a confirmar que el objeto todavÃ­a estÃ¡ disponible para ser revisado?<br />\n<br />\n{$authorContactSignature}','Este correo lo envÃ­a al editor el autor interesado en escribir una revisiÃ³n de un objeto de la lista.'),('OFR_OBJECT_MAILED','es_ES','Objeto a revisar: Objeto enviado','Apreciado/da {$authorName}:<br />\n<br />\nEste correo confirma que os hemos enviado una copia de {$objectForReviewTitle} a la siguiente direcciÃ³n de correo de tu perfil de usuario: <br />\n{$authorMailingAddress}<br />\n<br />\nPara enviar tu objeto de revisiÃ³n, es necesario que entres en el sitio web de la revista y completes el proceso de envÃ­o del artÃ­culo.<br />\n<br />\nURL del envÃ­o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPor favor, contacta con nosotros si tienes algÃºn problema o duda sobre este objeto de revisiÃ³n.<br />\n<br />\n{$editorialContactSignature}','Este correo lo envÃ­a el editor a los autores interesados cuando el editor ha enviado por correo al autor una copia del objeto.'),('OFR_REVIEW_REMINDER','fr_CA','Objet Ã  Ã©valuer: rappel de la date d\'Ã©chÃ©ance','ChÃ¨r(e) {$authorName}:<br />\n<br />\nCeci est un petit rappel que l\'objet pour Ã©valuation de {$objectForReviewTitle} est du pour le {$objectForReviewDueDate}.<br />\n<br />\nPour soumettre votre Ã©valuation de l\'objet, veuillez vous connecter au site web de la revue et complÃ©ter le processus de soumission d\'article en ligne. Afin de vous aider, un lien pour soumettre votre article est fourni ci-dessous :<br />\n<br />\nURL de la soumission: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou des inquiÃ©tudes Ã  propos de cette Ã©valuation.<br />\n<br />\nMerci pour votre contribution,<br />\nJ\'attends avec impatience votre soumission<br />\n<br />\n{$editorialContactSignature}',''),('OFR_REVIEW_REMINDER_LATE','fr_CA','Objet Ã  Ã©valuer: Ã‰valuation arrivÃ©e Ã  Ã©chÃ©ance','ChÃ¨r(e) {$authorName}:<br />\n<br />\nCeci est un petit rappel que l\'objet pour Ã©valuation de {$objectForReviewTitle} Ã©tait du pour le {$objectForReviewDueDate}, mais nous ne l\'avons pas encore reÃ§u.<br />\n<br />\nPour soumettre votre Ã©valuation de l\'objet, veuillez vous connecter au site web de la revue et complÃ©ter le processus de soumission d\'article en ligne. Afin de vous aider, un lien pour soumettre votre article est fourni ci-dessous :<br />\n<br />\nURL de la soumission: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou des inquiÃ©tudes Ã  propos de cette Ã©valuation.<br />\n<br />\nMerci pour votre contribution,<br />\nJ\'attends avec impatience votre soumission<br />\n<br />\n{$editorialContactSignature}',''),('OFR_OBJECT_ASSIGNED','fr_CA','Objet Ã  Ã©valuer: objet assignÃ©','ChÃ¨r(e) {$authorName}:<br />\n<br />\nCe courriel confirme que {$objectForReviewTitle} vous a Ã©tÃ© assignÃ© pour l\'objet d\'une Ã©valuation Ã  complÃ©ter avant le {$objectForReviewDueDate}.<br />\n<br />\nVeuillez vous assurer que votre adresse courriel dans votre compte est Ã  jour. Cette derniÃ¨re sera utilisÃ©e afin de vous faire parvenir une copie de l\'objet Ã  Ã©valuer.<br />\n<br />\nL\'adresse courriel que vous avons actuellement dans nos fichiers est celle-ci:<br />\n{$authorMailingAddress}<br />\n<br />\nSi cette adresse est incomplÃ¨te ou si vous ne l\'utilisez plus, veuillez utiliser le lien de profil suivant pour la mettre Ã  jour.<br />\n<br />\nLien de profil : <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPour soumettre votre Ã©valuation de l\'objet, veuillez vous connecter au site web de la revue et complÃ©ter le processus de soumission d\'article en ligne. Afin de vous aider, un lien pour soumettre votre article est fourni ci-dessous :<br />\n<br />\nURL de la soumission: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou des inquiÃ©tudes Ã  propos de cette Ã©valuation.<br />\n<br />\n{$editorialContactSignature}',''),('OFR_OBJECT_DENIED','fr_CA','Objet Ã  Ã©valuer','ChÃ¨r(e) {$authorName}:<br />\n<br />\nMalheureusement je ne suis pas en mesure de vous assigner {$objectForReviewTitle} actuellement pour une Ã©valuation de l\'objet.<br />\n<br />\nJ\'espÃ¨re que vous considÃ©rerez d\'Ã©valuer un autre objet de notre liste, soit maintenant ou dans le futur.<br />\n<br />\n{$editorialContactSignature}',''),('OFR_OBJECT_REQUESTED','fr_CA','Objet Ã  Ã©valuer : objet requis','ChÃ¨r(e) {$editorName}:<br />\n<br />\nJe suis intÃ©ressÃ© Ã  Ã©crire une Ã©valuation de {$objectForReviewTitle}.<br />\n<br />\nPouvez-vous confirmer que cet objet soit toujours disponible pour Ã©valuation ?<br />\n<br />\n{$authorContactSignature}',''),('OFR_OBJECT_MAILED','fr_CA','Objet Ã  Ã©valuer : objet envoyÃ©','ChÃ¨r(e) {$authorName}:<br />\n<br />\nCe courriel confirme que je vous ai envoyÃ© par la poste une copie de {$objectForReviewTitle} Ã  l\'adresse suivante de votre profil :<br />\n{$authorMailingAddress}<br />\n<br />\nPour soumettre votre Ã©valuation, veuillez vous connecter au site web de la revue et complÃ©ter le processus de soumission en ligne.<br />\n<br />\nURL de soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou des prÃ©occupations Ã  propos de cette Ã©valuation.<br />\n<br />\n{$editorialContactSignature}',''),('OFR_REVIEWER_REMOVED','fr_CA','Objet Ã  Ã©valuer','ChÃ¨r(e) {$authorName}:<br />\n<br />\nCe courriel confirme que l\'on vous a retirÃ© la responsabilitÃ© de l\'Ã©valuation de {$objectForReviewTitle}.<br />\n<br />\nJ\'espÃ¨re que vous considÃ©rerez d\'Ã©valuer un autre objet prÃ©sent dans la liste actuellement ou plus tard.<br />\n<br />\n{$editorialContactSignature}',''),('OFR_REVIEW_REMINDER','fr_FR','Compte rendu d\'un objet : rappel de la date dâ€™Ã©chÃ©ance','Madame, Monsieur, {$authorName}:<br />\n<br />\nNous nous permettons de vous rappeler que la date d\'Ã©chÃ©ance du compte rendu de l\'objet {$objectForReviewTitle} est le {$objectForReviewDueDate}.<br />\n<br />\nVeuillez vous connecter au site web de la revue et complÃ©ter le processus de soumission en ligne pour soumettre votre compte rendu. Pour faciliter votre accÃ¨s au site web, l\'URL de la soumission vous est fourni ci-dessous.<br />\n<br />\nURL de soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou besoin dâ€™informations complÃ©mentaires concernant ce compte rendu.<br />\n<br />\nNous vous remercions de votre contribution Ã  la revue et nous rÃ©jouissons de recevoir votre prochaine soumission.<br />\n<br />\n{$editorialContactSignature}','Ce courriel a Ã©tÃ© gÃ©nÃ©rÃ© et envoyÃ© automatiquement Ã  lâ€™auteur qui doit effectuer le compte rendu dâ€™un objet lorsque la date d\'Ã©chÃ©ance approche.'),('OFR_REVIEW_REMINDER_LATE','fr_FR','Compte rendu dâ€™un objet : date dâ€™Ã©chÃ©ance','Madame, Monsieur, {$authorName}:<br />\n<br />\nNous nous permettons de vous rappeler que nous nâ€™avons pas reÃ§u votre compte rendu de l\'objet {$objectForReviewTitle}. La date d\'Ã©chÃ©ance Ã©tait le {$objectForReviewDueDate}.<br />\n<br />\nPour soumettre votre compte rendu, veuillez vous connecter au site Web de la revue et complÃ©ter le processus de soumission. Pour faciliter votre accÃ¨s au site web, l\'URL de la soumission vous est fourni ci-dessous.<br />\n<br />\nURL de soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou prÃ©occupations concernant ce compte rendu.<br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou besoin dâ€™informations complÃ©mentaires concernant lâ€™Ã©valuation de cet objet.<br />\n<br />\nNous vous remercions de votre contribution Ã  la revue et nous rÃ©jouissons de recevoir votre prochaine soumission.<br />\n<br />\n{$editorialContactSignature}','Ceci est un courriel gÃ©nÃ©rÃ© automatiquement et qui est envoyÃ© Ã  un auteur lorsque la date dâ€™Ã©chÃ©ance d\'un compte rendu dâ€™objet est dÃ©passÃ©.'),('OFR_OBJECT_ASSIGNED','fr_FR','Compte rendu dâ€™un objet : assignation dâ€™un objet','Madame, Monsieur, {$authorName}:<br />\n<br />\nCe courriel confirme que le compte rendu dâ€™un objet {$objectForReviewTitle} vous a Ã©tÃ© assignÃ©. La date dâ€™Ã©chÃ©ance est fixÃ©e au {$objectForReviewDueDate}.<br />\n<br />\nVeuillez vous assurer que le courriel indiquÃ© sur votre profil utilisateur est Ã  jour. Cette adresse sera utilisÃ©e pour vous envoyer une copie de lâ€™objet Ã  Ã©valuer.<br />\n<br />\nLe courriel que nous avons actuellement dans nos fichiers est : {$authorMailingAddress}<br />\n<br />\nSi ce courriel est incomplet ou incorrect, veuillez utiliser le lien suivant pour mettre Ã  jour votre adresse sur votre profil utilisateur :<br />\n<br />\nURL de votre profil dâ€™utilisateur : <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPour soumettre votre compte rendu, veuillez vous connecter au site Web de la revue et complÃ©ter le processus de soumission en ligne.<br />\n<br />\nURL de soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou besoin dâ€™informations complÃ©mentaires concernant ce compte rendu.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un rÃ©dacteur Ã  un auteur quand un rÃ©dacteur attribue un compte rendu dâ€™un objet Ã  un auteur.'),('OFR_OBJECT_DENIED','fr_FR','compte rendu dâ€™un objet','Madame, Monsieur, {$authorName} :<br />\n<br />\nMalheureusement, je ne suis pas en mesure de vous attribuer {$objectForReviewTitle}.<br />\n<br />\nJâ€™espÃ¨re que vous pourrez envisager de rÃ©aliser le compte rendu dâ€™un autre objet de notre liste, dÃ¨s Ã  prÃ©sent ou dans un futur proche.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un rÃ©dacteur Ã  un auteur intÃ©ressÃ© par la rÃ©alisation d\'un compte rendu dâ€™un objet quand il nâ€™y a pas plus dâ€™objet disponible pour un compte rendu.'),('OFR_OBJECT_REQUESTED','fr_FR','Compte rendu dâ€™un objet : demande','Madame, Monsieur, {$editorName} :<br />\n<br />\nJâ€™aimerais rÃ©diger un compte rendu de {$objectForReviewTitle}.<br />\n<br />\nPouvez-vous me confirmer la disponibilitÃ© de celui-ci ?<br />\n<br />\n{$authorContactSignature}','Ce courriel est envoyÃ© Ã  un rÃ©dacteur par un auteur intÃ©ressÃ© par la rÃ©alisation d\'un compte rendu dâ€™un objet listÃ©.'),('OFR_OBJECT_MAILED','fr_FR','Compte rendu dâ€™un objet : objet envoyÃ© par courriel','Madame, Monsieur, {$authorName}:<br />\n<br />\nCeci est une confirmation de lâ€™envoi dâ€™une copie de {$objectForReviewTitle} que je vous ai adressÃ©e par courriel Ã  lâ€™adresse indiquÃ©e sur votre profil dâ€™utilisateur en ligne suivante :<br />\n{$authorMailingAddress}<br />\n<br />\nPour soumettre le compte rendu dâ€™un objet, veuillez vous connecter au site Web de la revue et complÃ©ter le processus de soumission en ligne.<br />\n<br />\nURL de la soumission: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou besoin dâ€™informations complÃ©mentaires concernant ce compte rendu.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© Ã  par un rÃ©dacteur Ã  un auteur intÃ©ressÃ© par la rÃ©alisation d\'un compte rendu dâ€™un objet listÃ© pour l\'informer qu\'une copie de l\'objet lui a Ã©tÃ© envoyÃ©e par courriel.'),('OFR_REVIEWER_REMOVED','fr_FR','Compte rendu dâ€™un objet','Madame, Monsieur, {$authorName}:<br />\n<br />\nCe courriel confirme que vous nâ€™Ãªtes plus lâ€™Ã©valuateur de lâ€™objet {$objectForReviewTitle}.<br />\n<br />\nJâ€™espÃ¨re que vous pourrez rÃ©aliser le compte rendu dâ€™un autre objet de notre liste, dÃ¨s Ã  prÃ©sent ou dans un futur proche.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un rÃ©dacteur Ã  un auteur intÃ©ressÃ© par un compte rendu lorsqu\'un objet nâ€™est plus disponible pour un compte rendu.'),('OFR_REVIEWER_REMOVED','nl_NL','Object ter review','Beste {$authorName}:<br />\n<br />\nDeze-mail bevestigt dat u niet langer de object reviewer bent voor {$objectForReviewTitle}.<br />\n<br />\nIk hoop dat u wilt overwegen een ander object te reviewen, nu of in de toekomst.<br />\n<br />\n{$editorialContactSignature}','Deze e-mail wordt door een redacteur verstuurd naar een geÃ¯nteresseerde auteur als een object niet langer beschikbaar is voor review'),('OFR_OBJECT_MAILED','nl_NL','Object voor review: object verstuurd','Beste {$authorName}:<br />\n<br />\nDeze email is om te bevestigen dat ik een exemplaar van {$objectForReviewTitle}heb verstuur naar het volgende adres uit uw gebruikersprofiel:<br />\n{$authorMailingAddress}<br />\n<br />\nOm uw review in te sturen kunt u inloggen op de website van het tijdschrift en daar het inzendingsproces doorlopen.<br />\n<br />\nURL van de inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met mij op te nemen als u vragen of opmerkingen hebt over deze object review.<br />\n<br />\n{$editorialContactSignature}','Deze e-mail wordt door een redacteur verstuurd naar de auteur van een object review als een exemplaar van het object is verstuurd naar de auteur.'),('OFR_OBJECT_REQUESTED','nl_NL','Object voor review: verzoek om een object','Beste {$editorName}:<br />\n<br />\nIk heb interesse in het object review voor {$objectForReviewTitle}.<br />\n<br />\nKunt u bevestigen dat het object nog beschikbaar is voor review?<br />\n<br />\n{$authorContactSignature}','Deze e-mail wordt verstuurd naar een redacteur door een auteur dit interesse heeft in het schrijven van een object review voor een object in de lijst.'),('OFR_OBJECT_DENIED','nl_NL','Object ter review','Beste {$authorName}:<br />\n<br />\nHelaas kan ik {$objectForReviewTitle} momenteel niet aan u toekennen voor een object review.<br />\n<br />\nIk hoop dat u wilt overwegen om een ander object te reviewen, nu of in de toekomst.<br />\n<br />\n{$editorialContactSignature}','deze e-mail wordt door een redacteur verstuurd aan een geÃ¯nteresseerde auteur als het object niet langer beschikbaar is voor review'),('OFR_OBJECT_ASSIGNED','nl_NL','Object voor review: object toegekend','Beste {$authorName}:<br />\n<br />\nDeze e-mail bevestigt dat {$objectForReviewTitle} aan u is toegekend voor een review, die we we van u verwachten op uiterlijk {$objectForReviewDueDate}.<br />\n<br />\nGelieve ervoor te zorgen dat het postadres in uw gebruikersprofiel correct is. Dit adres wordt gebruikt om het object naar u te verzenden..<br />\n<br />\nHet adres dat we momenteel hebben is:<br />\n{$authorMailingAddress}<br />\n<br />\nAls dit stres niet volledig of niet langer juist is, gelieve het aan te passen met behulp van de volgende link:<br />\n<br />\nGebruikersprofiel URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nOm uw review in te sturen kunt u inloggen op de website van het tijdschrift en het inzendingsproces doorlopen.<br />\n<br />\nURL van de inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met me op te nemen in het geval van vragen of opmerkingen over deze review.<br />\n<br />\n{$editorialContactSignature}','Deze e-mail wordt door een redacteur verstuurd aan een object reviewer, als het object aan die auteur wordt toegekend.'),('OFR_REVIEW_REMINDER_LATE','nl_NL','Object voor review: afloopdatum','Beste {$authorName}:<br />\n<br />\nDit is een vriendelijke herinnering dat uw object review voor {$objectForReviewTitle} werd verwacht op {$objectForReviewDueDate} maar nog niet door ons is ontvangen.<br />\n<br />\nOm uw review in te sturen kunt u inloggen op de website van het tijdschrift en het inzendingsproces doorlopen.Om het u makkelijk te maken staat hieronder een link naar de inzending<br />\n<br />\nURL van de inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met me op te nemen in het geval van vragen of opmerkingen over deze review..<br />\n<br />\nDank u voor uw bijdrage aan het tijdschrift en ik kijk uit naar uw review.<br />\n<br />\n{$editorialContactSignature}','Dit is een automatisch gegenereerde e-mail die naar de auteur van een review wordt verzonden als de inzenddatum is gepasseerd'),('OFR_REVIEW_REMINDER','nl_NL','Object voor review: herinnering aan de uiterste datum','Beste {$authorName}:<br />\n<br />\nDit is een vriendelijke herinnering dat uw object review voor {$objectForReviewTitle} wordt verwacht op {$objectForReviewDueDate}.<br />\n<br />\nOm uw review in te sturen kunt u inloggen op de website van het tijdschrift en het inzendingsproces doorlopen.Om het u makkelijk te maken staat hieronder een link naar de inzending<br />\n<br />\nURL van de inzending: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nVoel u vrij om contact met me op te nemen in het geval van vragen of opmerkingen over deze review..<br />\n<br />\nDank u voor uw bijdrage aan het tijdschrift en ik kijk uit naar uw review.<br />\n<br />\n{$editorialContactSignature}','Dit is een automatisch gegenereerde email die wordt verstuurd naar de object voor review auteur als de afloopdatum nadert'),('OFR_REVIEW_REMINDER','pt_BR','Objeto para revisÃ£o: Lembrete de Data de Vencimento','Caro {$authorName}:<br />\n<br />\nEste Ã© um lembrete que sua avaliaÃ§Ã£o do objeto de {$objectForReviewTitle} Ã© para {$objectForReviewDueDate}.<br />\n<br />\nPara submeter seus comentÃ¡rios, faÃ§a o login no site da revista e conclua o processo de submissÃ£o de artigos online. Para sua comodidade, a URL da submissÃ£o segue abaixo.<br />\n<br />\nURL Submission: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPor favor, nÃ£o hesite em contactar-me se vocÃª tiver quaisquer perguntas ou preocupaÃ§Ãµes sobre esta avaliaÃ§Ã£o.<br />\n<br />\nObrigado pela sua contribuiÃ§Ã£o para a revista e esperamos receber sua avaliaÃ§Ã£o.<br />\n<br />\n{$editorialContactSignature}','Este Ã© um e-mail gerado automaticamente que Ã© enviado para um autor como um lembrete de que a data prevista para a revisÃ£o estÃ¡ se aproximando.'),('OFR_REVIEW_REMINDER_LATE','pt_BR','Objeto de revisÃ£o: RevisÃ£o Devida','Caro {$authorName}:<br />\n<br />\nEste Ã© um lembrete de que sua opiniÃ£o sobre {$objectForReviewTitle} prometida para {$objectForReviewDueDate} ainda nÃ£o foi recebida.<br />\n<br />\nPara submeter o seu comentÃ¡rio, faÃ§a o login no site da revista e conclua o processo de submissÃ£o de artigos online. Para sua comodidade, a URL segue abaixo.<br />\n<br />\nURL Submission: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPor favor, nÃ£o hesite em contactar-me se vocÃª tiver quaisquer perguntas ou preocupaÃ§Ãµes sobre esta avaliaÃ§Ã£o.<br />\n<br />\nObrigado pela sua contribuiÃ§Ã£o para a revista, estamos ansiosos para receber seu comentÃ¡rio.<br />\n<br />\n{$editorialContactSignature}','Este Ã© um e-mail gerado automaticamente enviado para o autor apÃ³s a data de vencimento de revisÃ£o.'),('OFR_OBJECT_ASSIGNED','pt_BR','RevisÃ£o de objeto: objeto designado','Prezada/o {$authorName},<br />\n<br />\nEsta mensagem confirma que o objeto {$objectForReviewTitle} lhe foi designado para revisÃ£o, que deve ser concluÃ­da atÃ© {$objectForReviewDueDate}.<br />\n<br />\nCertifique-se que seu endereÃ§o postal esteja atualizado no nosso sistema, pois serÃ¡ o endereÃ§o usado para enviar por correio cÃ³pia do objeto para revisÃ£o, caso necessÃ¡rio.<br />\n<br />\nO endereÃ§o atualmente cadastrado Ã©:<br />\n{$authorMailingAddress}<br />\n<br />\nCaso esteja incompleto ou incorreto, corrija-o na sua pÃ¡gina de perfil por meio do endereÃ§o a seguir.<br />\n<br />\nEndereÃ§o da pÃ¡gina de perfil: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nPara submeter sua revisÃ£o, entre no sistema com o papel de autor e conclua o processo de submissÃ£o padrÃ£o.<br />\n<br />\nEndereÃ§o para submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nEntre em contato, caso tenha dÃºvidas ou preocupaÃ§Ãµes com este processo.<br />\n<br />\nAtenciosamente, <br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor de um objeto ao autor da revisÃ£o, ao designar o objeto para revisÃ£o ao autor.'),('OFR_OBJECT_DENIED','pt_BR','RevisÃ£o de objeto','Prezada/o {$authorName},<br />\n<br />\nInfelizmente, nÃ£o serÃ¡ possÃ­vel designar o objeto {$objectForReviewTitle} para revisÃ£o neste momento.<br />\n<br />\nEsperamos poder contar com seu apoio para a revisÃ£o de outros objetos em nossa lista, agora ou em outro momento.<br />\n<br />\nAtenciosamente,<br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor ao autor interessado em realizar uma revisÃ£o, quando o objeto nÃ£o estÃ¡ mais disponÃ­vel.'),('OFR_OBJECT_REQUESTED','pt_BR','RevisÃ£o de objeto: solicitaÃ§Ã£o','Prezado editor {$editorName},<br />\n<br />\nEstou interessado em realizar uma revisÃ£o do objeto {$objectForReviewTitle}.<br />\n<br />\nSolicito confirmaÃ§Ã£o de disponibilidade ou nÃ£o do objeto para revisÃ£o.<br />\n<br />\nAtenciosamente,<br />\n<br />\n{$authorContactSignature}','Mensagem enviada pelo autor ao editor, mostrando interesse em realizar uma revisÃ£o de objeto e solicitando confirmaÃ§Ã£o de in/disponibilidade.'),('OFR_OBJECT_MAILED','pt_BR','RevisÃ£o de objeto: objeto enviado','Prezado {$authorName},<br />\n<br />\nEsta mensagem confirma que um exemplar do objeto {$objectForReviewTitle} foi enviada ao endereÃ§o que consta em nossos cadastros:<br />\n{$authorMailingAddress}<br />\n<br />\nPara submeter sua revisÃ£o, acesse o sistema com o papel de autor e conclua o processo de submissÃ£o padrÃ£o de um artigo.<br />\n<br />\nEndereÃ§o para submissÃ£o: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nCaso tenha dÃºvidas ou questÃµes com relaÃ§Ã£o ao processo, entre em contato.<br />\n<br />\nAtenciosamente, <br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor ao autor interessado, confirmando o envio pelo correio fÃ­sico de um exemplar do objeto para revisÃ£o.'),('OFR_REVIEWER_REMOVED','pt_BR','RevisÃ£o de objeto','Prezado {$authorName},<br />\n<br />\nEsta mensagem confirma que nÃ£o serÃ¡ mais necessÃ¡rio realizar a revisÃ£o do objeto {$objectForReviewTitle}.<br />\n<br />\nEsperamos poder contar com seu apoio na revisÃ£o de outros objetos em nossa lista, agora ou em outro momento oportuno.<br />\n<br />\nAtenciosamente,<br />\n<br />\n{$editorialContactSignature}','Mensagem enviada pelo editor ao autor interessado, liberando o autor da revisÃ£o de um objeto indisponÃ­vel.'),('OFR_REVIEW_REMINDER','pt_PT','Object for Review: Due Date Reminder','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your object review of {$objectForReviewTitle} is due {$objectForReviewDueDate}.<br />\n<br />\nTo submit your object review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to an object for review author as a reminder that the due date for the review is approaching.'),('OFR_REVIEW_REMINDER_LATE','pt_PT','Object for Review: Review Due','Dear {$authorName}:<br />\n<br />\nThis is a friendly reminder that your object review of {$objectForReviewTitle} was due {$objectForReviewDueDate} but has not been received yet.<br />\n<br />\nTo submit your object review, please log into the journal website and complete the online article submission process. For your convenience, a submission URL has been provided below.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\nThank you for your contribution to the journal and I look forward to receiving your submission.<br />\n<br />\n{$editorialContactSignature}','This is an automatically generated email that is sent to an object for review author after the review due date has passed.'),('OFR_OBJECT_ASSIGNED','pt_PT','Object for Review: Object Assigned','Dear {$authorName}:<br />\n<br />\nThis email confirms that {$objectForReviewTitle} has been assigned to you for an object review to be completed by {$objectForReviewDueDate}.<br />\n<br />\nPlease ensure that your mailing address in your online user profile is up-to-date. This address will be used to mail a copy of the object to you for the review.<br />\n<br />\nThe mailing address that we currently have on file is:<br />\n{$authorMailingAddress}<br />\n<br />\nIf this address is incomplete or you are no longer at this address, please use the following user profile URL to update your address:<br />\n<br />\nUser Profile URL: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nTo submit your object review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an object review author when an editor assigns the object for review to the author.'),('OFR_OBJECT_DENIED','pt_PT','Object for Review','Dear {$authorName}:<br />\n<br />\nUnfortunately, I am not able to assign {$objectForReviewTitle} to you at this time for an object review.<br />\n<br />\nI hope you consider reviewing another object from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when an object is no longer available for review.'),('OFR_OBJECT_REQUESTED','pt_PT','Object for Review: Object Requested','Dear {$editorName}:<br />\n<br />\nI am interested in writing an object review of {$objectForReviewTitle}.<br />\n<br />\nCan you please confirm whether this object is still available for review?<br />\n<br />\n{$authorContactSignature}','This email is sent to an editor by an author interested in writing an object review for a listed object.'),('OFR_OBJECT_MAILED','pt_PT','Object for Review: Object Mailed','Dear {$authorName}:<br />\n<br />\nThis email confirms that I have mailed a copy of {$objectForReviewTitle} to the following mailing address from your online user profile:<br />\n{$authorMailingAddress}<br />\n <br />\nTo submit your object review, please log into the journal website and complete the online article submission process.<br />\n<br />\nSubmission URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPlease feel free to contact me if you have any questions or concerns about this object review.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an object review author when the editor has mailed a copy of the object to the author.'),('OFR_REVIEWER_REMOVED','pt_PT','Object for Review','Dear {$authorName}:<br />\n<br />\nThis email confirms that you have been removed as the object reviewer for {$objectForReviewTitle}.<br />\n<br />\nI hope you consider reviewing another object from our listing, either at this time or in the future.<br />\n<br />\n{$editorialContactSignature}','This email is sent by an editor to an interested author when an object is no longer available for review.'),('OFR_REVIEW_REMINDER','ru_RU','ÐžÐ±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: Ð½Ð°Ð¿Ð¾Ð¼Ð¸Ð½Ð°Ð½Ð¸Ðµ Ð¾ ÑÑ€Ð¾ÐºÐµ','{$authorName}!<br />\n<br />\nÐÐ°Ð¿Ð¾Ð¼Ð¸Ð½Ð°ÐµÐ¼ Ð’Ð°Ð¼ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð´Ð¾Ð»Ð¶Ð½Ñ‹ Ð¿Ñ€ÐµÐ´ÑÑ‚Ð°Ð²Ð¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð½Ð° Ð¾Ð±ÑŠÐµÐºÑ‚ Â«{$objectForReviewTitle}Â» Ð´Ð¾ {$objectForReviewDueDate}.<br />\n<br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. Ð”Ð»Ñ Ð’Ð°ÑˆÐµÐ³Ð¾ ÑƒÐ´Ð¾Ð±ÑÑ‚Ð²Ð° Ð½Ð¸Ð¶Ðµ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½ Ð°Ð´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸.<br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ð¼Ñƒ Ð¾Ð±ÑŠÐµÐºÑ‚Ñƒ.<br />\n<br />\nÐ‘Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€ÑŽ Ð’Ð°Ñ Ð·Ð° Ð’Ð°Ñˆ Ð²ÐºÐ»Ð°Ð´ Ð² Ð½Ð°Ñˆ Ð¶ÑƒÑ€Ð½Ð°Ð» Ð¸ Ð½Ð°Ð´ÐµÑŽÑÑŒ Ð²ÑÐºÐ¾Ñ€Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ¸ Ð³ÐµÐ½ÐµÑ€Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ðµ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ð¹ Ð¿Ð¾Ñ‡Ñ‚Ñ‹, ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ðµ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° Ð¾Ð±ÑŠÐµÐºÑ‚ Ð² ÐºÐ°Ñ‡ÐµÑÑ‚Ð²Ðµ Ð½Ð°Ð¿Ð¾Ð¼Ð¸Ð½Ð°Ð½Ð¸Ñ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð¿Ñ€Ð¸Ð±Ð»Ð¸Ð¶Ð°ÐµÑ‚ÑÑ ÑÑ€Ð¾Ðº ÑÐ´Ð°Ñ‡Ð¸ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸.'),('OFR_REVIEW_REMINDER_LATE','ru_RU','ÐžÐ±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: ÑÑ€Ð¾Ðº Ð¿Ñ€Ð¾ÑˆÐµÐ»','{$authorName}!<br />\n<br />\nÐÐ°Ð¿Ð¾Ð¼Ð¸Ð½Ð°ÐµÐ¼ Ð’Ð°Ð¼ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð´Ð¾Ð»Ð¶Ð½Ñ‹ Ð±Ñ‹Ð»Ð¸ Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð½Ð° Ð¾Ð±ÑŠÐµÐºÑ‚ Â«{$objectForReviewTitle}Â» Ð´Ð¾ {$objectForReviewDueDate}, Ð½Ð¾ Ð¼Ñ‹ Ð²ÑÐµ ÐµÑ‰Ðµ ÐµÐµ Ð½Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ð»Ð¸.<br />\n<br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. Ð”Ð»Ñ Ð’Ð°ÑˆÐµÐ³Ð¾ ÑƒÐ´Ð¾Ð±ÑÑ‚Ð²Ð° Ð½Ð¸Ð¶Ðµ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½ Ð°Ð´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸.<br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ð¼Ñƒ Ð¾Ð±ÑŠÐµÐºÑ‚Ñƒ.<br />\n<br />\nÐ‘Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€ÑŽ Ð’Ð°Ñ Ð·Ð° Ð’Ð°Ñˆ Ð²ÐºÐ»Ð°Ð´ Ð² Ð½Ð°Ñˆ Ð¶ÑƒÑ€Ð½Ð°Ð» Ð¸ Ð½Ð°Ð´ÐµÑŽÑÑŒ Ð²ÑÐºÐ¾Ñ€Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ¸ Ð³ÐµÐ½ÐµÑ€Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ðµ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ð¹ Ð¿Ð¾Ñ‡Ñ‚Ñ‹, ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ðµ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° Ð¾Ð±ÑŠÐµÐºÑ‚ Ð¿Ð¾ÑÐ»Ðµ Ñ‚Ð¾Ð³Ð¾, ÐºÐ°Ðº ÑÑ€Ð¾Ðº ÑÐ´Ð°Ñ‡Ð¸ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ ÑƒÐ¶Ðµ Ð¿Ñ€Ð¾ÑˆÐµÐ».'),('OFR_OBJECT_ASSIGNED','ru_RU','ÐžÐ±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: Ð¾Ð±ÑŠÐµÐºÑ‚ Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½','{$authorName}!<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸ÐµÐ¼ Ñ‚Ð¾Ð³Ð¾, Ñ‡Ñ‚Ð¾ Â«{$objectForReviewTitle}Â» Ð±Ñ‹Ð»Ð° Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð° Ð’Ð°Ð¼ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ. Ð¡Ñ€Ð¾Ðº Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ {$objectForReviewDueDate}.<br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑƒÐ±ÐµÐ´Ð¸Ñ‚ÐµÑÑŒ Ñ‡Ñ‚Ð¾ Ð’Ð°Ñˆ Ð¿Ð¾Ñ‡Ñ‚Ð¾Ð²Ñ‹Ð¹ Ð°Ð´Ñ€ÐµÑ Ð² Ð’Ð°ÑˆÐµÐ¼ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ðµ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð½Ð°ÑˆÐµÐ¹ ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð°ÐºÑ‚ÑƒÐ°Ð»ÑŒÐ½Ñ‹Ð¼. Ð­Ñ‚Ð¾Ñ‚ Ð°Ð´Ñ€ÐµÑ Ð±ÑƒÐ´ÐµÑ‚ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½ Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ Ð’Ð°Ð¼ ÐºÐ¾Ð¿Ð¸Ð¸ Ð¾Ð±ÑŠÐµÐºÑ‚Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ.<br />\n<br />\nÐŸÐ¾Ñ‡Ñ‚Ð¾Ð²Ñ‹Ð¹ Ð°Ð´Ñ€ÐµÑ, ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¹ ÐµÑÑ‚ÑŒ Ñƒ Ð½Ð°Ñ Ð² Ñ„Ð°Ð¹Ð»Ðµ, Ñ‚Ð°ÐºÐ¾Ð²:<br />\n{$authorMailingAddress}<br />\n<br />\nÐ•ÑÐ»Ð¸ ÑÑ‚Ð¾Ñ‚ Ð°Ð´Ñ€ÐµÑ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð½Ðµ Ð¿Ð¾Ð»Ð½Ñ‹Ð¼ Ð¸Ð»Ð¸ Ð’Ñ‹ Ð±Ð¾Ð»ÐµÐµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ñ‹ Ð¿Ð¾ ÑÑ‚Ð¾Ð¼Ñƒ Ð°Ð´Ñ€ÐµÑÑƒ, Ð¿Ð¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, Ð²Ð¾ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐ¹Ñ‚ÐµÑÑŒ ÑÐ»ÐµÐ´ÑƒÑŽÑ‰Ð¸Ð¼ Ð°Ð´Ñ€ÐµÑÐ¾Ð¼ (URL) Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ÑÐ²Ð¾Ð¹ Ð°Ð´Ñ€ÐµÑ:<br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. <br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ð¼Ñƒ Ð¾Ð±ÑŠÐµÐºÑ‚Ñƒ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° Ð¾Ð±ÑŠÐµÐºÑ‚, ÐºÐ¾Ð³Ð´Ð° Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð½Ð°Ð·Ð½Ð°Ñ‡Ð°ÐµÑ‚ Ð¾Ð±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ.'),('OFR_OBJECT_DENIED','ru_RU','ÐžÐ±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ','{$authorName}!<br />\n<br />\nÐš ÑÐ¾Ð¶Ð°Ð»ÐµÐ½Ð¸ÑŽ, Ñ Ð½Ðµ Ð¼Ð¾Ð³Ñƒ ÑÐµÐ¹Ñ‡Ð°Ñ Ð½Ð°Ð·Ð½Ð°Ñ‡Ð¸Ñ‚ÑŒ Ð’Ð°Ð¼ Ð¾Ð±ÑŠÐµÐºÑ‚ Â«{$objectForReviewTitle}Â» Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ.<br />\n<br />\nÐÐ°Ð´ÐµÑŽÑÑŒ, Ñ‡Ñ‚Ð¾ ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸Ð»Ð¸ Ð² Ð±ÑƒÐ´ÑƒÑ‰ÐµÐ¼ Ð’Ñ‹ Ð²Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ Ð´Ñ€ÑƒÐ³Ð¾Ð¹ Ð¾Ð±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð¸Ð· Ð½Ð°ÑˆÐµÐ³Ð¾ ÑÐ¿Ð¸ÑÐºÐ°.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð·Ð°Ð¸Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð½Ð¾Ð¼Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, ÐºÐ¾Ð³Ð´Ð° Ð¾Ð±ÑŠÐµÐºÑ‚ Ð±Ð¾Ð»ÐµÐµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ.'),('OFR_OBJECT_REQUESTED','ru_RU','ÐžÐ±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: Ð¾Ð±ÑŠÐµÐºÑ‚ Ð·Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½','{$editorName}!<br />\n<br />\nÐ¯ Ð±Ñ‹ Ñ…Ð¾Ñ‚ÐµÐ» Ð½Ð°Ð¿Ð¸ÑÐ°Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð½Ð° Ð¾Ð±ÑŠÐµÐºÑ‚ Â«{$objectForReviewTitle}Â».<br />\n<br />\nÐœÐ¾Ð¶ÐµÑ‚Ðµ Ð»Ð¸ Ð’Ñ‹ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚ÑŒ, Ñ‡Ñ‚Ð¾ ÑÑ‚Ð¾Ñ‚ Ð¾Ð±ÑŠÐµÐºÑ‚ Ð²ÑÐµ ÐµÑ‰Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿ÐµÐ½ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ?<br />\n<br />\n{$authorContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€Ð¾Ð¼, Ð·Ð°Ð¸Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð½Ñ‹Ð¼ Ð² Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ð¸ Ð¾Ð±ÑŠÐµÐºÑ‚Ð°, ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð³Ð¾ Ð² ÑÐ¿Ð¸ÑÐºÐµ.'),('OFR_OBJECT_MAILED','ru_RU','ÐžÐ±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: Ð¾Ð±ÑŠÐµÐºÑ‚ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½','{$authorName}!<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸ÐµÐ¼ Ñ‚Ð¾Ð³Ð¾, Ñ‡Ñ‚Ð¾ Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ð» Ð’Ð°Ð¼ ÐºÐ¾Ð¿Ð¸ÑŽ Ð¾Ð±ÑŠÐµÐºÑ‚Ð° Â«{$objectForReviewTitle}Â» Ð½Ð° ÑÐ»ÐµÐ´ÑƒÑŽÑ‰Ð¸Ð¹ Ð¿Ð¾Ñ‡Ñ‚Ð¾Ð²Ñ‹Ð¹ Ð°Ð´Ñ€ÐµÑ Ð¸Ð· Ð’Ð°ÑˆÐµÐ³Ð¾ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð² Ð½Ð°ÑˆÐµÐ¹ ÑÐ¸ÑÑ‚ÐµÐ¼Ðµ:<br />\n{$authorMailingAddress}<br />\n <br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. <br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ð¼Ñƒ Ð¾Ð±ÑŠÐµÐºÑ‚Ñƒ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° Ð¾Ð±ÑŠÐµÐºÑ‚, ÐºÐ¾Ð³Ð´Ð° Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ð¿Ð¾Ñ‡Ñ‚Ð¾Ð¹ ÐºÐ¾Ð¿Ð¸ÑŽ Ð¾Ð±ÑŠÐµÐºÑ‚Ð°.'),('OFR_REVIEWER_REMOVED','ru_RU','ÐžÐ±ÑŠÐµÐºÑ‚ Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ','{$authorName}!<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸ÐµÐ¼ Ñ‚Ð¾Ð³Ð¾, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð±Ñ‹Ð»Ð¸ ÑƒÐ´Ð°Ð»ÐµÐ½Ñ‹ Ð¸Ð· Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ð² Ð¾Ð±ÑŠÐµÐºÑ‚Ð° Â«{$objectForReviewTitle}Â».<br />\n<br />\nÐÐ°Ð´ÐµÑŽÑÑŒ, Ñ‡Ñ‚Ð¾ ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸Ð»Ð¸ Ð² Ð±ÑƒÐ´ÑƒÑ‰ÐµÐ¼ Ð’Ñ‹ Ð²Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ Ð´Ñ€ÑƒÐ³Ð¾Ð¹ Ð¾Ð±ÑŠÐµÐºÑ‚ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸Ð· Ð½Ð°ÑˆÐµÐ³Ð¾ ÑÐ¿Ð¸ÑÐºÐ°.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð·Ð°Ð¸Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð½Ð¾Ð¼Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, ÐºÐ¾Ð³Ð´Ð° Ð¾Ð±ÑŠÐµÐºÑ‚ Ð±Ð¾Ð»ÐµÐµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿ÐµÐ½ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ.'),('OFR_REVIEW_REMINDER','ar_IQ','Ù…ÙƒÙˆÙ† Ù„Ù„ØªØ­ÙƒÙŠÙ…: ØªØ°ÙƒÙŠØ± Ø¨Ù…ÙˆØ¹Ø¯ Ø§Ù„Ø§Ø³ØªÙŠØ¬Ø§Ø¨','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© ØªØ°ÙƒÙŠØ± ÙˆØ¯ÙŠØ© Ø¨Ø£Ù† Ù…ÙˆØ¹Ø¯ ØªØ³Ù„ÙŠÙ…Ùƒ Ù„ØªØ­ÙƒÙŠÙ… Ø§Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$objectForReviewTitle} Ø³ÙŠØ³ØªÙˆØ¬Ø¨ Ø¨ØªØ§Ø±ÙŠØ® {$objectForReviewDueDate}.<br />\n<br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© ØªØ³Ù„ÙŠÙ… Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª. Ù„ØªØ³Ù‡ÙŠÙ„ Ø§Ù„Ø£Ù…Ø± Ø¹Ù„ÙŠÙƒØŒ Ø±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ… Ù…Ø¯Ø±Ø¬ Ø£Ø¯Ù†Ø§Ù‡.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„Ù…ÙƒÙˆÙ†.<br />\n<br />\nÙ†Ø´ÙƒØ± Ù„ÙƒÙ… Ù…Ø³Ø§Ù‡Ù…ØªÙƒÙ… ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø©ØŒ ÙˆÙ†Ø­Ù† Ù†ØªØ·Ù„Ø¹ Ø¥Ù„Ù‰ Ø§Ø³ØªÙ„Ø§Ù… Ù†ØªÙŠØ¬Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù…Ù†ÙƒÙ… Ù‚Ø±ÙŠØ¨Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© Ù…ÙˆÙ„Ø¯Ø© Ø¢Ù„ÙŠØ§Ù‹ ÙŠØªÙ… Ø¥Ø±Ø³Ø§Ù„Ù‡Ø§ Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… Ù…ÙƒÙˆÙ† Ù…Ø§ Ù„Ø¥Ø¨Ù„Ø§ØºÙ‡ Ø¨Ø£Ù† ØªØ£Ø±ÙŠØ® Ø§Ø³ØªÙŠØ¬Ø§Ø¨ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù‚Ø¯ Ø§Ù‚ØªØ±Ø¨ Ù…ÙˆØ¹Ø¯Ù‡.'),('OFR_REVIEW_REMINDER_LATE','ar_IQ','Ù…ÙƒÙˆÙ† Ù„Ù„ØªØ­ÙƒÙŠÙ…: Ù‚Ø¯ Ø§Ø³ØªÙˆØ¬Ø¨ ØªØ³Ù„ÙŠÙ… Ø§Ù„ØªØ­ÙƒÙŠÙ…','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© ØªØ°ÙƒÙŠØ± ÙˆØ¯ÙŠØ© Ø¨Ø£Ù† Ù…ÙˆØ¹Ø¯ ØªØ³Ù„ÙŠÙ…Ùƒ Ù„ØªØ­ÙƒÙŠÙ… Ø§Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$objectForReviewTitle} Ù‚Ø¯ Ø§Ø³ØªÙˆØ¬Ø¨ Ø¨ØªØ§Ø±ÙŠØ® {$objectForReviewDueDate} Ø¥Ù„Ø§ Ø£Ù†Ù‡ Ù„Ù… ÙŠØµÙ„Ù†Ø§ Ù…Ù†Ùƒ Ø¨Ø¹Ø¯.<br />\n<br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© ØªØ³Ù„ÙŠÙ… Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª. Ù„ØªØ³Ù‡ÙŠÙ„ Ø§Ù„Ø£Ù…Ø± Ø¹Ù„ÙŠÙƒØŒ Ø±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ… Ù…Ø¯Ø±Ø¬ Ø£Ø¯Ù†Ø§Ù‡.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„Ù…ÙƒÙˆÙ†.<br />\n<br />\nÙ†Ø´ÙƒØ± Ù„ÙƒÙ… Ù…Ø³Ø§Ù‡Ù…ØªÙƒÙ… ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø©ØŒ ÙˆÙ†Ø­Ù† Ù†ØªØ·Ù„Ø¹ Ø¥Ù„Ù‰ Ø§Ø³ØªÙ„Ø§Ù… Ù†ØªÙŠØ¬Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù…Ù†ÙƒÙ… Ù‚Ø±ÙŠØ¨Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© Ù…ÙˆÙ„Ø¯Ø© Ø¢Ù„ÙŠØ§Ù‹ ÙŠØªÙ… Ø¥Ø±Ø³Ø§Ù„Ù‡Ø§ Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… Ù…ÙƒÙˆÙ† Ù…Ø§ Ù„Ø¥Ø¨Ù„Ø§ØºÙ‡ Ø¨Ø£Ù† ØªØ£Ø±ÙŠØ® Ø§Ø³ØªÙŠØ¬Ø§Ø¨ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù‚Ø¯ Ø§Ù†Ù‚Ø¶Ù‰ Ù…ÙˆØ¹Ø¯Ù‡.'),('OFR_OBJECT_ASSIGNED','ar_IQ','Ù…ÙƒÙˆÙ† Ù„Ù„ØªØ­ÙƒÙŠÙ…: ØªÙƒÙ„ÙŠÙ Ø¨Ø§Ù„Ù…ÙƒÙˆÙ†','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªØ¤ÙƒØ¯ Ø¨Ø£Ù† Ø§Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$objectForReviewTitle} Ù‚Ø¯ ØªÙ… ØªÙƒÙ„ÙŠÙÙƒÙ… Ø¨Ù‡ Ù„ØªÙˆÙ„ÙŠ Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ…Ù‡ Ø­ØªÙ‰ ÙŠÙˆÙ… Ø§Ù„ØªØ³Ù„ÙŠÙ… Ø§Ù„Ù…Ø­Ø¯Ø¯ Ø¨ØªØ£Ø±ÙŠØ® {$objectForReviewDueDate}.<br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ ØªØ£ÙƒØ¯ Ù…Ù† Ø£Ù† Ø¹Ù†ÙˆØ§Ù†Ùƒ Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ Ø§Ù„Ù…Ø°ÙƒÙˆØ± ÙÙŠ Ù…Ù„ÙÙƒ Ø§Ù„Ø´Ø®ØµÙŠ Ù„Ù„Ù…ÙˆÙ‚Ø¹ Ù…Ø­Ø¯Ø«. Ù‡Ø°Ø§ Ø§Ù„Ø¹Ù†ÙˆØ§Ù† Ù‡Ùˆ Ù…Ø§ Ø³ÙŠØªÙ… Ø§Ø¹ØªÙ…Ø§Ø¯Ù‡ Ù„Ø¥Ø±Ø³Ø§Ù„ Ù†Ø³Ø®Ø© Ù…Ù† Ø§Ù„Ù…ÙƒÙˆÙ† Ø¥Ù„ÙŠÙƒ Ù„ØºØ±Ø¶ ØªØ­ÙƒÙŠÙ…Ù‡Ø§.<br />\n<br />\nØ§Ù„Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ Ø§Ù„Ù…ÙˆØ¬ÙˆØ¯ Ù„Ø¯ÙŠÙ†Ø§ Ø­Ø§Ù„ÙŠØ§Ù‹ Ù‡Ùˆ:<br />\n{$authorMailingAddress}<br />\n<br />\nØ¥Ù† ÙƒØ§Ù† Ù‡Ø°Ø§ Ø§Ù„Ø¹Ù†ÙˆØ§Ù† ØºÙŠØ± ÙƒØ§Ù…Ù„ Ø£Ùˆ Ù„Ù… ØªØ¹Ø¯ ØªØ³ØªØ¹Ù…Ù„Ù‡ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ø§Ø³ØªØ¹Ù…Ù„ Ø±Ø§Ø¨Ø· Ù…Ù„ÙÙƒ Ø§Ù„Ø´Ø®ØµÙŠ Ø£Ø¯Ù†Ø§Ù‡ Ù„ØªØ¹Ø¯ÙŠÙ„ Ø¹Ù†ÙˆØ§Ù†Ùƒ Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ:<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„Ù…Ù„Ù Ø§Ù„Ø´Ø®ØµÙŠ: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© Ø§Ù„ØªØ³Ù„ÙŠÙ… Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„Ù…ÙƒÙˆÙ†.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ±Ø³Ù„Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… Ù…ÙƒÙˆÙ† Ù…Ø§ Ø¹Ù†Ø¯Ù…Ø§ ÙŠØªÙ… ØªÙƒÙ„ÙŠÙÙ‡ Ø¨Ù…Ù‡Ù…Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ….'),('OFR_OBJECT_DENIED','ar_IQ','Ù…ÙƒÙˆÙ† Ù„Ù„ØªØ­ÙƒÙŠÙ…','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ„Ù„Ø£Ø³ÙØŒ Ù„Ù… Ø£ØªÙ…ÙƒÙ† Ù…Ù† ØªÙƒÙ„ÙŠÙÙƒÙ… Ø¨Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ… Ø§Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$objectForReviewTitle} Ø­Ø§Ù„ÙŠØ§Ù‹.<br />\n<br />\nØ£Ø±Ø¬Ùˆ Ø£Ù† ØªØ£Ø®Ø°ÙˆØ§ Ø¨Ù†Ø¸Ø± Ø§Ù„Ø§Ø¹ØªØ¨Ø§Ø± Ø¥Ø®ØªÙŠØ§Ø± Ù…ÙƒÙˆÙ† Ø¢Ø®Ø± Ù…Ù† Ù‚Ø§Ø¦Ù…ØªÙ†Ø§ Ù„ØºØ±Ø¶ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø­Ø§Ù„ÙŠØ§Ù‹ Ø£Ùˆ Ù…Ø³ØªÙ‚Ø¨Ù„Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ±Ø³Ù„Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… Ù…Ù‡ØªÙ… Ø¨ØªØ­ÙƒÙŠÙ… Ù…ÙƒÙˆÙ† Ù„Ù… ÙŠØ¹Ø¯ Ù…ØªØ§Ø­Ø§Ù‹ Ù„Ù„ØªØ­ÙƒÙŠÙ….'),('OFR_OBJECT_REQUESTED','ar_IQ','Ù…ÙƒÙˆÙ† Ù„Ù„ØªØ­ÙƒÙŠÙ…: Ø¥Ù„ØªÙ…Ø§Ø³ ØªØ­ÙƒÙŠÙ… Ù…ÙƒÙˆÙ†','Ø¹Ø²ÙŠØ²Ù†Ø§ {$editorName}:<br />\n<br />\nØ¹Ù†Ø¯ÙŠ Ø¥Ù‡ØªÙ…Ø§Ù… ÙÙŠ Ø¥Ù†Ø´Ø§Ø¡ ØªØ­ÙƒÙŠÙ… ÙˆÙ…Ø±Ø§Ø¬Ø¹Ø© Ù„Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$objectForReviewTitle}.<br />\n<br />\nÙ‡Ù„ Ù„Ùƒ Ù„Ø·ÙØ§Ù‹ ØªØ£ÙƒÙŠØ¯ ÙÙŠÙ…Ø§ Ù„Ùˆ ÙƒØ§Ù† Ù‡Ø°Ø§ Ø§Ù„Ù…ÙƒÙˆÙ† Ù„Ø§ ÙŠØ²Ø§Ù„ Ù…ØªØ§Ø­Ø§Ù‹ Ù„Ù„ØªØ­ÙƒÙŠÙ…ØŸ<br />\n<br />\n{$authorContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ¹Ù†ÙˆÙ†Ù‡Ø§ Ø£Ø­Ø¯ Ø§Ù„Ù…Ù‡ØªÙ…ÙŠÙ† Ø¨ØªØ­ÙƒÙŠÙ… Ù…ÙƒÙˆÙ† Ù…Ø§ Ø¥Ù„Ù‰ Ø§Ù„Ù…Ø­Ø±Ø± Ù„Ø£Ø¨Ø¯Ø§Ø¡ Ø±ØºØ¨ØªÙ‡ ÙÙŠ ØªØ­ÙƒÙŠÙ…Ù‡.'),('OFR_OBJECT_MAILED','ar_IQ','Ù…ÙƒÙˆÙ† Ù„Ù„ØªØ­ÙƒÙŠÙ…: ØªÙ… Ø¥Ø±Ø³Ø§Ù„ Ø§Ù„Ù…ÙƒÙˆÙ† Ø¹Ø¨Ø± Ø§Ù„Ø¨Ø±ÙŠØ¯ Ø§Ù„Ø§Ù„ÙƒØªØ±ÙˆÙ†ÙŠ','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªØ¤ÙƒØ¯ Ù„ÙƒÙ… Ø¨Ø£Ù†Ù†Ø§ Ù‚Ø¯ Ø£Ø±Ø³Ù„Ù†Ø§ Ù†Ø³Ø®Ø© Ù…Ù† Ø§Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$objectForReviewTitle} Ø¥Ù„Ù‰ Ø§Ù„Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ Ø§Ù„Ø¢ØªÙŠ ÙˆØ§Ù„Ù…ÙˆØ¬ÙˆØ¯ ÙÙŠ Ù…Ù„ÙÙƒÙ… Ø§Ù„Ø´Ø®ØµÙŠ Ø¹Ù†Ø¯Ù†Ø§ Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª:<br />\n{$authorMailingAddress}<br />\n <br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© Ø§Ù„ØªØ³Ù„ÙŠÙ… Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„Ù…ÙƒÙˆÙ†.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ¹Ù†ÙˆÙ†Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… Ù…ÙƒÙˆÙ† Ù…Ø§ Ø¹Ù†Ø¯ Ø¥Ø±Ø³Ø§Ù„Ù‡ Ù†Ø³Ø®Ø© Ù…Ù† Ø§Ù„Ù…ÙƒÙˆÙ† Ø¥Ù„Ù‰ Ø§Ù„Ù…Ø­ÙƒÙ… Ø¹Ø¨Ø± Ø§Ù„Ø¨Ø±ÙŠØ¯ Ø§Ù„Ø§Ù„ÙƒØªØ±ÙˆÙ†ÙŠ.'),('OFR_REVIEWER_REMOVED','ar_IQ','Ù…ÙƒÙˆÙ† Ù„Ù„ØªØ­ÙƒÙŠÙ…','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù„ØªØ£ÙƒÙŠØ¯ Ø±ÙØ¹ Ø§Ø³Ù…ÙƒÙ… Ù…Ù† Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ… Ø§Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$objectForReviewTitle}.<br />\n<br />\nØ£Ø±Ø¬Ùˆ Ø£Ù† ØªØ£Ø®Ø°ÙˆØ§ Ø¨Ù†Ø¸Ø± Ø§Ù„Ø§Ø¹ØªØ¨Ø§Ø± Ø¥Ø®ØªÙŠØ§Ø± Ù…ÙƒÙˆÙ† Ø¢Ø®Ø± Ù…Ù† Ù‚Ø§Ø¦Ù…ØªÙ†Ø§ Ù„ØºØ±Ø¶ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø­Ø§Ù„ÙŠØ§Ù‹ Ø£Ùˆ Ù…Ø³ØªÙ‚Ø¨Ù„Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ¹Ù†ÙˆÙ†Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ø§Ù„Ù…Ø­ÙƒÙ… Ù„ØªØ£ÙƒÙŠØ¯ Ø¥Ù„ØºØ§Ø¡ Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ…Ù‡ Ù„Ù„Ù…ÙƒÙˆÙ† Ø§Ù„Ù…Ø¹Ù†ÙŠ.'),('THESIS_ABSTRACT_CONFIRM','ca_ES','Enviament de resum de tesis','Aquest correu s\'ha generat automÃ ticament pel formulari d\'enviament de resums de tesis de la revista {$contextName}.<br />\n<br />\nSi us plau, confirma que la informaciÃ³ enviada Ã©s correcte. Un cop rebuda la treva confirmaciÃ³, el resum es publicarÃ  a l\'ediciÃ³ en lÃ­nia de la revista.<br />\n<br />\nSimplement respon per correu a {$thesisName} ({$thesisEmail}) amb el contingut d\'aquest missatge i la teva confirmaciÃ³, aixÃ­ com qualsevol clarificaciÃ³ o correcciÃ³ recomanada.<br />\n<br />\nGrÃ cies.<br />\n<br />\n<br />\nTÃ­tol : {$title}<br />\nAutor/a : {$studentName}<br />\nTitulaciÃ³ : {$degree}<br />\nNom de la titulaciÃ³: {$degreeName}<br />\nDepartament : {$department}<br />\nUniversitat : {$university}<br />\nData d\'acceptaciÃ³ : {$dateApproved}<br />\nSupervisor/a : {$supervisorName}<br />\n<br />\nResum<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Aquesta plantilla de correu s\'utilitzarÃ  per a confirmar una tramesa de resum d\'una tesis d\'un investigador/a. El correu s\'envia al supervisor/a de l\'investigador/ora, a qui es demana que confirmi els detalls del resum de tesis enviat.'),('THESIS_ABSTRACT_CONFIRM','da_DK','Indsendelse af afhandligsresumÃ©','Denne e-mail blev automatisk genereret af den til {$contextName} opkoblede indsendelsesformular til afhandlingsresumÃ©er.<br />\n<br />\nBekrÃ¦ft venligst, at den indleverede information er korrekt. NÃ¥r vi har modtaget din bekrÃ¦ftelse, vil resumÃ©et blive publiceret i tidsskriftets onlineudgave.<br />\n<br />\nSend venligst svar til {$thesisName} ({$thesisEmail}) med indholdet af denne besked og din bekrÃ¦ftelse, sÃ¥vel som eventuelle afklarelser eller rettelser.<br />\n<br />\nTak.<br />\n<br />\n<br />\nTitel : {$title} <br />\nForfatter : {$studentName}<br />\nEksamensgrad : {$degree}<br />\nGradstitel: {$degreeName}<br />\nAfdeling : {$department}<br />\nUniversitet : {$university}<br />\nAccepteringsdato : {$dateApproved}<br />\nVejleder : {$supervisorName}<br />\n<br />\nResumÃ©t<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Denne e-mailskabelon bruges til at bekrÃ¦fte indleveringen af en students afhandlingsresumÃ©. Den bliver sendt til studentens vejleder, som bliver bedt om at bekrÃ¦fte detaljerne i det indsendte resumÃ©.'),('THESIS_ABSTRACT_CONFIRM','fr_FR','Soumission de rÃ©sumÃ© de thÃ¨se','Ce courriel a Ã©tÃ© gÃ©nÃ©rÃ© automatiquement par le formulaire de soumission de rÃ©sumÃ© de thÃ¨se de {$contextName}.<br />\n<br />\nVeuillez confirmer que l\'information soumise est correcte. Sur rÃ©ception de votre confirmation, le rÃ©sumÃ© sera publiÃ© dans l\'Ã©dition en ligne de la revue.<br />\n<br />\nRÃ©pondre Ã  {$thesisName} ({$thesisEmail}) avec le contenu de ce message et votre confirmation, ainsi qu\'avec toutes les recommendations de clarification ou de correction.<br />\n<br />\nMerci.','Ce courriel est utilisÃ© pour confirmer la soumission d\'un rÃ©sumÃ© de thÃ¨se d\'un Ã©tudiant. Cette confirmation est envoyÃ©e au superviseur de l\'Ã©tudiant Ã  qui il est demandÃ© de confirmer les dÃ©tails du rÃ©sumÃ© soumis.'),('THESIS_ABSTRACT_CONFIRM','id_ID','Penyerahan Abstrak Tesis','Email ini secara otomatis dihasilkan oleh formulir penyerahan abstrak tesis{$contextName}.<br />\n<br />\nKonfirmasi bahwa informasi yang diserahkan benar. Saat menerima konfirmasi Anda, abstrak akan diterbitkan di edisi online jurnal.<br />\n<br />\nBalas ke {$thesisName} ({$thesisEmail}) dengan konten pesan ini dan konfirmasi Anda, serta koreksi atau klarifikasi yang direkomendasikan.  <br />\n<br />\nTerima kasih.<br />\n<br />\n<br />\nJudul : {$title} <br />\nPenulis : {$studentName}<br />\nGelar : {$degree}<br />\nNama Gelar: {$degreeName}<br />\nDepartemen : {$department}<br />\nUniversitas : {$university}<br />\nData Penerimaan : {$dateApproved}<br />\nSupervisor : {$supervisorName}<br />\n<br />\nAbstrak<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Template email ini digunakan untuk mengkonfirmasi penyerahan abstrak tesis oleh siswa. Ini dikirim ke supervisor penulis, yang diminta untuk mengkonfirmasi detail abstrak tesis yang diserahkan. '),('THESIS_ABSTRACT_CONFIRM','uk_UA','ÐŸÐ¾Ð´Ð°Ð½Ð½Ñ Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ñƒ Ð´Ð¸ÑÐµÑ€Ñ‚Ð°Ñ†Ñ–Ñ—','Ð¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð±ÑƒÐ² Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾ Ð·Ð³ÐµÐ½ÐµÑ€Ð¾Ð²Ð°Ð½Ð¸Ð¹ Ñ„Ð¾Ñ€Ð¼Ð¾ÑŽ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ñ–Ð² Ð´Ð¸ÑÐµÑ€Ñ‚Ð°Ñ†Ñ–Ð¹ Ð²Ð¸Ð´Ð°Ð½Ð½Ñ \"{$contextName}\".<br />\n<br />\nÐ‘ÑƒÐ´ÑŒ Ð»Ð°ÑÐºÐ°, Ð·Ð°ÑÐ²Ñ–Ð´Ñ‡Ñ–Ñ‚ÑŒ ÐºÐ¾Ñ€ÐµÐºÑ‚Ð½Ñ–ÑÑ‚ÑŒ Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð½Ð¾Ñ— Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ—. ÐŸÑ–ÑÐ»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ð’Ð°ÑˆÐ¾Ð³Ð¾ Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚ Ð±ÑƒÐ´Ðµ Ð¾Ð¿ÑƒÐ±Ð»Ñ–ÐºÐ¾Ð²Ð°Ð½Ð¸Ð¹ Ñƒ Ð¾Ð½Ð»Ð°Ð¹Ð½Ð¾Ð²Ñ–Ð¹ Ð²ÐµÑ€ÑÑ–Ñ— Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ.<br />\n<br />\nÐŸÑ€Ð¾ÑÑ‚Ð¾ Ð½Ð°Ð´Ñ–ÑˆÐ»Ñ–Ñ‚ÑŒ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´ÑŒ Ð½Ð° Ñ†ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ€Ñƒ {$thesisName} ({$thesisEmail}), Ð·Ð°Ð»Ð¸ÑˆÐ¸Ð²ÑˆÐ¸ Ð·Ð¼Ñ–ÑÑ‚ Ñ†ÑŒÐ¾Ð³Ð¾ Ð»Ð¸ÑÑ‚Ð° Ñ‚Ð° Ð´Ð¾Ð´Ð°Ð²ÑˆÐ¸ Ð’Ð°ÑˆÐµ Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ, Ð° Ñ‚Ð°ÐºÐ¾Ð¶ Ð±ÑƒÐ´ÑŒ-ÑÐºÑ– Ñ€ÐµÐºÐ¾Ð¼ÐµÐ½Ð´Ð°Ñ†Ñ–Ñ— Ñ‰Ð¾Ð´Ð¾ ÑƒÑ‚Ð¾Ñ‡Ð½ÐµÐ½ÑŒ Ñ– Ð²Ð¸Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½ÑŒ.<br />\n<br />\nÐ”ÑÐºÑƒÑ”Ð¼Ð¾.<br />\n<br />\n<br />\nÐÐ°Ð·Ð²Ð° : {$title} <br />\nÐÐ²Ñ‚Ð¾Ñ€ : {$studentName}<br />\nÐ¡Ñ‚ÑƒÐ¿Ñ–Ð½ÑŒ : {$degree}<br />\nÐÐ°Ð·Ð²Ð° ÑÑ‚ÑƒÐ¿ÐµÐ½Ñ: {$degreeName}<br />\nÐŸÑ–Ð´Ñ€Ð¾Ð·Ð´Ñ–Ð» : {$department}<br />\nÐ£Ð½Ñ–Ð²ÐµÑ€ÑÐ¸Ñ‚ÐµÑ‚ : {$university}<br />\nÐ”Ð°Ñ‚Ð° Ð¿Ñ€Ð¸Ð¹Ð½ÑÑ‚Ñ‚Ñ : {$dateApproved}<br />\nÐšÐµÑ€Ñ–Ð²Ð½Ð¸Ðº : {$supervisorName}<br />\n<br />\nÐ ÐµÑ„ÐµÑ€Ð°Ñ‚<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ñƒ Ð´Ð¸ÑÐµÑ€Ñ‚Ð°Ñ†Ñ–Ñ— Ð²Ñ–Ð´ Ð¿Ð¾ÑˆÑƒÐºÐ°Ñ‡Ð°. Ð›Ð¸ÑÑ‚ Ð½Ð°Ð´ÑÐ¸Ð»Ð°Ñ”Ñ‚ÑŒÑÑ Ð½Ð°ÑƒÐºÐ¾Ð²Ð¾Ð¼Ñƒ ÐºÐµÑ€Ñ–Ð²Ð½Ð¸ÐºÑƒ Ð¿Ð¾ÑˆÑƒÐºÐ°Ñ‡Ð° ÑÐº Ð·Ð°Ð¿Ð¸Ñ‚ Ð½Ð° Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ—, Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð½Ð¾Ñ— Ñ€Ð°Ð·Ð¾Ð¼ Ð· Ð°Ð²Ñ‚Ð¾Ñ€ÐµÑ„ÐµÑ€Ð°Ñ‚Ð¾Ð¼.'),('THESIS_ABSTRACT_CONFIRM','ar_IQ','ØªÙ‚Ø¯ÙŠÙ… Ù…Ù„Ø®Øµ Ø§Ù„Ø£Ø·Ø±ÙˆØ­Ø©','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù…ÙˆÙ„Ø¯Ø© Ø¢Ù„ÙŠØ§Ù‹ Ù…Ù† Ù‚Ø¨Ù„ Ù†Ù…ÙˆØ°Ø¬ ØªÙ‚Ø¯ÙŠÙ… Ù…Ù„Ø®Øµ Ø§Ù„Ø£Ø·Ø±ÙˆØ­Ø© ÙÙŠ Ù…Ø¬Ù„Ø© {$contextName}.<br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ø£ÙƒØ¯ Ù„Ù†Ø§ ØµØ­Ø© Ø¨ÙŠØ§Ù†Ø§Øª Ø§Ù„ØªÙ‚Ø¯ÙŠÙ… Ø§Ù„Ù…Ø¯Ø±Ø¬Ø© Ø£Ø¯Ù†Ø§Ù‡. Ø¨Ù…Ø¬Ø±Ø¯ Ø§Ø³ØªÙ„Ø§Ù…Ù†Ø§ Ù„Ø°Ù„Ùƒ Ø§Ù„ØªØ£ÙƒÙŠØ¯ØŒ Ø³ÙŠØªÙ… Ù†Ø´Ø± Ø§Ù„Ù…Ù„Ø®Øµ ÙÙŠ Ù†Ø³Ø®Ø© Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª Ù…Ù† Ø§Ù„Ù…Ø¬Ù„Ø©.<br />\n<br />\nØ¨Ø¨Ø³Ø§Ø·Ø©ØŒ Ø£Ø¬Ø¨ Ø¨Ø´Ø£Ù† {$thesisName} ({$thesisEmail}) Ù…Ø¹ Ù…Ø­ØªÙˆÙ‰ Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙˆØªØ£ÙƒÙŠØ¯Ùƒ Ù…Ø¹ Ø£ÙŠØ© ØªÙˆØ¶ÙŠØ­Ø§Øª Ø£Ùˆ ØªØµØ­ÙŠØ­Ø§Øª Ø£Ø®Ø±Ù‰.<br />\n<br />\nØ´ÙƒØ±Ø§Ù‹ Ø¬Ø²ÙŠÙ„Ø§Ù‹.<br />\n<br />\n<br />\nØ§Ù„Ø¹Ù†ÙˆØ§Ù† : {$title} <br />\nØ§Ù„Ù…Ø¤Ù„Ù : {$studentName}<br />\nØ§Ù„Ø¯Ø±Ø¬Ø© : {$degree}<br />\nØ§Ù„ØªÙ‚Ø¯ÙŠØ±: {$degreeName}<br />\nØ§Ù„Ù‚Ø³Ù… : {$department}<br />\nØ§Ù„Ø¬Ø§Ù…Ø¹Ø© : {$university}<br />\nØªØ£Ø±ÙŠØ® Ø§Ù„Ù‚Ø¨ÙˆÙ„ : {$dateApproved}<br />\nØ§Ù„Ù…Ø´Ø±Ù : {$supervisorName}<br />\n<br />\nØ§Ù„Ù…Ù„Ø®Øµ<br />\n--------<br />\n{$abstract}<br />\n<br />\n{$thesisContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªÙ‡Ø¯Ù Ø¥Ù„Ù‰ ØªØ£ÙƒÙŠØ¯ ØªÙ‚Ø¯ÙŠÙ… Ù…Ù„Ø®Øµ Ø§Ù„Ø£Ø·Ø±ÙˆØ­Ø© Ù…Ù† Ù‚Ø¨Ù„ Ø§Ù„Ø·Ø§Ù„Ø¨. ÙˆÙ‡ÙŠ Ù…Ø¹Ù†ÙˆÙ†Ø© Ø¥Ù„Ù‰ Ù…Ø´Ø±Ù Ø§Ù„Ø·Ø§Ù„Ø¨ØŒ Ø§Ù„Ø°ÙŠ ÙŠÙØ·Ù„Ø¨ Ù…Ù†Ù‡ ØªØ£ÙƒÙŠØ¯ ØªÙØ§ØµÙŠÙ„ Ù…Ù„Ø®Øµ Ø§Ù„Ø£Ø·Ø±ÙˆØ­Ø© Ø§Ù„Ù…Ù‚Ø¯Ù…Ø©.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','ca_ES','Error a l\'indexar un article','Ha aparegut un error d\'indexaciÃ³ a l\'actualitzar l\'Ã­ndex de l\'article.<br />\n<br />\nEl missatge d\'error generat pel servei web (si existeix) Ã©s: \"{$error}\"<br />\n<br />\nAquest correu l\'ha generat el connector de cerca Lucene de l\'Open Jornal System.','Aquesta plantilla de correu s\'utilitza per a notificar al contacte tÃ¨cnic\nde la revista en cas d\'aparÃ¨ixer algun error al indexar un article.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','ca_ES','Error a l\'indexar una revista','Ha aparegut un error d\'indexaciÃ³ a l\'actualitzar l\'Ã­ndex de la revista  \"{$contextName}\".<br />\n<br />\nEl missatge d\'error generat pel servei web (si existeix) Ã©s: \"{$error}\"<br />\n<br />\nAquest correu l\'ha generat el connector de cerca Lucene de l\'Open Jornal System.','Aquesta plantilla de correu s\'utilitza per a notificar al contacte tÃ¨cnic\nde la revista en cas d\'aparÃ¨ixer algun error al indexar una revista.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','ca_ES','Error amb el servei d\'indexaciÃ³','Ha aparegut un error al realitzar una cerca a l\'instalÂ·laciÃ³ \"{$siteName}\".<br />\n<br />\nEl missatge d\'error generat pel servei web (si existeix) Ã©s: \"{$error}\"<br />\n<br />\nAquest correu l\'ha generat el connector de cerca Lucene de l\'Open Jornal System.','Aquesta plantilla de correu s\'utilitza per a notificar al contacte tÃ¨cnic\nde la revista en cas d\'aparÃ¨ixer algun error al accedir al servei de cerca Solr.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','cs_CZ','Chyba sluÅ¾by vyhledÃ¡vÃ¡nÃ­ ÄasopisÅ¯','Vznikla chyba, kdyÅ¾ se nÄ›kdo pokouÅ¡el vyhledÃ¡vat v instalaci \"{$siteName}\".<br />\n<br />\nWebovÃ¡ sluÅ¾ba vygenerovala zprÃ¡vu (pokud ji vygenerovala): \"{$error}\"<br />\n<br />\nTento email vygeneroval plugin Open Journal Systems\' Lucene','Tento e-mail upozorÅˆuje technickÃ½ kontakt na chybu bÄ›hem pouÅ¾Ã­vÃ¡nÃ­ Solr vyhledÃ¡vacÃ­ sluÅ¾by'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','cs_CZ','Chyba indexovÃ¡nÃ­ Äasopisu','Vznikla chyba pÅ™i indexovÃ¡nÃ­ Äasopisu \"{$contextName}\".<br />\n<br />\nPokud vygeneroval systÃ©m nÄ›jakou chybovou hlÃ¡Å¡ku, je jejÃ­ obsah: \"{$error}\"<br />\n<br />\nTuto zprÃ¡vu vygeneroval automaticky plugin Open Journal Systems\' Lucene','Tato Å¡ablona emailu je pouÅ¾Ã­vÃ¡na pro upozornÄ›nÃ­ technickÃ©ho kontaktu Äasopisu na chybu, kterÃ¡ vznikla bÄ›hem indexace Äasopisu.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','cs_CZ','Chyba indexovÃ¡nÃ­ ÄlÃ¡nkÅ¯','Vznikla chyba pÅ™i aktualizaci indexovÃ¡nÃ­ ÄlÃ¡nkÅ¯.<br />\n<br />\nPokud vygeneroval systÃ©m nÄ›jakou chybovou hlÃ¡Å¡ku, je jejÃ­ obsah: \"{$error}\"<br />\n<br />\nTuto zprÃ¡vu vygeneroval automaticky plugin Open Journal Systems\' Lucene','Tato Å¡ablona e-mailu je pouÅ¾Ã­vÃ¡na na upozornÄ›nÃ­ technickÃ©ho kontaktu Äasopisu na chybu, kterÃ¡ vznikla bÄ›hem indexovÃ¡nÃ­ ÄlÃ¡nkÅ¯.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','da_DK','Artikelindekseringsfejl','An indexing error occurred while updating the article index.<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred during article indexing.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','da_DK','Tidsskriftsindekseringsfejl','An indexing error occurred while indexing the journal \"{$contextName}\".<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred during journal indexing.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','da_DK','Journal Search Service Error','An error occurred while someone tried to search the installation \"{$siteName}\".<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred while trying to access the Solr search service.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','de_DE','Artikelindizierungsfehler','Ein Indizierungsfehler ist bei der Aktualisierung des Artikel-Index aufgetreten.<br />\n<br />\nDie eventuell aufgetretene Fehlermeldung lautete: \"{$error}\"<br />\n<br />\nDiese E-Mail wurde durch das Lucene-Suche-Plug-In von Open Journal Systems erzeugt.','Diese E-Mail-Vorlage wird benutzt, um den technischen Kontakt einer Zeitschrift darÃ¼ber zu informieren,\ndass ein Fehler wÃ¤hrend der Artikelindizierung aufgetreten ist.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','de_DE','Zeitschriftenindizierungsfehler','Ein Indizierungsfehler ist bei der Indizierung der Zeitschrift  \"{$contextName}\" aufgetreten.<br />\n<br />\nDie eventuell aufgetretene Fehlermeldung lautete: \"{$error}\"<br />\n<br />\nDiese E-Mail wurde durch das Lucene-Suche-Plug-In von Open Journal Systems erzeugt.','Diese E-Mail-Vorlage wird benutzt, um den technischen Kontakt einer Zeitschrift darÃ¼ber zu informieren,\ndass ein Fehler wÃ¤hrend der Zeitschriftenindizierung aufgetreten ist.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','de_DE','Fehler des Zeitschriftensuchdienstes','Ein Fehler ist aufgetreten, wÃ¤hrend jemand versucht hat, die Installation \"{$siteName}\" zu durchsuchen.<br />\n<br />\nDie eventuell aufgetretene Fehlermeldung lautete: \"{$error}\"<br />\n<br />\nDiese E-Mail wurde durch das Lucene-Suche-Plug-In von Open Journal Systems erzeugt.','Diese E-Mail-Vorlage wird benutzt, um den technischen Kontakt einer Zeitschrift darÃ¼ber zu informieren,\ndass ein Fehler aufgetreten ist, wÃ¤hrend versucht wurde, auf den Solr-Suchdienst zuzugreifen.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','en_US','Article Indexing Error','An indexing error occurred while updating the article index.<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred during article indexing.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','en_US','Journal Indexing Error','An indexing error occurred while indexing the journal \"{$contextName}\".<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred during journal indexing.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','en_US','Journal Search Service Error','An error occurred while someone tried to search the installation \"{$siteName}\".<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred while trying to access the Solr search service.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','es_ES','Error de indexaciÃ³n de artÃ­culo','Se produjo un error de indexaciÃ³n mientras se actualizaba el Ã­ndice del artÃ­culo.<br />\n<br />\nEl mensaje de error generado por el servicio web (de haberlo):<br />\n<br />\n\"{$error}\"<br />\n<br />\nEl mÃ³dulo de bÃºsqueda Lucene de Open Journal Systems generÃ³ este correo electrÃ³nico.','Esta plantilla de correo electrÃ³nico se utiliza para notificar al contacto tÃ©cnico de una revista que se produjo un error durante la indexaciÃ³n de un artÃ­culo.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','es_ES','Error de indexaciÃ³n de revista','Se produjo un error de indexaciÃ³n mientras se actualizaba el Ã­ndice de la revista \"{$contextName}\".<br />\n<br />\nEl mensaje de error generado por el servicio web (de haberlo): \"{$error}\"<br />\n<br />\nEl mÃ³dulo de bÃºsqueda Lucene de Open Journal Systems generÃ³ este correo electrÃ³nico.','Esta plantilla de correo electrÃ³nico se utiliza para notificar al contacto tÃ©cnico de una revista que se produjo un error durante la indexaciÃ³n de la revista.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','es_ES','Error de servicio de bÃºsqueda de revista','Se produjo un error cuando se intentÃ³ buscar la instalaciÃ³n \"{$siteName}\".<br />\n<br />\nEl mensaje de error generado por el servicio web (de haberlo): \"{$error}\"<br />\n<br />\nEl mÃ³dulo de bÃºsqueda Lucene de Open Journal Systems generÃ³ este correo electrÃ³nico.','Esta plantilla de correo electrÃ³nico se utiliza para notificar al contacto tÃ©cnico de una revista que se produjo un error mientras se intentaba acceder al servicio de bÃºsquedas Solr.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','fr_CA','Erreur d\'indexation d\'un article','Une erreur d\'indexation est survenue lors de la mise Ã  jour de l\'indexation de l\'article.<br />\n<br />\nLe message d\'erreur gÃ©nÃ©rÃ© par le service web (s\'il y en a) : \"{$error}\"<br />\n<br />\nCe courriel est gÃ©nÃ©rÃ© par le plugiciel de recherche Lucene d\'OJS.',''),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','fr_CA','Erreur d\'indexation d\'une revue','Une erreur d\'indexation est survenue lors de l\'indexation de la revue \"{$contextName}\".<br />\n<br />\nLe message d\'erreur gÃ©nÃ©rÃ© par le service web (s\'il y en a) : \"{$error}\"<br />\n<br />\nCe courriel est gÃ©nÃ©rÃ© par le plugiciel de recherche Lucene d\'OJS.',''),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','fr_CA','Erreur du service de recherche de la revue','Une erreur d\'indexation est survenue lorsque quelqu\'un a tentÃ© de chercher l\'installation \"{$siteName}\".<br />\n<br />\nLe message d\'erreur gÃ©nÃ©rÃ© par le service web (s\'il y en a) : \"{$error}\"<br />\n<br />\nCe courriel est gÃ©nÃ©rÃ© par le plugiciel de recherche Lucene d\'OJS.',''),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','fr_FR','Erreur dâ€™indexation de lâ€™article','Une erreur dâ€™indexation sâ€™est produite au cours de la mise Ã  jour de lâ€™indexation de lâ€™article.<br />\n<br />\nMessage dâ€™erreur gÃ©nÃ©rÃ© par le service web (le cas Ã©chÃ©ant) : \"{$error}\"<br />\n<br />\nCe courriel est gÃ©nÃ©rÃ© par le plugiciel de recherche Lucene dâ€™Open Journal Systems.','Ce modÃ¨le de courriel est utilisÃ© pour notifier au contact technique de la revue qu\'une erreur sâ€™est produite lors de l\'indexation de l\'article.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','fr_FR','Erreur dâ€™indexation de la revue','Une erreur sâ€™est produite lors de l\'indexation de la revue \"{$contextName}\".<br />\n<br />\nMessage d\'erreur gÃ©nÃ©rÃ© par le service Web (le cas Ã©chÃ©ant): \"{$error}\"<br />\n<br />\nCe courriel est gÃ©nÃ©rÃ© par le plugiciel de recherche Lucene dâ€™Open Journal Systems.','Ce modÃ¨le de courriel est utilisÃ© pour notifier au contact technique de la revue qu\'une erreur sâ€™est produite lors de l\'indexation de la revue.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','fr_FR','Erreur du service de recherche de la revue','Une erreur dâ€™indexation sâ€™est produite Ã  lâ€™occasion dâ€™une tentative de recherche de l\'installation \"{$siteName}\".<br />\n<br />\nMessage d\'erreur gÃ©nÃ©rÃ© par le service Web (le cas Ã©chÃ©ant): \"{$error}\"<br />\n<br />\nCe courriel est gÃ©nÃ©rÃ© par le plugiciel Lucene recherche dâ€™Open Journal Systems.','Ce modÃ¨le de courriel est utilisÃ© pour notifier au contact technique de la revue quâ€™une erreur sâ€™est produite au cours dâ€™une action sur le service de recherche Solr.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','it_IT','Errore nell\'indicizzazione di un articolo','Si Ã¨ verificato un errore durante l\'indicizzazione dell\'articolo \"{$submissionTitle}\" pubblicato in \"{$contextName}\".<br />\n<br />\nQuesta email Ã¨ generata automaticamente dal plugin Lucene search di OJS','Questo messaggio viene inviato al contatto tecnico di una rivista in caso di errori occorsi durante l\'indicizzazione di un articolo.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','it_IT','Errore nell\'indicizzazione della rivista','Si Ã¨ verificato un errore durante l\'indicizzazione di \"{$contextName}\".<br />\n<br />\nQuesta email Ã¨ stata generata automaticamente dal plugin Lucene search di OJS.','Email inviata al supporto tecnico di una rivista in caso di errori occorsi durante l\'indicizzazione della rivista.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','it_IT','Errore nel sistema di ricerca','Si Ã¨ verificato un errore quando qualcuno ha tentato di accedere al sistema di ricerca di \"{$siteName}\".<br />\n<br />\nQuesta email Ã¨ stata generata automaticamente dal plugin Lucene search di OJS.','Questa email viene inviata al supporto tecnico di una rivista quando avviene un errore durante una ricerca.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','nl_NL','Tijdschrif zoekservice fout','Er is een fout opgetreden toen iemand probeerde te zoeken in \"{$siteName}\".<br />\n<br />\nDeze e-mail is gegenereerd door de Lucene zoekplugin van Open Journal Systems.','Dit e-mail sjabloon wordt gebruikt om de technische contactpersoon van een tijdschrift op de hoogte te brengen van een fout toen iemand de solr zoekdienst probeerde te gebruiken'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','nl_NL','Indexeerfout bij tijdschrift','Er is een indexeerfout opgetreden bij het indexeren van het tijdschrift \"{$contextName}\".<br />\n<br />\nDeze e-mail is gegenereerd door de Lucene zoekplugin van Open Journal Systems.','Dit e-mail sjabloon wordt gebruikt om de technische contactpersoon op de hoogte te brengen van een fout bij het indexeren van het tijdschrift.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','nl_NL','Artikel indexeerfout','Er is een indexeerfout opgetreden bij het bijwerken van de artikelindex\".<br />\n<br />\nDe foutboodschap die de webservice teruggaf is: \"{$error}\"<br />\n<br />\nDeze e-mail is gegenereerd door de Lucene zoekplugin van Open Journal Systems.','Dit e-mailsjabloon wordt gebruikt voor het op de hoogte brengen van  de technische contactpersoon van een tijdschrift van een indexeerfout van een artikel.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','pt_BR','Erro de indexaÃ§Ã£o do artigo','Ocorreu um erro ao atualizar o Ã­ndice do artigo.<br />\n<br />\nA mensagem de erro gerada pelo serviÃ§o (caso exista): \"{$error}\"<br />\n<br />\nEsta mensagem foi gerada automaticamente pelo plugin de pesquisa Lucene, do Open Journal Systems.','Este modelo de mensagem Ã© usado para notificar o contato tÃ©cnico de que um erro ocorreu ao indexar um artigo.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','pt_BR','Erro de indexaÃ§Ã£o de periÃ³dico','Ocorreu um erro ao indexar o periÃ³dico \"{$contextName}\".<br />\n<br />\nA mensagem de erro gerada pelo serviÃ§o (caso exista) \"{$error}\"<br />\n<br />\nEsta mensagem foi gerada pelo plugin de pesquisa Lucene, do Open Journal Systems','Este modelo de mensagem Ã© usado para notificar o contato tÃ©cnico de erro ocorrido durante a indexaÃ§Ã£o de um periÃ³dico.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','pt_BR','Erro no serviÃ§o de pesquisa do periÃ³dico','Ocorreu um erro ao tentar pesquisar na instalaÃ§Ã£o \"{$siteName}\".<br />\n<br />\nA mensagem de erro gerada pelo serviÃ§o (caso exista) \"{$error}\"<br />\n<br />\nEsta mensagem foi gerada pelo plugin de pesquisa Lucene, do Open Journal Systems','Este modelo de mensagem Ã© usado para notificar o contato tÃ©cnico de erro ocorrido ao tentar acessar o serviÃ§o de pesquisa Solr.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','pt_PT','Article Indexing Error','An indexing error occurred while updating the article index.<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred during article indexing.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','pt_PT','Journal Indexing Error','An indexing error occurred while indexing the journal \"{$contextName}\".<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred during journal indexing.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','pt_PT','Journal Search Service Error','An error occurred while someone tried to search the installation \"{$siteName}\".<br />\n<br />\nThe error message generated by the web service (if any): \"{$error}\"<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','This email template is used to notify the technical contact\nof a journal that an error occurred while trying to access the Solr search service.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','ru_RU','ÐžÑˆÐ¸Ð±ÐºÐ° Ð¸Ð½Ð´ÐµÐºÑÐ°Ñ†Ð¸Ð¸ ÑÑ‚Ð°Ñ‚ÑŒÐ¸','ÐŸÑ€Ð¸ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð½Ð´ÐµÐºÑÐ° ÑÑ‚Ð°Ñ‚ÑŒÐ¸ Ð¿Ñ€Ð¾Ð¸Ð·Ð¾ÑˆÐ»Ð° Ð¾ÑˆÐ¸Ð±ÐºÐ° Ð¸Ð½Ð´ÐµÐºÑÐ°Ñ†Ð¸Ð¸.<br />\n<br />\nÐ¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ðµ Ð¾Ð± Ð¾ÑˆÐ¸Ð±ÐºÐµ, ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾Ðµ Ð²ÐµÐ±-ÑÐ»ÑƒÐ¶Ð±Ð¾Ð¹ (ÐµÑÐ»Ð¸ Ð¾Ð½Ð¾ Ð±Ñ‹Ð»Ð¾): Â«{$error}Â»<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð±Ñ‹Ð»Ð¾ ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð¼ Ð¿Ð¾Ð¸ÑÐºÐ° Â«LuceneÂ» ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ Open Journal Systems.','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð¾Ð³Ð¾ Ð»Ð¸Ñ†Ð° Ñ‚ÐµÑ…Ð½Ð¸Ñ‡ÐµÑÐºÐ¾Ð¹ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ¸\nÐ¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð¿Ñ€Ð¾Ð¸Ð·Ð¾ÑˆÐ»Ð° Ð¾ÑˆÐ¸Ð±ÐºÐ° Ð²Ð¾ Ð²Ñ€ÐµÐ¼Ñ Ð¸Ð½Ð´ÐµÐºÑÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ ÑÑ‚Ð°Ñ‚ÑŒÐ¸.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','ru_RU','ÐžÑˆÐ¸Ð±ÐºÐ° Ð¸Ð½Ð´ÐµÐºÑÐ°Ñ†Ð¸Ð¸ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð°','ÐŸÑ€Ð¸ Ð¸Ð½Ð´ÐµÐºÑÐ°Ñ†Ð¸Ð¸ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Â«{$contextName}Â» Ð¿Ñ€Ð¾Ð¸Ð·Ð¾ÑˆÐ»Ð° Ð¾ÑˆÐ¸Ð±ÐºÐ° Ð¸Ð½Ð´ÐµÐºÑÐ°Ñ†Ð¸Ð¸.<br />\n<br />\nÐ¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ðµ Ð¾Ð± Ð¾ÑˆÐ¸Ð±ÐºÐµ, ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾Ðµ Ð²ÐµÐ±-ÑÐ»ÑƒÐ¶Ð±Ð¾Ð¹ (ÐµÑÐ»Ð¸ Ð¾Ð½Ð¾ Ð±Ñ‹Ð»Ð¾): Â«{$error}Â»<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð±Ñ‹Ð»Ð¾ ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð¼ Ð¿Ð¾Ð¸ÑÐºÐ° Â«LuceneÂ» ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ Open Journal Systems.','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð¾Ð³Ð¾ Ð»Ð¸Ñ†Ð° Ñ‚ÐµÑ…Ð½Ð¸Ñ‡ÐµÑÐºÐ¾Ð¹ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ¸\nÐ¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð¿Ñ€Ð¾Ð¸Ð·Ð¾ÑˆÐ»Ð° Ð¾ÑˆÐ¸Ð±ÐºÐ° Ð²Ð¾ Ð²Ñ€ÐµÐ¼Ñ Ð¸Ð½Ð´ÐµÐºÑÐ¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð°.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','ru_RU','ÐžÑˆÐ¸Ð±ÐºÐ° ÑÐ»ÑƒÐ¶Ð±Ñ‹ Ð¿Ð¾Ð¸ÑÐºÐ° Ð¶ÑƒÑ€Ð½Ð°Ð»Ð°','ÐŸÑ€Ð¸ Ð¿Ð¾Ð¿Ñ‹Ñ‚ÐºÐµ Ð²Ð¾ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÑŒÑÑ Ð¿Ð¾Ð¸ÑÐºÐ¾Ð¼ Ð½Ð° Ð¸Ð½ÑÑ‚Ð°Ð»Ð»ÑÑ†Ð¸Ð¸ Â«{$siteName}Â» Ð¿Ñ€Ð¾Ð¸Ð·Ð¾ÑˆÐ»Ð° Ð¾ÑˆÐ¸Ð±ÐºÐ°.<br />\n<br />\nÐ¡Ð¾Ð¾Ð±Ñ‰ÐµÐ½Ð¸Ðµ Ð¾Ð± Ð¾ÑˆÐ¸Ð±ÐºÐµ, ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾Ðµ Ð²ÐµÐ±-ÑÐ»ÑƒÐ¶Ð±Ð¾Ð¹ (ÐµÑÐ»Ð¸ Ð¾Ð½Ð¾ Ð±Ñ‹Ð»Ð¾): Â«{$error}Â»<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð±Ñ‹Ð»Ð¾ ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð¼ Ð¿Ð¾Ð¸ÑÐºÐ° Â«LuceneÂ» ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ Open Journal Systems.','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð¾Ð³Ð¾ Ð»Ð¸Ñ†Ð° Ñ‚ÐµÑ…Ð½Ð¸Ñ‡ÐµÑÐºÐ¾Ð¹ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ¸\nÐ¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð¿Ñ€Ð¸ Ð¿Ð¾Ð¿Ñ‹Ñ‚ÐºÐµ Ð¾Ð±Ñ€Ð°Ñ‰ÐµÐ½Ð¸Ñ Ðº Ð¿Ð¾Ð¸ÑÐºÐ¾Ð²Ð¾Ð¹ ÑÐ»ÑƒÐ¶Ð±Ðµ Solr Ð¿Ñ€Ð¾Ð¸Ð·Ð¾ÑˆÐ»Ð° Ð¾ÑˆÐ¸Ð±ÐºÐ°.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','uk_UA','ÐŸÐ¾Ð¼Ð¸Ð»ÐºÐ° Ñ–Ð½Ð´ÐµÐºÑÐ°Ñ†Ñ–Ñ— ÑÑ‚Ð°Ñ‚Ñ‚Ñ–','ÐŸÑ–Ð´ Ñ‡Ð°Ñ Ñ–Ð½Ð´ÐµÐºÑÐ°Ñ†Ñ–Ñ— ÑÑ‚Ð°Ñ‚Ñ‚Ñ– \"{$submissionTitle}\" Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ \"{$contextName}\" Ð²Ð¸Ð½Ð¸ÐºÐ»Ð° Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°.<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð±ÑƒÐ² Ð·Ð³ÐµÐ½ÐµÑ€Ð¾Ð²Ð°Ð½Ð¸Ð¹ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Lucene ÑÐ¸ÑÑ‚ÐµÐ¼Ð¸ Open Journal Systems.','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð¾Ñ— Ð¾ÑÐ¾Ð±Ð¸ Ð· Ñ‚ÐµÑ…Ð½Ñ–Ñ‡Ð½Ð¸Ñ… Ð¿Ð¸Ñ‚Ð°Ð½ÑŒ Ð¿Ñ€Ð¾ Ð²Ð¸Ð½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ¸ Ñ–Ð½Ð´ÐµÐºÑÐ°Ñ†Ñ–Ñ— ÑÑ‚Ð°Ñ‚Ñ‚Ñ– Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','uk_UA','ÐŸÐ¾Ð¼Ð¸Ð»ÐºÐ° Ñ–Ð½Ð´ÐµÐºÑÐ°Ñ†Ñ–Ñ— Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ','ÐŸÑ–Ð´ Ñ‡Ð°Ñ Ñ–Ð½Ð´ÐµÐºÑÐ°Ñ†Ñ–Ñ— Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ \"{$contextName}\" Ð²Ð¸Ð½Ð¸ÐºÐ»Ð° Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°.<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð·Ð³ÐµÐ½ÐµÑ€Ð¾Ð²Ð°Ð½Ð¸Ð¹ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Lucene ÑÐ¸ÑÑ‚ÐµÐ¼Ð¸ Open Journal Systems.','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð¾Ñ— Ð¾ÑÐ¾Ð±Ð¸ Ð· Ñ‚ÐµÑ…Ð½Ñ–Ñ‡Ð½Ð¸Ñ… Ð¿Ð¸Ñ‚Ð°Ð½ÑŒ Ð¿Ñ€Ð¾ Ð²Ð¸Ð½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ¸ Ñ–Ð½Ð´ÐµÐºÑÐ°Ñ†Ñ–Ñ— Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','uk_UA','ÐŸÐ¾Ð¼Ð¸Ð»ÐºÐ° ÑÐ»ÑƒÐ¶Ð±Ð¸ Ð¶ÑƒÑ€Ð½Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ Ð¿Ð¾ÑˆÑƒÐºÑƒ','ÐŸÑ–Ð´ Ñ‡Ð°Ñ Ð¿Ð¾ÑˆÑƒÐºÑƒ, Ð¿Ñ€Ð¾Ð²ÐµÐ´ÐµÐ½Ð¾Ð³Ð¾ ÐºÐ¸Ð¼Ð¾ÑÑŒ Ð½Ð° ÑÐ°Ð¹Ñ‚Ñ– \"{$siteName}\" Ð²Ð¸Ð½Ð¸ÐºÐ»Ð° Ð¿Ð¾Ð¼Ð¸Ð»ÐºÐ°.<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð·Ð³ÐµÐ½ÐµÑ€Ð¾Ð²Ð°Ð½Ð¸Ð¹ Ð¿Ð¾ÑˆÑƒÐºÐ¾Ð²Ð¸Ð¼ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Lucene ÑÐ¸ÑÑ‚ÐµÐ¼Ð¸ Open Journal Systems.','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ñ–Ð¹ Ð¾ÑÐ¾Ð±Ñ– Ð· Ñ‚ÐµÑ…Ð½Ñ–Ñ‡Ð½Ð¸Ñ… Ð¿Ð¸Ñ‚Ð°Ð½ÑŒ Ð¿Ñ€Ð¾ Ð¿Ð¾Ð¼Ð¸Ð»ÐºÑƒ Ð¿Ñ–Ð´ Ñ‡Ð°Ñ ÑÐ¿Ñ€Ð¾Ð±Ð¸ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ñƒ Ð´Ð¾ Ð¿Ð¾ÑˆÑƒÐºÐ¾Ð²Ð¾Ñ— ÑÐ»ÑƒÐ¶Ð±Ð¸ solr.'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','zh_CN','æ–‡ç« ç´¢å¼•é”™è¯¯','An indexing error occurred while indexing the article \"{$submissionTitle}\" in the journal \"{$contextName}\".<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','æ­¤ç”µå­é‚®ä»¶æ¨¡æ¿ç”¨äºŽé€šçŸ¥æœŸåˆŠçš„æŠ€æœ¯æ”¯æŒï¼Œæ–‡ç« ç´¢å¼•è¿‡ç¨‹ä¸­å‘ç”Ÿäº†é”™è¯¯ã€‚'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','zh_CN','Journal Indexing Error','An indexing error occurred while indexing the journal \"{$contextName}\".<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','æ­¤ç”µå­é‚®ä»¶æ¨¡æ¿ç”¨äºŽé€šçŸ¥æœŸåˆŠçš„æŠ€æœ¯æ”¯æŒï¼ŒæœŸåˆŠç´¢å¼•çš„è¿‡ç¨‹ä¸­å‡ºçŽ°é”™è¯¯ã€‚'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','zh_CN','æœç´¢æœåŠ¡çš„é”™è¯¯','An error occurred while someone tried to search the installation \"{$siteName}\".<br />\n<br />\nThis email was generated by Open Journal Systems\' Lucene search plugin.','æ­¤ç”µå­é‚®ä»¶æ¨¡æ¿ç”¨äºŽé€šçŸ¥æœŸåˆŠçš„æŠ€æœ¯æ”¯æŒè¯´æ˜ŽæœŸåˆŠè¯•å›¾è®¿é—®Solræœç´¢æœåŠ¡å‡ºçŽ°äº†ä¸€ä¸ªé”™è¯¯'),('LUCENE_ARTICLE_INDEXING_ERROR_NOTIFICATION','ar_IQ','Ø®Ø·Ø£ ÙÙ‡Ø±Ø³Ø© Ø§Ù„Ù…Ø¤Ù„Ù‘ÙŽÙ','Ø­Ø¯Ø« Ø®Ø·Ø£ Ù…Ø§ Ø¹Ù†Ø¯ Ù…Ø­Ø§ÙˆÙ„Ø© ØªØ¹Ø¯ÙŠÙ„ ÙÙ‡Ø±Ø³ Ø§Ù„Ù…Ø¤Ù„Ù‘ÙŽÙ.<br />\n<br />\nØ±Ø³Ø§Ù„Ø© Ø§Ù„Ø®Ø·Ø£ Ø§Ù„Ù…ÙˆÙ„Ø¯Ø© Ù…Ù† Ù‚Ø¨Ù„ Ø®Ø¯Ù…Ø© Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª (Ø¥Ù† ÙˆØ¬Ø¯Øª): \"{$error}\"<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ø£Ù†Ø´Ø£Ù‡Ø§ Ù†Ø¸Ø§Ù… Ø§Ù„Ù…Ø¬Ù„Ø§Øª Ø§Ù„Ù…ÙØªÙˆØ­Ø© Ø¹Ø¨Ø± Ø¥Ø¶Ø§ÙØ© Ø§Ù„Ø¨Ø­Ø« Lucene.','Ù‚Ø§Ù„Ø¨ Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù…Ø³ØªØ¹Ù…Ù„ Ù„Ø¥Ø´Ø¹Ø§Ø± Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø§ØªØµØ§Ù„ Ø§Ù„ÙÙ†ÙŠ ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø© Ø¨Ø£Ù† Ø®Ø·Ø£Ù‹ Ù…Ø§ Ø­Ø¯Ø« Ø£Ø«Ù†Ø§Ø¡ ÙÙ‡Ø±Ø³Ø© Ø£Ø­Ø¯ Ø§Ù„Ù…Ø¤Ù„ÙØ§Øª.'),('LUCENE_JOURNAL_INDEXING_ERROR_NOTIFICATION','ar_IQ','Ø®Ø·Ø£ ÙÙŠ ÙÙ‡Ø±Ø³Ø© Ø§Ù„Ù…Ø¬Ù„Ø©','Ø­Ø¯Ø« Ø®Ø·Ø£ Ù…Ø§ Ø¹Ù†Ø¯ ÙÙ‡Ø±Ø³Ø© Ø§Ù„Ù…Ø¬Ù„Ø© \"{$contextName}\".<br />\n<br />\nØ±Ø³Ø§Ù„Ø© Ø§Ù„Ø®Ø·Ø£ Ø§Ù„Ù…ÙˆÙ„Ø¯Ø© Ù…Ù† Ù‚Ø¨Ù„ Ø®Ø¯Ù…Ø© Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª (Ø¥Ù† ÙˆØ¬Ø¯Øª): \"{$error}\"<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ø£Ù†Ø´Ø£Ù‡Ø§ Ù†Ø¸Ø§Ù… Ø§Ù„Ù…Ø¬Ù„Ø§Øª Ø§Ù„Ù…ÙØªÙˆØ­Ø© Ø¹Ø¨Ø± Ø¥Ø¶Ø§ÙØ© Ø§Ù„Ø¨Ø­Ø«.','Ù‚Ø§Ù„Ø¨ Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù…Ø³ØªØ¹Ù…Ù„ Ù„Ø¥Ø´Ø¹Ø§Ø± Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø§ØªØµØ§Ù„ Ø§Ù„ÙÙ†ÙŠ ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø© Ø¨Ø£Ù† Ø®Ø·Ø£Ù‹ Ù…Ø§ Ø­Ø¯Ø« Ø£Ø«Ù†Ø§Ø¡ ÙÙ‡Ø±Ø³Ø© Ø§Ù„Ù…Ø¬Ù„Ø©.'),('LUCENE_SEARCH_SERVICE_ERROR_NOTIFICATION','ar_IQ','Ø®Ø·Ø£ ÙÙŠ Ø®Ø¯Ù…Ø© Ø§Ù„Ø¨Ø­Ø« ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø©','Ø­Ø¯Ø« Ø®Ø·Ø£ Ù…Ø§ Ø¹Ù†Ø¯ Ù…Ø­Ø§ÙˆÙ„Ø© Ø£Ø­Ø¯Ù‡Ù… Ø§Ù„Ø¨Ø­Ø« ÙÙŠ \"{$siteName}\".<br />\n<br />\nØ±Ø³Ø§Ù„Ø© Ø§Ù„Ø®Ø·Ø£ Ø§Ù„Ù…ÙˆÙ„Ø¯Ø© Ù…Ù† Ù‚Ø¨Ù„ Ø®Ø¯Ù…Ø© Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª (Ø¥Ù† ÙˆØ¬Ø¯Øª): \"{$error}\"<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ø£Ù†Ø´Ø£Ù‡Ø§ Ù†Ø¸Ø§Ù… Ø§Ù„Ù…Ø¬Ù„Ø§Øª Ø§Ù„Ù…ÙØªÙˆØ­Ø© Ø¹Ø¨Ø± Ø¥Ø¶Ø§ÙØ© Ø§Ù„Ø¨Ø­Ø«.','Ù‚Ø§Ù„Ø¨ Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù…Ø³ØªØ¹Ù…Ù„ Ù„Ø¥Ø´Ø¹Ø§Ø± Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø§ØªØµØ§Ù„ Ø§Ù„ÙÙ†ÙŠ ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø© Ø¨Ø£Ù† Ø®Ø·Ø£Ù‹ Ù…Ø§ Ø­Ø¯Ø« Ø£Ø«Ù†Ø§Ø¡ Ù…Ø­Ø§ÙˆÙ„Ø© Ø§Ø³ØªØ¹Ù…Ø§Ù„ Ø®Ø¯Ù…Ø© Ø§Ù„Ø¨Ø­Ø« Ø§Ù„Ù…Ø¬Ø±Ø¯Ø© ÙÙŠ Ø§Ù„Ù…ÙˆÙ‚Ø¹.'),('SWORD_DEPOSIT_NOTIFICATION','ca_ES','NotificaciÃ³ de dipÃ²sit','Enhorabona per l\'acceptaciÃ³ de la teva presentaciÃ³, \"($ articleTitle)\", per a ser publicada a {$contextName}. Si ho desitges, pot dipositar de forma automÃ tica la teva presentaciÃ³ a un o varis repositoris.<br />\n<br />\nVagi a <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> per a continuar.<br />\n<br />\nAquest correu electrÃ²nic ha estat generat per Open Journal Systems\' - MÃ²dul SWORD de dipÃ²sits.','Aquesta plantilla de correu s\'utilitza per a notificar a l\'autor de qÃ¼estions opcionals en dipÃ²sits de tipus SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','cs_CZ','UpozornÄ›nÃ­ o uloÅ¾enÃ­','Gratulujeme k pÅ™ijetÃ­ vaÅ¡eho pÅ™Ã­spÄ›vku \"{$submissionTitle}\" k publikaci v Äasopisu {$contextName}. Pokud se rozhodnete, mÅ¯Å¾ete ÄlÃ¡nek automaticky uloÅ¾it do jednoho Äi vÃ­ce repozitÃ¡Å™Å¯.<br />\n<br />\nJdÄ›te na <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> pro toto uloÅ¾enÃ­.<br />\n<br />\nTento e-mail byl automaticky vygenerovanÃ½ pomocÃ­ pluginu Open Journal Systems\' SWORD.','Tato Å¡ablona emailu je pouÅ¾Ã­vÃ¡na na upozornÄ›nÃ­ autora na moÅ¾nost uloÅ¾enÃ­ ÄlÃ¡nku v jednotlivÃ½ch repozitÃ¡Å™Ã­ch SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','da_DK','Deponeringsmeddelelse','Tillykke med, at dit bidrag \"{$submissionTitle}\" er blevet accepteret til udgivelse i {$contextName}. Hvis du Ã¸nsker det, kan du automatisk deponere dit bidrag pÃ¥ et eller flere lagringssteder.<br />\n<br />\nGÃ¥ til <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> for at fortsÃ¦tte.<br />\n<br />\nDenne e-mail blev genereret af SWORD-deponerings-plugin i Open Journal Systems.','Denne e-mail-skabelon anvendes til at underrette en forfatter om deponeringssteder til valgfri SWORD-deponeringer.'),('SWORD_DEPOSIT_NOTIFICATION','fr_FR','Avis de dÃ©pÃ´t','FÃ©licitations pour l\'acceptation de votre soumission, \"{$submissionTitle}\", pour publication dans la revue {$contextName}. Si vous le souhaitez, vous pouvez dÃ©poser automatiquement votre soumission dans un ou plusieurs de nos services d\'archivage.<br />\n<br />\nAllez Ã  <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> afin de procÃ©der.<br />\n<br />\nCe courriel a Ã©tÃ© gÃ©nÃ©rÃ© par le plugiciel de dÃ©pÃ´t SWORD du Open Journal Systems.','Ce modÃ¨le de courriel est utilisÃ© pour avertir un auteur qu\'il peut dÃ©poser s\'il le dÃ©sire sa soumission dans SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','id_ID','Notifikasi Deposit','Selamat atas diterimanya naskah Anda, \"{$submissionTitle}\", untuk penerbitan di  {$contextName}. Jika Anda memilih, Anda boleh secara otomatis menyimpan naskah Anda di satu repositori atau lebih.  <br />\n<br />\nPergi ke <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> untuk melanjutkan.<br />\n<br />\nEmail ini dihasilkan oleh Plugin deposit SWORD Open Journal System.','Template email ini digunakan untuk memberitahu penulis poin deposit opsional untuk SWORD deposits.'),('SWORD_DEPOSIT_NOTIFICATION','ru_RU','Ð£Ð²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ðµ Ð¾ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ðµ Ð½Ð° Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ðµ','ÐŸÐ¾Ð·Ð´Ñ€Ð°Ð²Ð»ÑÐµÐ¼ Ð’Ð°Ñ Ñ Ð¿Ñ€Ð¸Ð½ÑÑ‚Ð¸ÐµÐ¼ Ð²Ð°ÑˆÐµÐ³Ð¾ Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð° Â«{$submissionTitle}Â» Ð´Ð»Ñ Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ð¸ Ð² Ð¶ÑƒÑ€Ð½Ð°Ð»Ðµ Â«{$contextName}Â». Ð•ÑÐ»Ð¸ Ð²Ñ‹ Ð²Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ, Ñ‚Ð¾ Ð¼Ð¾Ð¶ÐµÑ‚Ðµ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ¸ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‚ÑŒ Ð²Ð°Ñˆ Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð» Ð½Ð° Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ðµ Ð² Ð¾Ð´Ð¸Ð½ Ð¸Ð»Ð¸ Ð½ÐµÑÐºÐ¾Ð»ÑŒÐºÐ¾ Ñ€ÐµÐ¿Ð¾Ð·Ð¸Ñ‚Ð¾Ñ€Ð¸ÐµÐ².<br />\n<br />\nÐ”Ð»Ñ Ð¿Ñ€Ð¾Ð´Ð¾Ð»Ð¶ÐµÐ½Ð¸Ñ Ð¿ÐµÑ€ÐµÐ¹Ð´Ð¸Ñ‚Ðµ Ð¿Ð¾ Ð°Ð´Ñ€ÐµÑÑƒ <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a>.<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð±Ñ‹Ð»Ð¾ ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾ Ð¿Ð»Ð°Ð³Ð¸Ð½Ð¾Ð¼ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ð¸ Ð½Ð° Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ðµ Â«SWORDÂ» Open Journal Systems.','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ð° Ð¾ Ð²Ð¾Ð·Ð¼Ð¾Ð¶Ð½Ñ‹Ñ… Ñ‚Ð¾Ñ‡ÐºÐ°Ñ… Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ´Ð°Ñ‡Ð¸ Ð¿Ð¾ Ð¿Ñ€Ð¾Ñ‚Ð¾ÐºÐ¾Ð»Ñƒ SWORD.'),('SWORD_DEPOSIT_NOTIFICATION','ar_IQ','Ø¥Ø´Ø¹Ø§Ø± Ø¥ÙŠØ¯Ø§Ø¹','ØªÙ‡Ø§Ù†ÙŠÙ†Ø§ Ø§Ù„Ø­Ø§Ø±Ø© Ø¹Ù„Ù‰ Ù‚Ø¨ÙˆÙ„ Ø·Ù„Ø¨Ùƒ Ù„Ù†Ø´Ø± Ù…Ø¤Ù„ÙÙƒ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… \"{$submissionTitle}\" ÙÙŠ Ù…Ø¬Ù„Ø© {$contextName}. Ø¥Ù† Ø±ØºØ¨ØªÙƒ ÙÙŠ Ø°Ù„ÙƒØŒ Ø¨Ø¥Ù…ÙƒØ§Ù†Ùƒ Ø§Ø®ØªÙŠØ§Ø± Ø§Ù„Ø¥ÙŠØ¯Ø§Ø¹ Ø§Ù„Ø¢Ù„ÙŠ Ù„Ø·Ù„Ø¨Ùƒ ÙÙŠ ÙˆØ§Ø­Ø¯ Ø£Ùˆ Ø£ÙƒØ«Ø± Ù…Ù† Ø§Ù„Ù…Ø³ØªÙˆØ¯Ø¹Ø§Øª.<br />\n<br />\nØ¥Ø°Ù‡Ø¨ Ø¥Ù„Ù‰ <a href=\"{$swordDepositUrl}\">{$swordDepositUrl}</a> Ù„Ù„Ù…ØªØ§Ø¨Ø¹Ø©.<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠÙˆÙ„Ø¯Ù‡Ø§ Ù†Ø¸Ø§Ù… Ø§Ù„Ù…Ø¬Ù„Ø§Øª Ø§Ù„Ù…ÙØªÙˆØ­Ø© Ù…Ø³ØªØ¹Ù…Ù„Ø§Ù‹ Ø¥Ø¶Ø§ÙØ© Ø§Ù„Ø¥ÙŠØ¯Ø§Ø¹ SWORD.','Ù‚Ø§Ù„Ø¨ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù‡Ø°Ø§ ÙŠÙØ³ØªØ¹Ù…Ù„ Ù„Ø¥Ø´Ø¹Ø§Ø± Ø§Ù„Ù…Ø¤Ù„Ù Ø¨Ù…ÙˆØ§Ø¶Ø¹ Ø§Ù„Ø¥ÙŠØ¯Ø§Ø¹ Ø§Ù„Ø§Ø®ØªÙŠØ§Ø±ÙŠØ© Ø§Ù„ØªÙŠ ØªÙ‚Ø¯Ù…Ù‡Ø§ Ø¥Ø¶Ø§ÙØ© Ø§Ù„Ø¥ÙŠØ¯Ø§Ø¹ SWORD.'),('BFR_REVIEW_REMINDER','ca_ES','SolÂ·licitud de Ressenya: Recordatori de la data de venciment','Benvolgut/da {$authorName}:<br />\n<br />\nAquest Ã©s un recordatori de la ressenya del llibre {$bookForReviewTitle} que s\'ha de realitzar abans de {$bookForReviewDueDate}.<br />\n<br />\nPer a enviar la teva ressenya del llibre, inicia la sessiÃ³ al Web de la revista i completa el procÃ©s de enviament de revisiÃ³ en lÃ­nia. Per a facilitar-te l\'accÃ©s, a continuaciÃ³ trobarÃ s un enllaÃ§ directe:<br />\n<br />\nURL de la tramesa: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, no dubtis a posar-te en contacte amb nosaltres si tens algun alguna pregunta o inquietud sobre aquesta ressenya.<br />\n<br />\nGrÃ cies per la teva contribuciÃ³ a la revista<br />\n<br />\n{$editorialContactSignature}','Aquesta plantilla de correu s\'envia automÃ ticament a l\'autor/a de la ressenya d\'un llibre com a recordatori quan la data de venciment s\'apropa.'),('BFR_REVIEW_REMINDER_LATE','ca_ES','Ressenya de llibre: Data de venciment','Benvolgut/da {$authorName}:<br />\n<br />\nAquest Ã©s un recordatori de la ressenya del llibre {$bookForReviewTitle} que va vÃ¨ncer el {$bookForReviewDueDate} perÃ² que encara no hem rebut.<br />\n<br />\nPer a enviar la teva ressenya del llibre, inicia la sessiÃ³ al Web de la revista i completa el procÃ©s de enviament de revisiÃ³ en lÃ­nia. Per a facilitar-te l\'accÃ©s, a continuaciÃ³ trobarÃ s un enllaÃ§ directe:<br />\n<br />\nURL de la tramesa: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, no dubtis a posar-te en contacte amb nosaltres si tens algun alguna pregunta o inquietud sobre aquesta ressenya.<br />\n<br />\nGrÃ cies per la teva contribuciÃ³ a la revista<br />\n<br />\n{$editorialContactSignature}','Aquesta plantilla de correu s\'envia automÃ ticament a l\'autor/a de la ressenya d\'un llibre com a recordatori de que s\'ha complert la data de venciment.'),('BFR_BOOK_ASSIGNED','ca_ES','Ressenya de llibre: Llibre assignat','Benvolgut/da {$authorName}:<br />\n<br />\nAquest correu confirma que se t\'ha assignat la ressenya del llibre {$bookForReviewTitle} que ha de ser entregada abans del {$bookForReviewDueDate}.<br />\n<br />\nSi us plau, confirmeu que l\'adreÃ§a de correu del vostre perfil d\'usuari/Ã ria estÃ  al dia. Aquesta adreÃ§a s\'utilitzarÃ  per a enviar-te una cÃ²pia de la peticiÃ³ de revisiÃ³.<br />\n<br />\nL\'adreÃ§a de correu de la que disposem al nostre arxiu Ã©s:<br />\n{$authorMailingAddress}<br />\n<br />\nSi l\'adreÃ§a fos incompleta o ja no estÃ  disponible, si us plau utilitza la segÃ¼ent adreÃ§a URL per a actualitzar el teu perfil:<br />\n<br />\n<a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPer a enviar la teva ressenya, inicia la sessiÃ³ al Web de la revista i completa el procÃ©s d\'enviament d\'articles en lÃ­nia amb:<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, no dubtis a posar-te en contacte amb nosaltres si tens algun alguna pregunta o inquietud sobre aquesta ressenya.<br />\n<br />\n{$editorialContactSignature}','Aquesta plantilla de correu l\'envien els editors als autors/es de ressenyes de llibres quan l\'editor/a assigna un llibre a un autor/a per a ser revisat.'),('BFR_BOOK_DENIED','ca_ES','Ressenya de llibre','Benvolgut/da {$authorName}:<br />\n<br />\nMalauradament, en aquest moment no puc assignar-te la peticiÃ³ de revisiÃ³ del llibre {$bookForReviewTitle}.<br />\n<br />\nEspero consideris la revisiÃ³ d\'un altre peticiÃ³ de la nostre llista, ja sigui en aquest moment o en un futur.<br />\n<br />\n{$editorialContactSignature}','Aquesta plantilla de correu l\'envia un editor/a a l\'autor/a interessat quan la peticiÃ³ ja no estÃ  disponible per a revisiÃ³.'),('BFR_BOOK_REQUESTED','ca_ES','Ressenya de llibre: SolÂ·licitud','Benvolgut/da {$editorName}:<br />\n<br />\nEstic interessat a escriure la ressenya del llibre {$bookForReviewTitle}.<br />\n<br />\nSi us plau, podries confirmar que el llibre encara es troba disponible per a revisiÃ³?<br />\n<br />\n{$authorContactSignature}','Aquesta plantilla de correu s\'envia a un editor/a quan un l\'autor/a estÃ  interessat a revisar un llibre de la llista.'),('BFR_BOOK_MAILED','ca_ES','Ressenya de llibre: Llibre enviat','Benvolgut/da {$authorName}:<br />\n<br />\nAquest missatge confirma que s\'ha enviat el llibre {$bookForReviewTitle} a la segÃ¼ent adreÃ§a:<br />\n{$authorMailingAddress}<br />\n<br />\nPer a enviar la teva ressenya, inicia la sessiÃ³ al Web de la revista i completa el procÃ©s d\'enviament d\'articles en lÃ­nia amb:<br />\n<br />\nURL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSi us plau, no dubtis a posar-te en contacte amb nosaltres si tens algun alguna pregunta o inquietud sobre aquesta ressenya.<br />\n<br />\n{$editorialContactSignature}','Aquesta plantilla de correu l\'envia un editor/a a un autor/a de ressenyes quan l\'editor/a envia una copia del llibre a un autor/a.'),('BFR_REVIEWER_REMOVED','ca_ES','Ressenya de llibre','Benvolgut/da {$authorName}:<br />\n<br />\nAquest missatge confirma que has estat retirat de la llista de revisors del llibre {$bookForReviewTitle} i que la revisiÃ³ la realitzarÃ  un altre autor/a.<br />\n<br />\nEspero consideris la revisiÃ³ d\'un altre peticiÃ³ de la nostre llista, ja sigui en aquest moment o en un futur.<br />\n<br />\n{$editorialContactSignature}','Aquesta plantilla de correu l\'envia un editor/a a un autor/a de ressenyes quan un llibre ja no estÃ  disponible per a revisiÃ³.'),('BFR_REVIEWER_REMOVED','cs_CZ','Kniha k recenzi','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nTento email potvrzuje, Å¾e vÃ¡m byla odebrÃ¡na role recenzenta knihy {$bookForReviewTitle}, kterÃ¡ tÃ­mto byla uvolnÄ›na pro dalÅ¡Ã­ zÃ¡jemce o recenze knih.<br />\n<br />\nDoufÃ¡me, Å¾e si vyberete k recenzi jinou knihu z naÅ¡Ã­ nabÃ­dky aÅ¥ jiÅ¾ hned, nebo v budoucnosti.<br />\n<br />\n{$editorialContactSignature}','Tento email je zasÃ­lÃ¡n editorem recenzentovi knihy, kterÃ½ ztratil zÃ¡jem o jejÃ­ recenzi.'),('BFR_BOOK_MAILED','cs_CZ','Kniha k recenzi: Kniha zaslÃ¡na','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nTento mail potvrzuje, Å¾e vÃ¡m byla zaslÃ¡na kopie knihy {$bookForReviewTitle} na nÃ¡sledujÃ­cÃ­ e-mailovou adresu z vaÅ¡eho profilu:<br />\n{$authorMailingAddress}<br />\n<br />\nK odevzdÃ¡nÃ­ recenze knihy se, prosÃ­m, pÅ™ihlaste na strÃ¡nkÃ¡ch Äasopisu a dokonÄete proces odevzdÃ¡nÃ­ ÄlÃ¡nku.<br />\n<br />\nURL pro vÃ¡Å¡ pÅ™Ã­spÄ›vek: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nNevÃ¡hejte mne kontaktovat, pokud mÃ¡te jakÃ©koliv dotazy k recenzi knihy.<br />\n<br />\n{$editorialContactSignature}','Tento e-mail zasÃ­lÃ¡ editor recenzentovi knihy po zaslÃ¡nÃ­ kopie knihy k recenzi'),('BFR_BOOK_REQUESTED','cs_CZ','Kniha k recenzi: Kniha je poÅ¾adovÃ¡no','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$editorName}:<br />\n<br />\nMÃ¡m zÃ¡jem napsat recenzi knihy {$bookForReviewTitle}.<br />\n<br />\nMÅ¯Å¾ete mi, prosÃ­m, potvrdit, Å¾e je kniha nadÃ¡le dostupnÃ¡ k recenzi?<br />\n<br />\n{$authorContactSignature}','Tento e-mail posÃ­lÃ¡ autor potenciÃ¡lnÃ­ recenze knihy editorovi.'),('BFR_BOOK_DENIED','cs_CZ','Kniha k recenzi','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nBohuÅ¾el, knihu {$bookForReviewTitle} vÃ¡m nemohu v tomto okamÅ¾iku pÅ™idÄ›lit k recenzi.<br />\n<br />\nByli bychom rÃ¡di, kdybyste si vybral/a jinou knihu z naÅ¡eho seznamu k recenzi, buÄ nynÃ­, Äi kdykoliv v budoucnosti.<br />\n<br />\n<br />\n{$editorialContactSignature}','Tento e-mail posÃ­lÃ¡ editor potenciÃ¡lnÃ­mu recenzentovi knihy v pÅ™Ã­padÄ›, Å¾e kniha uÅ¾ nenÃ­ dostupnÃ¡ k recenzi.'),('BFR_BOOK_ASSIGNED','cs_CZ','Kniha k recenzi: pÅ™idÄ›lenÃ­','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nTento e-mail potvrzuje, Å¾e kniha {$bookForReviewTitle} vÃ¡m byla pÅ™idÄ›lena k recenzi. Tato recenze by mÄ›la bÃ½t dokonÄena do  {$bookForReviewDueDate}.<br />\n<br />\nUjistÄ›te se, prosÃ­m, Å¾e vaÅ¡e emailovÃ¡ adresa v zobrazenÃ©m profilu je sprÃ¡vnÃ¡. Na tuto adresu vÃ¡m zaÅ¡leme kopii knihy k recenzi.<br />\n<br />\nE-mailovÃ¡ adresa, kterou mÃ¡me v souÄasnosti uloÅ¾enou u vaÅ¡eho jmÃ©na je:<br />\n{$authorMailingAddress}<br />\n<br />\nPokud je tato adresa neÃºplnÃ¡, nebo je neplatnÃ¡, upravte ji, prosÃ­m, ve vaÅ¡em profilu.<br />\n<br />\nOdkaz na vÃ¡Å¡ profil: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nPro odevzdÃ¡nÃ­ recenze knihy se, prosÃ­m, pÅ™ihlaste na strÃ¡nkÃ¡ch Äasopisu a dokonÄete proces odevzdÃ¡nÃ­ ÄlÃ¡nku.<br />\n<br />\nURL pro odevzdÃ¡nÃ­ recenze: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nNevÃ¡hejte mne kontaktovat, pokud mÃ¡te jakÃ©koliv dotazy k recenzi knihy.<br />\n<br />\n{$editorialContactSignature}','Tento email posÃ­lÃ¡ editor recenzentovi knihy v momentÄ›, kdy mu recenzi knihy pÅ™idÄ›lÃ­.'),('BFR_REVIEW_REMINDER_LATE','cs_CZ','Kniha k recenzi: uplynula lhÅ¯ta pro odevzdÃ¡nÃ­ recenze','VÃ¡Å¾enÃ¡ panÃ­/vÃ¡Å¾enÃ½ pane {$authorName}:<br />\n<br />\nrÃ¡di bychom vÃ¡s upozornili na skuteÄnost, Å¾e termÃ­n pro odevdÃ¡nÃ­ recenze knihy {$bookForReviewTitle} byl {$bookForReviewDueDate}, ale my jsme doposud nedostali tuto recenzi.<br />\n<br />\nPro odevzdÃ¡nÃ­ recenze knihy s prosÃ­m pÅ™ihlaste na webovÃ½ch strÃ¡nkÃ¡ch Äasopisu a ukonÄete proces odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku. Pro usnadnÄ›nÃ­ pÅ™ihlÃ¡Å¡enÃ­ pouÅ¾ijte nÃ¡sledujÃ­cÃ­ odkaz.<br />\n<br />\nURL pro odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPokud mÃ¡te jakÃ©koliv dotazy k recenzi knihy, nevÃ¡hejte mne kontaktovat.<br />\n<br />\nDÄ›kujeme vÃ¡m mnohokrÃ¡t za spoluprÃ¡ci s naÅ¡Ã­m Äasopisem a tÄ›Å¡Ã­me se na vaÅ¡i recenzi.<br />\n<br />\n{$editorialContactSignature}','Tento email automaticky odesÃ­lÃ¡ systÃ©m po uplynutÃ­ termÃ­nu na odevzdÃ¡nÃ­ recenze knihy.'),('BFR_REVIEW_REMINDER','cs_CZ','Kniha k recenzi: pÅ™ipomenutÃ­ lhÅ¯ty odevzdÃ¡nÃ­ recenze','VÃ¡Å¾enÃ½ pane/vÃ¡Å¾enÃ¡ panÃ­ {$authorName}:<br />\n<br />\nrÃ¡di bychom vÃ¡m pÅ™ipomenuli, Å¾e termÃ­n pro vaÅ¡i recenzi knihy {$bookForReviewTitle} byl stanoven na {$bookForReviewDueDate}.<br />\n<br />\nPro odevzdÃ¡nÃ­ recenze knihy se, prosÃ­m pÅ™ihlaste na strÃ¡nkÃ¡ch Äasopisu a pouÅ¾ijte proceduru na odevzdÃ¡nÃ­ pÅ™Ã­spÄ›vku.<br />\n<br />\nURL pro odevzdÃ¡nÃ­ recenze: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nPokud mÃ¡te jakÃ©koliv dotazy k recenzi knihy, nevÃ¡hejte mne kontaktovat.<br />\n<br />\nDÄ›kujeme vÃ¡m za spoluprÃ¡ci s naÅ¡Ã­m Äasopisem a tÄ›Å¡Ã­me se na vaÅ¡i recenzi.<br />\n<br />\n{$editorialContactSignature}','Tento e-mail je automaticky zasÃ­lÃ¡n autorovi recenze knihy pÅ™ed uplynutÃ­m termÃ­nu na recenzi knihy.'),('BFR_REVIEW_REMINDER','da_DK','Boganmeldelse: Deadline nÃ¦rmer sig','KÃ¦re {$authorName}:<br />\n<br />\nDette er blot for at minde dig om, at din anmeldelse af bogen {$bookForReviewTitle} skal vÃ¦re os i hÃ¦nde senest {$bookForReviewDueDate}.<br />\n<br />\nFor at indsende din boganmeldelse skal du logge dig ind pÃ¥ tidsskriftets hjemmeside og der gennemfÃ¸re onlineindleveringen af manuskriptet. For nemheds skyld finder du din manuskript-URL her:<br />\n<br />\nManuskript-URL: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nKontakt mig endelig, hvis du har spÃ¸rgsmÃ¥l eller problemer i forbindelse med denne boganmeldelse<br />\n<br />\nTak for dit bidrag. Jeg ser frem til modtagelsen af dit manuskript.<br />\n<br />\n{$editorialContactSignature}','Dette er en automatisk genereret e-mail, der sendes til en boganmelder for at gÃ¸re opmÃ¦rksom pÃ¥, at deadline for aflevering snart indtrÃ¦der.'),('BFR_REVIEW_REMINDER_LATE','da_DK','Bog til bedÃ¸mmelse: Afleveringsfrist','KÃ¦re {$authorName}:<br />\n<br />\nHermed en venlig pÃ¥mindelse om, at din bedÃ¸mmelse af bogen {$bookForReviewTitle} skulle have vÃ¦ret afleveret {$bookForReviewDueDate}.<br />\n<br />\nDu kan indlevere din bedÃ¸mmelse af bogen ved at logge ind pÃ¥ tidsskriftets websted og gennemfÃ¸re onlineproceduren for indlevering af artikler. For at gÃ¸re det enkelt for dig har vi indsat et indleveringslink herunder.<br />\n<br />\nIndleveringslink: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDu er velkommen til at kontakte mig, hvis du har nogen spÃ¸rgsmÃ¥l eller er i tvivl om denne bogbedÃ¸mmelse.<br />\n<br />\nTak for dit bidrag til tidsskriftet â€“ jeg ser frem til at modtage din bedÃ¸mmelse.<br />\n<br />\n{$editorialContactSignature}','Dette er en automatisk genereret e-mail, der bliver sendt til forfattere af bogbedÃ¸mmelser, nÃ¥r afleveringsfristen er overskredet.'),('BFR_BOOK_ASSIGNED','da_DK','Bog til bedÃ¸mmelse: Bog tildelt','KÃ¦re {$authorName}:<br />\n<br />\nDenne e-mail er en bekrÃ¦ftelse af, at du er blevet valgt til at skrive en bedÃ¸mmelse af  {$bookForReviewTitle} , som skal afleveres senest {$bookForReviewDueDate}.<br />\n<br />\nKontrollÃ©r, at adressen i din online brugerprofil er opdateret. Der vil blive sendt et eksemplar af den bog, du skal bedÃ¸mme, til denne adresse.<br />\n<br />\nDen adresse, som vi har registreret nu, er:<br />\n{$authorMailingAddress}<br />\n<br />\nHvis denne adresse er ufuldstÃ¦ndig, eller hvis du ikke lÃ¦ngere opholder dig pÃ¥ denne adresse, skal du opdatere din adresse via fÃ¸lgende link til din brugerprofil:<br />\n<br />\nLink til brugerprofil: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n<br />\nDu kan indlevere din bedÃ¸mmelse af bogen ved at logge ind pÃ¥ tidsskriftets websted og gennemfÃ¸re onlineproceduren for indlevering af artikler.<br />\n<br />\nIndleveringslink: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDu er velkommen til at kontakte mig, hvis du har nogen spÃ¸rgsmÃ¥l eller er i tvivl om denne bogbedÃ¸mmelse.<br />\n<br />\n{$editorialContactSignature}','Denne e-mail sendes af en redaktÃ¸r til en bogbedÃ¸mmer, nÃ¥r en redaktÃ¸r har udvalgt forfatteren til en bogbedÃ¸mmelse.'),('BFR_BOOK_DENIED','da_DK','Bog til bedÃ¸mmelse','KÃ¦re {$authorName}:<br />\n<br />\nDesvÃ¦rre er du ikke blevet valgt til at bedÃ¸mme {$bookForReviewTitle}.<br />\n<br />\nJeg hÃ¥ber, at du vil overveje at bedÃ¸mme en anden bog fra vores liste â€“ enten nu eller ved en senere lejlighed.<br />\n<br />\n{$editorialContactSignature}','Denne e-mail sendes af en redaktÃ¸r til en interesseret forfatter, nÃ¥r en bog ikke lÃ¦ngere er tilgÃ¦ngelig til bedÃ¸mmelse.'),('BFR_BOOK_REQUESTED','da_DK','Bog til bedÃ¸mmelse: Boganmodning','KÃ¦re {$editorName}:<br />\n<br />\nJeg er interesseret i at skrive en bedÃ¸mmelse af {$bookForReviewTitle}.<br />\n<br />\nKan du bekrÃ¦fte, at denne bog stadig er ledig til bedÃ¸mmelse?<br />\n<br />\n{$authorContactSignature}','Denne e-mail sendes til en redaktÃ¸r fra en forfatter, der er interesseret i at skrive en bedÃ¸mmelse af en bog fra listen.'),('BFR_BOOK_MAILED','da_DK','Bog til bedÃ¸mmelse: Bog afsendt','KÃ¦re {$authorName}:<br />\n<br />\nDenne e-mail er en bekrÃ¦ftelse af, at jeg har sendt et eksemplar af {$bookForReviewTitle} til den fÃ¸lgende adresse i din online brugerprofil:<br />\n{$authorMailingAddress}<br />\n<br />\nDu kan indlevere din bedÃ¸mmelse af bogen ved at logge ind pÃ¥ tidsskriftets websted og gennemfÃ¸re onlineproceduren for indlevering af artikler.<br />\n<br />\nIndleveringslink: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nDu er velkommen til at kontakte mig, hvis du har nogen spÃ¸rgsmÃ¥l eller er i tvivl om denne bogbedÃ¸mmelse.<br />\n<br />\n{$editorialContactSignature}','Denne e-mail sendes af en redaktÃ¸r til en bedÃ¸mmer, nÃ¥r redaktÃ¸ren har sendt et eksemplar af bogen til bedÃ¸mmeren.'),('BFR_REVIEWER_REMOVED','da_DK','Bog til bedÃ¸mmelse','KÃ¦re {$authorName}:<br />\n<br />\nDenne e-mail er en bekrÃ¦ftelse af, at du er blevet slettet som bedÃ¸mmer af bogen {$bookForReviewTitle}, der vil blive stillet til rÃ¥dighed for andre forfattere, som er interesserede i at bedÃ¸mme bogen.<br />\n<br />\nJeg hÃ¥ber, at du vil overveje at bedÃ¸mme en anden bog fra vores liste â€“ enten nu eller ved en senere lejlighed.<br />\n<br />\n{$editorialContactSignature}','Denne e-mail sendes af en redaktÃ¸r til en interesseret bedÃ¸mmer, nÃ¥r en bog ikke lÃ¦ngere er tilgÃ¦ngelig til bedÃ¸mmelse.'),('BFR_REVIEW_REMINDER','fr_FR','Compte rendu de livre : Rappel de la date d\'Ã©chÃ©ance','Madame, Monsieur, {$authorName}:<br />\n<br />\nCeci est un rappel amical de la date d\'Ã©chÃ©ance de votre compte rendu de livre {$bookForReviewTitle} qui est le {$bookForReviewDueDate}.<br />\n<br />\nAfin de soumettre votre compte rendu de livre, veuillez vous connecter au site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne. Pour plus de commoditÃ©s, l\'URL de la soumission vous est fourni ci-dessous.<br />\n<br />\nURL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  communiquer avec moi si vous avez des questions ou prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\nMerci pour votre contribution Ã  la revue et nous avons hÃ¢te de recevoir votre soumission.<br />\n<br />\n{$editorialContactSignature}','Ceci est un courriel gÃ©nÃ©rÃ© automatiquement et qui est envoyÃ© Ã  un auteur qui doit effectuer un compte rendu de livre lorsque la date d\'Ã©chÃ©ance approche.'),('BFR_REVIEW_REMINDER_LATE','fr_FR','Compte rendu de livre : compte rendu non reÃ§u','Monsieur, Madame, {$authorName} :<br />\n<br />\nCeci est un rappel amical pour vous informer que votre compte rendu du livre {$bookForReviewTitle} Ã©tait attendu le {$bookForReviewDueDate} mais n\'a pas encore Ã©tÃ© reÃ§u.<br />\n<br />\nPour soumettre votre compte rendu de livre, veuillez vous connecter au site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne. Pour plus de commoditÃ©s, l\'URL de la soumission vous a Ã©tÃ© fourni ci-dessous.<br />\n<br />\nL\'URL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  communiquer avec moi si vous avez des questions ou des prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\nMerci pour votre contribution Ã  la revue et nous avons hÃ¢tes de recevoir votre soumission.<br />\n<br />\n{$editorialContactSignature}','Ceci est un courriel gÃ©nÃ©rÃ© automatiquement lorsque la date d\'Ã©chÃ©ance pour qu\'un auteur soumette son compte rendu de livre est dÃ©passÃ©e.'),('BFR_BOOK_ASSIGNED','fr_FR','Compte rendu de livre : livre assignÃ©','Monsieur, Madame, {$authorName} :<br />\n<br />\nCe courriel confirme que {$bookForReviewTitle} vous a Ã©tÃ© assignÃ© pour un compte rendu qui devra Ãªtre complÃ©tÃ© d\'ici le {$bookForReviewDueDate}.<br />\n<br />\nVeuillez vous assurer que l\'adresse postale dans votre profil utilisateur est Ã  jour. Cette adresse sera utilisÃ©e pour vous envoyer une copie du livre dont vous devez faire le compte rendu.<br />\n<br />\nL\'adresse postale prÃ©sentement consignÃ©e est:<br />\n{$authorMailingAddress}<br />\n<br />\nSi cette adresse est incomplÃ¨te ou si vous n\'habitez plus Ã  cette adresse, veuillez utiliser l\'URL du profil utilisateur suivant pour mettre Ã  jour votre adresse :<br />\n<br />\nURL du profil utilisateur : <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nPour soumettre votre compte rendu de livre, veuillez vous connecter dans le site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne.<br />\n<br />\nURL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  me contacter si vous avez des questions ou des prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur pour demander Ã  un auteur d\'effectuer un compte rendu de livre.'),('BFR_BOOK_DENIED','fr_FR','Compte rendu de livre','Madame, Monsieur, {$authorName} :<br />\n<br />\nMalheureusement, Je suis dans l\'impossibilitÃ© de vous assigner {$bookForReviewTitle} Ã  ce moment-ci pour fins de compte rendu.<br />\n<br />\nJ\'espÃ¨re que vous considÃ©rez faire le compte rendu d\'un autre livre de notre liste, soit dÃ¨s maintenant ou Ã  un autre moment.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur Ã  un auteur intÃ©ressÃ© lorsque un livre n\'est plus disponible pour effectuer un compte rendu.'),('BFR_BOOK_REQUESTED','fr_FR','Compte rendu de livre : demande de livre','Madame, Monsieur, {$editorName} :<br />\n<br />\nJe suis intÃ©ressÃ© Ã  faire le compte rendu du livre {$bookForReviewTitle}.<br />\n<br />\nPourriez-vous m\'informer si ce livre est toujours disponible pour fins de compte rendu?<br />\n<br />\n{$authorContactSignature}',''),('BFR_BOOK_MAILED','fr_FR','Compte rendu de livre : livre postÃ©','Madame, Monsieur, {$authorName} :<br />\n<br />\nCe courriel vous confirme l\'envoi postal d\'une copie de {$bookForReviewTitle} Ã  l\'adresse postale suivante, provenant de votre profil utilisateur en ligne :<br />\n{$authorMailingAddress}<br />\n <br />\nPour soumettre votre compte rendu de livre, veuillez vous connecter dans le site Web de la revue et complÃ©ter le processus de soumission d\'article en ligne.<br />\n<br />\nURL de la soumission : <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nN\'hÃ©sitez pas Ã  communiquer avec moi si vous avez des questions ou des prÃ©occupations concernant ce compte rendu de livre.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur Ã  un auteur qui doit effectuer un compte rendu de livre pour l\'avertir que le livre vient de lui Ãªtre postÃ©.'),('BFR_REVIEWER_REMOVED','fr_FR','Compte rendu de livre','Madame, Monsieur, {$authorName} :<br />\n<br />\nCe courriel confirme que vous n\'Ãªtes plus responsable du compte rendu du livre {$bookForReviewTitle}, qui sera de nouveau disponible aux autres auteurs intÃ©ressÃ©s Ã  en faire le compte rendu.<br />\n<br />\nJ\'espÃ¨re que vous considÃ©rez faire le compte rendu d\'un autre livre dans notre liste, soit dÃ¨s maintenant ou Ã  un autre moment.<br />\n<br />\n{$editorialContactSignature}','Ce courriel est envoyÃ© par un RÃ©dacteur Ã  un auteur intÃ©ressÃ© lorsqu\'un livre n\'est plus disponible pour fins d\'Ã©valuation.'),('BFR_REVIEW_REMINDER','id_ID',' Buku untuk Review: Pengingat Tanggal Jatuh Tempo','Kepada{$authorName}:<br />\n<br />\nHanya mengingatkan review buku Anda tentang {$bookForReviewTitle} jatuh tempo tanggal {$bookForReviewDueDate}.<br />\n<br />\nUntuk menyerahkan review buku Anda, silakan log in ke website jurnal dan melengkapi proses penyerahan artikel online. Untuk kenyamanan Anda, URL penyerahan telah disediakan di bawah ini. <br />\n<br />\nURL Naskah: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSilakan hubungi saya jika Anda mempunyai pertanyaan atau kepedulian tentang review buku ini. <br />\n<br />\nTerima kasih untuk kontribusi Anda untuk jurnal dan saya tidak sabar untuk menerima naskah Anda.<br />\n<br />\n{$editorialContactSignature}','Ini adalah email otomatis yang dikirim ke reviewer sebagai pengingat bahwa tanggal bats akhir untuk review telah dekat. '),('BFR_REVIEW_REMINDER_LATE','id_ID','Buku untuk Review: Review Jatuh Tempo','Kepada {$authorName}:<br />\n<br />\nHanya mengingatkan review buku Anda tentang {$bookForReviewTitle} telah jatuh tempo tanggal {$bookForReviewDueDate} tetapi belum kami terima.<br />\n<br />\nUntuk menyerahkan review buku Anda, log in ke website jurnal dan lengkapi proses penyerahan artikel online. Untuk kenyamanan Anda, URL naskah telah disediakan di bawah ini. <br />\n<br />\nURL Naskah: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSilakan hubungi saya jika Anda mempunyai pertanyaan atau kepedulian tentang review buku ini. <br />\n<br />\nTerima kasih untuk kontribusi Anda pada jurnal dan saya menunggu naskah Anda. <br />\n<br />\n{$editorialContactSignature}','Ini adalah email otomatis yang dikirim ke buku untuk penulis review setelah tanggal jatuh tempo review telah lewat.'),('BFR_BOOK_ASSIGNED','id_ID','Buku untuk Review: Buku yang ditugaskan','Kepada {$authorName}:<br />\n<br />\nEmail ini mengkonfirmasi bahwa  {$bookForReviewTitle} telah ditugaskan kepada Anda untuk review buku yang diselesaikan sebelum {$bookForReviewDueDate}.<br />\n<br />\nPastikan alamat surat menyurat Anda di profil pengguna online Anda up-to-date.  Alamat ini akan digunakan untuk mengirimkan buku kepada Anda untuk review. <br />\n<br />\nAlamat surat menyurat yang saat ini kami miliki ada di file:<br />\n{$authorMailingAddress}<br />\n<br />\nJika alamat ini tidak lengkap atau Anda tidak lagi berada di alamat ini, mohon gunakan URL profil pengguna untuk meng-update alamat Anda:<br />\n<br />\nURL Profil Pengguna: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nUntuk menyerahkan review buku Anda, log in ke website jurnal dan lengkapi proses penyerahan artikel online. <br />\n<br />\nURL Naskah: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSilakan hubungi saya jika Anda punya pertanyaan atau kepedulian tentang review buku ini. <br />\n<br />\n{$editorialContactSignature}','Email ini dikirim oleh editor untuk penulis review buku saat editor memberikan buku untuk review kepada penulis. '),('BFR_BOOK_DENIED','id_ID','Buku untuk Review','Kepada {$authorName}:<br />\n<br />\nSayangnya, saya tidak bisa memberikan {$bookForReviewTitle}kepada Anda sekarang ini untuk review buku.  <br />\n<br />\nSaya harap Anda mempertimbangkan untuk mereview buku lain dari daftar kami, sekarang atau di masa depan. <br />\n<br />\n{$editorialContactSignature}','Email ini dikirim oleh editor kepada penulis yang tertarik saat buku tidak lagi tersedia untuk review. '),('BFR_BOOK_REQUESTED','id_ID','Buku untuk Review: Buku yang diminta','Kepada{$editorName}:<br />\n<br />\nSaya tertarik menulis review buku {$bookForReviewTitle}.<br />\n<br />\nDapatkah Anda mengkonfirmasi apakah buku ini masih tersedia untuk review? <br />\n<br />\n{$authorContactSignature}','Email ini dikirim kepada editor oleh penulis yang tertarik dalam menulis review buku untuk buku yang ada di daftar. '),('BFR_BOOK_MAILED','id_ID','Buku untuk Review: Buku dikirimkan lewat email','Kepada {$authorName}:<br />\n<br />\nEmail ini mengkonfirmasi bahwa saya telah mengirimkan buku {$bookForReviewTitle} ke alamat surat berikut ini dari profil pengguna online Anda:<br />\n{$authorMailingAddress}<br />\n <br />\nUntuk menyerahkan review buku Anda, log in ke website jurnal dan lengkapi proses penyerahan artikel online. <br />\n<br />\nURL Naskah: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nSilakan hubungi saya jika Anda punya pertanyaan atau kepedulian tentan review buku ini. <br />\n<br />\n{$editorialContactSignature}','Email ini dikirim oleh editor kepada penulis review buku saat editor telah mengirimkan satu buku kepada penulis. '),('BFR_REVIEWER_REMOVED','id_ID','Buku untuk Review','Kepada {$authorName}:<br />\n<br />\nEmail ini mengkonfirmasi bahwa Anda telah dipindahkan sebagai reviewer buku untuk {$bookForReviewTitle}, yang akan menjadi tersedia untuk penulis lain yang tertarik mereview buku. <br />\n<br />\nSaya harap Anda bersedia mereview buku lain dari daftar kamu, baik sekarang maupun lain waktu. <br />\n<br />\n{$editorialContactSignature}','Email ini dikirim oleh editor kepada penulis yang tertarik saat buku tidak lagi tersedia untuk review. '),('BFR_REVIEW_REMINDER','ru_RU','ÐšÐ½Ð¸Ð³Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: Ð½Ð°Ð¿Ð¾Ð¼Ð¸Ð½Ð°Ð½Ð¸Ðµ Ð¾ ÑÑ€Ð¾ÐºÐµ','{$authorName}!<br />\n<br />\nÐÐ°Ð¿Ð¾Ð¼Ð¸Ð½Ð°ÐµÐ¼ Ð²Ð°Ð¼ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð´Ð¾Ð»Ð¶Ð½Ñ‹ Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ Â«{$bookForReviewTitle}Â» Ð´Ð¾ {$bookForReviewDueDate}.<br />\n<br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. Ð”Ð»Ñ Ð’Ð°ÑˆÐµÐ³Ð¾ ÑƒÐ´Ð¾Ð±ÑÑ‚Ð²Ð° Ð½Ð¸Ð¶Ðµ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½ Ð°Ð´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸.<br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÑÑ‚Ñƒ ÐºÐ½Ð¸Ð³Ñƒ.<br />\n<br />\nÐ‘Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€ÑŽ Ð’Ð°Ñ Ð·Ð° Ð’Ð°Ñˆ Ð²ÐºÐ»Ð°Ð´ Ð² Ð½Ð°Ñˆ Ð¶ÑƒÑ€Ð½Ð°Ð» Ð¸ Ð½Ð°Ð´ÐµÑŽÑÑŒ Ð²ÑÐºÐ¾Ñ€Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ¸ Ð³ÐµÐ½ÐµÑ€Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ðµ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ð¹ Ð¿Ð¾Ñ‡Ñ‚Ñ‹, ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ðµ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ Ð² ÐºÐ°Ñ‡ÐµÑÑ‚Ð²Ðµ Ð½Ð°Ð¿Ð¾Ð¼Ð¸Ð½Ð°Ð½Ð¸Ñ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð¿Ñ€Ð¸Ð±Ð»Ð¸Ð¶Ð°ÐµÑ‚ÑÑ ÑÑ€Ð¾Ðº ÑÐ´Ð°Ñ‡Ð¸ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸.'),('BFR_REVIEW_REMINDER_LATE','ru_RU','ÐšÐ½Ð¸Ð³Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: ÑÑ€Ð¾Ðº Ð¿Ñ€Ð¾ÑˆÐµÐ»','{$authorName}!<br />\n<br />\nÐÐ°Ð¿Ð¾Ð¼Ð¸Ð½Ð°ÐµÐ¼ Ð’Ð°Ð¼ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð´Ð¾Ð»Ð¶Ð½Ñ‹ Ð±Ñ‹Ð»Ð¸ Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð¸Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ Â«{$bookForReviewTitle}Â» Ð´Ð¾ {$bookForReviewDueDate}, Ð½Ð¾ Ð¼Ñ‹ Ð²ÑÐµ ÐµÑ‰Ðµ ÐµÐµ Ð½Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ð»Ð¸.<br />\n<br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. Ð”Ð»Ñ Ð’Ð°ÑˆÐµÐ³Ð¾ ÑƒÐ´Ð¾Ð±ÑÑ‚Ð²Ð° Ð½Ð¸Ð¶Ðµ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½ Ð°Ð´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸.<br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÑÑ‚Ñƒ ÐºÐ½Ð¸Ð³Ñƒ.<br />\n<br />\nÐ‘Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€ÑŽ Ð’Ð°Ñ Ð·Ð° Ð’Ð°Ñˆ Ð²ÐºÐ»Ð°Ð´ Ð² Ð½Ð°Ñˆ Ð¶ÑƒÑ€Ð½Ð°Ð» Ð¸ Ð½Ð°Ð´ÐµÑŽÑÑŒ Ð²ÑÐºÐ¾Ñ€Ðµ Ð¿Ð¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑÐºÐ¸ Ð³ÐµÐ½ÐµÑ€Ð¸Ñ€ÑƒÐµÐ¼Ð¾Ðµ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ð¹ Ð¿Ð¾Ñ‡Ñ‚Ñ‹, ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ðµ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ Ð¿Ð¾ÑÐ»Ðµ Ñ‚Ð¾Ð³Ð¾, ÐºÐ°Ðº ÑÑ€Ð¾Ðº ÑÐ´Ð°Ñ‡Ð¸ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ ÑƒÐ¶Ðµ Ð¿Ñ€Ð¾ÑˆÐµÐ».'),('BFR_BOOK_ASSIGNED','ru_RU','ÐšÐ½Ð¸Ð³Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: ÐºÐ½Ð¸Ð³Ð° Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð°','{$authorName}!<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸ÐµÐ¼ Ñ‚Ð¾Ð³Ð¾, Ñ‡Ñ‚Ð¾ ÐºÐ½Ð¸Ð³Ð° Â«{$bookForReviewTitle}Â» Ð±Ñ‹Ð»Ð° Ð½Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð° Ð’Ð°Ð¼ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ. Ð¡Ñ€Ð¾Ðº Ð¿Ñ€ÐµÐ´Ð¾ÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ {$bookForReviewDueDate}.<br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑƒÐ±ÐµÐ´Ð¸Ñ‚ÐµÑÑŒ Ñ‡Ñ‚Ð¾ Ð’Ð°Ñˆ Ð¿Ð¾Ñ‡Ñ‚Ð¾Ð²Ñ‹Ð¹ Ð°Ð´Ñ€ÐµÑ Ð² Ð’Ð°ÑˆÐµÐ¼ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ðµ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð½Ð°ÑˆÐµÐ¹ ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð°ÐºÑ‚ÑƒÐ°Ð»ÑŒÐ½Ñ‹Ð¼. Ð­Ñ‚Ð¾Ñ‚ Ð°Ð´Ñ€ÐµÑ Ð±ÑƒÐ´ÐµÑ‚ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½ Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ Ð’Ð°Ð¼ ÐºÐ¾Ð¿Ð¸Ð¸ ÐºÐ½Ð¸Ð³Ð¸ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ.<br />\n<br />\nÐŸÐ¾Ñ‡Ñ‚Ð¾Ð²Ñ‹Ð¹ Ð°Ð´Ñ€ÐµÑ, ÐºÐ¾Ñ‚Ð¾Ñ€Ñ‹Ð¹ ÐµÑÑ‚ÑŒ Ñƒ Ð½Ð°Ñ Ð² Ñ„Ð°Ð¹Ð»Ðµ, Ñ‚Ð°ÐºÐ¾Ð²:<br />\n{$authorMailingAddress}<br />\n<br />\nÐ•ÑÐ»Ð¸ ÑÑ‚Ð¾Ñ‚ Ð°Ð´Ñ€ÐµÑ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð½Ðµ Ð¿Ð¾Ð»Ð½Ñ‹Ð¼ Ð¸Ð»Ð¸ Ð’Ñ‹ Ð±Ð¾Ð»ÐµÐµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ñ‹ Ð¿Ð¾ ÑÑ‚Ð¾Ð¼Ñƒ Ð°Ð´Ñ€ÐµÑÑƒ, Ð¿Ð¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, Ð²Ð¾ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐ¹Ñ‚ÐµÑÑŒ ÑÐ»ÐµÐ´ÑƒÑŽÑ‰Ð¸Ð¼ Ð°Ð´Ñ€ÐµÑÐ¾Ð¼ (URL) Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð¾Ð±Ð½Ð¾Ð²Ð¸Ñ‚ÑŒ ÑÐ²Ð¾Ð¹ Ð°Ð´Ñ€ÐµÑ:<br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. <br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÑÑ‚Ñƒ ÐºÐ½Ð¸Ð³Ñƒ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ, ÐºÐ¾Ð³Ð´Ð° Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð½Ð°Ð·Ð½Ð°Ñ‡Ð°ÐµÑ‚ ÐºÐ½Ð¸Ð³Ñƒ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ.'),('BFR_BOOK_DENIED','ru_RU','ÐšÐ½Ð¸Ð³Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ','{$authorName}!<br />\n<br />\nÐš ÑÐ¾Ð¶Ð°Ð»ÐµÐ½Ð¸ÑŽ, Ñ Ð½Ðµ Ð¼Ð¾Ð³Ñƒ ÑÐµÐ¹Ñ‡Ð°Ñ Ð½Ð°Ð·Ð½Ð°Ñ‡Ð¸Ñ‚ÑŒ Ð’Ð°Ð¼ ÐºÐ½Ð¸Ð³Ñƒ Â«{$bookForReviewTitle}Â» Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ.<br />\n<br />\nÐÐ°Ð´ÐµÑŽÑÑŒ, Ñ‡Ñ‚Ð¾ ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸Ð»Ð¸ Ð² Ð±ÑƒÐ´ÑƒÑ‰ÐµÐ¼ Ð’Ñ‹ Ð²Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ Ð´Ñ€ÑƒÐ³ÑƒÑŽ ÐºÐ½Ð¸Ð³Ñƒ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸Ð· Ð½Ð°ÑˆÐµÐ³Ð¾ ÑÐ¿Ð¸ÑÐºÐ°.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð·Ð°Ð¸Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð½Ð¾Ð¼Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, ÐºÐ¾Ð³Ð´Ð° ÐºÐ½Ð¸Ð³Ð° Ð±Ð¾Ð»ÐµÐµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ.'),('BFR_BOOK_REQUESTED','ru_RU','ÐšÐ½Ð¸Ð³Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: ÐºÐ½Ð¸Ð³Ð° Ð·Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½Ð°','{$editorName}!<br />\n<br />\nÐ¯ Ð±Ñ‹ Ñ…Ð¾Ñ‚ÐµÐ» Ð½Ð°Ð¿Ð¸ÑÐ°Ñ‚ÑŒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ Â«{$bookForReviewTitle}Â».<br />\n<br />\nÐœÐ¾Ð¶ÐµÑ‚Ðµ Ð»Ð¸ Ð’Ñ‹ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚ÑŒ, Ñ‡Ñ‚Ð¾ ÑÑ‚Ð° ÐºÐ½Ð¸Ð³Ð° Ð²ÑÐµ ÐµÑ‰Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ?<br />\n<br />\n{$authorContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€Ð¾Ð¼, Ð·Ð°Ð¸Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð½Ñ‹Ð¼ Ð² Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ð¸ ÐºÐ½Ð¸Ð³Ð¸, ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ð¾Ð¹ Ð² ÑÐ¿Ð¸ÑÐºÐµ.'),('BFR_BOOK_MAILED','ru_RU','ÐšÐ½Ð¸Ð³Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ: ÐºÐ½Ð¸Ð³Ð° Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð°','{$authorName}!<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸ÐµÐ¼ Ñ‚Ð¾Ð³Ð¾, Ñ‡Ñ‚Ð¾ Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ð» Ð’Ð°Ð¼ ÐºÐ¾Ð¿Ð¸ÑŽ ÐºÐ½Ð¸Ð³Ð¸ Â«{$bookForReviewTitle}Â» Ð½Ð° ÑÐ»ÐµÐ´ÑƒÑŽÑ‰Ð¸Ð¹ Ð¿Ð¾Ñ‡Ñ‚Ð¾Ð²Ñ‹Ð¹ Ð°Ð´Ñ€ÐµÑ Ð¸Ð· Ð’Ð°ÑˆÐµÐ³Ð¾ Ð¿Ñ€Ð¾Ñ„Ð¸Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð² Ð½Ð°ÑˆÐµÐ¹ ÑÐ¸ÑÑ‚ÐµÐ¼Ðµ:<br />\n{$authorMailingAddress}<br />\n <br />\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÑŒ Ð’Ð°ÑˆÑƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ, Ð·Ð°Ð¹Ð´Ð¸Ñ‚Ðµ Ð½Ð° Ð²ÐµÐ±-ÑÐ°Ð¹Ñ‚ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ð¾Ð´ ÑÐ²Ð¾ÐµÐ¹ ÑƒÑ‡ÐµÑ‚Ð½Ð¾Ð¹ Ð·Ð°Ð¿Ð¸ÑÑŒÑŽ Ð¸ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÑŒÑ‚Ðµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ ÐºÐ°Ðº Ð¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ ÑÑ‚Ð°Ñ‚ÑŒÑŽ. <br />\n<br />\nÐÐ´Ñ€ÐµÑ (URL) Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹, ÐµÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ñ‚Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹ Ð¸Ð»Ð¸ ÑÐ¾Ð¼Ð½ÐµÐ½Ð¸Ñ Ð¿Ð¾ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÑÑ‚Ñƒ ÐºÐ½Ð¸Ð³Ñƒ.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ð¸ Ð½Ð° ÐºÐ½Ð¸Ð³Ñƒ, ÐºÐ¾Ð³Ð´Ð° Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ Ð¿Ð¾Ñ‡Ñ‚Ð¾Ð¹ ÐºÐ¾Ð¿Ð¸ÑŽ ÐºÐ½Ð¸Ð³Ð¸.'),('BFR_REVIEWER_REMOVED','ru_RU','ÐšÐ½Ð¸Ð³Ð° Ð½Ð° Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸ÑŽ','{$authorName}!<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸ÐµÐ¼ Ñ‚Ð¾Ð³Ð¾, Ñ‡Ñ‚Ð¾ Ð’Ñ‹ Ð±Ñ‹Ð»Ð¸ ÑƒÐ´Ð°Ð»ÐµÐ½Ñ‹ Ð¸Ð· Ñ€ÐµÑ†ÐµÐ½Ð·ÐµÐ½Ñ‚Ð¾Ð² ÐºÐ½Ð¸Ð³Ð¸ Â«{$bookForReviewTitle}Â», ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð±ÑƒÐ´ÐµÑ‚ ÑÐ½Ð¾Ð²Ð° Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð´Ñ€ÑƒÐ³Ð¸Ð¼ Ð°Ð²Ñ‚Ð¾Ñ€Ð°Ð¼, Ð·Ð°Ð¸Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð½Ñ‹Ð¼ Ð² ÐµÐµ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ð¸.<br />\n<br />\nÐÐ°Ð´ÐµÑŽÑÑŒ, Ñ‡Ñ‚Ð¾ ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸Ð»Ð¸ Ð² Ð±ÑƒÐ´ÑƒÑ‰ÐµÐ¼ Ð’Ñ‹ Ð²Ñ‹Ð±ÐµÑ€Ð¸Ñ‚Ðµ Ð´Ñ€ÑƒÐ³ÑƒÑŽ ÐºÐ½Ð¸Ð³Ñƒ Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð¸Ð· Ð½Ð°ÑˆÐµÐ³Ð¾ ÑÐ¿Ð¸ÑÐºÐ°.<br />\n<br />\n{$editorialContactSignature}','Ð­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÑÐµÑ‚ÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ð¾Ð¼ Ð·Ð°Ð¸Ð½Ñ‚ÐµÑ€ÐµÑÐ¾Ð²Ð°Ð½Ð½Ð¾Ð¼Ñƒ Ð°Ð²Ñ‚Ð¾Ñ€Ñƒ, ÐºÐ¾Ð³Ð´Ð° ÐºÐ½Ð¸Ð³Ð° Ð±Ð¾Ð»ÐµÐµ Ð½Ðµ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð´Ð»Ñ Ñ€ÐµÑ†ÐµÐ½Ð·Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ.'),('BFR_REVIEW_REMINDER','ar_IQ','ÙƒØªØ§Ø¨ Ù„Ù„ØªØ­ÙƒÙŠÙ…: ØªØ°ÙƒÙŠØ± Ø¨Ù…ÙˆØ¹Ø¯ Ø§Ù„Ø§Ø³ØªÙŠØ¬Ø§Ø¨','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© ØªØ°ÙƒÙŠØ± ÙˆØ¯ÙŠØ© Ø¨Ø£Ù† Ù…ÙˆØ¹Ø¯ ØªØ³Ù„ÙŠÙ…Ùƒ Ù„ØªØ­ÙƒÙŠÙ… Ø§Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$bookForReviewTitle} Ø³ÙŠØ³ØªÙˆØ¬Ø¨ Ø¨ØªØ§Ø±ÙŠØ®: {$bookForReviewDueDate}.<br />\n<br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© ØªÙ‚Ø¯ÙŠÙ… Ø§Ù„Ù…Ø¤Ù„Ù‘ÙŽÙ Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª. Ù„ØªØ³Ù‡ÙŠÙ„ Ø§Ù„Ø£Ù…Ø± Ø¹Ù„ÙŠÙƒØŒ Ø±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ… Ù…Ø¯Ø±Ø¬ Ø£Ø¯Ù†Ø§Ù‡.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„ÙƒØªØ§Ø¨.<br />\n<br />\nÙ†Ø´ÙƒØ± Ù„ÙƒÙ… Ù…Ø³Ø§Ù‡Ù…ØªÙƒÙ… ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø©ØŒ ÙˆÙ†Ø­Ù† Ù†ØªØ·Ù„Ø¹ Ø¥Ù„Ù‰ Ø§Ø³ØªÙ„Ø§Ù… Ù†ØªÙŠØ¬Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù…Ù†ÙƒÙ… Ù‚Ø±ÙŠØ¨Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© Ù…ÙˆÙ„Ø¯Ø© Ø¢Ù„ÙŠØ§Ù‹ ÙŠØªÙ… Ø¥Ø±Ø³Ø§Ù„Ù‡Ø§ Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… ÙƒØªØ§Ø¨ Ù…Ø§ Ù„Ø¥Ø¨Ù„Ø§ØºÙ‡ Ø¨Ø£Ù† ØªØ£Ø±ÙŠØ® Ø§Ø³ØªÙŠØ¬Ø§Ø¨ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù‚Ø¯ Ø§Ù‚ØªØ±Ø¨ Ù…ÙˆØ¹Ø¯Ù‡.'),('BFR_REVIEW_REMINDER_LATE','ar_IQ','ÙƒØªØ§Ø¨ Ù„Ù„ØªØ­ÙƒÙŠÙ…: Ù‚Ø¯ Ø§Ø³ØªÙˆØ¬Ø¨ ØªØ³Ù„ÙŠÙ… Ø§Ù„ØªØ­ÙƒÙŠÙ…','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© ØªØ°ÙƒÙŠØ± ÙˆØ¯ÙŠØ© Ø¨Ø£Ù† Ù…ÙˆØ¹Ø¯ ØªØ³Ù„ÙŠÙ…Ùƒ Ù„ØªØ­ÙƒÙŠÙ… Ø§Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$bookForReviewTitle} Ù‚Ø¯ Ø§Ø³ØªÙˆØ¬Ø¨ Ø¨ØªØ§Ø±ÙŠØ® {$bookForReviewDueDate} Ø¥Ù„Ø§ Ø£Ù†Ù‡ Ù„Ù… ÙŠØµÙ„Ù†Ø§ Ù…Ù†Ùƒ Ø¨Ø¹Ø¯.<br />\n<br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© ØªÙ‚Ø¯ÙŠÙ… Ø§Ù„Ù…Ø¤Ù„Ù‘ÙŽÙ Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª. Ù„ØªØ³Ù‡ÙŠÙ„ Ø§Ù„Ø£Ù…Ø± Ø¹Ù„ÙŠÙƒØŒ Ø±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ… Ù…Ø¯Ø±Ø¬ Ø£Ø¯Ù†Ø§Ù‡.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„ÙƒØªØ§Ø¨.<br />\n<br />\nÙ†Ø´ÙƒØ± Ù„ÙƒÙ… Ù…Ø³Ø§Ù‡Ù…ØªÙƒÙ… ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø©ØŒ ÙˆÙ†Ø­Ù† Ù†ØªØ·Ù„Ø¹ Ø¥Ù„Ù‰ Ø§Ø³ØªÙ„Ø§Ù… Ù†ØªÙŠØ¬Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù…Ù†ÙƒÙ… Ù‚Ø±ÙŠØ¨Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø±Ø³Ø§Ù„Ø© Ù…ÙˆÙ„Ø¯Ø© Ø¢Ù„ÙŠØ§Ù‹ ÙŠØªÙ… Ø¥Ø±Ø³Ø§Ù„Ù‡Ø§ Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… ÙƒØªØ§Ø¨ Ù…Ø§ Ù„Ø¥Ø¨Ù„Ø§ØºÙ‡ Ø¨Ø£Ù† ØªØ£Ø±ÙŠØ® Ø§Ø³ØªÙŠØ¬Ø§Ø¨ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ù‚Ø¯ Ø§Ù†Ù‚Ø¶Ù‰ Ù…ÙˆØ¹Ø¯Ù‡.'),('BFR_BOOK_ASSIGNED','ar_IQ','ÙƒØªØ§Ø¨ Ù„Ù„ØªØ­ÙƒÙŠÙ…: ØªÙƒÙ„ÙŠÙ Ø¨Ø§Ù„ÙƒØªØ§Ø¨','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªØ¤ÙƒØ¯ Ø¨Ø£Ù† Ø§Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$bookForReviewTitle} Ù‚Ø¯ ØªÙ… ØªÙƒÙ„ÙŠÙÙƒÙ… Ø¨Ù‡ Ù„ØªÙˆÙ„ÙŠ Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ…Ù‡ Ø­ØªÙ‰ ÙŠÙˆÙ… Ø§Ù„ØªØ³Ù„ÙŠÙ… Ø§Ù„Ù…Ø­Ø¯Ø¯ Ø¨ØªØ£Ø±ÙŠØ® {$bookForReviewDueDate}.<br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ ØªØ£ÙƒØ¯ Ù…Ù† Ø£Ù† Ø¹Ù†ÙˆØ§Ù†Ùƒ Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ Ø§Ù„Ù…Ø°ÙƒÙˆØ± ÙÙŠ Ù…Ù„ÙÙƒ Ø§Ù„Ø´Ø®ØµÙŠ Ù„Ù„Ù…ÙˆÙ‚Ø¹ Ù…Ø­Ø¯Ø«. Ù‡Ø°Ø§ Ø§Ù„Ø¹Ù†ÙˆØ§Ù† Ù‡Ùˆ Ù…Ø§ Ø³ÙŠØªÙ… Ø§Ø¹ØªÙ…Ø§Ø¯Ù‡ Ù„Ø¥Ø±Ø³Ø§Ù„ Ù†Ø³Ø®Ø© Ù…Ù† Ø§Ù„ÙƒØªØ§Ø¨ Ø¥Ù„ÙŠÙƒ Ù„ØºØ±Ø¶ ØªØ­ÙƒÙŠÙ…Ù‡Ø§.<br />\n<br />\nØ§Ù„Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ Ø§Ù„Ù…ÙˆØ¬ÙˆØ¯ Ù„Ø¯ÙŠÙ†Ø§ Ø­Ø§Ù„ÙŠØ§Ù‹ Ù‡Ùˆ:<br />\n{$authorMailingAddress}<br />\n<br />\nØ¥Ù† ÙƒØ§Ù† Ù‡Ø°Ø§ Ø§Ù„Ø¹Ù†ÙˆØ§Ù† ØºÙŠØ± ÙƒØ§Ù…Ù„ Ø£Ùˆ Ù„Ù… ØªØ¹Ø¯ ØªØ³ØªØ¹Ù…Ù„Ù‡ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ø§Ø³ØªØ¹Ù…Ù„ Ø±Ø§Ø¨Ø· Ù…Ù„ÙÙƒ Ø§Ù„Ø´Ø®ØµÙŠ Ø£Ø¯Ù†Ø§Ù‡ Ù„ØªØ¹Ø¯ÙŠÙ„ Ø¹Ù†ÙˆØ§Ù†Ùƒ Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ:<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„Ù…Ù„Ù Ø§Ù„Ø´Ø®ØµÙŠ: <a href=\"{$userProfileUrl}\">{$userProfileUrl}</a><br />\n <br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© ØªÙ‚Ø¯ÙŠÙ… Ø§Ù„Ù…Ø¤Ù„Ù‘ÙŽÙ Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„ÙƒØªØ§Ø¨.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ±Ø³Ù„Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… ÙƒØªØ§Ø¨ Ù…Ø§ Ø¹Ù†Ø¯Ù…Ø§ ÙŠØªÙ… ØªÙƒÙ„ÙŠÙÙ‡ Ø¨Ù…Ù‡Ù…Ø© Ø§Ù„ØªØ­ÙƒÙŠÙ….'),('BFR_BOOK_DENIED','ar_IQ','ÙƒØªØ§Ø¨ Ù„Ù„ØªØ­ÙƒÙŠÙ…','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ„Ù„Ø£Ø³ÙØŒ Ù„Ù… Ø£ØªÙ…ÙƒÙ† Ù…Ù† ØªÙƒÙ„ÙŠÙÙƒÙ… Ø¨Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ… Ø§Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$bookForReviewTitle} Ø­Ø§Ù„ÙŠØ§Ù‹.<br />\n<br />\nØ£Ø±Ø¬Ùˆ Ø£Ù† ØªØ£Ø®Ø°ÙˆØ§ Ø¨Ù†Ø¸Ø± Ø§Ù„Ø§Ø¹ØªØ¨Ø§Ø± Ø¥Ø®ØªÙŠØ§Ø± ÙƒØªØ§Ø¨ Ø¢Ø®Ø± Ù…Ù† Ù‚Ø§Ø¦Ù…ØªÙ†Ø§ Ù„ØºØ±Ø¶ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø­Ø§Ù„ÙŠØ§Ù‹ Ø£Ùˆ Ù…Ø³ØªÙ‚Ø¨Ù„Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ±Ø³Ù„Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… Ù…Ù‡ØªÙ… Ø¨ØªØ­ÙƒÙŠÙ… ÙƒØªØ§Ø¨ Ù„Ù… ÙŠØ¹Ø¯ Ù…ØªØ§Ø­Ø§Ù‹ Ù„Ù„ØªØ­ÙƒÙŠÙ….'),('BFR_BOOK_REQUESTED','ar_IQ','ÙƒØªØ§Ø¨ Ù„Ù„ØªØ­ÙƒÙŠÙ…: Ø¥Ù„ØªÙ…Ø§Ø³ ØªØ­ÙƒÙŠÙ… ÙƒØªØ§Ø¨','Ø¹Ø²ÙŠØ²ÙŠ {$editorName}:<br />\n<br />\nØ¹Ù†Ø¯ÙŠ Ø¥Ù‡ØªÙ…Ø§Ù… ÙÙŠ Ø¥Ù†Ø´Ø§Ø¡ ØªØ­ÙƒÙŠÙ… ÙˆÙ…Ø±Ø§Ø¬Ø¹Ø© Ù„Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$bookForReviewTitle}.<br />\n<br />\nÙ‡Ù„ Ù„Ùƒ Ù„Ø·ÙØ§Ù‹ ØªØ£ÙƒÙŠØ¯ ÙÙŠÙ…Ø§ Ù„Ùˆ ÙƒØ§Ù† Ù‡Ø°Ø§ Ø§Ù„ÙƒØªØ§Ø¨ Ù„Ø§ ÙŠØ²Ø§Ù„ Ù…ØªØ§Ø­Ø§Ù‹ Ù„Ù„ØªØ­ÙƒÙŠÙ…ØŸ<br />\n<br />\n{$authorContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ¹Ù†ÙˆÙ†Ù‡Ø§ Ø£Ø­Ø¯ Ø§Ù„Ù…Ù‡ØªÙ…ÙŠÙ† Ø¨ØªØ­ÙƒÙŠÙ… ÙƒØªØ§Ø¨ Ù…Ø§ Ø¥Ù„Ù‰ Ø§Ù„Ù…Ø­Ø±Ø± Ù„Ø£Ø¨Ø¯Ø§Ø¡ Ø±ØºØ¨ØªÙ‡ ÙÙŠ ØªØ­ÙƒÙŠÙ…Ù‡.'),('BFR_BOOK_MAILED','ar_IQ','ÙƒØªØ§Ø¨ Ù„Ù„ØªØ­ÙƒÙŠÙ…: ØªÙ… Ø¥Ø±Ø³Ø§Ù„ Ø§Ù„ÙƒØªØ§Ø¨ Ø¹Ø¨Ø± Ø§Ù„Ø¨Ø±ÙŠØ¯ Ø§Ù„Ø§Ù„ÙƒØªØ±ÙˆÙ†ÙŠ','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ØªØ¤ÙƒØ¯ Ù„ÙƒÙ… Ø¨Ø£Ù†Ù†Ø§ Ù‚Ø¯ Ø£Ø±Ø³Ù„Ù†Ø§ Ù†Ø³Ø®Ø© Ù…Ù† Ø§Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$bookForReviewTitle} Ø¥Ù„Ù‰ Ø§Ù„Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø¨Ø±ÙŠØ¯ÙŠ Ø§Ù„Ø¢ØªÙŠ ÙˆØ§Ù„Ù…ÙˆØ¬ÙˆØ¯ ÙÙŠ Ù…Ù„ÙÙƒÙ… Ø§Ù„Ø´Ø®ØµÙŠ Ø¹Ù†Ø¯Ù†Ø§ Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª:<br />\n{$authorMailingAddress}<br />\n <br />\nÙ„ØªØ³Ù„ÙŠÙ… ØªØ­ÙƒÙŠÙ…Ùƒ Ù„Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…Ø°ÙƒÙˆØ±ØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ù‚Ù… Ø¨Ø§Ù„Ø¯Ø®ÙˆÙ„ Ø¥Ù„Ù‰ Ù…ÙˆÙ‚Ø¹ Ø§Ù„Ù…Ø¬Ù„Ø© ÙˆØ£ÙƒÙ…Ø§Ù„ Ø¹Ù…Ù„ÙŠØ© ØªÙ‚Ø¯ÙŠÙ… Ø§Ù„Ù…Ø¤Ù„Ù‘ÙŽÙ Ø¹Ù„Ù‰ Ø§Ù„Ø¥Ù†ØªØ±Ù†Øª.<br />\n<br />\nØ±Ø§Ø¨Ø· Ø§Ù„ØªØ³Ù„ÙŠÙ…: <a href=\"{$submissionUrl}\">{$submissionUrl}</a><br />\n<br />\nÙ„Ø·ÙØ§Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ Ø¥Ù† ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠØ© Ø£Ø³Ø¦Ù„Ø© Ø£Ùˆ Ù…ØªØ¹Ù„Ù‚Ø§Øª ØªØ®Øµ ØªØ­ÙƒÙŠÙ… Ù‡Ø°Ø§ Ø§Ù„ÙƒØªØ§Ø¨.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ¹Ù†ÙˆÙ†Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ù…Ø­ÙƒÙ… ÙƒØªØ§Ø¨ Ù…Ø§ Ø¹Ù†Ø¯ Ø¥Ø±Ø³Ø§Ù„Ù‡ Ù†Ø³Ø®Ø© Ù…Ù† Ø§Ù„ÙƒØªØ§Ø¨ Ø¥Ù„Ù‰ Ø§Ù„Ù…Ø­ÙƒÙ… Ø¹Ø¨Ø± Ø§Ù„Ø¨Ø±ÙŠØ¯ Ø§Ù„Ø§Ù„ÙƒØªØ±ÙˆÙ†ÙŠ.'),('BFR_REVIEWER_REMOVED','ar_IQ','ÙƒØªØ§Ø¨ Ù„Ù„ØªØ­ÙƒÙŠÙ…','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}:<br />\n<br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù„ØªØ£ÙƒÙŠØ¯ Ø±ÙØ¹ Ø§Ø³Ù…ÙƒÙ… Ù…Ù† Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ… Ø§Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… {$bookForReviewTitle}ØŒ Ø­ÙŠØ« Ø³ÙŠÙƒÙˆÙ† Ù…ØªØ§Ø­Ø§Ù‹ Ø¥Ù„Ù‰ Ø£Ø´Ø®Ø§Øµ Ø¢Ø®Ø±ÙŠÙ† Ù„ØºØ±Ø¶ ØªØ­ÙƒÙŠÙ…Ù‡.<br />\n<br />\nØ£Ø±Ø¬Ùˆ Ø£Ù† ØªØ£Ø®Ø°ÙˆØ§ Ø¨Ù†Ø¸Ø± Ø§Ù„Ø§Ø¹ØªØ¨Ø§Ø± Ø¥Ø®ØªÙŠØ§Ø± ÙƒØªØ§Ø¨ Ø¢Ø®Ø± Ù…Ù† Ù‚Ø§Ø¦Ù…ØªÙ†Ø§ Ù„ØºØ±Ø¶ Ø§Ù„ØªØ­ÙƒÙŠÙ… Ø­Ø§Ù„ÙŠØ§Ù‹ Ø£Ùˆ Ù…Ø³ØªÙ‚Ø¨Ù„Ø§Ù‹.<br />\n<br />\n{$editorialContactSignature}','Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ¹Ù†ÙˆÙ†Ù‡Ø§ Ø§Ù„Ù…Ø­Ø±Ø± Ø¥Ù„Ù‰ Ø§Ù„Ù…Ø­ÙƒÙ… Ù„ØªØ£ÙƒÙŠØ¯ Ø¥Ù„ØºØ§Ø¡ Ù…Ù‡Ù…Ø© ØªØ­ÙƒÙŠÙ…Ù‡ Ù„Ù„ÙƒØªØ§Ø¨ Ø§Ù„Ù…Ø¹Ù†ÙŠ.'),('PAYPAL_INVESTIGATE_PAYMENT','ca_ES','Activitat inusual a PayPal','Open Journal Systems ha detectat una activitat inusual relacionada amb el suport de pagament de PayPal a la revista. Aquesta activitat pot requerir de mÃ©s investigaciÃ³ o d\'intervenciÃ³ manual.<br />\n<br />\nAquest correu l\'ha generat el mÃ²dul PayPal de l\'Open Journal Systems.<br />\n<br />\nInformaciÃ³ completa de la tramesa:<br />\n{$postInfo}<br />\n<br />\nInformaciÃ³n addicional (si fou proporcionada):<br />\n{$additionalInfo}<br />\n<br />\nVariables del servidor:<br />\n{$serverVars}','Aquesta plantilla de correu s\'utilitza per a notificar al contacte principal de la revista de que el mÃ²dul PayPal ha detectat activitat sospitosa o activitat que requereix d\'una intervenciÃ³ manual.'),('PAYPAL_INVESTIGATE_PAYMENT','fr_FR','ActivitÃ© inhabituelle de PayPal','L\'Open Journal Systems a remarquÃ© une activitÃ© inhabituelle concernant la prise en charge du paiement PayPal pour la revue {$contextName}. Cette activitÃ© pourrait nÃ©cessiter une attention particuliÃ¨re ou une intervention manuelle.<br />\n                       <br />\nCe courriel a Ã©tÃ© gÃ©nÃ©rÃ© par le plugiciel PayPal du Open Journal Systems.<br />\n<br />\nInformation complÃ¨te de la demande :<br />\n{$postInfo}<br />\n<br />\nInformation supplÃ©mentaire (si fournie) :<br />\n{$additionalInfo}<br />\n<br />\nVariables serveur :<br />\n{$serverVars}<br />\n','Ce modÃ¨le de courriel est utilisÃ© pour aviser un contact principal d\'une revue qu\'une activitÃ© inhabituelle ou requÃ©rant une intervention manuelle a Ã©tÃ© remarquÃ©e par le plugiciel PayPal.'),('MANUAL_PAYMENT_NOTIFICATION','ca_ES','NotificaciÃ³ de Pagament Manual','Cal processar un pagament manual de l\'usuari/Ã ria \"{$userName}\") a la revista {$contextName}.<br />\n<br />\nL\'Ã­tem pagat Ã©s \"{$itemName}\".<br />\nEl preu Ã©s {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nAquest correu l\'ha generat el mÃ²dul de pagament manual de l\'Open Journal Systems.','Aquest correu s\'utilitza per a notificar a l\'administrador/ora de la revista que s\'ha realitzat un pagament manual.'),('MANUAL_PAYMENT_NOTIFICATION','fr_FR','Avis de paiement manuel','Un paiement manuel doit Ãªtre traitÃ© pour la revue {$contextName} et l\'utilisateur {$userFullName} (nom d\'utilisateur \"{$userName}\").<br />\n<br />\nL\'Ã©lÃ©ment facturÃ© est \"{$itemName}\".<br />\nLe coÃ»t est de {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nCe courriel a Ã©tÃ© gÃ©nÃ©rÃ© par le plugiciel de paiement manuel du Open Journal Systems.','Ce modÃ¨le de courriel est utilisÃ© pour aviser un directeur de revue que le paiement manuel a Ã©tÃ© demandÃ©.'),('PAYPAL_INVESTIGATE_PAYMENT','zh_CN','ä¸æ­£å¸¸çš„PayPalæ´»åŠ¨','å¼€æ”¾æœŸåˆŠç³»ç»Ÿé‡åˆ°ä¸æ­£å¸¸çš„æ´»åŠ¨ï¼Œæ˜¯å…³äºŽ{$contextName}æœŸåˆŠçš„PayPalæ”¯ä»˜æ”¯æŒã€‚æ­¤æ´»åŠ¨è‚¯éœ€è¦è¿›ä¸€æ­¥è°ƒæŸ¥æˆ–è€…äººå·¥å¹²é¢„ã€‚<br />\n<br />\næ­¤ç”µå­é‚®ä»¶æ˜¯ç”±å¼€æ”¾æœŸåˆŠç³»ç»Ÿçš„PayPalæ’ä»¶ç”Ÿæˆçš„ã€‚<br />\n<br />\nå…¨éƒ¨ä¿¡æ¯ï¼š<br />\n{$postInfo}<br />\n<br />\né™„åŠ ä¿¡æ¯ï¼ˆå¦‚æžœæä¾›ï¼‰ï¼š<br />\n{$additionalInfo}<br />\n<br />\næœåŠ¡å™¨å¢žå€¼ç»é”€å•†<br />\n{$serverVars}','è¿™å°ç”µå­é‚®ä»¶æ¨¡æ¿ç”¨äºŽé€šçŸ¥æœŸåˆŠä¸»è¦è”ç³»äººï¼ŒPayPalæ’ä»¶ç¢°åˆ°å¯ç–‘æ´»åŠ¨æˆ–è€…æ´»åŠ¨éœ€è¦äººå·¥æ”¯æŒã€‚'),('PAYPAL_INVESTIGATE_PAYMENT','de_DE','UngewÃ¶hnliche PayPal-AktivitÃ¤t','Open Journal Systems hat eine ungewÃ¶hnliche AktivitÃ¤t in Bezug auf die UnterstÃ¼tzung  von PayPal-Zahlungen fÃ¼r die Zeitschrift {$contextName} festgestellt. Diese AktivitÃ¤t kÃ¶nnte eine nÃ¤here Untersuchung oder ein Eingreifen erfordern.<br />\n<br />\nDiese E-Mail wurde durch das Open Journal Systems-Plugin PayPal-GebÃ¼hrenzahlung erzeugt.<br />\n<br />\nVolle Informationen zu dieser Anfrage:<br />\n{$postInfo}<br />\n<br />\nZusÃ¤tzliche Informationen (soweit angegeben):<br />\n{$additionalInfo}<br />\n<br />\nServer vars:<br />\n{$serverVars}<br />\n','Diese E-Mail-Vorlage wird genutzt, um den primÃ¤ren Zeitschriftenkontakt darÃ¼ber zu benachrichtigen, dass verdÃ¤chtige AktivitÃ¤ten durch das PayPal-PlugIn entdeckt worden sind.'),('PAYPAL_INVESTIGATE_PAYMENT','es_ES','Actividad inusual de PayPal','Open Journal Systems ha notado una actividad inusual relacionada con el soporte de pago de PayPal para la revista {$contextName}.  Esta actividad puede necesitar de mayor investigaciÃ³n o intervenciÃ³n manual.<br />\n<br />\nEste email ha sido generado por el plugin de PayPal de Open Journal Systems.<br />\n<br />\nInformaciÃ³n completa de envÃ­o para la solicitud:<br />\n{$postInfo}<br />\n<br />\nInformaciÃ³n adicional (si proporcionada):<br />\n{$additionalInfo}<br />\n<br />\nVariables de servidor:<br />\n{$serverVars}','Esta plantilla de correo es usada para notificar al contacto principal de la revista de que el plugin de PayPal ha detectado actividad sospechosa o actividad que requiere de intervenciÃ³n manual.'),('PAYPAL_INVESTIGATE_PAYMENT','fa_IR','ÙØ¹Ø§Ù„ÛŒØª ØºÛŒØ± Ø¹Ø¯ÛŒ PayPal','Ø³ÛŒØ³ØªÙ… Ù‡Ø§ÛŒ Ù…Ø¬Ù„Ù‡ Ø¢Ø²Ø§Ø¯ ÙØ¹Ø§Ù„ÛŒØªÛŒ ØºÛŒØ± Ø¹Ø§Ø¯ÛŒ Ù…Ø±Ø¨ÙˆØ· Ø¨Ù‡ Ù‚Ø³Ù…Øª Ù¾Ø±Ø¯Ø§Ø®Øª PayPal Ø¨Ø±Ø§ÛŒ {$contextName} Ø±Ø§ Ú©Ø´Ù Ú©Ø±Ø¯Ù‡ Ø§Ø³Øª.<br />\nØ§ÛŒÙ† ÙØ¹Ø§Ù„ÛŒØª Ù…Ù…Ú©Ù† Ø§Ø³Øª Ø¨Ø±Ø±Ø³ÛŒ Ø¨ÛŒØ´ØªØ± Ø´Ù…Ø§ Ø±Ø§ Ø§ÛŒØ¬Ø§Ø¨ Ú©Ù†Ø¯.<br />\n					   <br />\nØ§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ ØªÙˆØ³Ø· Ø§ÙØ²ÙˆÙ†Ù‡ PayPal Ø³ÛŒØ³ØªÙ… Ù‡Ø§ÛŒ Ù…Ø¬Ù„Ù‡ Ø¢Ø²Ø§Ø¯ ØªÙˆÙ„ÛŒØ¯ Ø´Ø¯Ù‡ Ø§Ø³Øª.<br />\n<br />\nØ§Ø·Ù„Ø§Ø¹Ø§Øª Ú©Ø§Ù…Ù„ Ù¾Ø³Øª Ø¨Ø±Ø§ÛŒ Ø¯Ø±Ø®ÙˆØ§Ø³Øª:<br />\n{$postInfo}<br />\n<br />\nØ§Ø·Ù„Ø§Ø¹Ø§Øª Ø§Ø¶Ø§ÙÛŒ Ø¯Ø± ØµÙˆØ±Øª ÙˆØ¬ÙˆØ¯:<br />\n{$additionalInfo}<br />\n<br />\nÙ…ØªØºÛŒÛŒØ±Ù‡Ø§ÛŒ Ø³Ø±ÙˆØ±<br />\n{$serverVars}',NULL),('PAYPAL_INVESTIGATE_PAYMENT','fr_CA','ActivitÃ© inhabituelle de PayPal','L\'Open Journal Systems a remarquÃ© une activitÃ© inhabituelle concernant la prise en charge du paiement PayPal pour la revue {$contextName}. Cette activitÃ© pourrait nÃ©cessiter une attention particuliÃ¨re ou une intervention manuelle.<br />\n                       <br />\nCe courriel a Ã©tÃ© gÃ©nÃ©rÃ© par le plugiciel PayPal du Open Journal Systems.<br />\n<br />\nInformation complÃ¨te de la demande :<br />\n{$postInfo}<br />\n<br />\nInformation supplÃ©mentaire (si fournie) :<br />\n{$additionalInfo}<br />\n<br />\nVariables serveur :<br />\n{$serverVars}<br />\n','Ce modÃ¨le de courriel est utilisÃ© pour aviser un contact principal d\'une revue qu\'une activitÃ© inhabituelle ou requÃ©rant une intervention manuelle a Ã©tÃ© remarquÃ©e par le plugiciel PayPal.'),('PAYPAL_INVESTIGATE_PAYMENT','pt_BR','Atividade incomum na conta PayPal','O sistema encontrou atividade incomum relacionada ao suporte a pagamentos via PayPal da revista {$contextName}. <br />\nEsta atividade pode exigir investigaÃ§Ã£o mais profunda ou intervenÃ§Ã£o manual.<br />\n                       <br />\nEsta Ã© uma mensagem automÃ¡tica da ferramenta de Pagamento via PayPal do Open Journal Systems.<br />\n<br />\nInformaÃ§Ãµes detalhadas da notificaÃ§Ã£o:<br />\n{$postInfo}<br />\n<br />\nInformaÃ§Ãµes adicionais (caso informado):<br />\n{$additionalInfo}<br />\n<br />\nVariÃ¡veis do servidor:<br />\n{$serverVars}','Esta mensagem notifica o contato principal da revista sobre atividades suspeitas, ou atividades que exijam intervenÃ§Ã£o manual, detectadas pelo Plugin de Pagamento via PayPal.'),('PAYPAL_INVESTIGATE_PAYMENT','pt_PT','Actividade incomum na conta PayPal','O sistema OJS encontrou actividade incomum relacionada ao suporte a pagamentos via PayPal, para a revista {$contextName}. Esta actividade pode exigir investigaÃ§Ã£o mais profunda ou intervenÃ§Ã£o manual.<br />\n                       <br />\nEsta mensagem foi gerada pelo Plugin PayPal do OJS.<br />\n<br />\nInformaÃ§Ãµes detalhadas da notificaÃ§Ã£o:<br />\n{$postInfo}<br />\n<br />\nInformaÃ§Ãµes adicionais (caso informado):<br />\n{$additionalInfo}<br />\n<br />\nVariÃ¡veis do Servidor:<br />\n{$serverVars}','Esta mensagem notifica o contacto principal da revista sobre actividades suspeitas, ou atividades que exijam intervenÃ§Ã£o manual, detectadas pelo Plugin de Pagamento via PayPal.'),('PAYPAL_INVESTIGATE_PAYMENT','cs_CZ','NeobvyklÃ¡ PayPal aktivita','OJS zaznamenal neobvyklou aktivitu v souvislosti s podporou plateb pÅ™es PayPal pro Äasopis {$contextName}. Tato aktivita mÅ¯Å¾e vyÅ¾adovat dalÅ¡Ã­ kontrolu nebo ruÄnÃ­ zÃ¡sah.<br />\n                       <br />\nTento email byl vygenerovÃ¡n OJS pluginem pro PayPal.<br />\n<br />\nKompletnÃ­ informace k poÅ¾adavku:<br />\n{$postInfo}<br />\n<br />\nDoplÅˆkovÃ© informace (pokud byly uvedeny):<br />\n{$additionalInfo}<br />\n<br />\nPromÄ›nnÃ© serveru:<br />\n{$serverVars}',NULL),('PAYPAL_INVESTIGATE_PAYMENT','eu_ES','Ezohiko PayPal jarduera','Open Journal Systems-ek ezohiko jarduera sumatu du {$contextName} aldizkariaren PayPal ordainketa-zerbitzuan. Jarduera hori gehiago ikertu beharko da edo eskuz parte hartu beharko da.<br />\n                       <br />\nMezu hau Open Journal Systems-en PayPal pluginak sortu du.<br />\n<br />\nEskaeraren informazio osoa:<br />\n{$postInfo}<br />\n<br />\nInformazio osagarria (eman badute):<br />\n{$additionalInfo}<br />\n<br />\nZerbitzari-aldagaiak:<br />\n{$serverVars}','Mezu-txantiloi hau erabiltzen da aldizkariko kontaktu nagusiari jakinarazteko PayPal pluginak jarduera susmagarria edo eskuz parte hartzea eskatzen duena topatu duela.'),('PAYPAL_INVESTIGATE_PAYMENT','ru_RU','ÐÐµÐ¾Ð±Ñ‹Ñ‡Ð½Ð°Ñ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ PayPal','Ð¡Ð¸ÑÑ‚ÐµÐ¼Ð° Open Journal Systems Ð¾Ð±Ð½Ð°Ñ€ÑƒÐ¶Ð¸Ð»Ð° Ð½ÐµÐ¾Ð±Ñ‹Ñ‡Ð½ÑƒÑŽ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ, ÑÐ²ÑÐ·Ð°Ð½Ð½ÑƒÑŽ Ñ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ¾Ð¹ Ð¿Ð»Ð°Ñ‚ÐµÐ¶ÐµÐ¹ Ñ‡ÐµÑ€ÐµÐ· PayPal Ð´Ð»Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Â«{$contextName}Â». Ð­Ñ‚Ð° Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ Ð¼Ð¾Ð¶ÐµÑ‚ Ñ‚Ñ€ÐµÐ±Ð¾Ð²Ð°Ñ‚ÑŒ Ð´Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ð³Ð¾ Ð¸Ð·ÑƒÑ‡ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ Ð²Ð¼ÐµÑˆÐ°Ñ‚ÐµÐ»ÑŒÑÑ‚Ð²Ð° Ð² Ñ€ÑƒÑ‡Ð½Ð¾Ð¼ Ñ€ÐµÐ¶Ð¸Ð¼Ðµ.<br />\n                       <br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ Ð±Ñ‹Ð»Ð¾ ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Â«ÐŸÐ»Ð°Ñ‚ÐµÐ¶Ð¸ Ñ‡ÐµÑ€ÐµÐ· PayPalÂ» ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ Open Journal Systems.<br />\n<br />\nÐŸÐ¾Ð»Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð»Ñ Ð·Ð°Ð¿Ñ€Ð¾ÑÐ°:<br />\n{$postInfo}<br />\n<br />\nÐ”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ (ÐµÑÐ»Ð¸ ÐµÑÑ‚ÑŒ):<br />\n{$additionalInfo}<br />\n<br />\nÐŸÐµÑ€ÐµÐ¼ÐµÐ½Ð½Ñ‹Ðµ ÑÐµÑ€Ð²ÐµÑ€Ð°:<br />\n{$serverVars}<br />\n','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð¾Ð³Ð¾ Ð»Ð¸Ñ†Ð° Ñ€ÐµÐ´Ð°ÐºÑ†Ð¸Ð¸ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð±Ñ‹Ð»Ð° Ð·Ð°Ñ€ÐµÐ³Ð¸ÑÑ‚Ñ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð° Ð¿Ð¾Ð´Ð¾Ð·Ñ€Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ Ð¸Ð»Ð¸ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ, Ñ‚Ñ€ÐµÐ±ÑƒÑŽÑ‰Ð°Ñ Ð²Ð¼ÐµÑˆÐ°Ñ‚ÐµÐ»ÑŒÑÑ‚Ð²Ð° Ð² Ñ€ÑƒÑ‡Ð½Ð¾Ð¼ Ñ€ÐµÐ¶Ð¸Ð¼Ðµ, Ð²Ñ‹Ð·Ð²Ð°Ð½Ð½Ð°Ñ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Â«ÐŸÐ»Ð°Ñ‚ÐµÐ¶Ð¸ Ñ‡ÐµÑ€ÐµÐ· PayPalÂ».'),('MANUAL_PAYMENT_NOTIFICATION','de_DE','Benachrichtigung Ã¼ber manuelle Zahlung','Eine manuelle Zahlung ist fÃ¼r die Zeitschrift {$contextName} und den/die Benutzer/in {$userFullName} (Benutzer/innen-Name &quot;{$userName}&quot;) angekÃ¼ndigt worden.<br />\n<br />\nGezahlt werden soll fÃ¼r &quot;{$itemName}&quot;.<br />\nDie Kosten betragen {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nDiese E-Mail wurde vom OJS-Plugin Manuelle GebÃ¼hrenzahlung erzeugt.','Diese E-Mail-Vorlage wird genutzt, um eine/n Zeitschriftenverwalter/in darÃ¼ber zu benachrichtigen, dass eine manuelle Zahlung beantragt worden ist.'),('MANUAL_PAYMENT_NOTIFICATION','es_ES','NotificaciÃ³n de pago manual','Un pago manual necesita ser procesado para la revista  {$contextName} y el usuario {$userFullName} (username &quot;{$userName}&quot;).<br />\n<br />\nEl Ã­tem pagado es &quot;{$itemName}&quot;.<br />\nEl precio es {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nEste correo ha sido generado por el mÃ³dulo de Pago Manual de Open Journal Systems.','Este correo se usa para notificar al gestor/a de la revista de que se ha realizado un pago manual.'),('MANUAL_PAYMENT_NOTIFICATION','fa_IR','Ø§Ø·Ù„Ø§Ø¹ Ø±Ø³Ø§Ù†ÛŒ Ù¾Ø±Ø¯Ø§Ø®Øª Ø¯Ø³ØªÛŒ','ÛŒÚ© Ù¾Ø±Ø¯Ø§Ø®Øª Ø¯Ø³ØªÛŒ Ù‚Ø±Ø§Ø± Ø§Ø³Øª Ø¨Ø±Ø§ÛŒ Ù…Ø¬Ù„Ù‡ {$contextName} Ø§Ø² Ø·Ø±Ù Ú©Ø§Ø±Ø¨Ø± {$userFullName} (username &quot;{$userName}&quot;) ØµÙˆØ±Øª Ú¯ÛŒØ±Ø¯.<br />\n<br />\nÙ…ÙˆØ±Ø¯ Ø®Ø±ÛŒØ¯ &quot;{$itemName}&quot;.<br />\nÙ‚ÛŒÙ…Øª {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nØ§ÛŒÙ† Ø§ÛŒÙ…ÛŒÙ„ ØªÙˆØ³Ø· Ø§ÙØ²ÙˆÙ†Ù‡ Ù¾Ø±Ø¯Ø§Ø®Øª Ø¯Ø³ØªÛŒ Ø³ÛŒØ³ØªÙ… Ù‡Ø§ÛŒ Ù…Ø¬Ù„Ù‡ Ø¢Ø²Ø§Ø¯ Ø§ÛŒØ¬Ø§Ø¯ Ø´Ø¯Ù‡ Ø§Ø³Øª.',NULL),('MANUAL_PAYMENT_NOTIFICATION','fr_CA','Avis de paiement manuel','Un paiement manuel doit Ãªtre traitÃ© pour la revue {$contextName} et l\'utilisateur {$userFullName} (nom d\'utilisateur &quot;{$userName}&quot;).<br />\n<br />\nL\'Ã©lÃ©ment facturÃ© est &quot;{$itemName}&quot;.<br />\nLe coÃ»t est de {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nCe courriel a Ã©tÃ© gÃ©nÃ©rÃ© par le plugiciel de paiement manuel du Open Journal Systems.','Ce modÃ¨le de courriel est utilisÃ© pour aviser un directeur de revue que le paiement manuel a Ã©tÃ© demandÃ©.'),('MANUAL_PAYMENT_NOTIFICATION','pt_BR','NotificaÃ§Ã£o de pagamento manual','Ã‰ necessÃ¡rio realizar o processamento de um pagamento manual de assinatura da revista {$contextName}, pelo usuÃ¡rio {$userFullName} (login &quot;{$userName}&quot;).<br />\n<br />\nO item adquirido Ã© &quot;{$itemName}&quot;.<br />\nValor em ({$itemCurrencyCode}): {$itemCost}<br />\n<br />\nEsta Ã© uma mensagem automÃ¡tica da ferramenta de Pagamento manual do Open Journal Systems.','Mensagem automÃ¡tica notificando editor-gerente que um pagamento manual foi realizado e exige processamento.'),('MANUAL_PAYMENT_NOTIFICATION','pt_PT','NotificaÃ§Ã£o de pagamento manual','Ã‰ necessÃ¡rio realizar o processamento de um pagamento manual de assinatura da revista {$contextName} do utilizador {$userFullName} (username &quot;{$userName}&quot;).<br />\n<br />\nO item adquirido Ã© &quot;{$itemName}&quot;.<br />\nO custo Ã© {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nEsta mensagem foi gerada pelo Plugin de Pagamento Manual do OJS.','Esta mensagem notifica o editor-gestor que um pagamento manual foi realizado e exige processamento.'),('MANUAL_PAYMENT_NOTIFICATION','uk_UA','Ð†Ð½Ñ„Ð¾Ñ€Ð¼ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¾ Ð¿Ð»Ð°Ñ‚Ñ–Ð¶','ÐÐ° Ñ€Ð°Ñ…ÑƒÐ½Ð¾Ðº Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ {$contextName} ÐºÐ¾Ñ€Ð¸ÑÑ‚ÑƒÐ²Ð°Ñ‡ÐµÐ¼ {$userFullName} (username &quot;{$userName}&quot;) Ð¿Ð¾Ð²Ð¸Ð½ÐµÐ½ Ð±ÑƒÑ‚Ð¸ Ð¿ÐµÑ€ÐµÑ€Ð°Ñ…Ð¾Ð²Ð°Ð½Ð¸Ð¹ Ð¿Ð»Ð°Ñ‚Ñ–Ð¶.<br />\n<br />\nÐ¦Ðµ Ð¿Ð»Ð°Ñ‚Ð° Ð·Ð° &quot;{$itemName}&quot;.<br />\nÐ¡ÑƒÐ¼Ð° Ð¿Ð»Ð°Ñ‚ÐµÐ¶Ñƒ {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ Ð±ÑƒÐ² ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð¸Ð¹ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Ñ€ÑƒÑ‡Ð½Ð¸Ñ… Ð¿Ð»Ð°Ñ‚ÐµÐ¶Ñ–Ð² ÑÐ¸ÑÑ‚ÐµÐ¼Ð¸ Open Journal Systems.','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼ÑƒÐ²Ð°Ð½Ð½Ñ Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ€Ð° Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Ð¿Ñ€Ð¾ Ð·Ð°Ð¿Ð¸Ñ‚ Ð½Ð° Ð·Ð´Ñ–Ð¹ÑÐ½ÐµÐ½Ð½Ñ Ñ€ÑƒÑ‡Ð½Ð¾Ð³Ð¾ Ð¿Ð»Ð°Ñ‚ÐµÐ¶Ñƒ.'),('MANUAL_PAYMENT_NOTIFICATION','cs_CZ','OznÃ¡menÃ­ o manuÃ¡lnÃ­ platbÄ›','Je tÅ™eba zpracovat manuÃ¡lnÃ­ platbu pro Äasopis {$contextName} a uÅ¾ivatele {$userFullName} (uÅ¾ivatelskÃ© jmÃ©no &quot;{$userName}&quot;).<br />\n<br />\nPoloÅ¾ka, za kterou je placeno &quot;{$itemName}&quot;.<br />\nCena je {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nTento email byl vygenerovÃ¡n OJS pluginem ManuÃ¡lnÃ­ platby.',NULL),('MANUAL_PAYMENT_NOTIFICATION','eu_ES','Eskuzko ordainketaren jakinarazpena','{$userFullName} erabiltzaileak (&quot;{$userName}&quot; erab.-iz.) {$contextName} aldizkarirako egindako eskuzko ordainketa bat prozesatu beharrean dago.<br />\n<br />\nOrdaindu beharreko lana &quot;{$itemName}&quot; da.<br />\nKostua : {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nMezu hau Open Journal Systems-en Eskuzko ordainketen pluginak sortu du.','Mezu-txantiloi hau aldizkariaren kudeatzaileari eskuzko ordainketa bat eskatu dela jakinarazteko erabiltzen da.'),('MANUAL_PAYMENT_NOTIFICATION','ru_RU','Ð£Ð²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ðµ Ð¾ Ð¿Ð»Ð°Ñ‚ÐµÐ¶Ðµ','ÐÐµÐ¾Ð±Ñ…Ð¾Ð´Ð¸Ð¼Ð¾ Ð²Ñ€ÑƒÑ‡Ð½ÑƒÑŽ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚Ð°Ñ‚ÑŒ Ð¿Ð»Ð°Ñ‚ÐµÐ¶ Ð´Ð»Ñ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð° Â«{$contextName}Â» Ð¸ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ {$userFullName} (Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Â«{$userName}Â»).<br />\n<br />\nÐžÐ¿Ð»Ð°Ñ‚Ð° Ð²Ð½Ð¾ÑÐ¸Ñ‚ÑÑ Ð·Ð° Â«{$itemName}Â».<br />\nÐ¡ÑƒÐ¼Ð¼Ð° {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nÐ­Ñ‚Ð¾ Ð¿Ð¸ÑÑŒÐ¼Ð¾ ÑÐ³ÐµÐ½ÐµÑ€Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¾ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ Â«Ð’Ð²Ð¾Ð´ Ð¾Ð¿Ð»Ð°Ñ‚Ñ‹ Ð²Ñ€ÑƒÑ‡Ð½ÑƒÑŽÂ» ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ Open Journal Systems.','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ ÑƒÐ²ÐµÐ´Ð¾Ð¼Ð»ÐµÐ½Ð¸Ñ ÑƒÐ¿Ñ€Ð°Ð²Ð»ÑÑŽÑ‰ÐµÐ³Ð¾ Ð¶ÑƒÑ€Ð½Ð°Ð»Ð¾Ð¼ Ð¾ Ñ‚Ð¾Ð¼, Ñ‡Ñ‚Ð¾ Ð±Ñ‹Ð» Ð·Ð°Ð¿Ñ€Ð¾ÑˆÐµÐ½ Ð²Ð²Ð¾Ð´ Ð¾Ð¿Ð»Ð°Ñ‚Ñ‹ Ð²Ñ€ÑƒÑ‡Ð½ÑƒÑŽ.'),('MANUAL_PAYMENT_NOTIFICATION','zh_CN','äººå·¥æ”¯ä»˜é€šçŸ¥','äººå·¥æ”¯ä»˜éœ€è¦è¢«{$contextName}æœŸåˆŠçš„{$userFullName}æ¥å¤„ç†ï¼ˆç”¨æˆ·åâ€œ{$userName}â€ï¼‰ã€‚<br />\n<br />\n<br />\nè¢«æ”¯ä»˜çš„é¡¹ç›®ï¼šâ€œ{$itemName}â€ï¼›ã€‚<br />\nè´¹ç”¨ï¼š{$itemCost} ({$itemCurrencyCode})ã€‚<br />\n<br />\næ­¤é‚®ä»¶æ˜¯ç”±å¼€æ”¾æœŸåˆŠç³»ç»Ÿçš„äººå·¥æ”¯ä»˜æ’ä»¶ç”Ÿæˆçš„ã€‚','è¿™å°ç”µå­é‚®ä»¶ç”¨æ¥é€šçŸ¥æœŸåˆŠç®¡ç†å‘˜åŽ»å¤„ç†ä¸€ä¸ªäººå·¥æ”¯ä»˜è¯·æ±‚ã€‚'),('PAYPAL_INVESTIGATE_PAYMENT','en_US','ÐÐµÐ·Ð²Ð¸Ñ‡Ð°Ð¹Ð½Ð° Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ–ÑÑ‚ÑŒ PayPal','Ð¡Ð¸ÑÑ‚ÐµÐ¼Ð° Open Journal Systems Ð¿Ð¾Ð¼Ñ–Ñ‚Ð¸Ð»Ð° Ð½ÐµÐ·Ð²Ð¸Ñ‡Ð°Ð¹Ð½Ñƒ Ð°ÐºÑ‚Ð¸Ð²Ð½Ñ–ÑÑ‚ÑŒ Ñƒ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ð¾Ð½ÑƒÐ²Ð°Ð½Ð½Ñ– Ð¼Ð¾Ð´ÑƒÐ»Ñ Ð¿Ð»Ð°Ñ‚ÐµÐ¶Ñ–Ð² PayPal Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ {$contextName}. ÐœÐ¾Ð¶Ðµ Ð·Ð½Ð°Ð´Ð¾Ð±Ð¸Ñ‚Ð¸ÑÑŒ Ð¿Ð¾Ð´Ð°Ð»ÑŒÑˆÐµ Ð²Ð¸Ð²Ñ‡ÐµÐ½Ð½Ñ Ñ†ÑŒÐ¾Ð³Ð¾ Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ Ð°Ð±Ð¾ Ñ€ÑƒÑ‡Ð½Ðµ Ð²Ñ‚Ñ€ÑƒÑ‡Ð°Ð½Ð½Ñ.<br />\n                       <br />\nÐ¦ÐµÐ¹ Ð»Ð¸ÑÑ‚ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð¸Ð¹ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ PayPal ÑÐ¸ÑÑ‚ÐµÐ¼Ð¸ Open Journal Systems.<br />\n<br />\nÐŸÐ¾Ð²Ð½Ð° Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð¿Ñ€Ð¾ Ð·Ð°Ð¿Ð¸Ñ‚:<br />\n{$postInfo}<br />\n<br />\nÐ”Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ð° Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ (ÑÐºÑ‰Ð¾ Ð½Ð°ÑÐ²Ð½Ð°):<br />\n{$additionalInfo}<br />\n<br />\nÐ”Ð°Ð½Ñ– ÑÐµÑ€Ð²ÐµÑ€Ð°:<br />\n{$serverVars}<br />\n','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼ÑƒÐ²Ð°Ð½Ð½Ñ Ð¾ÑÐ½Ð¾Ð²Ð½Ð¾Ñ— ÐºÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ð½Ð¾Ñ— Ð¾ÑÐ¾Ð±Ð¸ Ð¶ÑƒÑ€Ð½Ð°Ð»Ñƒ Ð¿Ñ€Ð¾ Ð²Ð¸ÑÐ²Ð»ÐµÐ½Ð½Ñ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¼ PayPal Ð¿Ñ–Ð´Ð¾Ð·Ñ€Ñ–Ð»Ð¾Ñ— Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚Ñ– Ð°Ð±Ð¾ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚Ñ–, Ñ‰Ð¾ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±ÑƒÑ” Ñ€ÑƒÑ‡Ð½Ð¾Ð³Ð¾ Ð²Ñ‚Ñ€ÑƒÑ‡Ð°Ð½Ð½Ñ.'),('PAYPAL_INVESTIGATE_PAYMENT','it_IT','AttivitÃ  PayPal sospetta','Open Journal Systems ha riscontrato un\'attivtÃ  sospetta sul conto PayPal della rivista {$contextName}. CiÃ² puÃ² richiedere ulteriori indagini o un intervento manuale.<br />\n<br />\nQuesta email Ã¨ stata generata da Open Journal Systems\' PayPal plugin<br />\n<br />\nTutte le informazioni sulla richiesta:<br />\n{$postInfo}<br />\n<br />\nInformazioni aggiuntive (se disponibili):<br />\n{$additionalInfo}<br />\n<br />\nServer vars:<br />\n{$serverVars}','Questa mail viene inviata dal plugin paypal al gestore di un journal quanto si notano delle attivitÃ  sospette o c\'Ã¨ bisogno di un intervento manuale.'),('ORCID_COLLECT_AUTHOR_ID','ru_RU','ORCID Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð°','{$authorName}!<br/>\n<br/>\nÐ’Ñ‹ Ð±Ñ‹Ð»Ð¸ ÑƒÐºÐ°Ð·Ð°Ð½Ñ‹ ÐºÐ°Ðº ÑÐ¾Ð°Ð²Ñ‚Ð¾Ñ€ Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ð° Â«{$articleTitle}Â», Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð² Ð¶ÑƒÑ€Ð½Ð°Ð» Â«{$contextName}Â».<br/>\n<br/>\nÐ§Ñ‚Ð¾Ð±Ñ‹ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚ÑŒ ÑÐ²Ð¾Ðµ Ð°Ð²Ñ‚Ð¾Ñ€ÑÑ‚Ð²Ð¾, Ð¿Ð¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, Ð´Ð¾Ð±Ð°Ð²ÑŒÑ‚Ðµ ÑÐ²Ð¾Ð¹ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€ ORCID Ðº ÑÑ‚Ð¾Ð¼Ñƒ Ð¼Ð°Ñ‚ÐµÑ€Ð¸Ð°Ð»Ñƒ, Ð¿ÐµÑ€ÐµÐ¹Ð´Ñ Ð¿Ð¾ Ð¿Ñ€Ð¸Ð²ÐµÐ´ÐµÐ½Ð½Ð¾Ð¹ Ð½Ð¸Ð¶Ðµ ÑÑÑ‹Ð»ÐºÐµ.<br/>\n<br/>\n{$authorOrcidUrl}<br/>\n<br/>\nÐ•ÑÐ»Ð¸ Ñƒ Ð’Ð°Ñ ÐµÑÑ‚ÑŒ ÐºÐ°ÐºÐ¸Ðµ-Ð»Ð¸Ð±Ð¾ Ð²Ð¾Ð¿Ñ€Ð¾ÑÑ‹, Ð¿Ð¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, ÑÐ²ÑÐ¶Ð¸Ñ‚ÐµÑÑŒ ÑÐ¾ Ð¼Ð½Ð¾Ð¹.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Ð­Ñ‚Ð¾Ñ‚ ÑˆÐ°Ð±Ð»Ð¾Ð½ Ð¿Ð¸ÑÑŒÐ¼Ð° Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑ‚ÑÑ Ð´Ð»Ñ ÑÐ±Ð¾Ñ€Ð° Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€Ð¾Ð² ORCID Ñ ÑÐ¾Ð°Ð²Ñ‚Ð¾Ñ€Ð¾Ð².'),('ORCID_COLLECT_AUTHOR_ID','en_US','Submission ORCID','Dear {$authorName},<br/>\n<br/>\nYou have been listed as an author on a manuscript submission to {$contextName}.<br/>\nTo confirm your authorship, please add your ORCID id to this submission by visiting the link provided below.<br/>\n<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Register or connect your ORCID iD</a><br/>\n<br/>\n<br>\n<a href=\"{$orcidAboutUrl}\">More information about ORCID at {$contextName}</a><br/>\n<br/>\nIf you have any questions, please contact me.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','This email template is used to collect the ORCID id\'s from authors.'),('ORCID_COLLECT_AUTHOR_ID','de_DE','ORCID Zugriff erbeten','Liebe/r {$authorName},<br/>\n<br/>\nSie sind als Autor/in eines eingereichten Beitrags bei der Zeitschrift {$contextName} benannt worden.<br/>\n<br/>\nUm Ihre Autor/innenschaft zu bestÃ¤tigen, geben Sie bitte Ihre ORCID iD fÃ¼r diese Einreichung an, indem Sie den unten angegebenen Link aufrufen.<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>ORCID iD registrieren oder ihre verbinden</a><br/>\n<br/>\n<br/>\n<a href=\"{$orcidAboutUrl}\">Mehr Informationen zu ORCID bei {$contextName}</a><br/>\n<br/>\nWenn Sie Fragen dazu haben, melden Sie sich bitte bei mir.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Diese E-Mail-Vorlage wird verwendet, um die ORCID-iDs von Co-Autor/innen einzuholen.'),('EDITOR_DECISION_INITIAL_DECLINE','en_US','Editor Decision','\n			{$authorName}:<br />\n<br />\nWe have reached a decision regarding your submission to {$contextName}, &quot;{$submissionTitle}&quot;.<br />\n<br />\nOur decision is to: Decline Submission<br />\n<br />\n{$editorialContactSignature}<br />','This email is send to the author if the editor declines his submission initially, before the review stage'),('REVISED_VERSION_NOTIFY','en_US','Revised Version Uploaded','Editors:<br />\n<br />\nA revised version of &quot;{$submissionTitle}&quot; has been uploaded by the author {$authorName}.<br />\n<br />\nSubmission URL: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}','This email is automatically sent to the assigned editor when author uploads a revised version of an article.'),('REVIEW_REQUEST_REMIND_AUTO','en_US','Article Review Request','{$reviewerName}:<br />\nJust a gentle reminder of our request for your review of the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We were hoping to have your response by {$responseDueDate}, and this email has been automatically generated and sent with the passing of that date.\n<br />\nI believe that you would serve as an excellent reviewer of the manuscript. The submission\'s abstract is inserted below, and I hope that you will consider undertaking this important task for us.<br />\n<br />\nPlease log into the journal web site to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation. The web site is {$contextUrl}<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nIf you do not have your username and password for the journal\'s web site, you can use this link to reset your password (which will then be emailed to you along with your username). {$passwordResetUrl}<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','This email is automatically sent when a reviewer\'s confirmation due date elapses (see Review Options under Settings > Workflow > Review) and one-click reviewer access is disabled. Scheduled tasks must be enabled and configured (see the site configuration file).'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','en_US','Article Review Request','{$reviewerName}:<br />\nJust a gentle reminder of our request for your review of the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We were hoping to have your response by {$responseDueDate}, and this email has been automatically generated and sent with the passing of that date. \n<br />\nI believe that you would serve as an excellent reviewer of the manuscript. The submission\'s abstract is inserted below, and I hope that you will consider undertaking this important task for us.<br />\n<br />\nPlease log into the journal web site to indicate whether you will undertake the review or not, as well as to access the submission and to record your review and recommendation.<br />\n<br />\nThe review itself is due {$reviewDueDate}.<br />\n<br />\nSubmission URL: {$submissionReviewUrl}<br />\n<br />\nThank you for considering this request.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','This email is automatically sent when a reviewer\'s confirmation due date elapses (see Review Options under Settings > Workflow > Review) and one-click reviewer access is enabled. Scheduled tasks must be enabled and configured (see the site configuration file).'),('PAYPAL_INVESTIGATE_PAYMENT','da_DK','UsÃ¦dvanlig PayPal-aktivitet','Open Journal Systems er stÃ¸dt pÃ¥ en usÃ¦dvanlig aktivitet i forbindelse med PayPal-betalingsunderstÃ¸ttelsen til tidsskriftet {$contextName}. Denne aktivitet kan krÃ¦ve yderligere undersÃ¸gelse eller manuel indgriben.<br /><br />\n                       <br />\nDenne e-mail blev genereret af Open Journal Systems \'PayPal-plug-in<br />\n<br />\nUdfÃ¸rlig information:<br />\n{$postInfo}<br />\n<br />\nYderligere information (hvis leveret):<br />\n{$additionalInfo}<br />\n<br />\nServer vars:<br />\n{$serverVars}<br />','Denne e-mail-skabelon bruges til at underrette et tidsskrifts primÃ¦re kontaktperson om, at mistÃ¦nkelig aktivitet eller aktivitet, der krÃ¦ver manuel indblanding, tilstÃ¸dte PayPal-plug-in\'en.'),('PAYPAL_INVESTIGATE_PAYMENT','id_ID',' Kegiatan pembayaran paypal yang tidak biasa ',' IOJS telah menemukan kegiatan yang tidak biasa yang berhubungan dengan bantuan pembayaran paypal untuk jurnal {$contextName}. Kegiatan ini mungkin dibutuhkan investigasi yang lebih lanjut atau intervensi manual. Emai ini diciptakan oleh OJS PayPal plugin.<br />\nInformasi posting penuh untuk permohonan:<br />\n{$postInfo}<br />\nInformasi tambahan (jika tersedia):<br />\n{$additionalInfo}<br />\nVariasi Server :<br />\n{$serverVars}<br />\n',' Email ini digunakan untuk memberitahukan jurnal kontak utama yang mempunyai kegiatan yang mencurigakan atau kegiatan yang membutuhkan intervensi manual yang ditemukan oleh plugin paypal.'),('PAYPAL_INVESTIGATE_PAYMENT','ar_IQ','Ù†Ø´Ø§Ø· ØºÙŠØ± Ø¹Ø§Ø¯ÙŠ Ù…Ù† PayPal','Ù†Ø¸Ø§Ù… Ø§Ù„Ù…Ø¬Ù„Ø§Øª Ø§Ù„Ù…ÙØªÙˆØ­Ø© Ù‚Ø¯ ØªØ¹Ø±Ø¶ Ø¥Ù„Ù‰ Ù†Ø´Ø§Ø· ØºÙŠØ± Ø¹Ø§Ø¯ÙŠ ÙŠØªØ¹Ù„Ù‚ Ø¨Ø¢Ù„ÙŠØ© Ø¯Ø¹Ù… Ø§Ù„Ù…Ø¯ÙÙˆØ¹Ø§Øª Ø¹Ø¨Ø± PayPal ÙŠØ®Øµ Ø§Ù„Ù…Ø¬Ù„Ø© {$contextName}. Ù‡Ø°Ø§ Ø§Ù„Ù†Ø´Ø§Ø· Ù‚Ø¯ ÙŠØ³ØªØ¯Ø¹ÙŠ Ø§Ù„Ù…Ø²ÙŠØ¯ Ù…Ù† Ø§Ù„ØªØ­Ù‚ÙŠÙ‚ Ø¨Ø´Ø£Ù†Ù‡ ÙˆÙ„Ùˆ ÙŠØ¯ÙˆÙŠØ§Ù‹.<br />\n                       <br />\nÙ‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ø£Ù†Ø´Ø£ØªÙ‡Ø§ Ø¥Ø¶Ø§ÙØ© PayPal Ù„Ù†Ø¸Ø§Ù… Ø§Ù„Ù…Ø¬Ù„Ø§Øª Ø§Ù„Ù…ÙØªÙˆØ­Ø©.<br />\n<br />\nÙ…Ø¹Ù„ÙˆÙ…Ø§Øª Ø§Ù„Ø·Ø±Ø­ Ø§Ù„ÙƒØ§Ù…Ù„ Ù„Ù„Ø·Ù„Ø¨:<br />\n{$postInfo}<br />\n<br />\nÙ…Ø¹Ù„ÙˆÙ…Ø§Øª Ø¥Ø¶Ø§ÙÙŠØ© (Ù„Ùˆ ØªÙˆÙØ±Øª):<br />\n{$additionalInfo}<br />\n<br />\nÙ…ØªØºÙŠØ±Ø§Øª Ø§Ù„Ù…Ù„Ù‚Ù…:<br />\n{$serverVars}<br />\n','Ù‚Ø§Ù„Ø¨ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ø§Ù„Ø§Ù„ÙƒØªØ±ÙˆÙ†ÙŠØ© Ù‡Ø°Ø§ ÙŠØ³ØªØ¹Ù…Ù„ Ù„Ø¥Ø´Ø¹Ø§Ø± Ø¹Ù†ÙˆØ§Ù† Ø§Ù„Ø§ØªØµØ§Ù„ Ø§Ù„Ø±Ø¦ÙŠØ³ÙŠ ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø© Ø¨Ø­Ø¯ÙˆØ« Ù†Ø´Ø§Ø· Ù…Ø±ÙŠØ¨ Ù…Ù† Ù‚Ø¨Ù„ Ø¥Ø¶Ø§ÙØ© PayPal Ù…Ù…Ø§ Ù‚Ø¯ ÙŠØ³ØªØ¯Ø¹ÙŠ Ø§Ù„Ø§Ù„ØªÙØ§Øª Ø¥Ù„ÙŠÙ‡ Ø£Ùˆ Ø§Ù„ØªØ­Ù‚ÙŠÙ‚ Ø¨Ø´Ø£Ù†Ù‡.'),('MANUAL_PAYMENT_NOTIFICATION','da_DK','Meddelelse om manuel betaling','Der skal gennemfÃ¸res en manuel betaling for tidsskriftet {$contextName} og brugeren {$userFullName} (username &quot;{$userName}&quot;).</br>\n</br>\nBetalingen vedrÃ¸rer &quot;{$itemName}&quot;.</br>\nPrisen er {$itemCost} ({$itemCurrencyCode}).</br>\n</br>\nDenne e-mail blev genereret af Open Journal Systems\' plugin for manuelle betalinger','Denne e-mail bruges til at meddele en af tidsskriftschefens kontakter, at der skal foretage en manuel betaling.'),('MANUAL_PAYMENT_NOTIFICATION','id_ID',' Pemberitahuan Pembayaran Manual ',' Pembayaran manual harus diproses untuk jurnal dan {$contextName} pengguna {$userFullName} (nama pengguna &quot;{$userName}&quot;).<br />\nThe item being paid for &quot;{$itemName}&quot;. <br />\nBiaya adalah {$itemCost} ({$itemCurrencyCode}). <br />\nSurat elektronik ini dibuat oleh plugin pembayaran manual IOJS.',' Email ini digunakan untuk memberitahukan kontak manajer jurnal bahwa pembayaran manual dibutuhkan.'),('MANUAL_PAYMENT_NOTIFICATION','ar_IQ','Ø¥Ø´Ø¹Ø§Ø± Ø§Ù„Ø¯ÙØ¹ Ø§Ù„ÙŠØ¯ÙˆÙŠ','\n			Ø¹Ù…Ù„ÙŠØ© Ø¯ÙØ¹ ÙŠØ¯ÙˆÙŠ Ø¨Ø­Ø§Ø¬Ø© Ø¥Ù„Ù‰ Ù…Ø¹Ø§Ù„Ø¬ØªÙ‡Ø§ ØªØ®Øµ Ø§Ù„Ù…Ø¬Ù„Ø© {$contextName} ÙˆØ§Ù„Ù…Ø³ØªØ®Ø¯Ù… {$userFullName} (Ø§Ø³Ù… Ø§Ù„Ù…Ø³ØªØ®Ø¯Ù… &quot;{$userName}&quot;).<br />\n<br />\nØ§Ù„ÙÙ‚Ø±Ø© Ø§Ù„ØªÙŠ ÙÙŠ Ø§Ù„Ù†ÙŠØ© Ø¯ÙØ¹ Ø§Ù„Ù…Ø§Ù„ Ù„Ù‡Ø§ Ù‡ÙŠ &quot;{$itemName}&quot;.<br />\nØ§Ù„ÙƒÙ„ÙØ© Ù‡ÙŠ {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nØªÙ… Ø¥Ù†Ø´Ø§Ø¡ Ø±Ø³Ø§Ù„Ø© Ø§Ù„Ø¨Ø±ÙŠØ¯ Ø§Ù„Ø§Ù„ÙƒØªØ±ÙˆÙ†ÙŠ Ù‡Ø°Ù‡ Ù…Ù† Ù‚Ø¨Ù„ Ø¥Ø¶Ø§ÙØ© Ø§Ù„Ø¯ÙØ¹ Ø§Ù„Ù…Ø§Ù„ÙŠ Ø§Ù„ÙŠØ¯ÙˆÙŠ Ù„Ù†Ø¸Ø§Ù… Ø§Ù„Ù…Ø¬Ù„Ø§Øª Ø§Ù„Ù…ÙØªÙˆØ­Ø©.','Ù‚Ø§Ù„Ø¨ Ù‡Ø°Ù‡ Ø§Ù„Ø±Ø³Ø§Ù„Ø© ÙŠØ³ØªØ¹Ù…Ù„ Ù„Ø¥Ø´Ø¹Ø§Ø± Ø±Ø¦ÙŠØ³ ØªØ­Ø±ÙŠØ± Ø§Ù„Ù…Ø¬Ù„Ø© Ø£Ùˆ Ù…Ø¯ÙŠØ± ØªØ­Ø±ÙŠØ±Ù‡Ø§ Ø¨Ø­Ø¯ÙˆØ« Ù…Ø·Ø§Ù„Ø¨Ø© Ù„Ø¯ÙØ¹ Ø§Ù„Ù…Ø§Ù„ ÙŠØ¯ÙˆÙŠØ§Ù‹ ÙÙŠ Ø§Ù„Ù…Ø¬Ù„Ø©.'),('NOTIFICATION_CENTER_DEFAULT','en_US','A message regarding {$contextName}','Please enter your message.','The default (blank) message used in the Notification Center Message Listbuilder.'),('EDITOR_DECISION_SEND_TO_PRODUCTION','en_US','Editor Decision','{$authorName}:<br />\n<br />\nThe editing of your submission, &quot;{$submissionTitle},&quot; is complete.  We are now sending it to production.<br />\n<br />\nSubmission URL: {$submissionUrl}<br />\n<br />\n{$editorialContactSignature}<br />\n','This email from the Editor or Section Editor to an Author notifies them that their submission is being sent to production.'),('SUBMISSION_ACK_NOT_USER','en_US','Submission Acknowledgement','Hello,<br />\n<br />\n{$submitterName} has submitted the manuscript, &quot;{$submissionTitle}&quot; to {$contextName}. <br />\n<br />\nIf you have any questions, please contact me. Thank you for considering this journal as a venue for your work.<br />\n<br />\n{$editorialContactSignature}','This email, when enabled, is automatically sent to the other authors who are not users within OJS specified during the submission process.'),('SUBMISSION_ACK_NOT_USER','ca_ES','Justificant de recepciÃ³ de la tramesa','Hola,<br />\n<br />\n{$submitterName} ha tramÃ¨s el manuscrit Â«{$submissionTitle}Â» a {$contextName}. <br />\n<br />\nSi teniu cap pregunta, contacteu amb mi. GrÃ cies per tenir en compte aquesta publicaciÃ³ per desenvolupar la vostra feina.<br />\n<br />\n{$editorialContactSignature}','Aquest correu electrÃ²nic, quan estÃ  habilitat, s\'envia automÃ ticament als altres autors/ores que no sÃ³n usuaris/Ã ries a l\'OMP especificats durant el procÃ©s de tramesa.'),('SUBMISSION_ACK_NOT_USER','fr_CA','AccusÃ© de rÃ©ception de la soumission','Bonjour,<br />\n<br />\nLe manuscrit intitulÃ© , &quot;{$submissionTitle}&quot;, a Ã©tÃ© soumis par {$submitterName} Ã  {$contextName}.<br />\n<br />\nSi vous avez des questions, n\'hÃ©sitez pas Ã  communiquer avec nous. Nous vous remercions d\'avoir pensÃ© Ã  {$contextName} pour la publication de vos travaux.<br />\n<br />\n{$editorialContactSignature}','Ce courriel, lorsque activÃ©, est envoyÃ© automatiquement aux autres auteurs, i.e. ceux qui ne sont pas l\'utilisateur enregistrÃ© faisant la soumission.'),('SUBMISSION_ACK_NOT_USER','pt_BR','Agradecimento pela submissÃ£o','OlÃ¡,<br />\n<br />\n{$submitterName} submeteu o manuscrito &quot;{$submissionTitle}&quot; Ã  editora {$contextName}. <br />\n<br />\nEm caso de dÃºvidas, entre em contato. Agradecemos por considerar nossa editora como um veÃ­culo para seus trabalhos.<br />\n<br />\n{$editorialContactSignature}','Quando habilitada, esta mensagem Ã© enviada automaticamente aos coautores informados durante o processo de submissÃ£o, que nÃ£o estÃ£o cadastrados no OMP.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','de_DE','ORCID Zugriff erbeten','Liebe/r {$authorName},<br>\n<br>\nSie sind als Autor/in eines eingereichten Beitrags bei der Zeitschrift {$contextName} benannt worden.<br>\n<br>\nBitte gestatten Sie uns ihre ORCID-ID, falls vorhanden, zu diesem Beitrag hinzuzufÃ¼gen, sowie ihr ORCID Profil bei VerÃ¶ffentlichung des Beitrags zu aktualisieren.<br>\nDazu folgen sie dem unten stehenden Link zur offiziellen ORCID-Seite, melden sich mit ihren Daten an und authorisieren sie den Zugriff, indem\nsie den Anweisungen auf der Seite folgen.<br>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>ORCID iD registrieren oder ihre verbinden</a><br/>\n<br/>\n<br>\n<a href=\"{$orcidAboutUrl}\">Mehr Informationen zu ORCID bei {$contextName}</a>.\n<br>\nWenn Sie Fragen dazu haben, melden Sie sich bitte.<br>\n<br>\n{$principalContactSignature}<br>\n','Diese E-Mail-Vorlage wird verwendet, um die Authorisierung fÃ¼r ORCID Profil Zugriff von Autor/innen einzuholen.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','en_US','Requesting ORCID record access','Dear {$authorName},<br>\n<br>\nYou have been listed as an author on the manuscript submission \"{$articleTitle}\" to {$contextName}.\n<br>\n<br>\nPlease allow us to add your ORCID id to this submission and also to add the submission to your ORCID profile on publication.<br>\nVisit the link to the official ORCID website, login with your profile and authorize the access by following the instructions.<br>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Register or Connect your ORCID iD</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">More about ORCID at {$contextName}</a><br/>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n','This email template is used to request ORCID record access from authors.'),('ORCID_COLLECT_AUTHOR_ID','es_ES','Identificador ORCID','Estimado/a {$authorName},\n\nSe le ha aÃ±adido como coautor/a del artÃ­culo \"{$articleTitle}\" para {$journalName}. \n\nPara confirmar su autorÃ­a, aÃ±ada su identificador ORCID a este envÃ­o mediante el enlace proporcionado a continuaciÃ³n.\n\n{$authorOrcidUrl}\n\nSi tiene cualquier pregunta no dude en contactarme.\n\n{$editorialContactSignature}','Esta plantilla de correo se utiliza para recopilar los identificadores ORCID de los coautores/as.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','fr_CA','Demande d\'accÃ¨s au dossier ORCID','{$authorName},<br/>\n<br/>\nVous avez Ã©tÃ© inscrit ou inscrite en tant qu\'auteur ou auteure pour le manuscrit Â« {$articleTitle} Â» soumis Ã  {$contextName}.\n<br/>\n<br/>\nVeuillez nous autoriser Ã  ajouter votre identifiant ORCID Ã  cette soumission et Ã  ajouter Ã©galement la soumission Ã  votre dossier ORCID suite Ã  sa publication.\n<br/>\nSuivre le lien vers le site officiel ORCID, vous connecter avec votre profil et autoriser l\'accÃ¨s en suivant les instructions.<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"icÃ´ne identifiant ORCID\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Se connecter avec votre identifiant ORCID ou s\'inscrire</a><br/>\n<br/>\n<br/>\n<a href=\"{$orcidAboutUrl}\">Plus de renseignements sur votre identifiant ORCID dans {$contextName}</a><br/>\n<br/>\nSi vous avez des questions, veuillez communiquer avec nous.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Ce modÃ¨le de courriel est utilisÃ© pour demander aux auteurs-es l\'accÃ¨s Ã  leur dossier ORCID.'),('ORCID_COLLECT_AUTHOR_ID','it_IT','Le chiediamo di inserire l\'ORCID','Gentile {$authorName},\n\nLei Ã¨ stato indicato come co-autore della proposta \"{$articleTitle}\" giunta alla rivista {$journalName}. \n\nPer confermare la sua responsabilitÃ  come autore, le chiediamo di aggiungere il suo codice ORCID alla proposta usando il link messo qui sotto.\n\n{$authorOrcidUrl}\n\nSe delle domandi, mi contatti pure.\n\n{$editorialContactSignature}\n\n\n','Questo template si usa per raccogliere l\'ORCID dai coautori'),('ORCID_COLLECT_AUTHOR_ID','nl_NL','ORCID van uw inzending','Beste {$authorName},<br/>\n<br/>\nU bent auteur van een inzending voor {$contextName}.<br/> \nWilt u bevestigen dat u co-auteur bent door uw ORCID id toe te voegen via volgende link?<br/>\n<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Registreer of koppel uw ORCID ID</a><br/>\n<br/>\n<br/>\n<a href=\"{$orcidAboutUrl}\">Meer informatie over ORCID op {$contextName}</a><br/>\n<br/>\nNeemt u alstublieft contact op als u vragen heeft.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Deze e-mail wordt verstuurd om de ORCID ID\'s van auteurs te verzamelen.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','nl_NL','Toegangsverzoek tot uw ORCID profiel','Beste {$authorName},<br/>\n<br/>\nU bent auteur van het manuscript \"{$articleTitle}\" dat werd ingediend voor {$contextName}.\n<br/>\n<br/>\nWilt u uw toestemming geven om uw ORCID ID toe te voegen aan deze inzending en de inzending toe te voegen aan uw ORCID profiel bij publicatie?<br/>\nKlik op de link naar de officiÃ«le ORCID website, meld u aan met uw gebruikersprofiel en authoriseer de toegang door de instructies te volgen.<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Registreer of koppel uw ORCID ID</a><br/>\n<br/>\n<br/>\n<a href=\"{$orcidAboutUrl}\">Meer informatie over ORCID op {$contextName}</a><br/>\n<br>\nNeemt u alstublieft contact op als u vragen heeft.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Deze e-mail wordt verstuurd om toegang te vragen aan auteurs tot hun ORCID profiel.'),('ORCID_COLLECT_AUTHOR_ID','pt_BR','ORCID da submissÃ£o','Prezada(o) {$authorName},\n\nVocÃª foi listada(o) como um coautor(a) em uma submissÃ£o de manuscrito \"{$articleTitle}\" para {$journalName}.\n\nPara confirmar sua autoria, por favor adicione sua id ORCID a esta submissÃ£o, visitando o link fornecido abaixo.\n\n{$authorOrcidUrl}\n\nSe vocÃª tiver quaisquer dÃºvidas, por favor entre em contato comigo.\n\n{$editorialContactSignature}\n\n\n','Este modelo de e-mail Ã© utilizado para coletar os id ORCID dos coautores.'),('ORCID_COLLECT_AUTHOR_ID','pt_PT','SubmissÃ£o ao ORCID','Caro(a) {$authorName},\n\nO seu nome foi indicado como coautor do manuscrito \"{$articleTitle}\" submetido Ã  revista {$journalName}. \n\nPara confirmar a sua autoria, por favor adicione o seu identificador ORCID Ã  submissÃ£o visitando a pÃ¡gina indicada abaixo.\n\n{$authorOrcidUrl}\n\nSe tiver alguma dÃºvida, por favor contacte-me.\n\n{$editorialContactSignature}\n\n\n','Este e-mail Ã© usado para recolher os identificadores ORCID dos co-autores.'),('ORCID_COLLECT_AUTHOR_ID','sl_SI','ORCID prispevka','SpoÅ¡tovani {$authorName},<br/>\n<br/>\nNavedeni ste bili kot soavtor rokopisa prispevka za revijo{$contextName}.<br/>\nDa potrdite avtorstvo, vas prosimo, da dodate vaÅ¡ ORCID iD v prispevek s klikom na spodnjo povezavo.<br/>\n<br/>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Registracija ali povezava z vaÅ¡im ORCID iD</a><br/>\n<br/>\n<br/>\n<a href=\"{$orcidAboutUrl}\">VeÄ o ORCID pri reviji {$contextName}</a><br/>\n<br/>\nÄŒe imate kakrÅ¡nakoli vpraÅ¡anje, me prosim kontaktirajte.<br/>\n<br/>\n{$principalContactSignature}<br/>','Email se uporablja za zbiranje ORCID iD-jev soavtorjev.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','sl_SI','ProÅ¡nja za dostop do ORCID zapisa','SpoÅ¡tovani {$authorName},<br>\n<br>\nNaÅ¡teti ste bili kot (so)avtor rokopisa prispevka \"{$articleTitle}\" pri reviji {$contextName}.\n<br>\n<br>\nProsimo vas za dovoljenje, da dodamo vaÅ¡ ORCID iD k temu prispevku in hkrati dodamo ta prispevek k vaÅ¡em ORCID profilu pri reviji.<br>\nKliknite na povezavo na uradno ORCID stran, prijavite se z vaÅ¡im profilom in avtorizirajte dostop po navodilih.<br>\n<a href=\"{$authorOrcidUrl}\"><img id=\"orcid-id-logo\" src=\"https://orcid.org/sites/default/files/images/orcid_16x16.png\" width=\'16\' height=\'16\' alt=\"ORCID iD icon\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>Registriraj ali poveÅ¾i vaÅ¡ ORCID iD</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">VeÄ o ORCID pri reviji {$contextName}</a><br/>\n<br>\nÄŒe imate kakrÅ¡nakoli vpraÅ¡anje, me prosim kontaktirajte.<br/>\n<br>\n{$principalContactSignature}<br>','Email vsebuje proÅ¡njo za dostop do ORCID zapisov avtorjev.'),('ORCID_COLLECT_AUTHOR_ID','tr_TR','ORCID GÃ¶nderisi','SayÄ±n {$authorName},\n\n{$journalName} adlÄ± dergiye sunulan \"{$articleTitle}\" adlÄ± makale iÃ§in ortak yazar olarak belirtildiniz.\n\nYazarlÄ±ÄŸÄ±nÄ±zÄ± onaylamak iÃ§in lÃ¼tfen aÅŸaÄŸÄ±daki baÄŸlantÄ±yÄ± ziyaret ederek ORCID kimliÄŸinizi dergimize ekleyiniz.\n\n{$authorOrcidUrl}\n\nHerhangi bir sorunuz olmasÄ± halinde, lÃ¼tfen bize yazÄ±nÄ±z.\n\n{$editorialContactSignature}\n\n\n','Bu e-posta ÅŸablonu ORCID kimliklerini ortak yazarlardan istemek iÃ§in kullanÄ±lÄ±r.'),('ORCID_COLLECT_AUTHOR_ID','uk_UA','ORCID Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ','{$authorName},\n\nÐ’Ð¸ Ð±ÑƒÐ»Ð¸ Ð·Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ñ– ÑÐº ÑÐ¿Ñ–Ð²Ð°Ð²Ñ‚Ð¾Ñ€ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ \"{$articleTitle}\" Ð½Ð°Ð´Ñ–ÑÐ»Ð°Ð½Ð¾Ð³Ð¾ Ð² Ð¶ÑƒÑ€Ð½Ð°Ð» {$journalName}. \n\nÐ©Ð¾Ð± Ð¿Ñ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ‚Ð¸ ÑÐ²Ð¾Ñ” Ð°Ð²Ñ‚Ð¾Ñ€ÑÑ‚Ð²Ð¾, Ð´Ð¾Ð´Ð°Ð¹Ñ‚Ðµ ÑÐ²Ñ–Ð¹ Ñ–Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ñ–ÐºÐ°Ñ‚Ð¾Ñ€ ORCID Ð´Ð¾ Ñ†ÑŒÐ¾Ð³Ð¾ Ð¿Ð¾Ð´Ð°Ð½Ð½Ñ, Ð²Ñ–Ð´Ð²Ñ–Ð´Ð°Ð²ÑˆÐ¸ Ð¿Ð¾ÑÐ¸Ð»Ð°Ð½Ð½Ñ, Ð²ÐºÐ°Ð·Ð°Ð½Ðµ Ð½Ð¸Ð¶Ñ‡Ðµ.\n\n{$authorOrcidUrl}\n\nÐ¯ÐºÑ‰Ð¾ Ñƒ Ð²Ð°Ñ Ð²Ð¸Ð½Ð¸ÐºÐ»Ð¸ Ð±ÑƒÐ´ÑŒ-ÑÐºÑ– Ð·Ð°Ð¿Ð¸Ñ‚Ð°Ð½Ð½Ñ, Ð·Ð²\'ÑÐ¶Ñ–Ñ‚ÑŒÑÑ Ð·Ñ– Ð¼Ð½Ð¾ÑŽ.\n\n{$editorialContactSignature}\n\n\n','Ð¦ÐµÐ¹ ÑˆÐ°Ð±Ð»Ð¾Ð½ ÐµÐ»ÐµÐºÑ‚Ñ€Ð¾Ð½Ð½Ð¾Ð³Ð¾ Ð»Ð¸ÑÑ‚Ð° Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð¾Ð²ÑƒÑ”Ñ‚ÑŒÑÑ Ð´Ð»Ñ Ð·Ð±Ð¾Ñ€Ñƒ Ñ–Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ñ–ÐºÐ°Ñ‚Ð¾Ñ€Ñ–Ð² ORCID Ð· ÑÐ¿Ñ–Ð²Ð°Ð²Ñ‚Ð¾Ñ€Ñ–Ð².'),('ORCID_COLLECT_AUTHOR_ID','ar_IQ','ØªÙ‚Ø¯ÙŠÙ… ORCID','Ø¹Ø²ÙŠØ²Ù†Ø§ {$authorName}ØŒ\n\nÙ„Ù‚Ø¯ ØªÙ… Ø¥Ø¯Ø±Ø§Ø¬Ùƒ Ø¨Ù…Ø«Ø§Ø¨Ø© Ù…Ø¤Ù„Ù Ù…Ø´Ø§Ø±Ùƒ ÙÙŠ Ø§Ù„Ø¹Ù…Ù„ Ø§Ù„Ù…ÙˆØ³ÙˆÙ… \"{$articleTitle}\" ÙˆØ§Ù„Ù…Ù‚Ø¯Ù… Ø¥Ù„Ù‰ {$journalName}. \n\nÙ„ØªØ£ÙƒÙŠØ¯ Ù…ØµØ§Ø¯Ù‚ØªÙƒØŒ Ù„Ø·ÙØ§Ù‹ØŒ Ø£Ø¶Ù Ø±Ù…Ø²Ùƒ Ø§Ù„ØªØ¹Ø±ÙŠÙÙŠ ÙÙŠ ORCID Ø¥Ù„Ù‰ Ø·Ù„Ø¨ Ø§Ù„ØªÙ‚Ø¯ÙŠÙ… Ù‡Ø°Ø§ Ø¹Ø¨Ø± Ø²ÙŠØ§Ø±Ø© Ø§Ù„Ø±Ø§Ø¨Ø· Ø£Ø¯Ù†Ø§Ù‡.\n\n{$authorOrcidUrl}\n\nØ¥Ø°Ø§ ÙƒØ§Ù†Øª Ù„Ø¯ÙŠÙƒ Ø£ÙŠ Ø§Ø³ØªÙØ³Ø§Ø±Ø§ØªØŒ Ø±Ø¬Ø§Ø¡Ù‹ØŒ Ù„Ø§ ØªØªØ±Ø¯Ø¯ ÙÙŠ Ù…Ø±Ø§Ø³Ù„ØªÙŠ.\n\n{$editorialContactSignature}\n\n\n','Ù‚Ø§Ù„Ø¨ Ø§Ù„Ø±Ø³Ø§Ù„Ø© Ù‡Ø°Ø§ ÙŠØ³ØªØ¹Ù…Ù„ Ù„Ø¬Ù…Ø¹ Ø§Ù„Ø±Ù…ÙˆØ² Ø§Ù„ØªØ¹Ø±ÙŠÙÙŠØ© ÙÙŠ ORCID Ù…Ù† Ø§Ù„Ù…Ø¤Ù„ÙÙŠÙ† Ø§Ù„Ù…Ø´Ø§Ø±ÙƒÙŠÙ†.'),('MANUAL_PAYMENT_NOTIFICATION','it_IT','Notifica di pagamento manuale','Bisogna registrare un pagamento offline per  {$contextName}, utente {$userFullName} (username &quot;{$userName}&quot;).<br />\n<br />\nIl pagamento riguarda &quot;{$itemName}&quot;.<br />\nIl costo Ã¨ {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nQuesta email Ã¨ generata automaticamente da Open Journal Systems\' Manual Payment plugin.','Questo template viene usato per notificare a journal manager che un pagamento manuale Ã¨ stato richiesto.'),('MANUAL_PAYMENT_NOTIFICATION','nl_NL','Bericht van handmatige betaling','Er moet een handmatige betaling verwerkt worden voor tijdschrift {$contextName} en gebruiker {$userFullName} (gebruikersnaam &quot;{$userName}&quot;).<br />\n<br />\nEr wordt betaald voor &quot;{$itemName}&quot;.<br />\nDe prijs is {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nDeze e-mail is gegenereerd door de Handmatige betalingen plugin van Open Journal Systems.','Dit e-mail sjabloon wordt gebruikt om een tijdschriftbeheerder te verwittigen dat een handmatige betaling werd aangevraagd.'),('MANUAL_PAYMENT_NOTIFICATION','pl_PL','Manualne powiadomienie o pÅ‚atnoÅ›ci',NULL,'Ten szablon wiadomoÅ›ci jest wykorzystywany do powiadomienia administratora czasopisma, Å¼e zostaÅ‚a przesÅ‚ana manualna proÅ›ba o pÅ‚atnoÅ›Ä‡.'),('MANUAL_PAYMENT_NOTIFICATION','sl_SI','Manual Payment Notification','A manual payment needs to be processed for the journal {$contextName} and the user {$userFullName} (username &quot;{$userName}&quot;).<br />\n<br />\nThe item being paid for is &quot;{$itemName}&quot;.<br />\nThe cost is {$itemCost} ({$itemCurrencyCode}).<br />\n<br />\nThis email was generated by Open Journal Systems\' Manual Payment plugin.','This email template is used to notify a journal manager contact that a manual payment was requested.'),('PAYPAL_INVESTIGATE_PAYMENT','nl_NL','Ongebruikelijke PayPal activiteit','Open Journal Systems heeft ongebruikelijke activiteit geconstateerd met betrekking tot de PayPal betalingsondersteuning van het tijdschrift {$contextName}. Deze activiteit vraagt om verder onderzoek of handmatige interventie.<br />\n                       <br />\nDeze e-mail is gegenereerd door de PayPal plugin van Open Journal Systems.<br />\n<br />\nVolledige berichtinformatie voor het verzoek:<br />\n{$postInfo}<br />\n<br />\nAdditionele informatie (indien opgegeven):<br />\n{$additionalInfo}<br />\n<br />\nServer variabelen:<br />\n{$serverVars}','Dit e-mail sjabloon wordt gebruikt om de eerste contactpersoon van een tijdschrift te verwittigen dat de PayPal plugin ongebruikelijke activiteit werd geconstateerd, die handmatige interventie vereist.'),('PAYPAL_INVESTIGATE_PAYMENT','pl_PL','Nietypowe dziaÅ‚anie PayPal',NULL,NULL),('PAYPAL_INVESTIGATE_PAYMENT','sl_SI','Unusual PayPal Activity','Open Journal Systems has encountered unusual activity relating to PayPal payment support for the journal {$contextName}. This activity may need further investigation or manual intervention.<br />\n                       <br />\nThis email was generated by Open Journal Systems\' PayPal plugin.<br />\n<br />\nFull post information for the request:<br />\n{$postInfo}<br />\n<br />\nAdditional information (if supplied):<br />\n{$additionalInfo}<br />\n<br />\nServer vars:<br />\n{$serverVars}<br />\n','This email template is used to notify a journal\'s primary contact that suspicious activity or activity requiring manual intervention was encountered by the PayPal plugin.');
/*!40000 ALTER TABLE `email_templates_default_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_log`
--

DROP TABLE IF EXISTS `event_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `event_log` (
  `log_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_logged` datetime NOT NULL,
  `ip_address` varchar(39) NOT NULL,
  `event_type` bigint(20) DEFAULT NULL,
  `message` text DEFAULT NULL,
  `is_translated` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `event_log_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1574 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_log`
--

LOCK TABLES `event_log` WRITE;
/*!40000 ALTER TABLE `event_log` DISABLE KEYS */;
INSERT INTO `event_log` VALUES (1,515,143,1,'2018-05-22 10:13:05','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(2,1048585,74,1,'2018-05-22 10:13:16','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(3,1048585,74,1,'2018-05-22 10:14:28','117.20.54.146',268435457,'submission.event.submissionSubmitted',0),(4,1048585,74,1,'2018-05-22 21:11:33','36.82.106.163',268435464,'submission.event.issueMetadataUpdated',0),(5,1048585,74,1,'2018-05-22 21:14:44','36.82.106.163',268435464,'submission.event.issueMetadataUpdated',0),(6,1048585,74,1,'2018-05-22 21:16:50','36.82.106.163',268435464,'submission.event.issueMetadataUpdated',0),(7,1048585,74,1,'2018-05-22 21:21:58','36.82.106.163',268435459,'submission.event.participantAdded',0),(8,1048585,74,1,'2018-05-22 21:23:00','36.82.106.163',805306371,'log.editor.decision',0),(9,1048585,74,1,'2018-05-22 21:23:44','36.82.106.163',805306371,'log.editor.decision',0),(10,1048585,74,1,'2018-05-22 21:26:00','36.82.106.163',268435464,'submission.event.issueMetadataUpdated',0),(11,1048585,74,1,'2018-05-22 21:26:25','36.82.106.163',805306371,'log.editor.decision',0),(12,1048585,74,1,'2018-05-22 21:27:06','36.82.106.163',805306371,'log.editor.decision',0),(13,1048585,74,1,'2018-05-22 21:34:52','36.82.106.163',268435459,'submission.event.participantAdded',0),(14,1048585,74,1,'2018-05-22 21:36:12','36.82.106.163',268435460,'submission.event.participantRemoved',0),(15,1048585,74,1,'2018-05-22 21:36:36','36.82.106.163',268435459,'submission.event.participantAdded',0),(16,1048585,74,1,'2018-05-22 21:39:04','36.82.106.163',268435459,'submission.event.participantAdded',0),(17,515,147,1,'2018-05-25 11:12:00','114.142.169.27',1342177281,'submission.event.fileUploaded',0),(30,515,151,1,'2018-05-25 13:30:28','114.142.168.5',1342177281,'submission.event.fileUploaded',0),(31,1048585,76,1,'2018-05-25 13:30:45','114.142.168.5',1342177281,'submission.event.fileUploaded',0),(32,1048585,76,1,'2018-05-25 13:33:51','114.142.168.5',268435457,'submission.event.submissionSubmitted',0),(33,1048585,76,1,'2018-05-25 13:42:11','114.142.168.5',1342177281,'submission.event.fileUploaded',0),(34,1048585,76,1,'2018-05-25 13:54:02','114.142.168.5',268435459,'submission.event.participantAdded',0),(35,1048585,76,1,'2018-05-25 13:54:12','114.142.168.5',805306371,'log.editor.decision',0),(36,515,153,1,'2018-05-25 13:55:29','114.142.168.5',1342177282,'submission.event.fileDeleted',0),(37,1048585,76,1,'2018-05-25 13:57:14','114.142.168.5',805306371,'log.editor.decision',0),(38,1048585,76,1,'2018-05-25 13:58:30','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(39,1048585,76,1,'2018-05-25 14:01:58','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(40,1048585,76,1,'2018-05-25 14:05:04','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(41,1048585,76,1,'2018-05-25 14:05:23','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(42,1048585,68,1,'2018-05-25 14:12:31','114.142.168.5',268435458,'submission.event.general.metadataUpdated',0),(43,515,155,1,'2018-05-25 14:18:13','114.142.168.5',1342177281,'submission.event.fileUploaded',0),(44,1048585,77,1,'2018-05-25 14:18:23','114.142.168.5',1342177281,'submission.event.fileUploaded',0),(45,1048585,77,1,'2018-05-25 14:20:25','114.142.168.5',268435457,'submission.event.submissionSubmitted',0),(46,1048585,77,1,'2018-05-25 14:21:02','114.142.168.5',268435459,'submission.event.participantAdded',0),(47,1048585,77,1,'2018-05-25 14:21:34','114.142.168.5',805306371,'log.editor.decision',0),(48,1048585,77,1,'2018-05-25 14:22:00','114.142.168.5',805306371,'log.editor.decision',0),(49,1048585,77,1,'2018-05-25 14:22:19','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(50,1048585,77,1,'2018-05-25 14:22:29','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(51,1048585,77,1,'2018-05-25 14:26:49','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(52,515,157,1,'2018-05-25 14:27:34','114.142.168.5',1342177281,'submission.event.fileUploaded',0),(53,1048585,78,1,'2018-05-25 14:27:50','114.142.168.5',1342177281,'submission.event.fileUploaded',0),(54,1048585,78,1,'2018-05-25 14:30:30','114.142.168.5',268435457,'submission.event.submissionSubmitted',0),(55,1048585,78,1,'2018-05-25 14:31:02','114.142.168.5',268435459,'submission.event.participantAdded',0),(56,1048585,78,1,'2018-05-25 14:31:13','114.142.168.5',805306371,'log.editor.decision',0),(57,1048585,78,1,'2018-05-25 14:31:36','114.142.168.5',805306371,'log.editor.decision',0),(58,1048585,78,1,'2018-05-25 14:32:02','114.142.168.5',268435464,'submission.event.issueMetadataUpdated',0),(59,515,160,1,'2018-05-27 20:40:19','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(60,1048585,79,1,'2018-05-27 20:41:15','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(61,1048585,79,1,'2018-05-27 20:44:31','114.142.168.63',268435457,'submission.event.submissionSubmitted',0),(62,1048585,79,1,'2018-05-27 20:46:18','114.142.168.63',268435459,'submission.event.participantAdded',0),(63,1048585,79,1,'2018-05-27 20:46:39','114.142.168.63',805306371,'log.editor.decision',0),(64,1048585,79,1,'2018-05-27 20:48:02','114.142.168.63',805306371,'log.editor.decision',0),(65,1048585,79,1,'2018-05-27 20:49:11','114.142.168.63',805306371,'log.editor.decision',0),(66,1048585,79,1,'2018-05-27 20:50:00','114.142.168.63',268435460,'submission.event.participantRemoved',0),(67,1048585,79,1,'2018-05-27 20:50:15','114.142.168.63',268435459,'submission.event.participantAdded',0),(68,515,162,1,'2018-05-27 20:50:56','114.142.168.63',1342177282,'submission.event.fileDeleted',0),(69,1048585,79,1,'2018-05-27 20:51:24','114.142.168.63',805306371,'log.editor.decision',0),(70,1048585,79,1,'2018-05-27 20:51:51','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(71,515,164,1,'2018-05-27 20:53:31','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(72,1048585,80,1,'2018-05-27 20:54:09','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(73,1048585,80,1,'2018-05-27 20:57:55','114.142.168.63',268435457,'submission.event.submissionSubmitted',0),(74,1048585,80,1,'2018-05-27 20:58:25','114.142.168.63',268435459,'submission.event.participantAdded',0),(75,1048585,80,1,'2018-05-27 20:58:52','114.142.168.63',805306371,'log.editor.decision',0),(76,1048585,80,1,'2018-05-27 20:59:23','114.142.168.63',805306371,'log.editor.decision',0),(77,515,166,1,'2018-05-27 21:00:16','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(78,1048585,80,1,'2018-05-27 21:00:50','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(79,1048585,80,1,'2018-05-27 21:03:08','114.142.168.63',268435459,'submission.event.participantAdded',0),(80,1048585,80,1,'2018-05-27 21:03:21','114.142.168.63',268435460,'submission.event.participantRemoved',0),(81,1048585,80,1,'2018-05-27 21:03:50','114.142.168.63',805306371,'log.editor.decision',0),(82,1048585,80,1,'2018-05-27 21:04:21','114.142.168.63',268435460,'submission.event.participantRemoved',0),(83,1048585,80,1,'2018-05-27 21:05:06','114.142.168.63',268435459,'submission.event.participantAdded',0),(84,1048585,80,1,'2018-05-27 21:05:50','114.142.168.63',805306371,'log.editor.decision',0),(85,1048585,80,1,'2018-05-27 21:07:15','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(86,1048585,80,1,'2018-05-27 21:07:38','114.142.168.63',805306371,'log.editor.decision',0),(87,1048585,80,1,'2018-05-27 21:08:35','114.142.168.63',805306371,'log.editor.decision',0),(88,1048585,80,1,'2018-05-27 21:09:22','114.142.168.63',805306371,'log.editor.decision',0),(89,1048585,80,1,'2018-05-27 21:10:58','114.142.168.63',268435458,'submission.event.general.metadataUpdated',0),(90,515,171,1,'2018-05-27 21:12:02','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(91,1048585,81,1,'2018-05-27 21:12:10','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(92,1048585,81,1,'2018-05-27 21:14:47','114.142.168.63',268435457,'submission.event.submissionSubmitted',0),(93,1048585,81,1,'2018-05-27 21:15:38','114.142.168.63',268435459,'submission.event.participantAdded',0),(94,1048585,81,1,'2018-05-27 21:15:56','114.142.168.63',805306371,'log.editor.decision',0),(95,1048585,81,1,'2018-05-27 21:16:52','114.142.168.63',805306371,'log.editor.decision',0),(96,1048585,81,1,'2018-05-27 21:17:21','114.142.168.63',268435459,'submission.event.participantAdded',0),(97,1048585,81,1,'2018-05-27 21:18:33','114.142.168.63',805306371,'log.editor.decision',0),(98,1048585,81,1,'2018-05-27 21:18:52','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(99,515,174,1,'2018-05-27 21:20:12','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(100,1048585,82,1,'2018-05-27 21:20:24','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(101,515,174,1,'2018-05-27 21:22:39','114.142.168.63',1342177288,'submission.event.revisionUploaded',0),(102,1048585,82,1,'2018-05-27 21:27:39','114.142.168.63',268435457,'submission.event.submissionSubmitted',0),(103,1048585,82,1,'2018-05-27 21:28:03','114.142.168.63',268435459,'submission.event.participantAdded',0),(104,1048585,82,1,'2018-05-27 21:28:14','114.142.168.63',805306371,'log.editor.decision',0),(105,515,175,1,'2018-05-27 21:28:34','114.142.168.63',1342177282,'submission.event.fileDeleted',0),(106,515,174,1,'2018-05-27 21:28:46','114.142.168.63',1342177289,'submission.event.revisionDeleted',0),(107,515,174,1,'2018-05-27 21:28:55','114.142.168.63',1342177282,'submission.event.fileDeleted',0),(108,1048585,82,1,'2018-05-27 21:28:55','114.142.168.63',1342177283,'submission.event.lastRevisionDeleted',0),(109,515,176,1,'2018-05-27 21:29:15','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(110,1048585,82,1,'2018-05-27 21:29:27','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(111,1048585,82,1,'2018-05-27 21:29:38','114.142.168.63',805306371,'log.editor.decision',0),(112,1048585,82,1,'2018-05-27 21:31:07','114.142.168.63',268435459,'submission.event.participantAdded',0),(113,1048585,82,1,'2018-05-27 21:31:22','114.142.168.63',268435460,'submission.event.participantRemoved',0),(114,1048585,82,1,'2018-05-27 21:32:07','114.142.168.63',805306371,'log.editor.decision',0),(115,1048585,82,1,'2018-05-27 21:32:56','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(116,515,181,1,'2018-05-27 21:34:35','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(117,1048585,83,1,'2018-05-27 21:34:39','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(118,1048585,83,1,'2018-05-27 21:38:19','114.142.168.63',268435457,'submission.event.submissionSubmitted',0),(119,1048585,83,1,'2018-05-27 21:40:34','114.142.168.63',268435459,'submission.event.participantAdded',0),(120,1048585,83,1,'2018-05-27 21:41:24','114.142.168.63',805306371,'log.editor.decision',0),(121,1048585,83,1,'2018-05-27 21:42:46','114.142.168.63',805306371,'log.editor.decision',0),(122,1048585,83,1,'2018-05-27 21:43:11','114.142.168.63',268435459,'submission.event.participantAdded',0),(123,1048585,83,1,'2018-05-27 21:43:59','114.142.168.63',805306371,'log.editor.decision',0),(124,1048585,83,1,'2018-05-27 21:44:33','114.142.168.63',805306371,'log.editor.decision',0),(125,1048585,83,1,'2018-05-27 21:45:19','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(126,515,186,1,'2018-05-27 21:50:11','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(127,1048585,76,1,'2018-05-27 21:50:16','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(128,1048585,76,1,'2018-05-27 21:51:17','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(129,1048585,54,1,'2018-05-27 21:57:45','114.142.168.63',805306371,'log.editor.decision',0),(130,515,187,1,'2018-05-27 22:00:12','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(131,1048585,77,1,'2018-05-27 22:00:16','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(132,515,188,1,'2018-05-27 22:01:09','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(133,1048585,77,1,'2018-05-27 22:01:13','114.142.168.63',1342177281,'submission.event.fileUploaded',0),(134,1048585,77,1,'2018-05-27 22:02:23','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(135,515,190,1,'2018-05-27 22:06:13','114.142.168.63',1342177282,'submission.event.fileDeleted',0),(136,1048585,78,1,'2018-05-27 22:23:35','114.142.168.63',805306371,'log.editor.decision',0),(137,1048585,78,1,'2018-05-27 22:24:12','114.142.168.63',805306371,'log.editor.decision',0),(138,1048585,78,1,'2018-05-27 22:25:20','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(139,1048585,78,1,'2018-05-27 22:28:49','114.142.168.63',805306371,'log.editor.decision',0),(140,1048585,78,1,'2018-05-27 22:29:16','114.142.168.63',268435460,'submission.event.participantRemoved',0),(141,1048585,78,1,'2018-05-27 22:29:31','114.142.168.63',268435459,'submission.event.participantAdded',0),(142,1048585,78,1,'2018-05-27 22:30:15','114.142.168.63',268435459,'submission.event.participantAdded',0),(143,515,193,1,'2018-05-27 22:30:34','114.142.168.63',1342177282,'submission.event.fileDeleted',0),(144,1048585,78,1,'2018-05-27 22:31:48','114.142.168.63',805306371,'log.editor.decision',0),(145,515,196,1,'2018-05-27 22:32:14','114.142.168.63',1342177282,'submission.event.fileDeleted',0),(146,1048585,78,1,'2018-05-27 22:33:00','114.142.168.63',268435464,'submission.event.issueMetadataUpdated',0),(147,515,197,1,'2018-05-30 08:40:08','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(148,1048585,84,1,'2018-05-30 08:40:14','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(149,1048585,84,1,'2018-05-30 08:42:55','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(150,1048585,84,1,'2018-05-30 08:45:27','192.168.1.29',268435459,'submission.event.participantAdded',0),(151,1048585,84,1,'2018-05-30 08:45:36','192.168.1.29',805306371,'log.editor.decision',0),(152,1048585,84,1,'2018-05-30 08:45:56','192.168.1.29',268435459,'submission.event.participantAdded',0),(153,1048585,84,1,'2018-05-30 08:46:16','192.168.1.29',805306371,'log.editor.decision',0),(154,1048585,84,1,'2018-05-30 08:46:40','192.168.1.29',805306371,'log.editor.decision',0),(155,1048585,84,1,'2018-05-30 08:47:21','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(156,515,200,1,'2018-05-30 09:10:59','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(157,1048585,85,1,'2018-05-30 09:11:03','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(158,1048585,85,1,'2018-05-30 09:17:23','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(159,1048585,85,1,'2018-05-30 09:17:46','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(160,1048585,85,1,'2018-05-30 09:18:14','192.168.1.29',268435459,'submission.event.participantAdded',0),(161,1048585,85,1,'2018-05-30 09:18:25','192.168.1.29',805306371,'log.editor.decision',0),(162,1048585,85,1,'2018-05-30 09:19:08','192.168.1.29',805306371,'log.editor.decision',0),(163,1048585,85,1,'2018-05-30 09:19:23','192.168.1.29',268435459,'submission.event.participantAdded',0),(164,1048585,85,1,'2018-05-30 09:20:02','192.168.1.29',805306371,'log.editor.decision',0),(165,1048585,85,1,'2018-05-30 09:20:38','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(166,1048585,85,1,'2018-05-30 09:21:14','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(167,1048585,85,1,'2018-05-30 09:22:42','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(168,515,203,1,'2018-05-30 09:23:38','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(169,1048585,85,1,'2018-05-30 09:23:42','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(170,1048585,85,1,'2018-05-30 09:23:55','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(171,515,204,1,'2018-05-30 09:25:32','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(172,1048585,86,1,'2018-05-30 09:25:37','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(173,1048585,86,1,'2018-05-30 10:36:52','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(174,1048585,86,1,'2018-05-30 10:37:24','192.168.1.29',268435459,'submission.event.participantAdded',0),(175,1048585,86,1,'2018-05-30 10:37:34','192.168.1.29',805306371,'log.editor.decision',0),(176,1048585,86,1,'2018-05-30 10:37:49','192.168.1.29',268435459,'submission.event.participantAdded',0),(177,1048585,86,1,'2018-05-30 10:38:29','192.168.1.29',805306371,'log.editor.decision',0),(178,1048585,86,1,'2018-05-30 10:38:47','192.168.1.29',805306371,'log.editor.decision',0),(179,1048585,86,1,'2018-05-30 10:39:19','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(180,1048585,86,1,'2018-05-30 10:46:10','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(181,515,207,1,'2018-05-30 10:49:40','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(182,1048585,87,1,'2018-05-30 10:49:43','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(183,1048585,87,1,'2018-05-30 10:54:52','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(184,1048585,87,1,'2018-05-30 10:56:52','192.168.1.29',268435459,'submission.event.participantAdded',0),(185,1048585,87,1,'2018-05-30 10:57:03','192.168.1.29',805306371,'log.editor.decision',0),(186,1048585,87,1,'2018-05-30 10:57:22','192.168.1.29',805306371,'log.editor.decision',0),(187,1048585,87,1,'2018-05-30 10:57:46','192.168.1.29',268435460,'submission.event.participantRemoved',0),(188,1048585,87,1,'2018-05-30 10:57:54','192.168.1.29',268435459,'submission.event.participantAdded',0),(189,1048585,87,1,'2018-05-30 10:58:12','192.168.1.29',805306371,'log.editor.decision',0),(190,515,210,1,'2018-05-30 10:58:25','192.168.1.29',1342177282,'submission.event.fileDeleted',0),(191,1048585,87,1,'2018-05-30 10:58:35','192.168.1.29',805306371,'log.editor.decision',0),(192,1048585,87,1,'2018-05-30 11:01:01','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(193,515,211,1,'2018-05-30 11:44:36','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(194,1048585,88,1,'2018-05-30 11:44:41','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(195,1048585,88,1,'2018-05-30 11:53:21','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(196,1048585,88,1,'2018-05-30 11:56:20','192.168.1.29',268435459,'submission.event.participantAdded',0),(197,1048585,88,1,'2018-05-30 11:56:37','192.168.1.29',805306371,'log.editor.decision',0),(198,1048585,88,1,'2018-05-30 11:59:14','192.168.1.29',268435460,'submission.event.participantRemoved',0),(199,1048585,88,1,'2018-05-30 11:59:24','192.168.1.29',268435459,'submission.event.participantAdded',0),(200,1048585,88,1,'2018-05-30 12:08:29','192.168.1.29',805306371,'log.editor.decision',0),(201,1048585,88,1,'2018-05-30 12:08:44','192.168.1.29',805306371,'log.editor.decision',0),(202,1048585,88,1,'2018-05-30 12:09:13','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(203,515,214,1,'2018-05-30 12:17:25','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(204,1048585,89,1,'2018-05-30 12:17:28','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(205,1048585,89,1,'2018-05-30 12:20:22','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(206,1048585,89,1,'2018-05-30 12:20:47','192.168.1.29',268435459,'submission.event.participantAdded',0),(207,1048585,89,1,'2018-05-30 12:21:00','192.168.1.29',805306371,'log.editor.decision',0),(208,1048585,89,1,'2018-05-30 12:21:51','192.168.1.29',268435458,'submission.event.general.metadataUpdated',0),(209,1048585,89,1,'2018-05-30 12:22:18','192.168.1.29',805306371,'log.editor.decision',0),(210,1048585,89,1,'2018-05-30 12:22:41','192.168.1.29',268435460,'submission.event.participantRemoved',0),(211,1048585,89,1,'2018-05-30 12:22:50','192.168.1.29',268435459,'submission.event.participantAdded',0),(212,1048585,89,1,'2018-05-30 12:23:07','192.168.1.29',805306371,'log.editor.decision',0),(213,1048585,89,1,'2018-05-30 12:23:35','192.168.1.29',268435459,'submission.event.participantAdded',0),(214,515,217,1,'2018-05-30 12:23:47','192.168.1.29',1342177282,'submission.event.fileDeleted',0),(215,1048585,89,1,'2018-05-30 12:24:48','192.168.1.29',805306371,'log.editor.decision',0),(216,1048585,89,1,'2018-05-30 12:25:06','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(217,515,219,1,'2018-05-30 12:28:10','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(218,1048585,90,1,'2018-05-30 12:28:14','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(219,1048585,90,1,'2018-05-30 13:23:15','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(220,1048585,90,1,'2018-05-30 13:24:20','192.168.1.29',268435459,'submission.event.participantAdded',0),(221,1048585,90,1,'2018-05-30 13:24:28','192.168.1.29',805306371,'log.editor.decision',0),(222,1048585,90,1,'2018-05-30 13:24:56','192.168.1.29',805306371,'log.editor.decision',0),(223,1048585,90,1,'2018-05-30 13:25:24','192.168.1.29',268435460,'submission.event.participantRemoved',0),(224,1048585,90,1,'2018-05-30 13:25:32','192.168.1.29',268435459,'submission.event.participantAdded',0),(225,1048585,90,1,'2018-05-30 13:25:51','192.168.1.29',805306371,'log.editor.decision',0),(226,1048585,90,1,'2018-05-30 13:26:12','192.168.1.29',805306371,'log.editor.decision',0),(227,1048585,90,1,'2018-05-30 13:26:27','192.168.1.29',805306371,'log.editor.decision',0),(228,1048585,90,1,'2018-05-30 13:26:57','192.168.1.29',268435464,'submission.event.issueMetadataUpdated',0),(229,515,223,1,'2018-05-30 13:28:05','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(230,1048585,91,1,'2018-05-30 13:28:08','192.168.1.29',1342177281,'submission.event.fileUploaded',0),(231,1048585,91,1,'2018-05-30 13:33:15','192.168.1.29',268435457,'submission.event.submissionSubmitted',0),(232,1048585,91,1,'2018-05-30 13:33:50','192.168.1.29',268435459,'submission.event.participantAdded',0),(233,1048585,91,1,'2018-05-30 13:34:01','192.168.1.29',805306371,'log.editor.decision',0),(234,1048585,91,1,'2018-05-30 13:34:34','192.168.1.29',805306371,'log.editor.decision',0),(235,1048585,91,1,'2018-05-30 13:39:27','192.168.1.29',805306371,'log.editor.decision',0),(236,1048585,91,1,'2018-05-31 08:11:45','36.81.4.66',268435464,'submission.event.issueMetadataUpdated',0),(237,515,227,1,'2018-07-27 13:44:59','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(261,515,236,1,'2018-11-07 11:20:01','192.168.1.189',1342177281,'submission.event.fileUploaded',0),(239,515,227,1,'2018-07-27 13:45:25','36.82.106.163',1342177282,'submission.event.fileDeleted',0),(262,1048585,99,1,'2018-11-07 11:20:06','192.168.1.189',1342177281,'submission.event.fileUploaded',0),(241,515,228,23,'2018-09-21 13:02:32','125.163.210.204',1342177281,'submission.event.fileUploaded',0),(242,515,228,23,'2018-09-21 13:07:57','125.163.210.204',1342177288,'submission.event.revisionUploaded',0),(243,1048585,93,23,'2018-09-21 13:08:59','125.163.210.204',1342177288,'submission.event.fileRevised',0),(244,1048585,93,23,'2018-09-21 13:18:14','125.163.210.204',268435457,'submission.event.submissionSubmitted',0),(245,515,229,24,'2018-09-21 17:19:20','114.4.213.161',1342177281,'submission.event.fileUploaded',0),(246,1048585,94,24,'2018-09-21 17:31:04','114.4.213.161',268435457,'submission.event.submissionSubmitted',0),(247,515,230,27,'2018-10-11 15:49:51','36.72.214.209',1342177281,'submission.event.fileUploaded',0),(248,1048585,95,27,'2018-10-11 15:50:17','36.72.214.209',1342177281,'submission.event.fileUploaded',0),(249,1048585,95,27,'2018-10-11 15:53:37','36.72.214.209',268435457,'submission.event.submissionSubmitted',0),(250,515,231,1,'2018-11-06 20:40:11','36.81.5.122',1342177281,'submission.event.fileUploaded',0),(251,1048585,96,1,'2018-11-06 20:40:42','36.81.5.122',1342177281,'submission.event.fileUploaded',0),(252,1048585,96,1,'2018-11-06 20:44:04','36.81.5.122',268435457,'submission.event.submissionSubmitted',0),(253,515,232,1,'2018-11-06 21:01:09','36.81.5.122',1342177281,'submission.event.fileUploaded',0),(263,1048585,99,1,'2018-11-07 11:23:51','192.168.1.189',268435457,'submission.event.submissionSubmitted',0),(255,515,233,1,'2018-11-06 21:02:15','36.81.5.122',1342177281,'submission.event.fileUploaded',0),(256,1048585,98,1,'2018-11-06 21:02:20','36.81.5.122',1342177281,'submission.event.fileUploaded',0),(257,1048585,98,1,'2018-11-06 21:03:41','36.81.5.122',268435457,'submission.event.submissionSubmitted',0),(258,1048585,98,1,'2018-11-06 21:08:52','36.81.5.122',268435459,'submission.event.participantAdded',0),(259,1048585,98,1,'2018-11-06 21:09:31','36.81.5.122',805306371,'log.editor.decision',0),(260,1048585,98,1,'2018-11-06 21:14:22','36.81.5.122',805306371,'log.editor.decision',0),(264,1048585,99,1,'2018-11-07 11:24:36','192.168.1.189',268435458,'submission.event.general.metadataUpdated',0),(265,1048585,99,1,'2018-11-07 11:27:31','192.168.1.189',268435459,'submission.event.participantAdded',0),(266,1048585,99,1,'2018-11-07 11:27:51','192.168.1.189',805306371,'log.editor.decision',0),(267,515,238,1,'2018-11-07 11:29:34','192.168.1.189',1342177288,'submission.event.revisionUploaded',0),(268,1048585,99,1,'2018-11-07 11:29:39','192.168.1.189',1342177281,'submission.event.fileUploaded',0),(269,1048585,99,1,'2018-11-07 11:30:51','192.168.1.189',268435459,'submission.event.participantAdded',0),(270,1048585,99,1,'2018-11-07 11:35:06','192.168.1.61',268435460,'submission.event.participantRemoved',0),(271,1048585,99,1,'2018-11-07 11:35:19','192.168.1.61',268435459,'submission.event.participantAdded',0),(272,1048585,99,1,'2018-11-07 11:36:06','192.168.1.61',268435460,'submission.event.participantRemoved',0),(273,1048585,99,1,'2018-11-07 11:43:18','192.168.1.61',268435459,'submission.event.participantAdded',0),(274,1048585,99,1,'2018-11-07 11:43:41','192.168.1.61',268435459,'submission.event.participantAdded',0),(275,515,238,1,'2018-11-07 11:43:59','192.168.1.61',1342177282,'submission.event.fileDeleted',0),(276,515,237,1,'2018-11-07 11:44:59','192.168.1.61',1342177282,'submission.event.fileDeleted',0),(277,1048585,99,1,'2018-11-07 11:46:28','192.168.1.61',805306371,'log.editor.decision',0),(278,1048585,99,1,'2018-11-07 11:47:14','192.168.1.61',268435464,'submission.event.issueMetadataUpdated',0),(279,515,242,1,'2018-11-07 11:48:33','192.168.1.61',1342177281,'submission.event.fileUploaded',0),(280,1048585,99,1,'2018-11-07 11:48:37','192.168.1.61',1342177281,'submission.event.fileUploaded',0),(281,1048585,99,1,'2018-11-07 11:49:52','192.168.1.61',268435458,'submission.event.general.metadataUpdated',0),(282,1048585,99,1,'2018-11-07 11:50:31','192.168.1.61',268435464,'submission.event.issueMetadataUpdated',0),(283,515,243,1,'2018-11-07 11:56:24','192.168.1.61',1342177281,'submission.event.fileUploaded',0),(284,1048585,100,1,'2018-11-07 11:56:31','192.168.1.61',1342177281,'submission.event.fileUploaded',0),(285,1048585,100,1,'2018-11-07 11:59:20','192.168.1.61',268435457,'submission.event.submissionSubmitted',0),(286,1048585,100,1,'2018-11-07 12:04:41','192.168.1.61',268435459,'submission.event.participantAdded',0),(287,1048585,100,1,'2018-11-07 12:05:35','192.168.1.61',805306371,'log.editor.decision',0),(288,1048585,100,1,'2018-11-07 12:06:09','192.168.1.61',805306371,'log.editor.decision',0),(289,1048585,100,1,'2018-11-07 12:06:50','192.168.1.61',268435464,'submission.event.issueMetadataUpdated',0),(290,1048585,100,1,'2018-11-07 12:07:00','192.168.1.61',268435464,'submission.event.issueMetadataUpdated',0),(291,515,246,1,'2018-11-07 14:04:59','192.168.1.61',1342177281,'submission.event.fileUploaded',0),(313,515,257,1,'2018-11-07 15:53:37','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(293,515,247,1,'2018-11-07 14:46:59','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(295,515,248,1,'2018-11-07 15:09:15','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(315,1048585,106,1,'2018-11-07 15:56:29','103.11.107.201',268435458,'submission.event.general.metadataUpdated',0),(297,515,249,1,'2018-11-07 15:24:01','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(311,515,256,1,'2018-11-07 15:53:13','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(299,515,250,1,'2018-11-07 15:30:05','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(300,1048585,105,1,'2018-11-07 15:30:09','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(301,1048585,105,1,'2018-11-07 15:32:50','103.11.107.201',268435457,'submission.event.submissionSubmitted',0),(302,1048585,105,1,'2018-11-07 15:34:50','103.11.107.201',268435459,'submission.event.participantAdded',0),(303,1048585,105,1,'2018-11-07 15:35:04','103.11.107.201',805306371,'log.editor.decision',0),(304,515,253,1,'2018-11-07 15:37:31','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(305,1048585,106,1,'2018-11-07 15:37:35','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(306,1048585,106,1,'2018-11-07 15:41:03','103.11.107.201',268435457,'submission.event.submissionSubmitted',0),(307,1048585,106,1,'2018-11-07 15:41:43','103.11.107.201',268435459,'submission.event.participantAdded',0),(308,1048585,106,1,'2018-11-07 15:42:00','103.11.107.201',805306371,'log.editor.decision',0),(309,515,255,1,'2018-11-07 15:46:53','103.11.107.201',1342177281,'submission.event.fileUploaded',0),(316,515,258,1,'2018-11-08 08:33:15','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(317,1048585,109,1,'2018-11-08 08:33:24','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(318,515,259,1,'2018-11-08 08:39:34','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(319,1048585,110,1,'2018-11-08 08:39:37','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(320,515,259,1,'2018-11-08 08:53:02','192.168.1.79',1342177288,'submission.event.revisionUploaded',0),(321,1048585,110,1,'2018-11-08 08:53:06','192.168.1.79',1342177288,'submission.event.fileRevised',0),(322,515,260,1,'2018-11-09 14:25:26','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(323,1048585,111,1,'2018-11-09 14:25:35','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(324,515,261,1,'2018-11-09 15:14:00','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(325,1048585,112,1,'2018-11-09 15:14:03','192.168.1.79',1342177281,'submission.event.fileUploaded',0),(326,1048585,112,1,'2018-11-09 15:16:31','192.168.1.79',268435457,'submission.event.submissionSubmitted',0),(327,1048585,112,1,'2018-11-09 15:17:28','192.168.1.79',268435459,'submission.event.participantAdded',0),(328,1048585,112,1,'2018-11-09 15:17:45','192.168.1.79',805306371,'log.editor.decision',0),(329,515,263,1,'2018-11-09 15:22:51','192.168.1.190',1342177281,'submission.event.fileUploaded',0),(330,1048585,113,1,'2018-11-09 15:22:54','192.168.1.190',1342177281,'submission.event.fileUploaded',0),(331,515,264,1,'2018-11-09 15:25:05','125.166.131.55',1342177281,'submission.event.fileUploaded',0),(332,1048585,114,1,'2018-11-09 15:25:09','125.166.131.55',1342177281,'submission.event.fileUploaded',0),(333,1048585,113,1,'2018-11-09 15:25:50','192.168.1.190',268435457,'submission.event.submissionSubmitted',0),(334,1048585,113,1,'2018-11-09 15:26:38','192.168.1.190',268435460,'submission.event.participantRemoved',0),(335,1048585,113,1,'2018-11-09 15:26:46','192.168.1.190',268435460,'submission.event.participantRemoved',0),(336,1048585,113,1,'2018-11-09 15:27:03','192.168.1.190',268435459,'submission.event.participantAdded',0),(337,1048585,114,1,'2018-11-09 15:27:17','125.166.131.55',268435457,'submission.event.submissionSubmitted',0),(338,1048585,113,1,'2018-11-09 15:27:33','192.168.1.190',805306371,'log.editor.decision',0),(339,1048585,114,1,'2018-11-09 15:27:43','125.166.131.55',268435459,'submission.event.participantAdded',0),(340,1048585,113,1,'2018-11-09 15:28:04','192.168.1.190',805306371,'log.editor.decision',0),(341,1048585,113,1,'2018-11-09 15:28:31','192.168.1.190',268435464,'submission.event.issueMetadataUpdated',0),(342,1048585,114,1,'2018-11-09 15:28:35','125.166.131.55',805306371,'log.editor.decision',0),(343,515,267,1,'2018-11-09 15:29:10','125.166.131.55',1342177288,'submission.event.revisionUploaded',0),(344,1048585,114,1,'2018-11-09 15:29:14','125.166.131.55',1342177281,'submission.event.fileUploaded',0),(345,1048585,114,1,'2018-11-09 15:30:04','125.166.131.55',805306371,'log.editor.decision',0),(346,1048585,114,1,'2018-11-09 15:30:31','125.166.131.55',805306371,'log.editor.decision',0),(347,515,270,1,'2018-11-09 15:30:56','125.166.131.55',1342177281,'submission.event.fileUploaded',0),(348,515,271,1,'2018-11-09 15:31:28','192.168.1.190',1342177281,'submission.event.fileUploaded',0),(349,1048585,114,1,'2018-11-09 15:31:29','125.166.131.55',1342177281,'submission.event.fileUploaded',0),(350,1048585,115,1,'2018-11-09 15:31:56','192.168.1.190',1342177281,'submission.event.fileUploaded',0),(351,1048585,114,1,'2018-11-09 15:32:05','125.166.131.55',268435464,'submission.event.issueMetadataUpdated',0),(352,1048585,114,1,'2018-11-09 15:32:18','125.166.131.55',268435464,'submission.event.issueMetadataUpdated',0),(353,1048585,115,1,'2018-11-09 15:33:43','192.168.1.190',268435457,'submission.event.submissionSubmitted',0),(354,1048585,115,1,'2018-11-09 15:34:06','192.168.1.190',268435460,'submission.event.participantRemoved',0),(355,1048585,115,1,'2018-11-09 15:34:12','192.168.1.190',268435460,'submission.event.participantRemoved',0),(356,1048585,115,1,'2018-11-09 15:34:25','192.168.1.190',268435459,'submission.event.participantAdded',0),(357,1048585,115,1,'2018-11-09 15:34:38','192.168.1.190',805306371,'log.editor.decision',0),(358,1048585,115,1,'2018-11-09 15:34:55','192.168.1.190',805306371,'log.editor.decision',0),(359,1048585,115,1,'2018-11-09 15:35:32','192.168.1.190',268435464,'submission.event.issueMetadataUpdated',0),(360,515,273,1,'2018-11-09 15:58:52','192.168.1.190',1342177281,'submission.event.fileUploaded',0),(361,1048585,116,1,'2018-11-09 15:58:55','192.168.1.190',1342177281,'submission.event.fileUploaded',0),(362,515,274,32,'2018-11-26 10:49:18','49.128.176.210',1342177281,'submission.event.fileUploaded',0),(363,1048585,117,32,'2018-11-26 10:50:34','49.128.176.210',1342177281,'submission.event.fileUploaded',0),(364,515,274,32,'2018-11-26 10:51:38','49.128.176.210',1342177288,'submission.event.revisionUploaded',0),(365,1048585,117,32,'2018-11-26 10:51:51','49.128.176.210',1342177288,'submission.event.fileRevised',0),(366,515,275,1,'2018-11-27 07:48:07','125.166.164.138',1342177281,'submission.event.fileUploaded',0),(367,515,275,1,'2018-11-27 07:48:18','125.166.164.138',1342177282,'submission.event.fileDeleted',0),(368,1048585,118,1,'2018-11-27 07:48:18','125.166.164.138',1342177283,'submission.event.lastRevisionDeleted',0),(369,515,276,1,'2018-11-27 07:48:18','125.166.164.138',1342177281,'submission.event.fileUploaded',0),(370,1048585,118,1,'2018-11-27 07:48:23','125.166.164.138',1342177281,'submission.event.fileUploaded',0),(371,515,277,1,'2018-11-27 07:57:25','125.166.164.138',1342177281,'submission.event.fileUploaded',0),(372,1048585,119,1,'2018-11-27 07:57:29','125.166.164.138',1342177281,'submission.event.fileUploaded',0),(373,515,278,34,'2018-12-09 17:15:43','139.0.193.78',1342177281,'submission.event.fileUploaded',0),(374,1048585,120,34,'2018-12-09 17:15:46','139.0.193.78',1342177281,'submission.event.fileUploaded',0),(375,515,279,34,'2018-12-09 17:16:42','139.0.193.78',1342177281,'submission.event.fileUploaded',0),(376,1048585,120,34,'2018-12-09 17:16:44','139.0.193.78',1342177281,'submission.event.fileUploaded',0),(377,1048585,19,1,'2018-12-22 05:27:39','36.82.106.163',805306371,'log.editor.decision',0),(378,1048585,19,1,'2018-12-22 05:35:32','36.82.106.163',268435464,'submission.event.issueMetadataUpdated',0),(379,515,280,35,'2018-12-30 22:05:49','36.84.229.74',1342177281,'submission.event.fileUploaded',0),(380,1048585,121,35,'2018-12-30 22:06:03','36.84.229.74',1342177281,'submission.event.fileUploaded',0),(381,515,281,1,'2019-01-16 09:30:43','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(382,1048585,85,1,'2019-01-16 09:30:49','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(383,515,282,1,'2019-01-17 08:52:22','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(384,1048585,79,1,'2019-01-17 08:52:25','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(385,515,283,1,'2019-01-17 08:53:59','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(386,1048585,81,1,'2019-01-17 08:54:03','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(387,515,284,1,'2019-01-17 08:56:59','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(388,1048585,82,1,'2019-01-17 08:57:05','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(389,515,285,1,'2019-01-17 08:59:29','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(390,1048585,83,1,'2019-01-17 08:59:37','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(391,515,286,1,'2019-01-17 09:02:15','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(392,1048585,76,1,'2019-01-17 09:02:20','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(393,515,287,1,'2019-01-17 09:03:55','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(394,1048585,77,1,'2019-01-17 09:04:00','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(395,515,288,1,'2019-01-17 09:04:45','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(396,1048585,78,1,'2019-01-17 09:04:48','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(397,515,289,1,'2019-01-17 09:06:22','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(398,1048585,84,1,'2019-01-17 09:06:25','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(399,515,290,1,'2019-01-17 09:15:16','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(400,1048585,86,1,'2019-01-17 09:15:20','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(401,515,291,1,'2019-01-17 09:16:20','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(402,1048585,87,1,'2019-01-17 09:16:24','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(403,515,292,1,'2019-01-17 09:17:46','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(404,1048585,88,1,'2019-01-17 09:17:50','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(405,515,293,1,'2019-01-17 09:20:11','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(406,1048585,89,1,'2019-01-17 09:20:14','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(407,515,294,1,'2019-01-17 09:21:13','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(408,1048585,90,1,'2019-01-17 09:21:16','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(409,515,295,1,'2019-01-17 09:22:05','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(410,1048585,91,1,'2019-01-17 09:22:09','36.65.113.151',1342177281,'submission.event.fileUploaded',0),(411,515,296,1,'2019-02-08 09:19:50','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(412,1048585,122,1,'2019-02-08 09:19:56','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(413,515,297,1,'2019-02-08 09:25:15','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(414,1048585,123,1,'2019-02-08 09:25:18','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(415,515,298,1,'2019-02-08 09:32:07','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(416,1048585,124,1,'2019-02-08 09:32:13','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(417,515,299,1,'2019-02-08 09:32:55','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(418,1048585,125,1,'2019-02-08 09:32:59','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(419,1048585,125,1,'2019-02-08 09:34:32','36.81.4.174',268435457,'submission.event.submissionSubmitted',0),(420,1048585,125,1,'2019-02-08 09:38:05','36.81.4.174',268435459,'submission.event.participantAdded',0),(421,1048585,125,1,'2019-02-08 09:38:19','36.81.4.174',805306371,'log.editor.decision',0),(422,1048585,125,1,'2019-02-08 09:38:37','36.81.4.174',268435460,'submission.event.participantRemoved',0),(423,1048585,125,1,'2019-02-08 09:39:04','36.81.4.174',268435459,'submission.event.participantAdded',0),(424,1048585,125,1,'2019-02-08 09:40:10','36.81.4.174',805306371,'log.editor.decision',0),(425,1048585,125,1,'2019-02-08 09:40:54','36.81.4.174',268435464,'submission.event.issueMetadataUpdated',0),(426,1048585,125,1,'2019-02-08 09:41:10','36.81.4.174',268435464,'submission.event.issueMetadataUpdated',0),(427,1048585,125,1,'2019-02-08 09:43:18','36.81.4.174',268435458,'submission.event.general.metadataUpdated',0),(428,1048585,125,1,'2019-02-08 09:46:30','36.81.4.174',268435458,'submission.event.general.metadataUpdated',0),(429,515,303,1,'2019-02-08 09:50:07','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(430,1048585,127,1,'2019-02-08 09:50:14','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(431,515,304,1,'2019-02-08 10:02:30','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(432,1048585,129,1,'2019-02-08 10:02:35','36.81.4.174',1342177281,'submission.event.fileUploaded',0),(433,515,305,1,'2019-02-08 22:07:13','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(434,1048585,99,1,'2019-02-08 22:07:19','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(435,515,306,1,'2019-02-08 22:08:27','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(436,1048585,100,1,'2019-02-08 22:08:39','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(437,515,307,1,'2019-02-08 22:10:21','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(438,1048585,113,1,'2019-02-08 22:10:48','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(439,515,308,1,'2019-02-08 22:15:29','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(440,1048585,114,1,'2019-02-08 22:15:50','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(441,515,309,1,'2019-02-08 22:18:07','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(442,1048585,115,1,'2019-02-08 22:18:20','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(443,515,310,1,'2019-02-08 22:20:07','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(444,1048585,125,1,'2019-02-08 22:20:10','36.81.4.222',1342177281,'submission.event.fileUploaded',0),(445,515,311,37,'2019-02-20 11:46:00','202.67.43.35',1342177281,'submission.event.fileUploaded',0),(446,1048585,130,37,'2019-02-20 11:46:04','202.67.43.35',1342177281,'submission.event.fileUploaded',0),(447,515,312,38,'2019-05-05 10:09:56','36.74.49.54',1342177281,'submission.event.fileUploaded',0),(448,1048585,131,38,'2019-05-05 10:09:58','36.74.49.54',1342177281,'submission.event.fileUploaded',0),(449,515,312,38,'2019-05-05 10:10:53','36.74.49.54',1342177282,'submission.event.fileDeleted',0),(450,1048585,131,38,'2019-05-05 10:10:53','36.74.49.54',1342177283,'submission.event.lastRevisionDeleted',0),(451,515,313,1,'2019-05-13 13:46:27','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(452,1048585,133,1,'2019-05-13 13:46:31','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(453,1048585,133,1,'2019-05-13 13:51:07','117.20.56.170',268435457,'submission.event.submissionSubmitted',0),(454,1048585,133,1,'2019-05-13 13:51:46','117.20.56.170',268435460,'submission.event.participantRemoved',0),(455,1048585,133,1,'2019-05-13 13:52:15','117.20.56.170',268435459,'submission.event.participantAdded',0),(456,1048585,133,1,'2019-05-13 13:52:30','117.20.56.170',805306371,'log.editor.decision',0),(457,515,315,1,'2019-05-13 13:53:22','117.20.56.170',1342177288,'submission.event.revisionUploaded',0),(458,1048585,133,1,'2019-05-13 13:53:26','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(459,1048585,133,1,'2019-05-13 13:54:08','117.20.56.170',805306371,'log.editor.decision',0),(460,1048585,133,1,'2019-05-13 13:54:38','117.20.56.170',805306371,'log.editor.decision',0),(461,515,318,1,'2019-05-13 13:55:20','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(462,1048585,133,1,'2019-05-13 13:55:23','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(463,1048585,133,1,'2019-05-13 13:55:55','117.20.56.170',268435464,'submission.event.issueMetadataUpdated',0),(464,515,319,1,'2019-05-13 13:57:41','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(465,1048585,134,1,'2019-05-13 13:57:44','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(466,1048585,134,1,'2019-05-13 14:00:00','117.20.56.170',268435457,'submission.event.submissionSubmitted',0),(467,1048585,134,1,'2019-05-13 14:00:44','117.20.56.170',268435459,'submission.event.participantAdded',0),(468,1048585,134,1,'2019-05-13 14:00:55','117.20.56.170',805306371,'log.editor.decision',0),(469,515,321,1,'2019-05-13 14:01:24','117.20.56.170',1342177288,'submission.event.revisionUploaded',0),(470,1048585,134,1,'2019-05-13 14:01:28','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(471,1048585,134,1,'2019-05-13 14:01:48','117.20.56.170',268435460,'submission.event.participantRemoved',0),(472,1048585,134,1,'2019-05-13 14:02:05','117.20.56.170',268435459,'submission.event.participantAdded',0),(473,1048585,134,1,'2019-05-13 14:02:48','117.20.56.170',268435460,'submission.event.participantRemoved',0),(474,1048585,134,1,'2019-05-13 14:02:53','117.20.56.170',268435460,'submission.event.participantRemoved',0),(475,1048585,134,1,'2019-05-13 14:02:59','117.20.56.170',268435460,'submission.event.participantRemoved',0),(476,1048585,134,1,'2019-05-13 14:03:15','117.20.56.170',268435459,'submission.event.participantAdded',0),(477,1048585,134,1,'2019-05-13 14:04:06','117.20.56.170',805306371,'log.editor.decision',0),(478,1048585,134,1,'2019-05-13 14:04:29','117.20.56.170',805306371,'log.editor.decision',0),(479,1048585,134,1,'2019-05-13 14:04:50','117.20.56.170',805306371,'log.editor.decision',0),(480,515,324,1,'2019-05-13 14:05:13','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(481,1048585,134,1,'2019-05-13 14:05:17','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(482,1048585,134,1,'2019-05-13 14:05:49','117.20.56.170',268435464,'submission.event.issueMetadataUpdated',0),(483,515,325,1,'2019-05-13 14:07:08','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(484,1048585,135,1,'2019-05-13 14:07:17','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(485,1048585,135,1,'2019-05-13 14:11:36','117.20.56.170',268435457,'submission.event.submissionSubmitted',0),(486,1048585,135,1,'2019-05-13 14:12:00','117.20.56.170',268435459,'submission.event.participantAdded',0),(487,1048585,135,1,'2019-05-13 14:12:10','117.20.56.170',805306371,'log.editor.decision',0),(488,515,327,1,'2019-05-13 14:12:34','117.20.56.170',1342177288,'submission.event.revisionUploaded',0),(489,1048585,135,1,'2019-05-13 14:12:37','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(490,1048585,135,1,'2019-05-13 14:12:56','117.20.56.170',268435459,'submission.event.participantAdded',0),(491,1048585,135,1,'2019-05-13 14:13:11','117.20.56.170',268435460,'submission.event.participantRemoved',0),(492,1048585,135,1,'2019-05-13 14:13:23','117.20.56.170',268435460,'submission.event.participantRemoved',0),(493,1048585,135,1,'2019-05-13 14:13:35','117.20.56.170',268435459,'submission.event.participantAdded',0),(494,1048585,135,1,'2019-05-13 14:14:08','117.20.56.170',805306371,'log.editor.decision',0),(495,1048585,135,1,'2019-05-13 14:14:56','117.20.56.170',805306371,'log.editor.decision',0),(496,515,329,1,'2019-05-13 14:15:44','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(497,1048585,135,1,'2019-05-13 14:15:47','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(498,515,330,1,'2019-05-13 14:16:06','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(499,1048585,135,1,'2019-05-13 14:16:09','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(500,1048585,135,1,'2019-05-13 14:16:37','117.20.56.170',268435464,'submission.event.issueMetadataUpdated',0),(501,515,331,1,'2019-05-13 14:18:39','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(502,1048585,136,1,'2019-05-13 14:18:45','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(503,1048585,136,1,'2019-05-13 14:21:21','117.20.56.170',268435457,'submission.event.submissionSubmitted',0),(504,1048585,136,1,'2019-05-13 14:21:49','117.20.56.170',268435459,'submission.event.participantAdded',0),(505,1048585,136,1,'2019-05-13 14:21:57','117.20.56.170',805306371,'log.editor.decision',0),(506,515,333,1,'2019-05-13 14:22:16','117.20.56.170',1342177288,'submission.event.revisionUploaded',0),(507,1048585,136,1,'2019-05-13 14:22:20','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(508,1048585,136,1,'2019-05-13 14:22:37','117.20.56.170',268435459,'submission.event.participantAdded',0),(509,515,334,1,'2019-05-13 14:23:15','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(510,1048585,136,1,'2019-05-13 14:23:19','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(511,1048585,136,1,'2019-05-13 14:23:44','117.20.56.170',805306371,'log.editor.decision',0),(512,515,336,1,'2019-05-13 14:24:09','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(513,1048585,136,1,'2019-05-13 14:24:13','117.20.56.170',1342177281,'submission.event.fileUploaded',0),(514,1048585,136,1,'2019-05-13 14:25:12','117.20.56.170',268435464,'submission.event.issueMetadataUpdated',0),(515,515,337,1,'2019-05-14 10:02:07','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(516,1048585,137,1,'2019-05-14 10:02:09','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(517,1048585,137,1,'2019-05-14 10:04:43','125.166.181.164',268435457,'submission.event.submissionSubmitted',0),(518,1048585,137,1,'2019-05-14 10:05:56','125.166.181.164',268435459,'submission.event.participantAdded',0),(519,1048585,137,1,'2019-05-14 10:06:08','125.166.181.164',805306371,'log.editor.decision',0),(520,1048585,137,1,'2019-05-14 10:06:29','125.166.181.164',268435459,'submission.event.participantAdded',0),(521,515,339,1,'2019-05-14 10:07:02','125.166.181.164',1342177288,'submission.event.revisionUploaded',0),(522,1048585,137,1,'2019-05-14 10:07:05','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(523,1048585,137,1,'2019-05-14 10:07:43','125.166.181.164',268435460,'submission.event.participantRemoved',0),(524,1048585,137,1,'2019-05-14 10:08:14','125.166.181.164',268435459,'submission.event.participantAdded',0),(525,515,340,1,'2019-05-14 10:08:40','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(526,1048585,137,1,'2019-05-14 10:08:42','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(527,1048585,137,1,'2019-05-14 10:09:11','125.166.181.164',805306371,'log.editor.decision',0),(528,515,343,1,'2019-05-14 10:09:43','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(529,1048585,137,1,'2019-05-14 10:09:46','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(530,1048585,137,1,'2019-05-14 10:10:15','125.166.181.164',268435464,'submission.event.issueMetadataUpdated',0),(531,515,344,1,'2019-05-14 10:13:00','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(532,1048585,138,1,'2019-05-14 10:13:04','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(533,1048585,138,1,'2019-05-14 10:18:29','125.166.181.164',268435457,'submission.event.submissionSubmitted',0),(534,1048585,138,1,'2019-05-14 10:19:12','125.166.181.164',268435459,'submission.event.participantAdded',0),(535,1048585,138,1,'2019-05-14 10:19:32','125.166.181.164',805306371,'log.editor.decision',0),(536,515,347,1,'2019-05-14 10:22:10','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(537,1048585,139,1,'2019-05-14 10:22:15','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(538,1048585,139,1,'2019-05-14 10:24:42','125.166.181.164',268435457,'submission.event.submissionSubmitted',0),(539,1048585,139,1,'2019-05-14 10:25:16','125.166.181.164',268435459,'submission.event.participantAdded',0),(540,1048585,139,1,'2019-05-14 10:25:25','125.166.181.164',805306371,'log.editor.decision',0),(541,515,349,1,'2019-05-14 10:26:36','125.166.181.164',1342177288,'submission.event.revisionUploaded',0),(542,1048585,139,1,'2019-05-14 10:26:39','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(543,1048585,139,1,'2019-05-14 10:27:04','125.166.181.164',268435459,'submission.event.participantAdded',0),(544,515,350,1,'2019-05-14 10:27:51','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(545,1048585,139,1,'2019-05-14 10:27:53','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(546,1048585,139,1,'2019-05-14 10:28:09','125.166.181.164',805306371,'log.editor.decision',0),(547,515,351,1,'2019-05-14 10:28:30','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(548,1048585,139,1,'2019-05-14 10:28:33','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(549,1048585,139,1,'2019-05-14 10:28:48','125.166.181.164',268435464,'submission.event.issueMetadataUpdated',0),(550,1048585,139,1,'2019-05-14 10:29:11','125.166.181.164',268435464,'submission.event.issueMetadataUpdated',0),(551,515,352,1,'2019-05-14 11:31:55','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(552,1048585,140,1,'2019-05-14 11:32:10','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(553,1048585,140,1,'2019-05-14 11:39:16','125.166.181.164',268435457,'submission.event.submissionSubmitted',0),(554,1048585,140,1,'2019-05-14 11:41:12','125.166.181.164',268435459,'submission.event.participantAdded',0),(555,1048585,140,1,'2019-05-14 11:41:39','125.166.181.164',805306371,'log.editor.decision',0),(556,515,354,1,'2019-05-14 11:42:23','125.166.181.164',1342177288,'submission.event.revisionUploaded',0),(557,1048585,140,1,'2019-05-14 11:42:26','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(558,515,354,1,'2019-05-14 11:43:29','125.166.181.164',1342177288,'submission.event.revisionUploaded',0),(559,1048585,140,1,'2019-05-14 11:43:30','125.166.181.164',1342177288,'submission.event.fileRevised',0),(560,515,355,1,'2019-05-14 11:44:48','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(561,1048585,141,1,'2019-05-14 11:44:51','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(562,1048585,141,1,'2019-05-14 11:46:46','125.166.181.164',268435457,'submission.event.submissionSubmitted',0),(563,1048585,141,1,'2019-05-14 11:47:11','125.166.181.164',268435459,'submission.event.participantAdded',0),(564,1048585,141,1,'2019-05-14 11:47:20','125.166.181.164',805306371,'log.editor.decision',0),(565,515,357,1,'2019-05-14 11:47:43','125.166.181.164',1342177288,'submission.event.revisionUploaded',0),(566,1048585,141,1,'2019-05-14 11:47:45','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(567,515,357,1,'2019-05-14 11:48:23','125.166.181.164',1342177282,'submission.event.fileDeleted',0),(568,515,358,1,'2019-05-14 11:49:48','125.166.181.164',1342177288,'submission.event.revisionUploaded',0),(569,1048585,141,1,'2019-05-14 11:49:51','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(570,1048585,141,1,'2019-05-14 11:50:58','125.166.181.164',268435459,'submission.event.participantAdded',0),(571,515,359,1,'2019-05-14 11:51:40','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(572,1048585,141,1,'2019-05-14 11:51:44','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(573,1048585,141,1,'2019-05-14 11:52:07','125.166.181.164',805306371,'log.editor.decision',0),(574,515,361,1,'2019-05-14 11:52:45','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(575,1048585,141,1,'2019-05-14 11:52:48','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(576,1048585,141,1,'2019-05-14 11:53:22','125.166.181.164',268435464,'submission.event.issueMetadataUpdated',0),(577,515,362,1,'2019-05-14 12:18:23','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(578,1048585,142,1,'2019-05-14 12:18:29','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(579,1048585,142,1,'2019-05-14 12:24:19','125.166.181.164',268435457,'submission.event.submissionSubmitted',0),(580,1048585,142,1,'2019-05-14 12:25:28','125.166.181.164',268435459,'submission.event.participantAdded',0),(581,1048585,142,1,'2019-05-14 12:26:11','125.166.181.164',805306371,'log.editor.decision',0),(582,515,364,1,'2019-05-14 12:26:35','125.166.181.164',1342177288,'submission.event.revisionUploaded',0),(583,1048585,142,1,'2019-05-14 12:28:13','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(584,1048585,142,1,'2019-05-14 12:29:28','125.166.181.164',268435459,'submission.event.participantAdded',0),(585,515,365,1,'2019-05-14 13:01:07','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(586,1048585,142,1,'2019-05-14 13:01:34','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(587,1048585,142,1,'2019-05-14 13:02:11','125.166.181.164',805306371,'log.editor.decision',0),(588,1048585,142,1,'2019-05-14 13:02:47','125.166.181.164',805306371,'log.editor.decision',0),(589,515,367,1,'2019-05-14 13:03:11','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(590,1048585,142,1,'2019-05-14 13:03:14','125.166.181.164',1342177281,'submission.event.fileUploaded',0),(591,1048585,142,1,'2019-05-14 13:03:28','125.166.181.164',268435464,'submission.event.issueMetadataUpdated',0),(592,515,368,450,'2019-07-18 22:46:55','180.243.8.174',1342177281,'submission.event.fileUploaded',0),(593,1048585,143,450,'2019-07-18 22:46:59','180.243.8.174',1342177281,'submission.event.fileUploaded',0),(594,1048585,143,450,'2019-07-18 22:47:17','180.243.8.174',268435457,'submission.event.submissionSubmitted',0),(595,515,369,450,'2019-07-18 22:50:59','180.243.8.174',1342177281,'submission.event.fileUploaded',0),(596,1048585,143,450,'2019-07-18 22:51:05','180.243.8.174',1342177281,'submission.event.fileUploaded',0),(597,515,370,457,'2019-07-20 12:32:54','140.213.43.53',1342177281,'submission.event.fileUploaded',0),(598,1048585,144,457,'2019-07-20 12:33:11','140.213.43.53',1342177281,'submission.event.fileUploaded',0),(599,515,371,465,'2019-07-21 15:36:12','36.90.88.219',1342177281,'submission.event.fileUploaded',0),(600,1048585,145,465,'2019-07-21 15:36:13','36.90.88.219',1342177281,'submission.event.fileUploaded',0),(601,515,372,1,'2019-08-30 10:14:24','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(602,1048585,146,1,'2019-08-30 10:14:26','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(603,1048585,146,1,'2019-08-30 10:23:46','125.164.177.24',268435457,'submission.event.submissionSubmitted',0),(604,1048585,146,1,'2019-08-30 10:24:52','125.164.177.24',268435459,'submission.event.participantAdded',0),(605,1048585,146,1,'2019-08-30 10:25:04','125.164.177.24',805306371,'log.editor.decision',0),(606,515,374,1,'2019-08-30 10:25:24','125.164.177.24',1342177288,'submission.event.revisionUploaded',0),(607,1048585,146,1,'2019-08-30 10:25:29','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(608,1048585,146,1,'2019-08-30 10:25:52','125.164.177.24',268435459,'submission.event.participantAdded',0),(609,1048585,146,1,'2019-08-30 10:27:46','125.164.177.24',805306371,'log.editor.decision',0),(610,515,379,1,'2019-08-30 10:28:33','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(611,1048585,146,1,'2019-08-30 10:28:37','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(612,1048585,146,1,'2019-08-30 10:29:14','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(613,1048585,146,1,'2019-08-30 10:29:43','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(614,515,380,1,'2019-08-30 10:34:33','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(615,1048585,147,1,'2019-08-30 10:34:37','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(616,1048585,147,1,'2019-08-30 10:37:18','125.164.177.24',268435457,'submission.event.submissionSubmitted',0),(617,1048585,147,1,'2019-08-30 10:37:57','125.164.177.24',268435459,'submission.event.participantAdded',0),(618,1048585,147,1,'2019-08-30 10:39:03','125.164.177.24',805306371,'log.editor.decision',0),(619,515,383,1,'2019-08-30 10:39:34','125.164.177.24',1342177288,'submission.event.revisionUploaded',0),(620,1048585,147,1,'2019-08-30 10:39:39','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(621,1048585,147,1,'2019-08-30 10:40:15','125.164.177.24',268435459,'submission.event.participantAdded',0),(622,1048585,147,1,'2019-08-30 10:41:06','125.164.177.24',805306371,'log.editor.decision',0),(623,515,387,1,'2019-08-30 10:41:35','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(624,1048585,147,1,'2019-08-30 10:41:38','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(625,1048585,147,1,'2019-08-30 10:42:25','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(626,1048585,147,1,'2019-08-30 10:42:35','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(627,515,388,1,'2019-08-30 10:49:58','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(628,1048585,148,1,'2019-08-30 10:50:01','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(629,1048585,148,1,'2019-08-30 10:54:10','125.164.177.24',268435457,'submission.event.submissionSubmitted',0),(630,1048585,148,1,'2019-08-30 10:55:00','125.164.177.24',268435459,'submission.event.participantAdded',0),(631,1048585,148,1,'2019-08-30 10:55:11','125.164.177.24',805306371,'log.editor.decision',0),(632,515,391,1,'2019-08-30 10:55:30','125.164.177.24',1342177288,'submission.event.revisionUploaded',0),(633,1048585,148,1,'2019-08-30 10:55:33','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(634,1048585,148,1,'2019-08-30 10:57:12','125.164.177.24',268435459,'submission.event.participantAdded',0),(635,515,393,1,'2019-08-30 10:57:30','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(636,1048585,148,1,'2019-08-30 10:57:32','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(637,515,394,1,'2019-08-30 10:57:53','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(638,1048585,148,1,'2019-08-30 10:57:56','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(639,1048585,148,1,'2019-08-30 10:58:22','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(640,1048585,148,1,'2019-08-30 10:58:32','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(641,1048585,148,1,'2019-08-30 10:59:56','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(642,515,395,1,'2019-08-30 11:04:20','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(643,1048585,149,1,'2019-08-30 11:04:23','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(644,1048585,149,1,'2019-08-30 11:06:44','125.164.177.24',268435457,'submission.event.submissionSubmitted',0),(645,1048585,149,1,'2019-08-30 11:07:36','125.164.177.24',268435459,'submission.event.participantAdded',0),(646,1048585,149,1,'2019-08-30 11:07:49','125.164.177.24',805306371,'log.editor.decision',0),(647,515,398,1,'2019-08-30 11:08:10','125.164.177.24',1342177288,'submission.event.revisionUploaded',0),(648,1048585,149,1,'2019-08-30 11:08:14','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(649,1048585,149,1,'2019-08-30 11:08:30','125.164.177.24',268435459,'submission.event.participantAdded',0),(650,515,400,1,'2019-08-30 11:09:13','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(651,1048585,149,1,'2019-08-30 11:09:15','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(652,515,401,1,'2019-08-30 11:09:34','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(653,1048585,149,1,'2019-08-30 11:09:36','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(654,1048585,149,1,'2019-08-30 11:10:18','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(655,515,402,1,'2019-08-30 11:11:22','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(656,1048585,150,1,'2019-08-30 11:11:25','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(657,1048585,150,1,'2019-08-30 11:20:55','125.164.177.24',268435457,'submission.event.submissionSubmitted',0),(658,1048585,150,1,'2019-08-30 11:21:18','125.164.177.24',268435459,'submission.event.participantAdded',0),(659,515,403,1,'2019-08-30 11:21:42','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(660,1048585,150,1,'2019-08-30 11:21:47','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(661,1048585,150,1,'2019-08-30 11:22:13','125.164.177.24',805306371,'log.editor.decision',0),(662,1048585,150,1,'2019-08-30 11:22:32','125.164.177.24',268435459,'submission.event.participantAdded',0),(663,515,405,1,'2019-08-30 11:22:45','125.164.177.24',1342177288,'submission.event.revisionUploaded',0),(664,1048585,150,1,'2019-08-30 11:22:48','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(665,515,406,1,'2019-08-30 11:23:12','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(666,1048585,150,1,'2019-08-30 11:23:14','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(667,515,407,1,'2019-08-30 11:23:32','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(668,1048585,150,1,'2019-08-30 11:23:35','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(669,1048585,150,1,'2019-08-30 11:24:04','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(670,1048585,150,1,'2019-08-30 11:24:23','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(671,1048585,150,1,'2019-08-30 11:24:35','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(672,515,408,1,'2019-08-30 11:26:12','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(673,1048585,151,1,'2019-08-30 11:26:14','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(674,1048585,151,1,'2019-08-30 11:29:35','125.164.177.24',268435457,'submission.event.submissionSubmitted',0),(675,1048585,151,1,'2019-08-30 11:30:05','125.164.177.24',268435459,'submission.event.participantAdded',0),(676,1048585,151,1,'2019-08-30 11:30:29','125.164.177.24',805306371,'log.editor.decision',0),(677,515,411,1,'2019-08-30 11:30:54','125.164.177.24',1342177288,'submission.event.revisionUploaded',0),(678,1048585,151,1,'2019-08-30 11:30:57','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(679,1048585,151,1,'2019-08-30 11:31:23','125.164.177.24',268435459,'submission.event.participantAdded',0),(680,515,413,1,'2019-08-30 11:31:43','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(681,1048585,151,1,'2019-08-30 11:31:46','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(682,515,414,1,'2019-08-30 11:32:05','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(683,1048585,151,1,'2019-08-30 11:32:08','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(684,1048585,151,1,'2019-08-30 11:32:30','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(685,1048585,151,1,'2019-08-30 11:32:39','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(686,515,415,1,'2019-08-30 11:37:06','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(687,1048585,152,1,'2019-08-30 11:37:08','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(688,1048585,152,1,'2019-08-30 11:40:26','125.164.177.24',268435457,'submission.event.submissionSubmitted',0),(689,1048585,152,1,'2019-08-30 11:43:18','125.164.177.24',268435459,'submission.event.participantAdded',0),(690,1048585,152,1,'2019-08-30 11:44:10','125.164.177.24',805306371,'log.editor.decision',0),(691,1048585,152,1,'2019-08-30 11:44:36','125.164.177.24',268435459,'submission.event.participantAdded',0),(692,515,418,1,'2019-08-30 11:44:51','125.164.177.24',1342177288,'submission.event.revisionUploaded',0),(693,1048585,152,1,'2019-08-30 11:44:54','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(694,1048585,152,1,'2019-08-30 11:46:29','125.164.177.24',805306371,'log.editor.decision',0),(695,515,423,1,'2019-08-30 11:46:51','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(696,1048585,152,1,'2019-08-30 11:46:53','125.164.177.24',1342177281,'submission.event.fileUploaded',0),(697,1048585,152,1,'2019-08-30 11:47:30','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(698,1048585,152,1,'2019-08-30 11:47:39','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(699,1048585,148,1,'2019-08-30 11:48:52','125.164.177.24',805306371,'log.editor.decision',0),(700,1048585,148,1,'2019-08-30 11:49:04','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(701,1048585,149,1,'2019-08-30 11:51:28','125.164.177.24',805306371,'log.editor.decision',0),(702,1048585,149,1,'2019-08-30 11:51:39','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(703,1048585,149,1,'2019-08-30 11:51:55','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(704,1048585,150,1,'2019-08-30 11:53:16','125.164.177.24',805306371,'log.editor.decision',0),(705,1048585,150,1,'2019-08-30 11:53:26','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(706,1048585,151,1,'2019-08-30 11:54:50','125.164.177.24',805306371,'log.editor.decision',0),(707,1048585,151,1,'2019-08-30 11:55:29','125.164.177.24',268435464,'submission.event.issueMetadataUpdated',0),(708,1048585,148,1,'2019-09-03 10:31:22','117.20.56.170',268435458,'submission.event.general.metadataUpdated',0),(709,1048585,149,1,'2019-09-03 10:35:08','117.20.56.170',268435458,'submission.event.general.metadataUpdated',0),(710,1048585,149,1,'2019-09-03 10:35:58','117.20.56.170',268435458,'submission.event.general.metadataUpdated',0),(711,515,436,530,'2019-09-03 20:05:27','110.137.204.157',1342177281,'submission.event.fileUploaded',0),(712,1048585,153,530,'2019-09-03 20:06:20','110.137.204.157',1342177281,'submission.event.fileUploaded',0),(713,515,437,1,'2020-01-31 09:55:45','36.81.4.166',1342177281,'submission.event.fileUploaded',0),(714,1048585,156,1,'2020-01-31 09:55:48','36.81.4.166',1342177281,'submission.event.fileUploaded',0),(715,515,437,1,'2020-01-31 09:57:08','36.81.4.166',1342177288,'submission.event.revisionUploaded',0),(716,1048585,156,1,'2020-01-31 09:57:11','36.81.4.166',1342177288,'submission.event.fileRevised',0),(717,515,438,1,'2020-01-31 10:02:09','36.81.4.166',1342177281,'submission.event.fileUploaded',0),(718,515,438,1,'2020-01-31 10:02:36','36.81.4.166',1342177288,'submission.event.revisionUploaded',0),(719,1048585,157,1,'2020-01-31 10:02:39','36.81.4.166',1342177288,'submission.event.fileRevised',0),(720,515,439,1,'2020-01-31 10:12:40','36.81.4.166',1342177281,'submission.event.fileUploaded',0),(721,1048585,158,1,'2020-01-31 10:12:44','36.81.4.166',1342177281,'submission.event.fileUploaded',0),(722,515,440,1,'2020-01-31 10:36:54','36.81.4.166',1342177281,'submission.event.fileUploaded',0),(723,1048585,159,1,'2020-01-31 10:36:57','36.81.4.166',1342177281,'submission.event.fileUploaded',0),(724,515,441,1,'2020-01-31 14:12:48','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(725,1048585,160,1,'2020-01-31 14:13:37','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(726,515,441,1,'2020-01-31 14:14:18','36.82.106.163',1342177282,'submission.event.fileDeleted',0),(727,1048585,160,1,'2020-01-31 14:14:18','36.82.106.163',1342177283,'submission.event.lastRevisionDeleted',0),(728,515,442,1,'2020-01-31 14:15:01','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(729,1048585,160,1,'2020-01-31 14:15:05','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(730,515,443,1,'2020-02-11 14:35:43','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(731,1048585,161,1,'2020-02-11 14:35:46','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(732,515,444,1,'2020-02-11 14:41:06','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(733,1048585,162,1,'2020-02-11 14:41:26','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(734,515,445,1,'2020-02-11 14:44:05','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(735,1048585,163,1,'2020-02-11 14:44:10','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(736,515,446,1,'2020-02-11 15:52:01','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(737,1048585,164,1,'2020-02-11 15:52:08','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(738,515,447,1,'2020-02-11 16:19:19','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(739,1048585,165,1,'2020-02-11 16:19:22','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(740,515,448,1,'2020-02-12 08:04:43','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(741,1048585,166,1,'2020-02-12 08:04:47','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(742,515,449,1,'2020-02-12 08:06:24','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(743,1048585,167,1,'2020-02-12 08:06:27','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(744,515,450,1,'2020-02-12 08:21:49','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(745,1048585,168,1,'2020-02-12 08:22:06','36.82.106.163',1342177281,'submission.event.fileUploaded',0),(746,515,451,1,'2020-02-12 08:58:04','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(747,1048585,169,1,'2020-02-12 08:58:09','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(748,1048585,169,1,'2020-02-12 09:03:10','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(749,515,452,1,'2020-02-12 09:04:01','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(750,1048585,169,1,'2020-02-12 09:04:04','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(751,515,453,1,'2020-02-12 09:09:39','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(752,1048585,169,1,'2020-02-12 09:09:45','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(753,515,454,1,'2020-02-12 09:10:49','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(754,1048585,170,1,'2020-02-12 09:10:52','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(755,1048585,170,1,'2020-02-12 09:19:33','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(756,1048585,169,1,'2020-02-12 10:09:58','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(757,1048585,169,1,'2020-02-12 10:09:58','36.65.91.83',268435459,'submission.event.participantAdded',0),(758,1048585,169,1,'2020-02-12 10:10:17','36.65.91.83',805306371,'log.editor.decision',0),(759,515,456,1,'2020-02-12 10:11:02','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(760,1048585,169,1,'2020-02-12 10:11:10','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(761,515,457,1,'2020-02-12 10:11:54','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(762,1048585,169,1,'2020-02-12 10:11:56','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(763,1048585,169,1,'2020-02-12 10:12:29','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(764,1048585,169,1,'2020-02-12 10:12:29','36.65.91.83',268435459,'submission.event.participantAdded',0),(765,1048585,169,1,'2020-02-12 10:15:27','36.65.91.83',805306371,'log.editor.decision',0),(766,515,461,1,'2020-02-12 10:25:10','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(767,1048585,169,1,'2020-02-12 10:25:13','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(768,1048585,169,1,'2020-02-12 10:27:13','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(769,515,462,1,'2020-02-12 10:33:59','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(770,1048585,171,1,'2020-02-12 10:34:02','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(771,1048585,171,1,'2020-02-12 10:39:01','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(772,515,463,1,'2020-02-12 10:52:58','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(773,1048585,171,1,'2020-02-12 10:53:02','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(774,1048585,171,1,'2020-02-12 10:53:54','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(775,1048585,171,1,'2020-02-12 10:53:54','36.65.91.83',268435459,'submission.event.participantAdded',0),(776,1048585,171,1,'2020-02-12 10:54:11','36.65.91.83',805306371,'log.editor.decision',0),(777,515,465,1,'2020-02-12 10:54:33','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(778,1048585,171,1,'2020-02-12 10:54:37','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(779,515,466,1,'2020-02-12 10:55:49','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(780,1048585,171,1,'2020-02-12 10:55:52','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(781,1048585,171,1,'2020-02-12 10:56:51','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(782,1048585,171,1,'2020-02-12 10:56:51','36.65.91.83',268435459,'submission.event.participantAdded',0),(783,1048585,171,1,'2020-02-12 10:57:56','36.65.91.83',805306371,'log.editor.decision',0),(784,515,470,1,'2020-02-12 10:59:26','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(785,1048585,171,1,'2020-02-12 10:59:31','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(786,1048585,171,1,'2020-02-12 10:59:59','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(787,1048585,171,1,'2020-02-12 11:00:39','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(788,1048585,169,1,'2020-02-12 11:01:45','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(789,515,471,1,'2020-02-12 11:10:16','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(790,1048585,172,1,'2020-02-12 11:10:20','117.20.54.146',1342177281,'submission.event.fileUploaded',0),(791,515,472,1,'2020-02-12 11:13:16','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(792,1048585,173,1,'2020-02-12 11:13:42','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(793,1048585,173,1,'2020-02-12 11:19:27','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(794,515,473,1,'2020-02-12 11:22:33','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(795,1048585,173,1,'2020-02-12 11:23:32','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(796,1048585,173,1,'2020-02-12 11:24:21','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(797,1048585,173,1,'2020-02-12 11:24:21','36.65.91.83',268435459,'submission.event.participantAdded',0),(798,1048585,173,1,'2020-02-12 11:24:46','36.65.91.83',805306371,'log.editor.decision',0),(799,515,475,1,'2020-02-12 11:25:21','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(800,1048585,173,1,'2020-02-12 11:25:24','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(801,1048585,173,1,'2020-02-12 11:25:50','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(802,1048585,173,1,'2020-02-12 11:25:50','36.65.91.83',268435459,'submission.event.participantAdded',0),(803,1048585,173,1,'2020-02-12 11:26:41','36.65.91.83',805306371,'log.editor.decision',0),(804,515,479,1,'2020-02-12 11:27:32','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(805,1048585,173,1,'2020-02-12 11:27:34','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(806,1048585,173,1,'2020-02-12 11:28:31','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(807,1048585,173,1,'2020-02-12 11:31:12','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(808,515,480,1,'2020-02-12 11:32:53','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(809,1048585,174,1,'2020-02-12 11:32:55','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(810,1048585,174,1,'2020-02-12 11:37:44','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(811,1048585,174,1,'2020-02-12 11:39:14','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(812,1048585,174,1,'2020-02-12 11:39:14','36.65.91.83',268435459,'submission.event.participantAdded',0),(813,1048585,174,1,'2020-02-12 11:39:30','36.65.91.83',805306371,'log.editor.decision',0),(814,515,482,1,'2020-02-12 11:40:00','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(815,1048585,174,1,'2020-02-12 11:40:13','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(816,1048585,174,1,'2020-02-12 11:41:28','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(817,1048585,174,1,'2020-02-12 11:41:28','36.65.91.83',268435459,'submission.event.participantAdded',0),(818,1048585,174,1,'2020-02-12 11:42:32','36.65.91.83',805306371,'log.editor.decision',0),(819,515,486,1,'2020-02-12 11:43:05','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(820,1048585,174,1,'2020-02-12 11:43:12','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(821,1048585,174,1,'2020-02-12 11:44:02','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(822,1048585,174,1,'2020-02-12 11:44:20','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(823,515,487,1,'2020-02-12 11:48:29','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(824,1048585,175,1,'2020-02-12 11:48:48','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(825,1048585,175,1,'2020-02-12 11:51:58','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(826,1048585,175,1,'2020-02-12 11:53:22','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(827,1048585,175,1,'2020-02-12 11:53:22','36.65.91.83',268435459,'submission.event.participantAdded',0),(828,1048585,175,1,'2020-02-12 11:53:40','36.65.91.83',805306371,'log.editor.decision',0),(829,515,489,1,'2020-02-12 11:54:09','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(830,1048585,175,1,'2020-02-12 11:54:16','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(831,1048585,175,1,'2020-02-12 11:54:44','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(832,1048585,175,1,'2020-02-12 11:54:44','36.65.91.83',268435459,'submission.event.participantAdded',0),(833,1048585,175,1,'2020-02-12 11:55:30','36.65.91.83',805306371,'log.editor.decision',0),(834,515,493,1,'2020-02-12 11:56:09','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(835,1048585,175,1,'2020-02-12 11:56:14','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(836,1048585,175,1,'2020-02-12 11:56:41','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(837,1048585,175,1,'2020-02-12 11:56:53','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(838,515,494,1,'2020-02-12 12:23:29','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(839,1048585,176,1,'2020-02-12 12:23:32','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(840,1048585,176,1,'2020-02-12 12:31:13','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(841,1048585,176,1,'2020-02-12 12:34:08','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(842,1048585,176,1,'2020-02-12 12:34:08','36.65.91.83',268435459,'submission.event.participantAdded',0),(843,1048585,176,1,'2020-02-12 12:34:24','36.65.91.83',805306371,'log.editor.decision',0),(844,515,496,1,'2020-02-12 12:34:47','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(845,1048585,176,1,'2020-02-12 12:34:51','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(846,1048585,176,1,'2020-02-12 12:35:18','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(847,1048585,176,1,'2020-02-12 12:35:18','36.65.91.83',268435459,'submission.event.participantAdded',0),(848,1048585,176,1,'2020-02-12 12:36:08','36.65.91.83',805306371,'log.editor.decision',0),(849,515,500,1,'2020-02-12 12:36:42','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(850,1048585,176,1,'2020-02-12 12:36:46','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(851,1048585,176,1,'2020-02-12 12:37:29','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(852,1048585,176,1,'2020-02-12 12:37:42','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(853,515,501,1,'2020-02-12 12:42:37','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(854,1048585,177,1,'2020-02-12 12:43:52','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(855,1048585,177,1,'2020-02-12 12:47:32','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(856,1048585,177,1,'2020-02-12 12:48:39','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(857,1048585,177,1,'2020-02-12 12:48:39','36.65.91.83',268435459,'submission.event.participantAdded',0),(858,1048585,177,1,'2020-02-12 12:48:54','36.65.91.83',805306371,'log.editor.decision',0),(859,515,503,1,'2020-02-12 12:49:49','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(860,1048585,177,1,'2020-02-12 12:49:54','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(861,1048585,177,1,'2020-02-12 12:50:13','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(862,1048585,177,1,'2020-02-12 12:50:13','36.65.91.83',268435459,'submission.event.participantAdded',0),(863,1048585,177,1,'2020-02-12 12:51:20','36.65.91.83',805306371,'log.editor.decision',0),(864,515,507,1,'2020-02-12 12:51:49','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(865,1048585,177,1,'2020-02-12 12:51:51','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(866,1048585,177,1,'2020-02-12 12:52:18','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(867,1048585,177,1,'2020-02-12 12:52:28','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(868,515,508,1,'2020-02-12 12:54:10','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(869,1048585,178,1,'2020-02-12 12:54:32','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(870,1048585,178,1,'2020-02-12 12:59:34','36.65.91.83',268435457,'submission.event.submissionSubmitted',0),(871,1048585,178,1,'2020-02-12 13:00:35','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(872,1048585,178,1,'2020-02-12 13:00:35','36.65.91.83',268435459,'submission.event.participantAdded',0),(873,1048585,178,1,'2020-02-12 13:00:48','36.65.91.83',805306371,'log.editor.decision',0),(874,515,510,1,'2020-02-12 13:01:12','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(875,1048585,178,1,'2020-02-12 13:01:15','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(876,1048585,178,1,'2020-02-12 13:01:35','36.65.91.83',16777217,'informationCenter.history.messageSent',0),(877,1048585,178,1,'2020-02-12 13:01:35','36.65.91.83',268435459,'submission.event.participantAdded',0),(878,1048585,178,1,'2020-02-12 13:02:16','36.65.91.83',805306371,'log.editor.decision',0),(879,515,514,1,'2020-02-12 13:02:41','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(880,1048585,178,1,'2020-02-12 13:02:43','36.65.91.83',1342177281,'submission.event.fileUploaded',0),(881,1048585,178,1,'2020-02-12 13:03:15','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(882,1048585,178,1,'2020-02-12 13:03:26','36.65.91.83',268435464,'submission.event.issueMetadataUpdated',0),(883,1048585,78,1,'2020-05-12 12:47:18','36.65.10.108',268435464,'submission.event.issueMetadataUpdated',0),(884,515,159,1,'2020-05-12 12:51:53','36.65.10.108',1342177288,'submission.event.revisionUploaded',0),(885,1048585,78,1,'2020-05-12 12:52:03','36.65.10.108',1342177288,'submission.event.fileRevised',0),(886,1048585,78,1,'2020-05-12 12:53:52','36.65.10.108',268435464,'submission.event.issueMetadataUpdated',0),(887,515,515,1,'2020-05-12 12:58:42','36.65.10.108',1342177281,'submission.event.fileUploaded',0),(888,1048585,78,1,'2020-05-12 12:59:08','36.65.10.108',1342177281,'submission.event.fileUploaded',0),(889,515,159,1,'2020-05-12 12:59:28','36.65.10.108',1342177289,'submission.event.revisionDeleted',0),(890,515,159,1,'2020-05-12 13:00:43','36.65.10.108',1342177282,'submission.event.fileDeleted',0),(891,1048585,78,1,'2020-05-12 13:00:59','36.65.10.108',268435464,'submission.event.issueMetadataUpdated',0),(892,1048585,78,1,'2020-05-12 13:01:13','36.65.10.108',268435464,'submission.event.issueMetadataUpdated',0),(893,515,516,1,'2020-05-12 13:08:43','36.65.10.108',1342177281,'submission.event.fileUploaded',0),(894,1048585,78,1,'2020-05-12 13:08:49','36.65.10.108',1342177281,'submission.event.fileUploaded',0),(895,515,515,1,'2020-05-12 13:09:00','36.65.10.108',1342177282,'submission.event.fileDeleted',0),(896,1048585,78,1,'2020-05-12 13:09:00','36.65.10.108',1342177283,'submission.event.lastRevisionDeleted',0),(897,1048585,78,1,'2020-05-12 13:09:34','36.65.10.108',268435464,'submission.event.issueMetadataUpdated',0),(898,1048585,78,1,'2020-05-12 13:09:48','36.65.10.108',268435464,'submission.event.issueMetadataUpdated',0),(899,515,288,1,'2020-05-12 13:11:22','36.65.10.108',1342177288,'submission.event.revisionUploaded',0),(900,1048585,78,1,'2020-05-12 13:11:26','36.65.10.108',1342177288,'submission.event.fileRevised',0),(901,515,517,675,'2020-06-19 05:18:14','140.213.56.210',1342177281,'submission.event.fileUploaded',0),(902,1048585,180,675,'2020-06-19 05:18:22','140.213.56.210',1342177281,'submission.event.fileUploaded',0),(903,515,518,676,'2020-07-03 13:13:11','36.72.212.253',1342177281,'submission.event.fileUploaded',0),(904,1048585,182,676,'2020-07-03 13:13:40','36.72.212.253',1342177281,'submission.event.fileUploaded',0),(905,1048585,182,676,'2020-07-03 13:17:16','36.72.212.253',268435457,'submission.event.submissionSubmitted',0),(906,515,519,677,'2020-07-19 12:18:32','140.213.57.101',1342177281,'submission.event.fileUploaded',0),(907,515,519,677,'2020-07-19 12:18:41','140.213.57.101',1342177282,'submission.event.fileDeleted',0),(908,1048585,183,677,'2020-07-19 12:18:41','140.213.57.101',1342177283,'submission.event.lastRevisionDeleted',0),(909,515,520,677,'2020-07-19 12:19:41','140.213.57.101',1342177281,'submission.event.fileUploaded',0),(910,1048585,183,677,'2020-07-19 12:20:06','140.213.57.101',1342177281,'submission.event.fileUploaded',0),(911,515,521,1,'2020-07-29 10:28:30','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(912,1048585,185,1,'2020-07-29 10:28:34','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(913,1048585,185,1,'2020-07-29 10:35:02','125.164.162.224',268435457,'submission.event.submissionSubmitted',0),(914,515,522,1,'2020-07-29 10:38:18','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(915,1048585,185,1,'2020-07-29 10:38:21','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(916,1048585,185,1,'2020-07-29 10:40:50','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(917,1048585,185,1,'2020-07-29 10:40:50','125.164.162.224',268435459,'submission.event.participantAdded',0),(918,1048585,185,1,'2020-07-29 10:41:08','125.164.162.224',805306371,'log.editor.decision',0),(919,1048585,185,1,'2020-07-29 10:41:44','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(920,1048585,185,1,'2020-07-29 10:41:44','125.164.162.224',268435459,'submission.event.participantAdded',0),(921,515,524,1,'2020-07-29 10:42:10','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(922,1048585,185,1,'2020-07-29 10:42:12','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(923,1048585,185,1,'2020-07-29 10:43:26','125.164.162.224',805306371,'log.editor.decision',0),(924,515,527,1,'2020-07-29 10:44:16','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(925,1048585,185,1,'2020-07-29 10:44:22','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(926,1048585,185,1,'2020-07-29 10:45:10','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(927,515,528,1,'2020-07-29 10:48:37','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(928,1048585,186,1,'2020-07-29 10:48:45','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(929,1048585,186,1,'2020-07-29 10:54:08','125.164.162.224',268435457,'submission.event.submissionSubmitted',0),(930,1048585,186,1,'2020-07-29 10:54:46','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(931,1048585,186,1,'2020-07-29 10:54:46','125.164.162.224',268435459,'submission.event.participantAdded',0),(932,1048585,186,1,'2020-07-29 10:55:02','125.164.162.224',805306371,'log.editor.decision',0),(933,1048585,186,1,'2020-07-29 10:55:34','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(934,1048585,186,1,'2020-07-29 10:55:34','125.164.162.224',268435459,'submission.event.participantAdded',0),(935,515,530,1,'2020-07-29 10:55:52','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(936,1048585,186,1,'2020-07-29 10:55:55','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(937,1048585,186,1,'2020-07-29 10:56:49','125.164.162.224',805306371,'log.editor.decision',0),(938,515,533,1,'2020-07-29 10:57:20','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(939,1048585,186,1,'2020-07-29 10:57:23','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(940,1048585,186,1,'2020-07-29 10:58:00','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(941,515,534,1,'2020-07-29 11:00:12','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(942,1048585,187,1,'2020-07-29 11:00:15','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(943,1048585,187,1,'2020-07-29 11:03:24','125.164.162.224',268435457,'submission.event.submissionSubmitted',0),(944,1048585,187,1,'2020-07-29 11:05:15','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(945,1048585,187,1,'2020-07-29 11:05:15','125.164.162.224',268435459,'submission.event.participantAdded',0),(946,1048585,187,1,'2020-07-29 11:05:58','125.164.162.224',805306371,'log.editor.decision',0),(947,1048585,187,1,'2020-07-29 11:06:23','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(948,1048585,187,1,'2020-07-29 11:06:23','125.164.162.224',268435459,'submission.event.participantAdded',0),(949,515,536,1,'2020-07-29 11:06:45','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(950,1048585,187,1,'2020-07-29 11:06:48','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(951,1048585,187,1,'2020-07-29 11:07:30','125.164.162.224',805306371,'log.editor.decision',0),(952,515,539,1,'2020-07-29 11:07:57','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(953,1048585,187,1,'2020-07-29 11:08:00','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(954,1048585,187,1,'2020-07-29 11:08:36','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(955,1048585,187,1,'2020-07-29 11:12:32','125.164.162.224',268435458,'submission.event.general.metadataUpdated',0),(956,515,540,1,'2020-07-29 11:14:14','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(957,1048585,188,1,'2020-07-29 11:14:16','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(958,1048585,188,1,'2020-07-29 11:16:23','125.164.162.224',268435457,'submission.event.submissionSubmitted',0),(959,1048585,188,1,'2020-07-29 11:16:53','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(960,1048585,188,1,'2020-07-29 11:16:53','125.164.162.224',268435459,'submission.event.participantAdded',0),(961,1048585,188,1,'2020-07-29 11:17:11','125.164.162.224',805306371,'log.editor.decision',0),(962,515,542,1,'2020-07-29 11:17:42','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(963,1048585,188,1,'2020-07-29 11:17:45','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(964,1048585,188,1,'2020-07-29 11:18:01','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(965,1048585,188,1,'2020-07-29 11:18:01','125.164.162.224',268435459,'submission.event.participantAdded',0),(966,1048585,188,1,'2020-07-29 11:18:42','125.164.162.224',805306371,'log.editor.decision',0),(967,515,545,1,'2020-07-29 11:19:04','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(968,1048585,188,1,'2020-07-29 11:19:06','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(969,1048585,188,1,'2020-07-29 11:19:55','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(970,1048585,185,1,'2020-07-29 11:20:38','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(971,1048585,186,1,'2020-07-29 11:20:49','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(972,1048585,187,1,'2020-07-29 11:20:59','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(973,1048585,188,1,'2020-07-29 11:21:08','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(974,515,546,1,'2020-07-29 11:22:36','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(975,1048585,189,1,'2020-07-29 11:22:39','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(976,1048585,189,1,'2020-07-29 11:25:30','125.164.162.224',268435457,'submission.event.submissionSubmitted',0),(977,1048585,189,1,'2020-07-29 11:25:59','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(978,1048585,189,1,'2020-07-29 11:25:59','125.164.162.224',268435459,'submission.event.participantAdded',0),(979,1048585,189,1,'2020-07-29 11:26:14','125.164.162.224',805306371,'log.editor.decision',0),(980,1048585,189,1,'2020-07-29 11:26:31','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(981,1048585,189,1,'2020-07-29 11:26:31','125.164.162.224',268435459,'submission.event.participantAdded',0),(982,515,548,1,'2020-07-29 11:26:48','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(983,1048585,189,1,'2020-07-29 11:26:50','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(984,1048585,189,1,'2020-07-29 11:27:28','125.164.162.224',805306371,'log.editor.decision',0),(985,515,551,1,'2020-07-29 11:27:56','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(986,1048585,189,1,'2020-07-29 11:27:59','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(987,1048585,189,1,'2020-07-29 11:28:40','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(988,515,552,1,'2020-07-29 11:30:18','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(989,1048585,190,1,'2020-07-29 11:30:21','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(990,1048585,190,1,'2020-07-29 11:34:59','125.164.162.224',268435457,'submission.event.submissionSubmitted',0),(991,1048585,190,1,'2020-07-29 11:35:30','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(992,1048585,190,1,'2020-07-29 11:35:30','125.164.162.224',268435459,'submission.event.participantAdded',0),(993,1048585,190,1,'2020-07-29 11:35:39','125.164.162.224',805306371,'log.editor.decision',0),(994,1048585,190,1,'2020-07-29 11:35:56','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(995,1048585,190,1,'2020-07-29 11:35:56','125.164.162.224',268435459,'submission.event.participantAdded',0),(996,1048585,190,1,'2020-07-29 11:36:56','125.164.162.224',805306371,'log.editor.decision',0),(997,515,556,1,'2020-07-29 11:37:25','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(998,1048585,190,1,'2020-07-29 11:37:27','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(999,1048585,190,1,'2020-07-29 11:37:50','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(1000,515,557,1,'2020-07-29 11:38:44','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(1001,1048585,191,1,'2020-07-29 11:39:25','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(1002,1048585,191,1,'2020-07-29 11:41:54','125.164.162.224',268435457,'submission.event.submissionSubmitted',0),(1003,1048585,191,1,'2020-07-29 11:42:24','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(1004,1048585,191,1,'2020-07-29 11:42:24','125.164.162.224',268435459,'submission.event.participantAdded',0),(1005,1048585,191,1,'2020-07-29 11:42:39','125.164.162.224',805306371,'log.editor.decision',0),(1006,1048585,191,1,'2020-07-29 11:43:02','125.164.162.224',16777217,'informationCenter.history.messageSent',0),(1007,1048585,191,1,'2020-07-29 11:43:02','125.164.162.224',268435459,'submission.event.participantAdded',0),(1008,515,559,1,'2020-07-29 11:43:20','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(1009,1048585,191,1,'2020-07-29 11:43:25','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(1010,1048585,191,1,'2020-07-29 11:43:59','125.164.162.224',805306371,'log.editor.decision',0),(1011,1048585,191,1,'2020-07-29 11:44:58','125.164.162.224',268435464,'submission.event.issueMetadataUpdated',0),(1012,515,562,1,'2020-07-29 11:46:00','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(1013,1048585,192,1,'2020-07-29 11:46:20','125.164.162.224',1342177281,'submission.event.fileUploaded',0),(1014,515,563,1,'2020-07-29 11:50:44','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1015,1048585,191,1,'2020-07-29 11:50:53','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1016,1048585,191,1,'2020-07-29 11:51:00','36.65.49.22',268435464,'submission.event.issueMetadataUpdated',0),(1017,515,564,1,'2020-07-29 11:51:43','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1018,1048585,193,1,'2020-07-29 11:51:46','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1019,1048585,193,1,'2020-07-29 11:56:25','36.65.49.22',268435457,'submission.event.submissionSubmitted',0),(1020,1048585,193,1,'2020-07-29 11:56:54','36.65.49.22',16777217,'informationCenter.history.messageSent',0),(1021,1048585,193,1,'2020-07-29 11:56:54','36.65.49.22',268435459,'submission.event.participantAdded',0),(1022,1048585,193,1,'2020-07-29 11:57:10','36.65.49.22',805306371,'log.editor.decision',0),(1023,1048585,193,1,'2020-07-29 11:57:31','36.65.49.22',16777217,'informationCenter.history.messageSent',0),(1024,1048585,193,1,'2020-07-29 11:57:31','36.65.49.22',268435459,'submission.event.participantAdded',0),(1025,515,566,1,'2020-07-29 11:57:52','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1026,1048585,193,1,'2020-07-29 11:57:54','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1027,1048585,193,1,'2020-07-29 11:58:26','36.65.49.22',805306371,'log.editor.decision',0),(1028,515,569,1,'2020-07-29 11:58:54','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1029,1048585,193,1,'2020-07-29 11:58:58','36.65.49.22',1342177281,'submission.event.fileUploaded',0),(1030,1048585,193,1,'2020-07-29 11:59:29','36.65.49.22',268435464,'submission.event.issueMetadataUpdated',0),(1031,515,570,682,'2020-09-04 21:47:58','112.215.237.65',1342177281,'submission.event.fileUploaded',0),(1032,1048585,194,682,'2020-09-04 21:48:02','112.215.237.65',1342177281,'submission.event.fileUploaded',0),(1033,515,571,683,'2020-10-13 02:59:32','182.1.72.42',1342177281,'submission.event.fileUploaded',0),(1034,1048585,196,683,'2020-10-13 02:59:41','182.1.72.42',1342177281,'submission.event.fileUploaded',0),(1035,515,572,686,'2020-11-12 00:11:57','167.172.214.200',1342177281,'submission.event.fileUploaded',0),(1036,515,573,687,'2020-11-20 14:15:11','180.249.197.127',1342177281,'submission.event.fileUploaded',0),(1037,1048585,198,687,'2020-11-20 14:15:23','180.249.197.127',1342177281,'submission.event.fileUploaded',0),(1038,1048585,198,687,'2020-11-20 14:16:44','180.249.197.127',268435457,'submission.event.submissionSubmitted',0),(1039,515,574,689,'2020-12-15 11:44:48','36.72.216.82',1342177281,'submission.event.fileUploaded',0),(1040,515,574,689,'2020-12-15 11:45:05','36.72.216.82',1342177282,'submission.event.fileDeleted',0),(1041,1048585,199,689,'2020-12-15 11:45:05','36.72.216.82',1342177283,'submission.event.lastRevisionDeleted',0),(1042,515,575,689,'2020-12-15 11:45:42','36.72.216.82',1342177281,'submission.event.fileUploaded',0),(1043,1048585,199,689,'2020-12-15 11:45:47','36.72.216.82',1342177281,'submission.event.fileUploaded',0),(1044,1048585,199,689,'2020-12-15 11:52:15','36.72.216.82',268435457,'submission.event.submissionSubmitted',0),(1045,515,576,690,'2021-01-22 15:33:00','27.125.240.59',1342177281,'submission.event.fileUploaded',0),(1046,1048585,201,690,'2021-01-22 15:33:05','27.125.240.59',1342177281,'submission.event.fileUploaded',0),(1047,515,577,690,'2021-01-22 15:39:05','27.125.240.155',1342177281,'submission.event.fileUploaded',0),(1048,1048585,201,690,'2021-01-22 15:39:28','27.125.240.155',1342177288,'submission.event.fileRevised',0),(1049,515,578,690,'2021-01-22 15:39:45','27.125.240.155',1342177281,'submission.event.fileUploaded',0),(1050,515,579,690,'2021-01-22 15:45:19','27.125.240.155',1342177281,'submission.event.fileUploaded',0),(1051,1048585,202,690,'2021-01-22 15:45:30','27.125.240.155',1342177281,'submission.event.fileUploaded',0),(1052,515,579,690,'2021-01-22 15:45:44','27.125.240.155',1342177288,'submission.event.revisionUploaded',0),(1053,1048585,202,690,'2021-01-22 15:45:48','27.125.240.155',1342177288,'submission.event.fileRevised',0),(1054,1048585,202,690,'2021-01-22 15:46:18','27.125.240.155',268435457,'submission.event.submissionSubmitted',0),(1055,515,580,1,'2021-02-17 14:52:11','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1056,1048585,203,1,'2021-02-17 14:52:50','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1057,1048585,203,1,'2021-02-17 14:57:48','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1058,515,581,1,'2021-02-17 14:59:30','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1059,1048585,203,1,'2021-02-17 14:59:34','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1060,1048585,203,1,'2021-02-17 15:08:31','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1061,1048585,203,1,'2021-02-17 15:08:31','36.65.189.172',268435459,'submission.event.participantAdded',0),(1062,1048585,203,1,'2021-02-17 15:08:55','36.65.189.172',805306371,'log.editor.decision',0),(1063,515,583,1,'2021-02-17 15:10:29','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1064,1048585,203,1,'2021-02-17 15:10:32','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1065,515,584,1,'2021-02-17 15:11:23','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1066,1048585,203,1,'2021-02-17 15:11:26','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1067,1048585,203,1,'2021-02-17 15:12:41','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1068,1048585,203,1,'2021-02-17 15:12:41','36.65.189.172',268435459,'submission.event.participantAdded',0),(1069,515,585,1,'2021-02-17 15:14:00','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1070,1048585,203,1,'2021-02-17 15:14:02','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1071,515,586,1,'2021-02-17 15:14:38','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1072,1048585,203,1,'2021-02-17 15:14:41','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1073,515,587,1,'2021-02-17 15:15:14','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1074,1048585,203,1,'2021-02-17 15:15:16','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1075,1048585,203,1,'2021-02-17 15:16:20','36.65.189.172',805306371,'log.editor.decision',0),(1076,515,589,1,'2021-02-17 15:17:16','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1077,1048585,203,1,'2021-02-17 15:17:20','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1078,1048585,203,1,'2021-02-17 15:18:53','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1079,515,590,1,'2021-02-17 15:20:34','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1080,1048585,204,1,'2021-02-17 15:20:36','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1081,1048585,204,1,'2021-02-17 15:24:16','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1082,515,591,1,'2021-02-17 15:25:03','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1083,1048585,204,1,'2021-02-17 15:25:07','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1084,1048585,204,1,'2021-02-17 15:25:56','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1085,1048585,204,1,'2021-02-17 15:25:56','36.65.189.172',268435459,'submission.event.participantAdded',0),(1086,1048585,204,1,'2021-02-17 15:26:07','36.65.189.172',805306371,'log.editor.decision',0),(1087,515,593,1,'2021-02-17 15:26:32','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1088,1048585,204,1,'2021-02-17 15:26:37','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1089,1048585,204,1,'2021-02-17 15:26:52','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1090,1048585,204,1,'2021-02-17 15:26:52','36.65.189.172',268435459,'submission.event.participantAdded',0),(1091,515,594,1,'2021-02-17 15:31:01','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1092,1048585,204,1,'2021-02-17 15:31:10','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1093,515,595,1,'2021-02-17 15:32:08','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1094,1048585,204,1,'2021-02-17 15:32:10','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1095,1048585,204,1,'2021-02-17 15:32:38','36.65.189.172',805306371,'log.editor.decision',0),(1096,515,597,1,'2021-02-17 15:33:14','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1097,1048585,204,1,'2021-02-17 15:33:17','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1098,1048585,204,1,'2021-02-17 15:33:54','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1099,515,598,1,'2021-02-17 15:37:05','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1100,1048585,205,1,'2021-02-17 15:37:08','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1101,1048585,205,1,'2021-02-17 15:39:58','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1102,1048585,205,1,'2021-02-17 15:40:26','36.65.189.172',268435458,'submission.event.general.metadataUpdated',0),(1103,1048585,205,1,'2021-02-17 15:41:00','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1104,1048585,205,1,'2021-02-17 15:41:00','36.65.189.172',268435459,'submission.event.participantAdded',0),(1105,1048585,205,1,'2021-02-17 15:41:19','36.65.189.172',805306371,'log.editor.decision',0),(1106,1048585,205,1,'2021-02-17 15:43:20','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1107,1048585,205,1,'2021-02-17 15:43:20','36.65.189.172',268435459,'submission.event.participantAdded',0),(1108,515,600,1,'2021-02-17 15:43:39','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1109,1048585,205,1,'2021-02-17 15:43:45','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1110,515,601,1,'2021-02-17 15:44:25','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1111,1048585,205,1,'2021-02-17 15:44:34','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1112,515,602,1,'2021-02-17 15:45:35','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1113,1048585,205,1,'2021-02-17 15:45:37','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1114,515,603,1,'2021-02-17 15:46:07','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1115,1048585,205,1,'2021-02-17 15:46:09','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1116,1048585,205,1,'2021-02-17 15:46:24','36.65.189.172',805306371,'log.editor.decision',0),(1117,515,606,1,'2021-02-17 15:48:01','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1118,1048585,205,1,'2021-02-17 15:48:25','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1119,1048585,205,1,'2021-02-17 15:48:53','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1120,515,607,1,'2021-02-18 09:10:34','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1121,1048585,206,1,'2021-02-18 09:10:37','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1122,1048585,206,1,'2021-02-18 09:27:28','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1123,1048585,206,1,'2021-02-18 09:29:26','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1124,1048585,206,1,'2021-02-18 09:29:26','36.65.189.172',268435459,'submission.event.participantAdded',0),(1125,1048585,206,1,'2021-02-18 09:31:12','36.65.189.172',805306371,'log.editor.decision',0),(1126,1048585,206,1,'2021-02-18 09:31:29','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1127,1048585,206,1,'2021-02-18 09:31:29','36.65.189.172',268435459,'submission.event.participantAdded',0),(1128,515,610,1,'2021-02-18 09:32:07','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1129,1048585,206,1,'2021-02-18 09:32:10','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1130,515,611,1,'2021-02-18 09:32:54','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1131,1048585,206,1,'2021-02-18 09:32:57','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1132,515,613,1,'2021-02-18 09:33:51','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1133,1048585,206,1,'2021-02-18 09:33:54','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1134,1048585,206,1,'2021-02-18 09:34:10','36.65.189.172',805306371,'log.editor.decision',0),(1135,515,615,1,'2021-02-18 09:34:42','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1136,1048585,206,1,'2021-02-18 09:34:44','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1137,1048585,206,1,'2021-02-18 09:36:29','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1138,515,616,1,'2021-02-18 10:06:49','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1139,1048585,207,1,'2021-02-18 10:06:52','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1140,1048585,207,1,'2021-02-18 10:13:07','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1141,1048585,207,1,'2021-02-18 10:15:09','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1142,1048585,207,1,'2021-02-18 10:15:09','36.65.189.172',268435459,'submission.event.participantAdded',0),(1143,1048585,207,1,'2021-02-18 10:15:23','36.65.189.172',805306371,'log.editor.decision',0),(1144,515,618,1,'2021-02-18 10:15:53','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1145,1048585,207,1,'2021-02-18 10:15:59','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1146,1048585,207,1,'2021-02-18 10:16:34','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1147,1048585,207,1,'2021-02-18 10:16:34','36.65.189.172',268435459,'submission.event.participantAdded',0),(1148,515,619,1,'2021-02-18 10:17:21','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1149,1048585,207,1,'2021-02-18 10:17:24','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1150,515,620,1,'2021-02-18 10:18:13','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1151,1048585,207,1,'2021-02-18 10:18:15','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1152,1048585,207,1,'2021-02-18 10:18:34','36.65.189.172',805306371,'log.editor.decision',0),(1153,515,622,1,'2021-02-18 10:19:33','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1154,1048585,207,1,'2021-02-18 10:19:35','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1155,1048585,207,1,'2021-02-18 10:20:04','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1156,515,623,1,'2021-02-18 10:33:17','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1157,515,623,1,'2021-02-18 10:33:41','36.65.189.172',1342177282,'submission.event.fileDeleted',0),(1158,1048585,208,1,'2021-02-18 10:33:41','36.65.189.172',1342177283,'submission.event.lastRevisionDeleted',0),(1159,515,624,1,'2021-02-18 10:33:41','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1160,1048585,208,1,'2021-02-18 10:33:46','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1161,1048585,208,1,'2021-02-18 10:39:00','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1162,1048585,208,1,'2021-02-18 10:39:34','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1163,1048585,208,1,'2021-02-18 10:39:34','36.65.189.172',268435459,'submission.event.participantAdded',0),(1164,1048585,208,1,'2021-02-18 10:39:52','36.65.189.172',805306371,'log.editor.decision',0),(1165,1048585,208,1,'2021-02-18 10:40:20','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1166,1048585,208,1,'2021-02-18 10:40:20','36.65.189.172',268435459,'submission.event.participantAdded',0),(1167,515,626,1,'2021-02-18 10:40:38','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1168,1048585,208,1,'2021-02-18 10:41:17','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1169,515,627,1,'2021-02-18 10:43:39','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1170,1048585,208,1,'2021-02-18 10:43:42','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1171,515,628,1,'2021-02-18 10:44:27','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1172,1048585,208,1,'2021-02-18 10:44:31','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1173,1048585,208,1,'2021-02-18 10:44:43','36.65.189.172',805306371,'log.editor.decision',0),(1174,515,630,1,'2021-02-18 10:45:27','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1175,1048585,208,1,'2021-02-18 10:45:29','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1176,1048585,208,1,'2021-02-18 10:46:13','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1177,515,631,1,'2021-02-18 10:47:14','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1178,1048585,209,1,'2021-02-18 10:47:17','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1179,1048585,209,1,'2021-02-18 10:51:52','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1180,1048585,209,1,'2021-02-18 10:52:45','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1181,1048585,209,1,'2021-02-18 10:52:45','36.65.189.172',268435459,'submission.event.participantAdded',0),(1182,1048585,209,1,'2021-02-18 10:53:00','36.65.189.172',805306371,'log.editor.decision',0),(1183,515,633,1,'2021-02-18 10:53:24','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1184,1048585,209,1,'2021-02-18 10:53:27','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1185,1048585,209,1,'2021-02-18 10:53:57','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1186,1048585,209,1,'2021-02-18 10:53:57','36.65.189.172',268435459,'submission.event.participantAdded',0),(1187,515,634,1,'2021-02-18 10:54:36','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1188,1048585,209,1,'2021-02-18 10:54:39','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1189,515,635,1,'2021-02-18 11:03:25','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1190,1048585,209,1,'2021-02-18 11:03:45','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1191,1048585,209,1,'2021-02-18 11:04:02','36.65.189.172',805306371,'log.editor.decision',0),(1192,515,637,1,'2021-02-18 11:04:48','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1193,1048585,209,1,'2021-02-18 11:04:50','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1194,1048585,209,1,'2021-02-18 11:05:03','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1195,515,638,1,'2021-02-18 11:07:01','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1196,1048585,210,1,'2021-02-18 11:07:03','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1197,1048585,210,1,'2021-02-18 11:08:24','36.65.189.172',268435457,'submission.event.submissionSubmitted',0),(1198,1048585,210,1,'2021-02-18 11:08:48','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1199,1048585,210,1,'2021-02-18 11:08:49','36.65.189.172',268435459,'submission.event.participantAdded',0),(1200,1048585,210,1,'2021-02-18 11:09:12','36.65.189.172',805306371,'log.editor.decision',0),(1201,515,640,1,'2021-02-18 11:09:34','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1202,1048585,210,1,'2021-02-18 11:09:36','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1203,1048585,210,1,'2021-02-18 11:09:55','36.65.189.172',16777217,'informationCenter.history.messageSent',0),(1204,1048585,210,1,'2021-02-18 11:09:55','36.65.189.172',268435459,'submission.event.participantAdded',0),(1205,515,641,1,'2021-02-18 11:10:28','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1206,1048585,210,1,'2021-02-18 11:10:30','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1207,515,642,1,'2021-02-18 11:11:06','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1208,1048585,210,1,'2021-02-18 11:11:08','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1209,1048585,210,1,'2021-02-18 11:11:24','36.65.189.172',805306371,'log.editor.decision',0),(1210,515,644,1,'2021-02-18 11:11:48','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1211,1048585,210,1,'2021-02-18 11:11:51','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1212,1048585,210,1,'2021-02-18 11:12:59','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1213,515,645,1,'2021-02-18 11:20:22','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1214,1048585,204,1,'2021-02-18 11:20:25','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1215,515,590,1,'2021-02-18 11:20:37','36.65.189.172',1342177282,'submission.event.fileDeleted',0),(1216,1048585,204,1,'2021-02-18 11:20:37','36.65.189.172',1342177283,'submission.event.lastRevisionDeleted',0),(1217,515,646,1,'2021-02-18 11:21:15','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1218,515,647,1,'2021-02-18 11:22:06','36.65.189.172',1342177288,'submission.event.revisionUploaded',0),(1219,515,592,1,'2021-02-18 11:22:58','36.65.189.172',1342177282,'submission.event.fileDeleted',0),(1220,1048585,204,1,'2021-02-18 11:23:41','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1221,515,648,1,'2021-02-18 11:25:11','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1222,1048585,206,1,'2021-02-18 11:25:14','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1223,515,607,1,'2021-02-18 11:25:23','36.65.189.172',1342177282,'submission.event.fileDeleted',0),(1224,1048585,206,1,'2021-02-18 11:25:23','36.65.189.172',1342177283,'submission.event.lastRevisionDeleted',0),(1225,1048585,206,1,'2021-02-18 11:25:30','36.65.189.172',805306371,'log.editor.decision',0),(1226,515,650,1,'2021-02-18 11:26:21','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1227,515,609,1,'2021-02-18 11:26:38','36.65.189.172',1342177282,'submission.event.fileDeleted',0),(1228,515,651,1,'2021-02-18 11:26:51','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1229,1048585,206,1,'2021-02-18 11:27:08','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1230,1048585,206,1,'2021-02-18 11:28:04','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1231,515,652,1,'2021-02-18 11:28:42','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1232,1048585,207,1,'2021-02-18 11:28:44','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1233,515,616,1,'2021-02-18 11:28:53','36.65.189.172',1342177282,'submission.event.fileDeleted',0),(1234,1048585,207,1,'2021-02-18 11:28:53','36.65.189.172',1342177283,'submission.event.lastRevisionDeleted',0),(1235,515,653,1,'2021-02-18 11:29:28','36.65.189.172',1342177281,'submission.event.fileUploaded',0),(1236,515,617,1,'2021-02-18 11:29:58','36.65.189.172',1342177282,'submission.event.fileDeleted',0),(1237,1048585,207,1,'2021-02-18 11:32:36','36.65.189.172',268435464,'submission.event.issueMetadataUpdated',0),(1238,1048585,203,1,'2021-03-16 11:11:27','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1239,1048585,204,1,'2021-03-16 11:13:04','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1240,1048585,205,1,'2021-03-16 11:13:39','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1241,1048585,206,1,'2021-03-16 11:14:03','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1242,1048585,207,1,'2021-03-16 11:14:33','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1243,1048585,208,1,'2021-03-16 11:14:56','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1244,1048585,209,1,'2021-03-16 11:15:25','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1245,1048585,210,1,'2021-03-16 11:15:55','36.81.9.98',268435464,'submission.event.publicIdentifiers',0),(1246,1048585,203,1,'2021-03-16 13:31:25','36.81.9.98',268435458,'submission.event.general.metadataUpdated',0),(1247,1048585,203,1,'2021-03-16 13:32:24','36.81.9.98',268435458,'submission.event.general.metadataUpdated',0),(1248,1048585,185,1,'2021-03-17 11:18:21','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1249,1048585,186,1,'2021-03-17 11:18:50','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1250,1048585,187,1,'2021-03-17 11:19:16','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1251,1048585,188,1,'2021-03-17 11:19:37','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1252,1048585,189,1,'2021-03-17 11:20:07','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1253,1048585,190,1,'2021-03-17 11:20:34','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1254,1048585,191,1,'2021-03-17 11:20:55','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1255,1048585,193,1,'2021-03-17 11:21:21','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1256,1048585,169,1,'2021-03-17 11:55:26','36.81.15.254',268435464,'submission.event.publicIdentifiers',0),(1257,515,654,692,'2021-06-06 20:15:23','103.105.33.109',1342177281,'submission.event.fileUploaded',0),(1258,1048585,211,692,'2021-06-06 20:15:33','103.105.33.109',1342177281,'submission.event.fileUploaded',0),(1259,1048585,171,1,'2021-06-22 05:55:40','114.142.169.36',268435464,'submission.event.publicIdentifiers',0),(1260,1048585,173,1,'2021-06-22 05:57:49','114.142.169.36',268435464,'submission.event.publicIdentifiers',0),(1261,1048585,174,1,'2021-06-22 05:58:43','114.142.169.36',268435464,'submission.event.publicIdentifiers',0),(1262,1048585,175,1,'2021-06-22 05:59:40','114.142.169.36',268435464,'submission.event.publicIdentifiers',0),(1263,1048585,176,1,'2021-06-22 06:00:11','114.142.169.36',268435464,'submission.event.publicIdentifiers',0),(1264,1048585,177,1,'2021-06-22 06:00:41','114.142.169.36',268435464,'submission.event.publicIdentifiers',0),(1265,1048585,178,1,'2021-06-22 06:01:03','114.142.169.36',268435464,'submission.event.publicIdentifiers',0),(1266,1048585,146,1,'2021-06-22 10:05:06','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1267,1048585,147,1,'2021-06-22 10:05:29','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1268,1048585,152,1,'2021-06-22 10:05:54','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1269,1048585,148,1,'2021-06-22 10:06:31','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1270,1048585,149,1,'2021-06-22 10:07:05','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1271,1048585,150,1,'2021-06-22 10:07:35','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1272,1048585,151,1,'2021-06-22 10:07:57','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1273,1048585,133,1,'2021-06-22 10:08:42','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1274,1048585,134,1,'2021-06-22 10:09:10','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1275,1048585,135,1,'2021-06-22 10:09:31','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1276,1048585,136,1,'2021-06-22 10:10:02','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1277,1048585,137,1,'2021-06-22 10:10:26','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1278,1048585,139,1,'2021-06-22 10:10:49','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1279,1048585,141,1,'2021-06-22 10:11:11','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1280,1048585,142,1,'2021-06-22 10:11:40','36.81.11.47',268435464,'submission.event.publicIdentifiers',0),(1281,515,655,1,'2021-08-02 08:53:50','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1282,1048585,213,1,'2021-08-02 08:54:17','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1283,1048585,213,1,'2021-08-02 09:03:18','36.81.10.251',268435457,'submission.event.submissionSubmitted',0),(1284,1048585,213,1,'2021-08-02 09:11:06','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1285,1048585,213,1,'2021-08-02 09:30:43','36.81.10.251',268435464,'submission.event.issueMetadataUpdated',0),(1286,515,656,1,'2021-08-02 09:40:29','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1287,1048585,214,1,'2021-08-02 09:40:38','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1288,1048585,214,1,'2021-08-02 09:42:32','36.81.10.251',268435457,'submission.event.submissionSubmitted',0),(1289,1048585,214,1,'2021-08-02 09:43:21','36.81.10.251',268435458,'submission.event.general.metadataUpdated',0),(1290,515,657,1,'2021-08-02 09:46:57','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1291,1048585,215,1,'2021-08-02 09:47:06','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1292,1048585,215,1,'2021-08-02 09:51:36','36.81.10.251',268435457,'submission.event.submissionSubmitted',0),(1293,515,658,1,'2021-08-02 09:52:36','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1294,1048585,216,1,'2021-08-02 09:52:40','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1295,1048585,216,1,'2021-08-02 09:56:25','36.81.10.251',268435457,'submission.event.submissionSubmitted',0),(1296,515,659,1,'2021-08-02 10:20:12','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1297,1048585,218,1,'2021-08-02 10:20:56','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1298,1048585,218,1,'2021-08-02 10:29:59','36.81.10.251',268435457,'submission.event.submissionSubmitted',0),(1299,1048585,218,1,'2021-08-02 10:31:13','36.81.10.251',268435458,'submission.event.general.metadataUpdated',0),(1300,515,660,1,'2021-08-02 10:33:24','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1301,1048585,219,1,'2021-08-02 10:33:28','36.81.10.251',1342177281,'submission.event.fileUploaded',0),(1302,1048585,219,1,'2021-08-02 10:36:09','36.81.10.251',268435457,'submission.event.submissionSubmitted',0),(1303,1048585,215,1,'2021-08-09 15:00:48','36.81.13.91',268435459,'submission.event.participantAdded',0),(1304,515,661,4,'2021-08-09 15:07:45','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1305,1048585,214,1,'2021-08-09 15:07:50','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1306,515,662,4,'2021-08-09 15:12:53','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1307,1048585,215,1,'2021-08-09 15:12:56','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1308,1048585,214,1,'2021-08-09 15:13:31','36.81.13.91',268435459,'submission.event.participantAdded',0),(1309,1048585,216,1,'2021-08-09 15:13:56','36.81.13.91',268435459,'submission.event.participantAdded',0),(1310,1048585,218,1,'2021-08-09 15:14:06','36.81.13.91',268435459,'submission.event.participantAdded',0),(1311,1048585,219,1,'2021-08-09 15:14:46','36.81.13.91',268435459,'submission.event.participantAdded',0),(1312,1048585,214,1,'2021-08-09 15:17:03','36.81.13.91',805306371,'log.editor.decision',0),(1313,515,664,4,'2021-08-09 15:23:27','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1314,1048585,216,1,'2021-08-09 15:23:30','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1315,515,665,4,'2021-08-09 15:24:17','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1316,1048585,218,1,'2021-08-09 15:24:20','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1317,515,667,4,'2021-08-09 15:25:11','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1318,1048585,219,1,'2021-08-09 15:25:14','36.81.13.91',1342177281,'submission.event.fileUploaded',0),(1319,1048585,214,1,'2021-08-09 15:26:55','36.81.13.91',805306371,'log.editor.decision',0),(1320,1048585,215,1,'2021-08-10 10:29:03','36.81.15.234',805306371,'log.editor.decision',0),(1321,515,668,1,'2021-08-10 10:30:31','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1322,1048585,214,1,'2021-08-10 10:31:04','36.81.15.234',805306371,'log.editor.decision',0),(1323,515,661,1,'2021-08-10 10:31:20','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1324,1048585,214,1,'2021-08-10 10:31:20','36.81.15.234',1342177283,'submission.event.lastRevisionDeleted',0),(1325,515,662,1,'2021-08-10 10:31:48','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1326,1048585,215,1,'2021-08-10 10:31:48','36.81.15.234',1342177283,'submission.event.lastRevisionDeleted',0),(1327,515,664,1,'2021-08-10 10:32:16','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1328,1048585,216,1,'2021-08-10 10:32:16','36.81.15.234',1342177283,'submission.event.lastRevisionDeleted',0),(1329,1048585,216,1,'2021-08-10 10:32:30','36.81.15.234',805306371,'log.editor.decision',0),(1330,1048585,218,1,'2021-08-10 10:33:59','36.81.15.234',805306371,'log.editor.decision',0),(1331,515,666,1,'2021-08-10 10:34:17','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1332,515,665,1,'2021-08-10 10:34:25','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1333,1048585,218,1,'2021-08-10 10:34:25','36.81.15.234',1342177283,'submission.event.lastRevisionDeleted',0),(1334,515,667,1,'2021-08-10 10:35:02','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1335,1048585,219,1,'2021-08-10 10:35:02','36.81.15.234',1342177283,'submission.event.lastRevisionDeleted',0),(1336,1048585,219,1,'2021-08-10 10:35:17','36.81.15.234',805306371,'log.editor.decision',0),(1337,1048585,214,1,'2021-08-10 10:39:50','36.81.15.234',805306371,'log.editor.decision',0),(1338,515,663,1,'2021-08-10 10:40:12','36.81.15.234',1342177282,'submission.event.fileDeleted',0),(1339,515,674,1,'2021-08-16 12:28:32','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1340,1048585,214,1,'2021-08-16 12:28:38','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1341,515,675,1,'2021-08-16 12:29:47','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1342,1048585,214,1,'2021-08-16 12:29:52','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1343,1048585,214,1,'2021-08-16 12:32:27','114.142.170.30',268435464,'submission.event.issueMetadataUpdated',0),(1344,515,676,1,'2021-08-16 12:35:25','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1345,1048585,215,1,'2021-08-16 12:35:28','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1346,515,677,1,'2021-08-16 12:36:25','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1347,1048585,215,1,'2021-08-16 12:36:28','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1348,1048585,215,1,'2021-08-16 12:36:58','114.142.170.30',268435464,'submission.event.issueMetadataUpdated',0),(1349,515,678,1,'2021-08-16 12:38:05','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1350,1048585,216,1,'2021-08-16 12:38:08','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1351,515,679,1,'2021-08-16 12:38:43','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1352,1048585,216,1,'2021-08-16 12:38:46','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1353,515,680,1,'2021-08-16 12:40:30','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1354,515,680,1,'2021-08-16 12:41:29','114.142.170.30',1342177282,'submission.event.fileDeleted',0),(1355,1048585,216,1,'2021-08-16 12:41:29','114.142.170.30',1342177283,'submission.event.lastRevisionDeleted',0),(1356,1048585,216,1,'2021-08-16 12:42:12','114.142.170.30',268435464,'submission.event.issueMetadataUpdated',0),(1357,515,681,1,'2021-08-16 12:44:05','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1358,1048585,218,1,'2021-08-16 12:44:08','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1359,515,682,1,'2021-08-16 12:44:49','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1360,1048585,218,1,'2021-08-16 12:44:52','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1361,1048585,218,1,'2021-08-16 12:45:28','114.142.170.30',268435464,'submission.event.issueMetadataUpdated',0),(1362,515,683,1,'2021-08-16 12:46:24','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1363,1048585,219,1,'2021-08-16 12:46:26','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1364,515,684,1,'2021-08-16 12:47:15','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1365,1048585,219,1,'2021-08-16 12:47:18','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1366,515,683,1,'2021-08-16 12:47:44','114.142.170.30',1342177282,'submission.event.fileDeleted',0),(1367,1048585,219,1,'2021-08-16 12:47:44','114.142.170.30',1342177283,'submission.event.lastRevisionDeleted',0),(1368,515,685,1,'2021-08-16 12:47:58','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1369,1048585,219,1,'2021-08-16 12:48:00','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1370,1048585,219,1,'2021-08-16 12:48:32','114.142.170.30',268435464,'submission.event.issueMetadataUpdated',0),(1371,515,686,1,'2021-08-16 12:58:15','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1372,1048585,214,1,'2021-08-16 12:58:19','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1373,515,687,1,'2021-08-16 13:00:51','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1374,1048585,215,1,'2021-08-16 13:00:54','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1375,515,688,1,'2021-08-16 13:01:37','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1376,1048585,216,1,'2021-08-16 13:01:39','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1377,515,689,1,'2021-08-16 13:02:20','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1378,1048585,218,1,'2021-08-16 13:02:23','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1379,515,690,1,'2021-08-16 13:03:03','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1380,1048585,219,1,'2021-08-16 13:03:10','114.142.170.30',1342177281,'submission.event.fileUploaded',0),(1381,1048585,215,1,'2021-08-18 08:40:19','36.81.14.228',268435458,'submission.event.general.metadataUpdated',0),(1382,515,691,695,'2021-08-30 15:06:49','114.5.110.245',1342177281,'submission.event.fileUploaded',0),(1383,1048585,220,695,'2021-08-30 15:06:55','114.5.110.245',1342177281,'submission.event.fileUploaded',0),(1384,1048585,220,695,'2021-08-30 15:07:21','114.5.110.245',1342177281,'submission.event.fileUploaded',0),(1385,1048585,220,695,'2021-08-30 15:07:31','114.5.110.245',1342177281,'submission.event.fileUploaded',0),(1386,1048585,220,695,'2021-08-30 15:17:40','114.5.110.245',268435457,'submission.event.submissionSubmitted',0),(1387,515,692,696,'2021-11-27 11:41:20','158.140.82.16',1342177281,'submission.event.fileUploaded',0),(1388,515,693,696,'2021-11-27 11:55:12','158.140.82.16',1342177281,'submission.event.fileUploaded',0),(1389,515,694,1,'2022-02-03 13:26:11','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1390,1048585,222,1,'2022-02-03 13:26:30','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1391,515,694,1,'2022-02-03 13:26:50','36.65.211.67',1342177282,'submission.event.fileDeleted',0),(1392,1048585,222,1,'2022-02-03 13:26:50','36.65.211.67',1342177283,'submission.event.lastRevisionDeleted',0),(1393,515,695,1,'2022-02-03 13:27:56','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1394,1048585,222,1,'2022-02-03 13:27:59','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1395,1048585,222,1,'2022-02-03 13:31:44','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1396,515,695,1,'2022-02-03 13:34:10','36.65.211.67',1342177282,'submission.event.fileDeleted',0),(1397,1048585,222,1,'2022-02-03 13:34:10','36.65.211.67',1342177283,'submission.event.lastRevisionDeleted',0),(1398,515,696,1,'2022-02-03 13:34:52','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1399,1048585,222,1,'2022-02-03 13:34:56','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1400,515,697,1,'2022-02-03 13:36:12','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1401,1048585,223,1,'2022-02-03 13:36:15','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1402,1048585,223,1,'2022-02-03 13:38:20','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1403,1048585,223,1,'2022-02-03 13:39:25','36.65.211.67',268435458,'submission.event.general.metadataUpdated',0),(1404,1048585,223,1,'2022-02-03 13:40:14','36.65.211.67',268435458,'submission.event.general.metadataUpdated',0),(1405,1048585,223,1,'2022-02-03 13:41:21','36.65.211.67',268435458,'submission.event.general.metadataUpdated',0),(1406,1048585,223,1,'2022-02-03 13:43:30','36.65.211.67',268435458,'submission.event.general.metadataUpdated',0),(1407,1048585,223,1,'2022-02-03 13:44:24','36.65.211.67',268435458,'submission.event.general.metadataUpdated',0),(1408,1048585,223,1,'2022-02-03 13:45:18','36.65.211.67',268435458,'submission.event.general.metadataUpdated',0),(1409,515,698,1,'2022-02-03 13:46:40','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1410,1048585,224,1,'2022-02-03 13:46:43','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1411,1048585,224,1,'2022-02-03 13:50:29','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1412,515,699,1,'2022-02-03 13:52:03','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1413,1048585,225,1,'2022-02-03 13:52:08','36.65.211.67',1342177281,'submission.event.fileUploaded',0),(1414,1048585,225,1,'2022-02-03 13:54:49','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1415,1048585,225,1,'2022-02-03 13:55:39','36.65.211.67',268435458,'submission.event.general.metadataUpdated',0),(1416,1048585,226,1,'2022-02-03 14:03:53','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1417,1048585,228,1,'2022-02-03 14:13:16','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1418,1048585,229,1,'2022-02-03 14:21:01','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1419,1048585,230,1,'2022-02-03 14:25:26','36.65.211.67',268435457,'submission.event.submissionSubmitted',0),(1420,1048585,223,1,'2022-02-03 14:46:38','36.65.211.67',268435459,'submission.event.participantAdded',0),(1421,1048585,223,1,'2022-02-03 14:47:04','36.65.211.67',805306371,'log.editor.decision',0),(1422,1048585,223,1,'2022-02-03 14:48:06','36.65.211.67',805306371,'log.editor.decision',0),(1423,1048585,224,1,'2022-02-03 14:51:06','36.65.211.67',268435459,'submission.event.participantAdded',0),(1424,1048585,224,1,'2022-02-03 14:51:22','36.65.211.67',805306371,'log.editor.decision',0),(1425,1048585,224,1,'2022-02-03 14:52:01','36.65.211.67',805306371,'log.editor.decision',0),(1426,1048585,225,1,'2022-02-03 14:52:39','36.65.211.67',268435459,'submission.event.participantAdded',0),(1427,1048585,225,1,'2022-02-03 14:52:56','36.65.211.67',805306371,'log.editor.decision',0),(1428,1048585,226,1,'2022-02-03 14:53:24','36.65.211.67',268435459,'submission.event.participantAdded',0),(1429,1048585,226,1,'2022-02-03 14:53:35','36.65.211.67',805306371,'log.editor.decision',0),(1430,1048585,228,1,'2022-02-03 14:54:02','36.65.211.67',268435459,'submission.event.participantAdded',0),(1431,1048585,228,1,'2022-02-03 14:54:13','36.65.211.67',805306371,'log.editor.decision',0),(1432,1048585,229,1,'2022-02-03 14:54:36','36.65.211.67',268435459,'submission.event.participantAdded',0),(1433,1048585,229,1,'2022-02-03 14:54:52','36.65.211.67',805306371,'log.editor.decision',0),(1434,1048585,230,1,'2022-02-03 14:55:16','36.65.211.67',268435459,'submission.event.participantAdded',0),(1435,1048585,230,1,'2022-02-03 14:55:27','36.65.211.67',805306371,'log.editor.decision',0),(1436,1048585,223,1,'2022-02-04 09:01:51','180.253.66.180',805306371,'log.editor.decision',0),(1437,1048585,223,1,'2022-02-04 09:02:20','180.253.66.180',805306371,'log.editor.decision',0),(1438,1048585,225,1,'2022-02-04 09:03:24','180.253.66.180',805306371,'log.editor.decision',0),(1439,1048585,228,1,'2022-02-04 09:03:54','180.253.66.180',805306371,'log.editor.decision',0),(1440,1048585,230,1,'2022-02-04 09:04:21','180.253.66.180',805306371,'log.editor.decision',0),(1441,1048585,226,1,'2022-02-04 09:04:46','180.253.66.180',805306371,'log.editor.decision',0),(1442,515,696,1,'2022-02-04 09:06:55','180.253.66.180',1342177282,'submission.event.fileDeleted',0),(1443,1048585,222,1,'2022-02-04 09:06:55','180.253.66.180',1342177283,'submission.event.lastRevisionDeleted',0),(1444,515,704,1,'2022-02-04 09:07:30','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1445,1048585,222,1,'2022-02-04 09:07:35','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1446,515,705,4,'2022-02-04 09:11:30','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1447,1048585,224,1,'2022-02-04 09:11:34','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1448,1048585,224,1,'2022-02-04 09:12:09','180.253.66.180',805306371,'log.editor.decision',0),(1449,1048585,224,1,'2022-02-04 09:12:46','180.253.66.180',805306371,'log.editor.decision',0),(1450,1048585,222,1,'2022-02-04 09:14:28','180.253.66.180',268435459,'submission.event.participantAdded',0),(1451,1048585,222,1,'2022-02-04 09:14:41','180.253.66.180',805306371,'log.editor.decision',0),(1452,515,709,4,'2022-02-04 09:15:45','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1453,1048585,222,1,'2022-02-04 09:15:48','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1454,1048585,222,1,'2022-02-04 09:16:08','180.253.66.180',805306371,'log.editor.decision',0),(1455,515,711,4,'2022-02-04 09:17:09','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1456,1048585,222,1,'2022-02-04 09:17:15','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1457,1048585,222,1,'2022-02-04 09:17:47','180.253.66.180',805306371,'log.editor.decision',0),(1458,515,713,4,'2022-02-04 09:21:58','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1459,1048585,229,1,'2022-02-04 09:22:48','180.253.66.180',805306371,'log.editor.decision',0),(1460,515,715,4,'2022-02-04 09:23:16','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1461,1048585,229,1,'2022-02-04 09:23:19','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1462,1048585,229,1,'2022-02-04 09:23:37','180.253.66.180',805306371,'log.editor.decision',0),(1463,515,717,4,'2022-02-04 09:24:03','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1464,1048585,229,1,'2022-02-04 09:24:08','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1465,1048585,229,1,'2022-02-04 09:24:28','180.253.66.180',805306371,'log.editor.decision',0),(1466,1048585,230,1,'2022-02-04 09:28:49','180.253.66.180',805306371,'log.editor.decision',0),(1467,1048585,222,1,'2022-02-04 09:35:28','180.253.66.180',268435458,'submission.event.general.metadataUpdated',0),(1468,515,719,1,'2022-02-04 09:38:47','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1469,1048585,231,1,'2022-02-04 09:38:50','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1470,1048585,231,1,'2022-02-04 09:43:42','180.253.66.180',268435457,'submission.event.submissionSubmitted',0),(1471,515,720,1,'2022-02-04 09:45:15','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1472,1048585,232,1,'2022-02-04 09:45:18','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1473,1048585,232,1,'2022-02-04 09:48:13','180.253.66.180',268435457,'submission.event.submissionSubmitted',0),(1474,515,721,1,'2022-02-04 09:49:05','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1475,1048585,233,1,'2022-02-04 09:49:08','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1476,1048585,233,1,'2022-02-04 09:51:10','180.253.66.180',268435457,'submission.event.submissionSubmitted',0),(1477,515,722,1,'2022-02-04 09:51:58','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1478,1048585,234,1,'2022-02-04 09:52:02','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1479,1048585,234,1,'2022-02-04 09:55:04','180.253.66.180',268435457,'submission.event.submissionSubmitted',0),(1480,1048585,231,1,'2022-02-04 09:56:39','180.253.66.180',268435459,'submission.event.participantAdded',0),(1481,1048585,232,1,'2022-02-04 09:56:59','180.253.66.180',268435459,'submission.event.participantAdded',0),(1482,1048585,233,1,'2022-02-04 09:57:42','180.253.66.180',268435459,'submission.event.participantAdded',0),(1483,1048585,234,1,'2022-02-04 09:57:58','180.253.66.180',268435459,'submission.event.participantAdded',0),(1484,1048585,231,1,'2022-02-04 09:58:55','180.253.66.180',805306371,'log.editor.decision',0),(1485,1048585,231,1,'2022-02-04 09:59:55','180.253.66.180',1073741825,'log.review.reviewerAssigned',0),(1486,1048585,232,1,'2022-02-04 10:00:41','180.253.66.180',805306371,'log.editor.decision',0),(1487,1048585,232,1,'2022-02-04 10:01:03','180.253.66.180',1073741825,'log.review.reviewerAssigned',0),(1488,1048585,233,1,'2022-02-04 10:01:31','180.253.66.180',805306371,'log.editor.decision',0),(1489,1048585,233,1,'2022-02-04 10:01:59','180.253.66.180',1073741825,'log.review.reviewerAssigned',0),(1490,1048585,234,1,'2022-02-04 10:02:20','180.253.66.180',805306371,'log.editor.decision',0),(1491,1048585,234,1,'2022-02-04 10:02:49','180.253.66.180',1073741825,'log.review.reviewerAssigned',0),(1492,1048585,234,1,'2022-02-04 10:04:43','180.253.66.180',1073741830,'log.review.reviewAccepted',0),(1493,515,727,2,'2022-02-04 10:05:24','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1494,1048585,234,1,'2022-02-04 10:05:27','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1495,1048585,234,1,'2022-02-04 10:05:42','180.253.66.180',1073741848,'log.review.reviewReady',0),(1496,1048585,233,1,'2022-02-04 10:06:12','180.253.66.180',1073741830,'log.review.reviewAccepted',0),(1497,515,728,2,'2022-02-04 10:07:05','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1498,1048585,233,1,'2022-02-04 10:07:08','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1499,1048585,233,1,'2022-02-04 10:07:19','180.253.66.180',1073741848,'log.review.reviewReady',0),(1500,1048585,232,1,'2022-02-04 10:07:44','180.253.66.180',1073741830,'log.review.reviewAccepted',0),(1501,515,729,2,'2022-02-04 10:07:59','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1502,1048585,232,1,'2022-02-04 10:08:01','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1503,1048585,232,1,'2022-02-04 10:08:11','180.253.66.180',1073741848,'log.review.reviewReady',0),(1504,1048585,231,1,'2022-02-04 10:08:41','180.253.66.180',1073741830,'log.review.reviewAccepted',0),(1505,515,730,2,'2022-02-04 10:09:22','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1506,1048585,231,1,'2022-02-04 10:09:25','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1507,1048585,231,1,'2022-02-04 10:09:47','180.253.66.180',1073741848,'log.review.reviewReady',0),(1508,515,731,4,'2022-02-04 10:15:53','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1509,1048585,231,1,'2022-02-04 10:16:00','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1510,515,732,4,'2022-02-04 10:16:37','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1511,1048585,231,1,'2022-02-04 10:16:41','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1512,1048585,231,1,'2022-02-04 10:17:08','180.253.66.180',805306371,'log.editor.decision',0),(1513,515,734,4,'2022-02-04 10:18:16','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1514,1048585,232,1,'2022-02-04 10:18:20','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1515,515,735,4,'2022-02-04 10:19:05','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1516,1048585,232,1,'2022-02-04 10:19:09','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1517,1048585,232,1,'2022-02-04 10:19:50','180.253.66.180',805306371,'log.editor.decision',0),(1518,515,737,4,'2022-02-04 10:22:22','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1519,1048585,233,1,'2022-02-04 10:22:27','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1520,515,738,4,'2022-02-04 10:22:51','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1521,1048585,233,1,'2022-02-04 10:22:54','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1522,515,737,4,'2022-02-04 10:23:16','180.253.66.180',1342177282,'submission.event.fileDeleted',0),(1523,1048585,233,1,'2022-02-04 10:23:16','180.253.66.180',1342177283,'submission.event.lastRevisionDeleted',0),(1524,515,739,4,'2022-02-04 10:23:32','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1525,1048585,233,1,'2022-02-04 10:23:34','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1526,1048585,233,1,'2022-02-04 10:24:12','180.253.66.180',805306371,'log.editor.decision',0),(1527,515,741,4,'2022-02-04 10:25:03','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1528,1048585,234,1,'2022-02-04 10:25:06','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1529,515,742,4,'2022-02-04 10:25:34','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1530,1048585,234,1,'2022-02-04 10:25:37','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1531,1048585,234,1,'2022-02-04 10:25:53','180.253.66.180',805306371,'log.editor.decision',0),(1532,1048585,222,1,'2022-02-04 10:34:59','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1533,1048585,222,1,'2022-02-04 10:35:43','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1534,1048585,222,1,'2022-02-04 10:36:29','180.253.66.180',268435458,'submission.event.general.metadataUpdated',0),(1535,515,744,1,'2022-02-04 10:51:42','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1536,1048585,222,1,'2022-02-04 10:52:00','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1537,515,745,4,'2022-02-04 11:03:32','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1538,1048585,224,1,'2022-02-04 11:03:48','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1539,515,746,4,'2022-02-04 11:05:28','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1540,1048585,231,1,'2022-02-04 11:05:43','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1541,515,747,4,'2022-02-04 11:07:31','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1542,1048585,232,1,'2022-02-04 11:08:01','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1543,515,748,4,'2022-02-04 11:10:07','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1544,1048585,233,1,'2022-02-04 11:10:17','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1545,515,749,4,'2022-02-04 11:12:40','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1546,1048585,229,1,'2022-02-04 11:13:00','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1547,515,750,4,'2022-02-04 11:14:31','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1548,1048585,234,1,'2022-02-04 11:14:41','180.253.66.180',1342177281,'submission.event.fileUploaded',0),(1549,1048585,224,1,'2022-02-04 11:15:31','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1550,1048585,231,1,'2022-02-04 11:16:20','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1551,1048585,232,1,'2022-02-04 11:17:32','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1552,1048585,233,1,'2022-02-04 11:18:10','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1553,1048585,229,1,'2022-02-04 11:18:59','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1554,1048585,234,1,'2022-02-04 11:19:35','180.253.66.180',268435464,'submission.event.issueMetadataUpdated',0),(1555,515,748,4,'2022-02-08 14:14:15','180.253.73.161',1342177288,'submission.event.revisionUploaded',0),(1556,1048585,233,1,'2022-02-08 14:14:30','180.253.73.161',1342177288,'submission.event.fileRevised',0),(1557,515,748,4,'2022-02-08 14:25:57','180.253.73.161',1342177288,'submission.event.revisionUploaded',0),(1558,1048585,233,1,'2022-02-08 14:26:02','180.253.73.161',1342177288,'submission.event.fileRevised',0),(1559,1048585,233,1,'2022-02-08 14:43:26','180.253.73.161',268435464,'submission.event.issueMetadataUpdated',0),(1560,515,749,4,'2022-02-08 14:47:27','180.253.73.161',1342177288,'submission.event.revisionUploaded',0),(1561,1048585,229,1,'2022-02-08 14:47:32','180.253.73.161',1342177288,'submission.event.fileRevised',0),(1562,1048585,229,1,'2022-02-08 14:48:01','180.253.73.161',268435464,'submission.event.issueMetadataUpdated',0),(1563,515,750,4,'2022-02-08 14:49:45','180.253.73.161',1342177288,'submission.event.revisionUploaded',0),(1564,1048585,234,1,'2022-02-08 14:49:49','180.253.73.161',1342177288,'submission.event.fileRevised',0),(1565,1048585,234,1,'2022-02-08 14:50:10','180.253.73.161',268435464,'submission.event.issueMetadataUpdated',0),(1566,1048585,222,1,'2022-02-08 14:55:45','180.253.73.161',268435464,'submission.event.issueMetadataUpdated',0),(1567,1048585,222,1,'2022-02-08 14:58:27','180.253.73.161',268435464,'submission.event.issueMetadataUpdated',0),(1568,1048585,224,1,'2022-02-08 14:59:50','180.253.73.161',268435458,'submission.event.general.metadataUpdated',0),(1569,1048585,229,1,'2022-02-08 15:01:33','180.253.73.161',268435458,'submission.event.general.metadataUpdated',0),(1570,515,751,699,'2022-03-14 10:33:34','103.116.210.3',1342177281,'submission.event.fileUploaded',0),(1571,1048585,235,699,'2022-03-14 10:34:03','103.116.210.3',1342177281,'submission.event.fileUploaded',0),(1572,1048585,235,699,'2022-03-14 10:35:36','103.116.210.3',1342177281,'submission.event.fileUploaded',0),(1573,1048585,235,699,'2022-03-14 10:44:02','103.116.210.3',268435457,'submission.event.submissionSubmitted',0);
/*!40000 ALTER TABLE `event_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `event_log_settings`
--

DROP TABLE IF EXISTS `event_log_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `event_log_settings` (
  `log_id` bigint(20) NOT NULL,
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `event_log_settings_pkey` (`log_id`,`setting_name`),
  KEY `event_log_settings_log_id` (`log_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `event_log_settings`
--

LOCK TABLES `event_log_settings` WRITE;
/*!40000 ALTER TABLE `event_log_settings` DISABLE KEYS */;
INSERT INTO `event_log_settings` VALUES (1,'fileStage','2','int'),(1,'revisedFileId',NULL,'string'),(1,'fileId','143','int'),(1,'fileRevision','1','int'),(1,'originalFileName','pdf-sample.pdf','string'),(1,'submissionId','74','int'),(1,'username','admin','string'),(2,'fileStage','2','int'),(2,'fileId','143','int'),(2,'fileRevision','1','int'),(2,'originalFileName','pdf-sample.pdf','string'),(2,'submissionId','74','int'),(2,'username','admin','string'),(2,'name','admin, pdf-sample.pdf','string'),(7,'name','editor editor','string'),(7,'username','editor','string'),(7,'userGroupName','Journal editor','string'),(8,'editorName','editor editor','string'),(8,'submissionId','74','string'),(8,'decision','Accept and Skip Review','string'),(9,'editorName','editor editor','string'),(9,'submissionId','74','string'),(9,'decision','Send To Production','string'),(11,'editorName','editor editor','string'),(11,'submissionId','74','string'),(11,'decision','Accept and Skip Review','string'),(12,'editorName','editor editor','string'),(12,'submissionId','74','string'),(12,'decision','Send To Production','string'),(13,'name','admininsada a','string'),(13,'username','admin','string'),(13,'userGroupName','Journal editor','string'),(14,'name','admininsada a','string'),(14,'username','admin','string'),(14,'userGroupName','Journal editor','string'),(15,'name','admininsada a','string'),(15,'username','admin','string'),(15,'userGroupName','Production editor','string'),(16,'name','admininsada a','string'),(16,'username','admin','string'),(16,'userGroupName','Journal editor','string'),(17,'fileStage','2','int'),(17,'revisedFileId',NULL,'string'),(17,'fileId','147','int'),(17,'fileRevision','1','int'),(17,'originalFileName','1. Publikasi Ririn.pdf','string'),(17,'submissionId','75','int'),(17,'username','admin','string'),(35,'submissionId','76','string'),(35,'decision','Send to Review','string'),(35,'editorName','admininsada a','string'),(30,'fileStage','2','int'),(30,'revisedFileId',NULL,'string'),(30,'fileId','151','int'),(30,'fileRevision','1','int'),(30,'originalFileName','2. Tatik-les 2016.pdf','string'),(30,'submissionId','76','int'),(30,'username','admin','string'),(31,'fileStage','2','int'),(31,'fileId','151','int'),(31,'fileRevision','1','int'),(31,'originalFileName','2. Tatik-les 2016.pdf','string'),(31,'submissionId','76','int'),(31,'username','admin','string'),(31,'name','admin, 2. Tatik-les 2016.pdf','string'),(33,'fileStage','2','int'),(33,'fileId','151','int'),(33,'fileRevision','1','int'),(33,'originalFileName','2. Tatik-les 2016.pdf','string'),(33,'submissionId','76','int'),(33,'username','admin','string'),(33,'name','Tatik-les 2016.pdf','string'),(34,'name','admininsada a','string'),(34,'username','admin','string'),(34,'userGroupName','Journal editor','string'),(36,'fileStage','4','int'),(36,'sourceFileId','151','int'),(36,'fileId','153','int'),(36,'fileRevision','1','int'),(36,'originalFileName','2. Tatik-les 2016.pdf','string'),(36,'submissionId','76','int'),(36,'username','admin','string'),(37,'editorName','admininsada a','string'),(37,'submissionId','76','string'),(37,'decision','Send To Production','string'),(43,'fileStage','2','int'),(43,'revisedFileId',NULL,'string'),(43,'fileId','155','int'),(43,'fileRevision','1','int'),(43,'originalFileName','1. Publikasi Ririn.pdf','string'),(43,'submissionId','77','int'),(43,'username','admin','string'),(44,'fileStage','2','int'),(44,'fileId','155','int'),(44,'fileRevision','1','int'),(44,'originalFileName','1. Publikasi Ririn.pdf','string'),(44,'submissionId','77','int'),(44,'username','admin','string'),(44,'name','1. Publikasi Ririn.pdf','string'),(46,'name','admininsada a','string'),(46,'username','admin','string'),(46,'userGroupName','Journal editor','string'),(47,'editorName','admininsada a','string'),(47,'submissionId','77','string'),(47,'decision','Accept and Skip Review','string'),(48,'editorName','admininsada a','string'),(48,'submissionId','77','string'),(48,'decision','Send To Production','string'),(52,'fileStage','2','int'),(52,'revisedFileId',NULL,'string'),(52,'fileId','157','int'),(52,'fileRevision','1','int'),(52,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(52,'submissionId','78','int'),(52,'username','admin','string'),(53,'fileStage','2','int'),(53,'fileId','157','int'),(53,'fileRevision','1','int'),(53,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(53,'submissionId','78','int'),(53,'username','admin','string'),(53,'name','NasPUB Relaksasi.pdf','string'),(55,'name','admininsada a','string'),(55,'username','admin','string'),(55,'userGroupName','Journal editor','string'),(56,'editorName','admininsada a','string'),(56,'submissionId','78','string'),(56,'decision','Accept and Skip Review','string'),(57,'editorName','admininsada a','string'),(57,'submissionId','78','string'),(57,'decision','Send To Production','string'),(59,'fileStage','2','int'),(59,'revisedFileId',NULL,'string'),(59,'fileId','160','int'),(59,'fileRevision','1','int'),(59,'originalFileName','4. NASKAH PUBLIKASI Les.pdf','string'),(59,'submissionId','79','int'),(59,'username','admin','string'),(60,'fileStage','2','int'),(60,'fileId','160','int'),(60,'fileRevision','1','int'),(60,'originalFileName','4. NASKAH PUBLIKASI Les.pdf','string'),(60,'submissionId','79','int'),(60,'username','admin','string'),(60,'name','4. NASKAH PUBLIKASI Les.pdf','string'),(62,'name','editor editor','string'),(62,'username','editor','string'),(62,'userGroupName','Journal editor','string'),(63,'editorName','admininsada a','string'),(63,'submissionId','79','string'),(63,'decision','Accept and Skip Review','string'),(64,'editorName','admininsada a','string'),(64,'submissionId','79','string'),(64,'decision','Accept and Skip Review','string'),(65,'editorName','admininsada a','string'),(65,'submissionId','79','string'),(65,'decision','Send to Review','string'),(66,'name','editor editor','string'),(66,'username','editor','string'),(66,'userGroupName','Journal editor','string'),(67,'name','admininsada a','string'),(67,'username','admin','string'),(67,'userGroupName','Journal editor','string'),(68,'fileStage','6','int'),(68,'sourceFileId','160','int'),(68,'fileId','162','int'),(68,'fileRevision','1','int'),(68,'originalFileName','4. NASKAH PUBLIKASI Les.pdf','string'),(68,'submissionId','79','int'),(68,'username','admin','string'),(69,'editorName','admininsada a','string'),(69,'submissionId','79','string'),(69,'decision','Send To Production','string'),(71,'fileStage','2','int'),(71,'revisedFileId',NULL,'string'),(71,'fileId','164','int'),(71,'fileRevision','1','int'),(71,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(71,'submissionId','80','int'),(71,'username','admin','string'),(72,'fileStage','2','int'),(72,'fileId','164','int'),(72,'fileRevision','1','int'),(72,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(72,'submissionId','80','int'),(72,'username','admin','string'),(72,'name','5.NASKAH PUBLIKASI nur.pdf','string'),(74,'name','editor editor','string'),(74,'username','editor','string'),(74,'userGroupName','Journal editor','string'),(75,'editorName','admininsada a','string'),(75,'submissionId','80','string'),(75,'decision','Accept and Skip Review','string'),(76,'editorName','admininsada a','string'),(76,'submissionId','80','string'),(76,'decision','Send to Review','string'),(77,'fileStage','4','int'),(77,'revisedFileId',NULL,'string'),(77,'fileId','166','int'),(77,'fileRevision','1','int'),(77,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(77,'submissionId','80','int'),(77,'username','admin','string'),(78,'fileStage','4','int'),(78,'fileId','166','int'),(78,'fileRevision','1','int'),(78,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(78,'submissionId','80','int'),(78,'username','admin','string'),(78,'name','5.NASKAH PUBLIKASI nur.pdf','string'),(79,'name','admininsada a','string'),(79,'username','admin','string'),(79,'userGroupName','Journal editor','string'),(80,'name','admininsada a','string'),(80,'username','admin','string'),(80,'userGroupName','Journal editor','string'),(81,'editorName','admininsada a','string'),(81,'submissionId','80','string'),(81,'decision','Send to Review','string'),(82,'name','editor editor','string'),(82,'username','editor','string'),(82,'userGroupName','Journal editor','string'),(83,'name','editor editor','string'),(83,'username','editor','string'),(83,'userGroupName','Journal editor','string'),(84,'editorName','admininsada a','string'),(84,'submissionId','80','string'),(84,'decision','Accept and Skip Review','string'),(85,'fileStage','4','int'),(85,'fileId','167','int'),(85,'fileRevision','1','int'),(85,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(85,'submissionId','80','int'),(85,'username','admin','string'),(85,'name','5.NASKAH PUBLIKASI nur.pdf','string'),(86,'editorName','admininsada a','string'),(86,'submissionId','80','string'),(86,'decision','Decline Submission','string'),(87,'editorName','admininsada a','string'),(87,'submissionId','80','string'),(87,'decision','Send to Review','string'),(88,'editorName','admininsada a','string'),(88,'submissionId','80','string'),(88,'decision','Accept and Skip Review','string'),(90,'fileStage','2','int'),(90,'revisedFileId',NULL,'string'),(90,'fileId','171','int'),(90,'fileRevision','1','int'),(90,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(90,'submissionId','81','int'),(90,'username','admin','string'),(91,'fileStage','2','int'),(91,'fileId','171','int'),(91,'fileRevision','1','int'),(91,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(91,'submissionId','81','int'),(91,'username','admin','string'),(91,'name','5.NASKAH PUBLIKASI nur.pdf','string'),(93,'name','editor editor','string'),(93,'username','editor','string'),(93,'userGroupName','Journal editor','string'),(94,'editorName','admininsada a','string'),(94,'submissionId','81','string'),(94,'decision','Accept and Skip Review','string'),(95,'editorName','admininsada a','string'),(95,'submissionId','81','string'),(95,'decision','Send to Review','string'),(96,'name','admininsada a','string'),(96,'username','admin','string'),(96,'userGroupName','Journal editor','string'),(97,'editorName','admininsada a','string'),(97,'submissionId','81','string'),(97,'decision','Send To Production','string'),(99,'fileStage','2','int'),(99,'revisedFileId',NULL,'string'),(99,'fileId','174','int'),(99,'fileRevision','1','int'),(99,'originalFileName','6.Naskah Publikasi Belian Yogya.pdf','string'),(99,'submissionId','82','int'),(99,'username','admin','string'),(100,'fileStage','2','int'),(100,'fileId','174','int'),(100,'fileRevision','1','int'),(100,'originalFileName','6.Naskah Publikasi Belian Yogya.pdf','string'),(100,'submissionId','82','int'),(100,'username','admin','string'),(100,'name','6.Naskah Publikasi Belian Yogya.pdf','string'),(101,'fileStage','2','int'),(101,'revisedFileId','174','int'),(101,'fileId','174','int'),(101,'fileRevision','2','int'),(101,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(101,'submissionId','82','int'),(101,'username','admin','string'),(103,'name','editor editor','string'),(103,'username','editor','string'),(103,'userGroupName','Journal editor','string'),(104,'editorName','admininsada a','string'),(104,'submissionId','82','string'),(104,'decision','Send to Review','string'),(105,'fileStage','4','int'),(105,'sourceFileId','174','int'),(105,'fileId','175','int'),(105,'fileRevision','1','int'),(105,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(105,'submissionId','82','int'),(105,'username','admin','string'),(106,'fileStage','2','int'),(106,'sourceFileId',NULL,'string'),(106,'fileId','174','int'),(106,'fileRevision','2','int'),(106,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(106,'submissionId','82','int'),(106,'username','admin','string'),(107,'fileStage','2','int'),(107,'sourceFileId',NULL,'string'),(107,'fileId','174','int'),(107,'fileRevision','1','int'),(107,'originalFileName','6.Naskah Publikasi Belian Yogya.pdf','string'),(107,'submissionId','82','int'),(107,'username','admin','string'),(108,'title','6.Naskah Publikasi Belian Yogya.pdf','string'),(108,'submissionId','82','int'),(108,'username','admin','string'),(109,'fileStage','2','int'),(109,'revisedFileId',NULL,'string'),(109,'fileId','176','int'),(109,'fileRevision','1','int'),(109,'originalFileName','6.Naskah Publikasi Belian Yogya.pdf','string'),(109,'submissionId','82','int'),(109,'username','admin','string'),(110,'fileStage','2','int'),(110,'fileId','176','int'),(110,'fileRevision','1','int'),(110,'originalFileName','6.Naskah Publikasi Belian Yogya.pdf','string'),(110,'submissionId','82','int'),(110,'username','admin','string'),(110,'name','6.Naskah Publikasi Belian Yogya.pdf','string'),(111,'editorName','admininsada a','string'),(111,'submissionId','82','string'),(111,'decision','Send to Review','string'),(112,'name','admininsada a','string'),(112,'username','admin','string'),(112,'userGroupName','Journal editor','string'),(113,'name','editor editor','string'),(113,'username','editor','string'),(113,'userGroupName','Journal editor','string'),(114,'editorName','admininsada a','string'),(114,'submissionId','82','string'),(114,'decision','Send To Production','string'),(116,'fileStage','2','int'),(116,'revisedFileId',NULL,'string'),(116,'fileId','181','int'),(116,'fileRevision','1','int'),(116,'originalFileName','7.Naskah Publikasi Nida (PE-BBLR).pdf','string'),(116,'submissionId','83','int'),(116,'username','admin','string'),(117,'fileStage','2','int'),(117,'fileId','181','int'),(117,'fileRevision','1','int'),(117,'originalFileName','7.Naskah Publikasi Nida (PE-BBLR).pdf','string'),(117,'submissionId','83','int'),(117,'username','admin','string'),(117,'name','admin, 7.Naskah Publikasi Nida (PE-BBLR).pdf','string'),(119,'name','editor editor','string'),(119,'username','editor','string'),(119,'userGroupName','Journal editor','string'),(120,'editorName','admininsada a','string'),(120,'submissionId','83','string'),(120,'decision','Accept and Skip Review','string'),(121,'editorName','admininsada a','string'),(121,'submissionId','83','string'),(121,'decision','Send to Review','string'),(122,'name','admininsada a','string'),(122,'username','admin','string'),(122,'userGroupName','Journal editor','string'),(123,'editorName','admininsada a','string'),(123,'submissionId','83','string'),(123,'decision','Send to Review','string'),(124,'editorName','admininsada a','string'),(124,'submissionId','83','string'),(124,'decision','Send To Production','string'),(126,'fileStage','11','int'),(126,'revisedFileId',NULL,'string'),(126,'fileId','186','int'),(126,'fileRevision','1','int'),(126,'originalFileName','2. Tatik-les 2016.pdf','string'),(126,'submissionId','76','int'),(126,'username','admin','string'),(127,'fileStage','11','int'),(127,'fileId','186','int'),(127,'fileRevision','1','int'),(127,'originalFileName','2. Tatik-les 2016.pdf','string'),(127,'submissionId','76','int'),(127,'username','admin','string'),(127,'name','admin, 2. Tatik-les 2016.pdf','string'),(129,'editorName','admininsada a','string'),(129,'submissionId','54','string'),(129,'decision','Send To Production','string'),(130,'fileStage','11','int'),(130,'revisedFileId',NULL,'string'),(130,'fileId','187','int'),(130,'fileRevision','1','int'),(130,'originalFileName','1. Publikasi Ririn.pdf','string'),(130,'submissionId','77','int'),(130,'username','admin','string'),(131,'fileStage','11','int'),(131,'fileId','187','int'),(131,'fileRevision','1','int'),(131,'originalFileName','1. Publikasi Ririn.pdf','string'),(131,'submissionId','77','int'),(131,'username','admin','string'),(131,'name','admin, 1. Publikasi Ririn.pdf','string'),(132,'fileStage','18','int'),(132,'revisedFileId',NULL,'string'),(132,'fileId','188','int'),(132,'fileRevision','1','int'),(132,'originalFileName','1. Publikasi Ririn.pdf','string'),(132,'submissionId','77','int'),(132,'username','admin','string'),(133,'fileStage','18','int'),(133,'fileId','188','int'),(133,'fileRevision','1','int'),(133,'originalFileName','1. Publikasi Ririn.pdf','string'),(133,'submissionId','77','int'),(133,'username','admin','string'),(133,'name','admin, 1. Publikasi Ririn.pdf','string'),(135,'fileStage','18','int'),(135,'sourceFileId','159','int'),(135,'fileId','190','int'),(135,'fileRevision','1','int'),(135,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(135,'submissionId','78','int'),(135,'username','admin','string'),(136,'editorName','admininsada a','string'),(136,'submissionId','78','string'),(136,'decision','Accept and Skip Review','string'),(137,'editorName','admininsada a','string'),(137,'submissionId','78','string'),(137,'decision','Send To Production','string'),(139,'editorName','admininsada a','string'),(139,'submissionId','78','string'),(139,'decision','Send to Review','string'),(140,'name','admininsada a','string'),(140,'username','admin','string'),(140,'userGroupName','Journal editor','string'),(141,'name','editor editor','string'),(141,'username','editor','string'),(141,'userGroupName','Journal editor','string'),(142,'name','admininsada a','string'),(142,'username','admin','string'),(142,'userGroupName','Journal editor','string'),(143,'fileStage','6','int'),(143,'sourceFileId','157','int'),(143,'fileId','193','int'),(143,'fileRevision','1','int'),(143,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(143,'submissionId','78','int'),(143,'username','admin','string'),(144,'editorName','admininsada a','string'),(144,'submissionId','78','string'),(144,'decision','Send To Production','string'),(145,'fileStage','11','int'),(145,'sourceFileId','195','int'),(145,'fileId','196','int'),(145,'fileRevision','1','int'),(145,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(145,'submissionId','78','int'),(145,'username','admin','string'),(147,'fileStage','2','int'),(147,'revisedFileId',NULL,'string'),(147,'fileId','197','int'),(147,'fileRevision','1','int'),(147,'originalFileName','8.NASKAH PUBLIKASI putri.pdf','string'),(147,'submissionId','84','int'),(147,'username','admin','string'),(148,'fileStage','2','int'),(148,'fileId','197','int'),(148,'fileRevision','1','int'),(148,'originalFileName','8.NASKAH PUBLIKASI putri.pdf','string'),(148,'submissionId','84','int'),(148,'username','admin','string'),(148,'name','admin, 8.NASKAH PUBLIKASI putri.pdf','string'),(150,'name','editor editor','string'),(150,'username','editor','string'),(150,'userGroupName','Journal editor','string'),(151,'editorName','admininsada a','string'),(151,'submissionId','84','string'),(151,'decision','Send to Review','string'),(152,'name','admininsada a','string'),(152,'username','admin','string'),(152,'userGroupName','Journal editor','string'),(153,'editorName','admininsada a','string'),(153,'submissionId','84','string'),(153,'decision','Accept and Skip Review','string'),(154,'editorName','admininsada a','string'),(154,'submissionId','84','string'),(154,'decision','Send To Production','string'),(156,'fileStage','2','int'),(156,'revisedFileId',NULL,'string'),(156,'fileId','200','int'),(156,'fileRevision','1','int'),(156,'originalFileName','1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(156,'submissionId','85','int'),(156,'username','admin','string'),(157,'fileStage','2','int'),(157,'fileId','200','int'),(157,'fileRevision','1','int'),(157,'originalFileName','1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(157,'submissionId','85','int'),(157,'username','admin','string'),(157,'name','admin, 1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(159,'fileStage','2','int'),(159,'fileId','200','int'),(159,'fileRevision','1','int'),(159,'originalFileName','1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(159,'submissionId','85','int'),(159,'username','admin','string'),(159,'name','1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(160,'name','editor editor','string'),(160,'username','editor','string'),(160,'userGroupName','Journal editor','string'),(161,'editorName','admininsada a','string'),(161,'submissionId','85','string'),(161,'decision','Accept and Skip Review','string'),(162,'editorName','admininsada a','string'),(162,'submissionId','85','string'),(162,'decision','Send to Review','string'),(163,'name','admininsada a','string'),(163,'username','admin','string'),(163,'userGroupName','Journal editor','string'),(164,'editorName','admininsada a','string'),(164,'submissionId','85','string'),(164,'decision','Send To Production','string'),(168,'fileStage','11','int'),(168,'revisedFileId',NULL,'string'),(168,'fileId','203','int'),(168,'fileRevision','1','int'),(168,'originalFileName','1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(168,'submissionId','85','int'),(168,'username','admin','string'),(169,'fileStage','11','int'),(169,'fileId','203','int'),(169,'fileRevision','1','int'),(169,'originalFileName','1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(169,'submissionId','85','int'),(169,'username','admin','string'),(169,'name','admin, 1. KOREKSI NASKAH PUBLIKASI Saka.pdf','string'),(171,'fileStage','2','int'),(171,'revisedFileId',NULL,'string'),(171,'fileId','204','int'),(171,'fileRevision','1','int'),(171,'originalFileName','2 jurnal yuni unissula.pdf','string'),(171,'submissionId','86','int'),(171,'username','admin','string'),(172,'fileStage','2','int'),(172,'fileId','204','int'),(172,'fileRevision','1','int'),(172,'originalFileName','2 jurnal yuni unissula.pdf','string'),(172,'submissionId','86','int'),(172,'username','admin','string'),(172,'name','admin, 2 jurnal yuni unissula.pdf','string'),(174,'name','editor editor','string'),(174,'username','editor','string'),(174,'userGroupName','Journal editor','string'),(175,'editorName','admininsada a','string'),(175,'submissionId','86','string'),(175,'decision','Send to Review','string'),(176,'name','admininsada a','string'),(176,'username','admin','string'),(176,'userGroupName','Journal editor','string'),(177,'editorName','admininsada a','string'),(177,'submissionId','86','string'),(177,'decision','Accept and Skip Review','string'),(178,'editorName','admininsada a','string'),(178,'submissionId','86','string'),(178,'decision','Send To Production','string'),(181,'fileStage','2','int'),(181,'revisedFileId',NULL,'string'),(181,'fileId','207','int'),(181,'fileRevision','1','int'),(181,'originalFileName','3. JURNAL PSIKOSOMATIS mbak Andri.pdf','string'),(181,'submissionId','87','int'),(181,'username','admin','string'),(182,'fileStage','2','int'),(182,'fileId','207','int'),(182,'fileRevision','1','int'),(182,'originalFileName','3. JURNAL PSIKOSOMATIS mbak Andri.pdf','string'),(182,'submissionId','87','int'),(182,'username','admin','string'),(182,'name','admin, 3. JURNAL PSIKOSOMATIS mbak Andri.pdf','string'),(184,'name','editor editor','string'),(184,'username','editor','string'),(184,'userGroupName','Journal editor','string'),(185,'editorName','admininsada a','string'),(185,'submissionId','87','string'),(185,'decision','Send to Review','string'),(186,'editorName','admininsada a','string'),(186,'submissionId','87','string'),(186,'decision','Accept and Skip Review','string'),(187,'name','editor editor','string'),(187,'username','editor','string'),(187,'userGroupName','Journal editor','string'),(188,'name','admininsada a','string'),(188,'username','admin','string'),(188,'userGroupName','Journal editor','string'),(189,'editorName','admininsada a','string'),(189,'submissionId','87','string'),(189,'decision','Accept and Skip Review','string'),(190,'fileStage','6','int'),(190,'sourceFileId','207','int'),(190,'fileId','210','int'),(190,'fileRevision','1','int'),(190,'originalFileName','3. JURNAL PSIKOSOMATIS mbak Andri.pdf','string'),(190,'submissionId','87','int'),(190,'username','admin','string'),(191,'editorName','admininsada a','string'),(191,'submissionId','87','string'),(191,'decision','Send To Production','string'),(193,'fileStage','2','int'),(193,'revisedFileId',NULL,'string'),(193,'fileId','211','int'),(193,'fileRevision','1','int'),(193,'originalFileName','4. Jurnal Ririn - IVA.pdf','string'),(193,'submissionId','88','int'),(193,'username','admin','string'),(194,'fileStage','2','int'),(194,'fileId','211','int'),(194,'fileRevision','1','int'),(194,'originalFileName','4. Jurnal Ririn - IVA.pdf','string'),(194,'submissionId','88','int'),(194,'username','admin','string'),(194,'name','admin, 4. Jurnal Ririn - IVA.pdf','string'),(196,'name','editor editor','string'),(196,'username','editor','string'),(196,'userGroupName','Journal editor','string'),(197,'editorName','admininsada a','string'),(197,'submissionId','88','string'),(197,'decision','Send to Review','string'),(198,'name','editor editor','string'),(198,'username','editor','string'),(198,'userGroupName','Journal editor','string'),(199,'name','admininsada a','string'),(199,'username','admin','string'),(199,'userGroupName','Journal editor','string'),(200,'editorName','admininsada a','string'),(200,'submissionId','88','string'),(200,'decision','Accept and Skip Review','string'),(201,'editorName','admininsada a','string'),(201,'submissionId','88','string'),(201,'decision','Send To Production','string'),(203,'fileStage','2','int'),(203,'revisedFileId',NULL,'string'),(203,'fileId','214','int'),(203,'fileRevision','1','int'),(203,'originalFileName','5. JURNAL AJENG UNTUK INSANI HUSADA MARET 2018.pdf','string'),(203,'submissionId','89','int'),(203,'username','admin','string'),(204,'fileStage','2','int'),(204,'fileId','214','int'),(204,'fileRevision','1','int'),(204,'originalFileName','5. JURNAL AJENG UNTUK INSANI HUSADA MARET 2018.pdf','string'),(204,'submissionId','89','int'),(204,'username','admin','string'),(204,'name','admin, 5. JURNAL AJENG UNTUK INSANI HUSADA MARET 2018.pdf','string'),(206,'name','editor editor','string'),(206,'username','editor','string'),(206,'userGroupName','Journal editor','string'),(207,'editorName','admininsada a','string'),(207,'submissionId','89','string'),(207,'decision','Send to Review','string'),(209,'editorName','admininsada a','string'),(209,'submissionId','89','string'),(209,'decision','Accept and Skip Review','string'),(210,'name','editor editor','string'),(210,'username','editor','string'),(210,'userGroupName','Journal editor','string'),(211,'name','editor editor','string'),(211,'username','editor','string'),(211,'userGroupName','Journal editor','string'),(212,'editorName','admininsada a','string'),(212,'submissionId','89','string'),(212,'decision','Accept and Skip Review','string'),(213,'name','admininsada a','string'),(213,'username','admin','string'),(213,'userGroupName','Journal editor','string'),(214,'fileStage','6','int'),(214,'sourceFileId','214','int'),(214,'fileId','217','int'),(214,'fileRevision','1','int'),(214,'originalFileName','5. JURNAL AJENG UNTUK INSANI HUSADA MARET 2018.pdf','string'),(214,'submissionId','89','int'),(214,'username','admin','string'),(215,'editorName','admininsada a','string'),(215,'submissionId','89','string'),(215,'decision','Send To Production','string'),(217,'fileStage','2','int'),(217,'revisedFileId',NULL,'string'),(217,'fileId','219','int'),(217,'fileRevision','1','int'),(217,'originalFileName','6. PENGARUH FOAM ROLLERS MASSAGE TERHADAP KADAR ASAM LAKTAT (JOURNAL INSIDA).pdf','string'),(217,'submissionId','90','int'),(217,'username','admin','string'),(218,'fileStage','2','int'),(218,'fileId','219','int'),(218,'fileRevision','1','int'),(218,'originalFileName','6. PENGARUH FOAM ROLLERS MASSAGE TERHADAP KADAR ASAM LAKTAT (JOURNAL INSIDA).pdf','string'),(218,'submissionId','90','int'),(218,'username','admin','string'),(218,'name','admin, 6. PENGARUH FOAM ROLLERS MASSAGE TERHADAP KADAR ASAM LAKTAT (JOURNAL INSIDA).pdf','string'),(220,'name','editor editor','string'),(220,'username','editor','string'),(220,'userGroupName','Journal editor','string'),(221,'editorName','admininsada a','string'),(221,'submissionId','90','string'),(221,'decision','Send to Review','string'),(222,'editorName','admininsada a','string'),(222,'submissionId','90','string'),(222,'decision','Accept and Skip Review','string'),(223,'name','editor editor','string'),(223,'username','editor','string'),(223,'userGroupName','Journal editor','string'),(224,'name','admininsada a','string'),(224,'username','admin','string'),(224,'userGroupName','Journal editor','string'),(225,'editorName','admininsada a','string'),(225,'submissionId','90','string'),(225,'decision','Send To Production','string'),(226,'editorName','admininsada a','string'),(226,'submissionId','90','string'),(226,'decision','Send To Production','string'),(227,'editorName','admininsada a','string'),(227,'submissionId','90','string'),(227,'decision','Send To Production','string'),(229,'fileStage','2','int'),(229,'revisedFileId',NULL,'string'),(229,'fileId','223','int'),(229,'fileRevision','1','int'),(229,'originalFileName','7. FAKTOR-FAKTOR.pdf','string'),(229,'submissionId','91','int'),(229,'username','admin','string'),(230,'fileStage','2','int'),(230,'fileId','223','int'),(230,'fileRevision','1','int'),(230,'originalFileName','7. FAKTOR-FAKTOR.pdf','string'),(230,'submissionId','91','int'),(230,'username','admin','string'),(230,'name','admin, 7. FAKTOR-FAKTOR.pdf','string'),(232,'name','admininsada a','string'),(232,'username','admin','string'),(232,'userGroupName','Journal editor','string'),(233,'editorName','admininsada a','string'),(233,'submissionId','91','string'),(233,'decision','Send to Review','string'),(234,'editorName','admininsada a','string'),(234,'submissionId','91','string'),(234,'decision','Accept and Skip Review','string'),(235,'editorName','admininsada a','string'),(235,'submissionId','91','string'),(235,'decision','Send To Production','string'),(237,'fileStage','2','int'),(237,'revisedFileId',NULL,'string'),(237,'fileId','227','int'),(237,'fileRevision','1','int'),(237,'originalFileName','coba.txt','string'),(237,'submissionId','92','int'),(237,'username','admin','string'),(261,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(261,'fileRevision','1','int'),(261,'fileId','236','int'),(261,'revisedFileId',NULL,'string'),(261,'fileStage','2','int'),(239,'fileStage','2','int'),(239,'sourceFileId',NULL,'string'),(239,'fileId','227','int'),(239,'fileRevision','1','int'),(239,'originalFileName','coba.txt','string'),(239,'submissionId','92','int'),(239,'username','admin','string'),(262,'fileStage','2','int'),(261,'username','admin','string'),(261,'submissionId','99','int'),(241,'fileStage','2','int'),(241,'revisedFileId',NULL,'string'),(241,'fileId','228','int'),(241,'fileRevision','1','int'),(241,'originalFileName','ASUHAN KEPERAWATAN MEDIKAL BEDAH DENGAN KANKER PARU.docx','string'),(241,'submissionId','93','int'),(241,'username','artialita','string'),(242,'fileStage','2','int'),(242,'revisedFileId','228','int'),(242,'fileId','228','int'),(242,'fileRevision','2','int'),(242,'originalFileName','ASUHAN KEPERAWATAN MEDIKAL BEDAH DENGAN KANKER PARU.docx','string'),(242,'submissionId','93','int'),(242,'username','artialita','string'),(243,'fileStage','2','int'),(243,'fileId','228','int'),(243,'fileRevision','2','int'),(243,'originalFileName','ASUHAN KEPERAWATAN MEDIKAL BEDAH DENGAN KANKER PARU.docx','string'),(243,'submissionId','93','int'),(243,'username','artialita','string'),(243,'name','artialita, ASUHAN KEPERAWATAN MEDIKAL BEDAH DENGAN KANKER PARU.docx','string'),(245,'fileStage','2','int'),(245,'revisedFileId',NULL,'string'),(245,'fileId','229','int'),(245,'fileRevision','1','int'),(245,'originalFileName','PUBLIKASI ASUHAN KEPERAWATAN KANKER PAYUDARA.docx','string'),(245,'submissionId','94','int'),(245,'username','mudafiqoh01','string'),(247,'fileStage','2','int'),(247,'revisedFileId',NULL,'string'),(247,'fileId','230','int'),(247,'fileRevision','1','int'),(247,'originalFileName','NASPUB SC PRE EKLAMPSIA.pdf','string'),(247,'submissionId','95','int'),(247,'username','yustinsapti3','string'),(248,'fileStage','2','int'),(248,'fileId','230','int'),(248,'fileRevision','1','int'),(248,'originalFileName','NASPUB SC PRE EKLAMPSIA.pdf','string'),(248,'submissionId','95','int'),(248,'username','yustinsapti3','string'),(248,'name','yustinsapti3, NASPUB SC PRE EKLAMPSIA.pdf','string'),(250,'fileStage','2','int'),(250,'revisedFileId',NULL,'string'),(250,'fileId','231','int'),(250,'fileRevision','1','int'),(250,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(250,'submissionId','96','int'),(250,'username','admin','string'),(251,'fileStage','2','int'),(251,'fileId','231','int'),(251,'fileRevision','1','int'),(251,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(251,'submissionId','96','int'),(251,'username','admin','string'),(251,'name','admin, 1.JURNAL TYAS 20162017 R1.pdf','string'),(253,'fileStage','2','int'),(253,'revisedFileId',NULL,'string'),(253,'fileId','232','int'),(253,'fileRevision','1','int'),(253,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(253,'submissionId','97','int'),(253,'username','admin','string'),(262,'username','admin','string'),(262,'submissionId','99','int'),(262,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(262,'fileRevision','1','int'),(262,'fileId','236','int'),(255,'fileStage','2','int'),(255,'revisedFileId',NULL,'string'),(255,'fileId','233','int'),(255,'fileRevision','1','int'),(255,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(255,'submissionId','98','int'),(255,'username','admin','string'),(256,'fileStage','2','int'),(256,'fileId','233','int'),(256,'fileRevision','1','int'),(256,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(256,'submissionId','98','int'),(256,'username','admin','string'),(256,'name','admin, 1.JURNAL TYAS 20162017 R1.pdf','string'),(258,'name','admininsada a','string'),(258,'username','admin','string'),(258,'userGroupName','Journal editor','string'),(259,'editorName','admininsada a','string'),(259,'submissionId','98','string'),(259,'decision','Send to Review','string'),(260,'editorName','admininsada a','string'),(260,'submissionId','98','string'),(260,'decision','Send to Review','string'),(262,'name','admin, 1.JURNAL TYAS 20162017 R1.pdf','string'),(265,'name','admininsada a','string'),(265,'username','admin','string'),(265,'userGroupName','Journal editor','string'),(266,'editorName','admininsada a','string'),(266,'submissionId','99','string'),(266,'decision','Send to Review','string'),(267,'fileStage','15','int'),(267,'revisedFileId','237','int'),(267,'fileId','238','int'),(267,'fileRevision','1','int'),(267,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(267,'submissionId','99','int'),(267,'username','admin','string'),(268,'fileStage','15','int'),(268,'fileId','238','int'),(268,'fileRevision','1','int'),(268,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(268,'submissionId','99','int'),(268,'username','admin','string'),(268,'name','Article Text, 1.JURNAL TYAS 20162017 R1.pdf','string'),(269,'name','editor editor','string'),(269,'username','editor','string'),(269,'userGroupName','Journal editor','string'),(270,'name','admininsada a','string'),(270,'username','admin','string'),(270,'userGroupName','Journal editor','string'),(271,'name','admininsada a','string'),(271,'username','admin','string'),(271,'userGroupName','Journal editor','string'),(272,'name','admininsada a','string'),(272,'username','admin','string'),(272,'userGroupName','Journal editor','string'),(273,'name','penulis penulis','string'),(273,'username','penulis','string'),(273,'userGroupName','Author','string'),(274,'name','admininsada a','string'),(274,'username','admin','string'),(274,'userGroupName','Journal editor','string'),(275,'fileStage','15','int'),(275,'sourceFileId','237','int'),(275,'fileId','238','int'),(275,'fileRevision','1','int'),(275,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(275,'submissionId','99','int'),(275,'username','admin','string'),(276,'fileStage','4','int'),(276,'sourceFileId','236','int'),(276,'fileId','237','int'),(276,'fileRevision','1','int'),(276,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(276,'submissionId','99','int'),(276,'username','admin','string'),(277,'editorName','admininsada a','string'),(277,'submissionId','99','string'),(277,'decision','Send To Production','string'),(279,'fileStage','18','int'),(279,'revisedFileId',NULL,'string'),(279,'fileId','242','int'),(279,'fileRevision','1','int'),(279,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(279,'submissionId','99','int'),(279,'username','admin','string'),(280,'fileStage','18','int'),(280,'fileId','242','int'),(280,'fileRevision','1','int'),(280,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(280,'submissionId','99','int'),(280,'username','admin','string'),(280,'name','admin, 1.JURNAL TYAS 20162017 R1.pdf','string'),(283,'fileStage','2','int'),(283,'revisedFileId',NULL,'string'),(283,'fileId','243','int'),(283,'fileRevision','1','int'),(283,'originalFileName','2.ARTIKEL KUALITATIF SRI WAHYUNI.pdf','string'),(283,'submissionId','100','int'),(283,'username','admin','string'),(284,'fileStage','2','int'),(284,'fileId','243','int'),(284,'fileRevision','1','int'),(284,'originalFileName','2.ARTIKEL KUALITATIF SRI WAHYUNI.pdf','string'),(284,'submissionId','100','int'),(284,'username','admin','string'),(284,'name','admin, 2.ARTIKEL KUALITATIF SRI WAHYUNI.pdf','string'),(286,'name','admininsada a','string'),(286,'username','admin','string'),(286,'userGroupName','Journal editor','string'),(287,'editorName','admininsada a','string'),(287,'submissionId','100','string'),(287,'decision','Accept and Skip Review','string'),(288,'editorName','admininsada a','string'),(288,'submissionId','100','string'),(288,'decision','Send To Production','string'),(291,'fileStage','2','int'),(291,'revisedFileId',NULL,'string'),(291,'fileId','246','int'),(291,'fileRevision','1','int'),(291,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(291,'submissionId','101','int'),(291,'username','admin','string'),(313,'fileStage','2','int'),(313,'revisedFileId',NULL,'string'),(318,'fileRevision','1','int'),(318,'fileId','259','int'),(317,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(293,'fileStage','2','int'),(293,'revisedFileId',NULL,'string'),(293,'fileId','247','int'),(293,'fileRevision','1','int'),(293,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(293,'submissionId','102','int'),(293,'username','admin','string'),(318,'revisedFileId',NULL,'string'),(318,'fileStage','2','int'),(317,'username','admin','string'),(317,'submissionId','109','int'),(311,'submissionId','107','int'),(311,'username','admin','string'),(295,'fileStage','2','int'),(295,'revisedFileId',NULL,'string'),(295,'fileId','248','int'),(295,'fileRevision','1','int'),(295,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(295,'submissionId','103','int'),(295,'username','admin','string'),(313,'username','admin','string'),(313,'submissionId','108','int'),(313,'originalFileName','5.jurnal nurwahida puspitasari.pdf','string'),(313,'fileRevision','1','int'),(313,'fileId','257','int'),(297,'fileStage','2','int'),(297,'revisedFileId',NULL,'string'),(297,'fileId','249','int'),(297,'fileRevision','1','int'),(297,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(297,'submissionId','104','int'),(297,'username','admin','string'),(311,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(311,'fileRevision','1','int'),(311,'fileId','256','int'),(311,'revisedFileId',NULL,'string'),(311,'fileStage','2','int'),(299,'fileStage','2','int'),(299,'revisedFileId',NULL,'string'),(299,'fileId','250','int'),(299,'fileRevision','1','int'),(299,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(299,'submissionId','105','int'),(299,'username','admin','string'),(300,'fileStage','2','int'),(300,'fileId','250','int'),(300,'fileRevision','1','int'),(300,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(300,'submissionId','105','int'),(300,'username','admin','string'),(300,'name','admin, 4. luluk khusnul Juli 2018_2018.pdf','string'),(302,'name','editor editor','string'),(302,'username','editor','string'),(302,'userGroupName','Journal editor','string'),(303,'editorName','admininsada a','string'),(303,'submissionId','105','string'),(303,'decision','Accept and Skip Review','string'),(304,'fileStage','2','int'),(304,'revisedFileId',NULL,'string'),(304,'fileId','253','int'),(304,'fileRevision','1','int'),(304,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(304,'submissionId','106','int'),(304,'username','admin','string'),(305,'fileStage','2','int'),(305,'fileId','253','int'),(305,'fileRevision','1','int'),(305,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(305,'submissionId','106','int'),(305,'username','admin','string'),(305,'name','admin, 4. luluk khusnul Juli 2018_2018.pdf','string'),(307,'name','editor editor','string'),(307,'username','editor','string'),(307,'userGroupName','Journal editor','string'),(308,'editorName','admininsada a','string'),(308,'submissionId','106','string'),(308,'decision','Accept and Skip Review','string'),(309,'fileStage','2','int'),(309,'revisedFileId',NULL,'string'),(309,'fileId','255','int'),(309,'fileRevision','1','int'),(309,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(309,'submissionId','107','int'),(309,'username','admin','string'),(317,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(317,'fileRevision','1','int'),(317,'fileId','258','int'),(317,'fileStage','2','int'),(316,'username','admin','string'),(316,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(316,'submissionId','109','int'),(316,'fileRevision','1','int'),(316,'fileId','258','int'),(316,'fileStage','2','int'),(316,'revisedFileId',NULL,'string'),(318,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(318,'submissionId','110','int'),(318,'username','admin','string'),(319,'fileStage','2','int'),(319,'fileId','259','int'),(319,'fileRevision','1','int'),(319,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(319,'submissionId','110','int'),(319,'username','admin','string'),(319,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(320,'fileStage','2','int'),(320,'revisedFileId','259','int'),(320,'fileId','259','int'),(320,'fileRevision','2','int'),(320,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(320,'submissionId','110','int'),(320,'username','admin','string'),(321,'fileStage','2','int'),(321,'fileId','259','int'),(321,'fileRevision','2','int'),(321,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(321,'submissionId','110','int'),(321,'username','admin','string'),(321,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(322,'fileStage','2','int'),(322,'revisedFileId',NULL,'string'),(322,'fileId','260','int'),(322,'fileRevision','1','int'),(322,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(322,'submissionId','111','int'),(322,'username','admin','string'),(323,'fileStage','2','int'),(323,'fileId','260','int'),(323,'fileRevision','1','int'),(323,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(323,'submissionId','111','int'),(323,'username','admin','string'),(323,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(324,'fileStage','2','int'),(324,'revisedFileId',NULL,'string'),(324,'fileId','261','int'),(324,'fileRevision','1','int'),(324,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(324,'submissionId','112','int'),(324,'username','admin','string'),(325,'fileStage','2','int'),(325,'fileId','261','int'),(325,'fileRevision','1','int'),(325,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(325,'submissionId','112','int'),(325,'username','admin','string'),(325,'name','admin, 4. luluk khusnul Juli 2018_2018.pdf','string'),(327,'name','editor editor','string'),(327,'username','editor','string'),(327,'userGroupName','Journal editor','string'),(328,'editorName','admininsada a','string'),(328,'submissionId','112','string'),(328,'decision','Accept and Skip Review','string'),(329,'fileStage','2','int'),(329,'revisedFileId',NULL,'string'),(329,'fileId','263','int'),(329,'fileRevision','1','int'),(329,'originalFileName','5.jurnal nurwahida puspitasari.pdf','string'),(329,'submissionId','113','int'),(329,'username','admin','string'),(330,'fileStage','2','int'),(330,'fileId','263','int'),(330,'fileRevision','1','int'),(330,'originalFileName','5.jurnal nurwahida puspitasari.pdf','string'),(330,'submissionId','113','int'),(330,'username','admin','string'),(330,'name','admin, 5.jurnal nurwahida puspitasari.pdf','string'),(331,'fileStage','2','int'),(331,'revisedFileId',NULL,'string'),(331,'fileId','264','int'),(331,'fileRevision','1','int'),(331,'originalFileName','6.PHBS SAKA.pdf','string'),(331,'submissionId','114','int'),(331,'username','admin','string'),(332,'fileStage','2','int'),(332,'fileId','264','int'),(332,'fileRevision','1','int'),(332,'originalFileName','6.PHBS SAKA.pdf','string'),(332,'submissionId','114','int'),(332,'username','admin','string'),(332,'name','admin, 6.PHBS SAKA.pdf','string'),(334,'name','admininsada a','string'),(334,'username','admin','string'),(334,'userGroupName','Funding coordinator','string'),(335,'name','admininsada a','string'),(335,'username','admin','string'),(335,'userGroupName','Author','string'),(336,'name','admininsada a','string'),(336,'username','admin','string'),(336,'userGroupName','Journal editor','string'),(338,'editorName','admininsada a','string'),(338,'submissionId','113','string'),(338,'decision','Accept and Skip Review','string'),(339,'name','admininsada a','string'),(339,'username','admin','string'),(339,'userGroupName','Journal editor','string'),(340,'editorName','admininsada a','string'),(340,'submissionId','113','string'),(340,'decision','Send To Production','string'),(342,'editorName','admininsada a','string'),(342,'submissionId','114','string'),(342,'decision','Send to Review','string'),(343,'fileStage','15','int'),(343,'revisedFileId','266','int'),(343,'fileId','267','int'),(343,'fileRevision','1','int'),(343,'originalFileName','6.PHBS SAKA.pdf','string'),(343,'submissionId','114','int'),(343,'username','admin','string'),(344,'fileStage','15','int'),(344,'fileId','267','int'),(344,'fileRevision','1','int'),(344,'originalFileName','6.PHBS SAKA.pdf','string'),(344,'submissionId','114','int'),(344,'username','admin','string'),(344,'name','Article Text, 6.PHBS SAKA.pdf','string'),(345,'editorName','admininsada a','string'),(345,'submissionId','114','string'),(345,'decision','Accept and Skip Review','string'),(346,'editorName','admininsada a','string'),(346,'submissionId','114','string'),(346,'decision','Send To Production','string'),(347,'fileStage','11','int'),(347,'revisedFileId',NULL,'string'),(347,'fileId','270','int'),(347,'fileRevision','1','int'),(347,'originalFileName','6.PHBS SAKA.pdf','string'),(347,'submissionId','114','int'),(347,'username','admin','string'),(348,'fileStage','2','int'),(348,'revisedFileId',NULL,'string'),(348,'fileId','271','int'),(348,'fileRevision','1','int'),(348,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(348,'submissionId','115','int'),(348,'username','admin','string'),(349,'fileStage','11','int'),(349,'fileId','270','int'),(349,'fileRevision','1','int'),(349,'originalFileName','6.PHBS SAKA.pdf','string'),(349,'submissionId','114','int'),(349,'username','admin','string'),(349,'name','admin, 6.PHBS SAKA.pdf','string'),(350,'fileStage','2','int'),(350,'fileId','271','int'),(350,'fileRevision','1','int'),(350,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(350,'submissionId','115','int'),(350,'username','admin','string'),(350,'name','admin, 4. luluk khusnul Juli 2018_2018.pdf','string'),(354,'name','admininsada a','string'),(354,'username','admin','string'),(354,'userGroupName','Funding coordinator','string'),(355,'name','admininsada a','string'),(355,'username','admin','string'),(355,'userGroupName','Author','string'),(356,'name','admininsada a','string'),(356,'username','admin','string'),(356,'userGroupName','Journal editor','string'),(357,'editorName','admininsada a','string'),(357,'submissionId','115','string'),(357,'decision','Accept and Skip Review','string'),(358,'editorName','admininsada a','string'),(358,'submissionId','115','string'),(358,'decision','Send To Production','string'),(360,'fileStage','2','int'),(360,'revisedFileId',NULL,'string'),(360,'fileId','273','int'),(360,'fileRevision','1','int'),(360,'originalFileName','7.ABSTRAK propku.pdf','string'),(360,'submissionId','116','int'),(360,'username','admin','string'),(361,'fileStage','2','int'),(361,'fileId','273','int'),(361,'fileRevision','1','int'),(361,'originalFileName','7.ABSTRAK propku.pdf','string'),(361,'submissionId','116','int'),(361,'username','admin','string'),(361,'name','admin, 7.ABSTRAK propku.pdf','string'),(362,'fileStage','2','int'),(362,'revisedFileId',NULL,'string'),(362,'fileId','274','int'),(362,'fileRevision','1','int'),(362,'originalFileName','naskah Publikasi.docx','string'),(362,'submissionId','117','int'),(362,'username','ririnwahyu','string'),(363,'fileStage','2','int'),(363,'fileId','274','int'),(363,'fileRevision','1','int'),(363,'originalFileName','naskah Publikasi.docx','string'),(363,'submissionId','117','int'),(363,'username','ririnwahyu','string'),(363,'name','ririnwahyu@unisayogya.ac.id (naskah Publikasi).docx','string'),(364,'fileStage','2','int'),(364,'revisedFileId','274','int'),(364,'fileId','274','int'),(364,'fileRevision','2','int'),(364,'originalFileName','naskah Publikasi.docx','string'),(364,'submissionId','117','int'),(364,'username','ririnwahyu','string'),(365,'fileStage','2','int'),(365,'fileId','274','int'),(365,'fileRevision','2','int'),(365,'originalFileName','naskah Publikasi.docx','string'),(365,'submissionId','117','int'),(365,'username','ririnwahyu','string'),(365,'name','ririnwahyu, naskah Publikasi.docx','string'),(366,'fileStage','2','int'),(366,'revisedFileId',NULL,'string'),(366,'fileId','275','int'),(366,'fileRevision','1','int'),(366,'originalFileName','pass.txt','string'),(366,'submissionId','118','int'),(366,'username','admin','string'),(367,'fileStage','2','int'),(367,'sourceFileId',NULL,'string'),(367,'fileId','275','int'),(367,'fileRevision','1','int'),(367,'originalFileName','pass.txt','string'),(367,'submissionId','118','int'),(367,'username','admin','string'),(368,'title','pass.txt','string'),(368,'submissionId','118','int'),(368,'username','admin','string'),(369,'fileStage','2','int'),(369,'revisedFileId',NULL,'string'),(369,'fileId','276','int'),(369,'fileRevision','1','int'),(369,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(369,'submissionId','118','int'),(369,'username','admin','string'),(370,'fileStage','2','int'),(370,'fileId','276','int'),(370,'fileRevision','1','int'),(370,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(370,'submissionId','118','int'),(370,'username','admin','string'),(370,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(371,'fileStage','2','int'),(371,'revisedFileId',NULL,'string'),(371,'fileId','277','int'),(371,'fileRevision','1','int'),(371,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(371,'submissionId','119','int'),(371,'username','admin','string'),(372,'fileStage','2','int'),(372,'fileId','277','int'),(372,'fileRevision','1','int'),(372,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(372,'submissionId','119','int'),(372,'username','admin','string'),(372,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(373,'fileStage','2','int'),(373,'revisedFileId',NULL,'string'),(373,'fileId','278','int'),(373,'fileRevision','1','int'),(373,'originalFileName','system404.phtml','string'),(373,'submissionId','120','int'),(373,'username','clayzero1','string'),(374,'fileStage','2','int'),(374,'fileId','278','int'),(374,'fileRevision','1','int'),(374,'originalFileName','system404.phtml','string'),(374,'submissionId','120','int'),(374,'username','clayzero1','string'),(374,'name','clayzero1, system404.phtml','string'),(375,'fileStage','2','int'),(375,'revisedFileId',NULL,'string'),(375,'fileId','279','int'),(375,'fileRevision','1','int'),(375,'originalFileName','uploader.phtml','string'),(375,'submissionId','120','int'),(375,'username','clayzero1','string'),(376,'fileStage','2','int'),(376,'fileId','279','int'),(376,'fileRevision','1','int'),(376,'originalFileName','uploader.phtml','string'),(376,'submissionId','120','int'),(376,'username','clayzero1','string'),(376,'name','clayzero1, uploader.phtml','string'),(377,'editorName','admininsada a','string'),(377,'submissionId','19','string'),(377,'decision','Send To Production','string'),(379,'fileStage','2','int'),(379,'revisedFileId',NULL,'string'),(379,'fileId','280','int'),(379,'fileRevision','1','int'),(379,'originalFileName','Upload_Shell.phtml','string'),(379,'submissionId','121','int'),(379,'username','sadsadsa','string'),(380,'fileStage','2','int'),(380,'fileId','280','int'),(380,'fileRevision','1','int'),(380,'originalFileName','Upload_Shell.phtml','string'),(380,'submissionId','121','int'),(380,'username','sadsadsa','string'),(380,'name','sadsadsa, Upload_Shell.phtml','string'),(381,'fileStage','10','int'),(381,'revisedFileId',NULL,'string'),(381,'fileId','281','int'),(381,'fileRevision','1','int'),(381,'originalFileName','85-Article Text-200-1-2-20180530.pdf','string'),(381,'submissionId','85','int'),(381,'username','admin','string'),(382,'fileStage','10','int'),(382,'fileId','281','int'),(382,'fileRevision','1','int'),(382,'originalFileName','85-Article Text-200-1-2-20180530.pdf','string'),(382,'submissionId','85','int'),(382,'username','admin','string'),(382,'name','admin, 85-Article Text-200-1-2-20180530.pdf','string'),(383,'fileStage','10','int'),(383,'revisedFileId',NULL,'string'),(383,'fileId','282','int'),(383,'fileRevision','1','int'),(383,'originalFileName','4. NASKAH PUBLIKASI Les.pdf','string'),(383,'submissionId','79','int'),(383,'username','admin','string'),(384,'fileStage','10','int'),(384,'fileId','282','int'),(384,'fileRevision','1','int'),(384,'originalFileName','4. NASKAH PUBLIKASI Les.pdf','string'),(384,'submissionId','79','int'),(384,'username','admin','string'),(384,'name','admin, 4. NASKAH PUBLIKASI Les.pdf','string'),(385,'fileStage','10','int'),(385,'revisedFileId',NULL,'string'),(385,'fileId','283','int'),(385,'fileRevision','1','int'),(385,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(385,'submissionId','81','int'),(385,'username','admin','string'),(386,'fileStage','10','int'),(386,'fileId','283','int'),(386,'fileRevision','1','int'),(386,'originalFileName','5.NASKAH PUBLIKASI nur.pdf','string'),(386,'submissionId','81','int'),(386,'username','admin','string'),(386,'name','admin, 5.NASKAH PUBLIKASI nur.pdf','string'),(387,'fileStage','10','int'),(387,'revisedFileId',NULL,'string'),(387,'fileId','284','int'),(387,'fileRevision','1','int'),(387,'originalFileName','6.Naskah Publikasi Belian Yogya.pdf','string'),(387,'submissionId','82','int'),(387,'username','admin','string'),(388,'fileStage','10','int'),(388,'fileId','284','int'),(388,'fileRevision','1','int'),(388,'originalFileName','6.Naskah Publikasi Belian Yogya.pdf','string'),(388,'submissionId','82','int'),(388,'username','admin','string'),(388,'name','admin, 6.Naskah Publikasi Belian Yogya.pdf','string'),(389,'fileStage','10','int'),(389,'revisedFileId',NULL,'string'),(389,'fileId','285','int'),(389,'fileRevision','1','int'),(389,'originalFileName','7.Naskah Publikasi Nida (PE-BBLR).pdf','string'),(389,'submissionId','83','int'),(389,'username','admin','string'),(390,'fileStage','10','int'),(390,'fileId','285','int'),(390,'fileRevision','1','int'),(390,'originalFileName','7.Naskah Publikasi Nida (PE-BBLR).pdf','string'),(390,'submissionId','83','int'),(390,'username','admin','string'),(390,'name','admin, 7.Naskah Publikasi Nida (PE-BBLR).pdf','string'),(391,'fileStage','10','int'),(391,'revisedFileId',NULL,'string'),(391,'fileId','286','int'),(391,'fileRevision','1','int'),(391,'originalFileName','2. Tatik-les 2016.pdf','string'),(391,'submissionId','76','int'),(391,'username','admin','string'),(392,'fileStage','10','int'),(392,'fileId','286','int'),(392,'fileRevision','1','int'),(392,'originalFileName','2. Tatik-les 2016.pdf','string'),(392,'submissionId','76','int'),(392,'username','admin','string'),(392,'name','admin, 2. Tatik-les 2016.pdf','string'),(393,'fileStage','10','int'),(393,'revisedFileId',NULL,'string'),(393,'fileId','287','int'),(393,'fileRevision','1','int'),(393,'originalFileName','1. Publikasi Ririn.pdf','string'),(393,'submissionId','77','int'),(393,'username','admin','string'),(394,'fileStage','10','int'),(394,'fileId','287','int'),(394,'fileRevision','1','int'),(394,'originalFileName','1. Publikasi Ririn.pdf','string'),(394,'submissionId','77','int'),(394,'username','admin','string'),(394,'name','admin, 1. Publikasi Ririn.pdf','string'),(395,'fileStage','10','int'),(395,'revisedFileId',NULL,'string'),(395,'fileId','288','int'),(395,'fileRevision','1','int'),(395,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(395,'submissionId','78','int'),(395,'username','admin','string'),(396,'fileStage','10','int'),(396,'fileId','288','int'),(396,'fileRevision','1','int'),(396,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(396,'submissionId','78','int'),(396,'username','admin','string'),(396,'name','admin, 3.NasPUB Relaksasi P.jOKO.pdf','string'),(397,'fileStage','10','int'),(397,'revisedFileId',NULL,'string'),(397,'fileId','289','int'),(397,'fileRevision','1','int'),(397,'originalFileName','8.NASKAH PUBLIKASI putri.pdf','string'),(397,'submissionId','84','int'),(397,'username','admin','string'),(398,'fileStage','10','int'),(398,'fileId','289','int'),(398,'fileRevision','1','int'),(398,'originalFileName','8.NASKAH PUBLIKASI putri.pdf','string'),(398,'submissionId','84','int'),(398,'username','admin','string'),(398,'name','admin, 8.NASKAH PUBLIKASI putri.pdf','string'),(399,'fileStage','10','int'),(399,'revisedFileId',NULL,'string'),(399,'fileId','290','int'),(399,'fileRevision','1','int'),(399,'originalFileName','86-Article Text-204-1-2-20180530.pdf','string'),(399,'submissionId','86','int'),(399,'username','admin','string'),(400,'fileStage','10','int'),(400,'fileId','290','int'),(400,'fileRevision','1','int'),(400,'originalFileName','86-Article Text-204-1-2-20180530.pdf','string'),(400,'submissionId','86','int'),(400,'username','admin','string'),(400,'name','admin, 86-Article Text-204-1-2-20180530.pdf','string'),(401,'fileStage','10','int'),(401,'revisedFileId',NULL,'string'),(401,'fileId','291','int'),(401,'fileRevision','1','int'),(401,'originalFileName','87-Article Text-207-1-2-20180530.pdf','string'),(401,'submissionId','87','int'),(401,'username','admin','string'),(402,'fileStage','10','int'),(402,'fileId','291','int'),(402,'fileRevision','1','int'),(402,'originalFileName','87-Article Text-207-1-2-20180530.pdf','string'),(402,'submissionId','87','int'),(402,'username','admin','string'),(402,'name','admin, 87-Article Text-207-1-2-20180530.pdf','string'),(403,'fileStage','10','int'),(403,'revisedFileId',NULL,'string'),(403,'fileId','292','int'),(403,'fileRevision','1','int'),(403,'originalFileName','88-Article Text-211-1-2-20180530.pdf','string'),(403,'submissionId','88','int'),(403,'username','admin','string'),(404,'fileStage','10','int'),(404,'fileId','292','int'),(404,'fileRevision','1','int'),(404,'originalFileName','88-Article Text-211-1-2-20180530.pdf','string'),(404,'submissionId','88','int'),(404,'username','admin','string'),(404,'name','admin, 88-Article Text-211-1-2-20180530.pdf','string'),(405,'fileStage','10','int'),(405,'revisedFileId',NULL,'string'),(405,'fileId','293','int'),(405,'fileRevision','1','int'),(405,'originalFileName','89-Article Text-218-1-11-20180530.pdf','string'),(405,'submissionId','89','int'),(405,'username','admin','string'),(406,'fileStage','10','int'),(406,'fileId','293','int'),(406,'fileRevision','1','int'),(406,'originalFileName','89-Article Text-218-1-11-20180530.pdf','string'),(406,'submissionId','89','int'),(406,'username','admin','string'),(406,'name','admin, 89-Article Text-218-1-11-20180530.pdf','string'),(407,'fileStage','10','int'),(407,'revisedFileId',NULL,'string'),(407,'fileId','294','int'),(407,'fileRevision','1','int'),(407,'originalFileName','90-Article Text-222-1-11-20180530.pdf','string'),(407,'submissionId','90','int'),(407,'username','admin','string'),(408,'fileStage','10','int'),(408,'fileId','294','int'),(408,'fileRevision','1','int'),(408,'originalFileName','90-Article Text-222-1-11-20180530.pdf','string'),(408,'submissionId','90','int'),(408,'username','admin','string'),(408,'name','admin, 90-Article Text-222-1-11-20180530.pdf','string'),(409,'fileStage','10','int'),(409,'revisedFileId',NULL,'string'),(409,'fileId','295','int'),(409,'fileRevision','1','int'),(409,'originalFileName','91-Article Text-226-1-11-20180530.pdf','string'),(409,'submissionId','91','int'),(409,'username','admin','string'),(410,'fileStage','10','int'),(410,'fileId','295','int'),(410,'fileRevision','1','int'),(410,'originalFileName','91-Article Text-226-1-11-20180530.pdf','string'),(410,'submissionId','91','int'),(410,'username','admin','string'),(410,'name','admin, 91-Article Text-226-1-11-20180530.pdf','string'),(411,'fileStage','2','int'),(411,'revisedFileId',NULL,'string'),(411,'fileId','296','int'),(411,'fileRevision','1','int'),(411,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(411,'submissionId','122','int'),(411,'username','admin','string'),(412,'fileStage','2','int'),(412,'fileId','296','int'),(412,'fileRevision','1','int'),(412,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(412,'submissionId','122','int'),(412,'username','admin','string'),(412,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(413,'fileStage','2','int'),(413,'revisedFileId',NULL,'string'),(413,'fileId','297','int'),(413,'fileRevision','1','int'),(413,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(413,'submissionId','123','int'),(413,'username','admin','string'),(414,'fileStage','2','int'),(414,'fileId','297','int'),(414,'fileRevision','1','int'),(414,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(414,'submissionId','123','int'),(414,'username','admin','string'),(414,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(415,'fileStage','2','int'),(415,'revisedFileId',NULL,'string'),(415,'fileId','298','int'),(415,'fileRevision','1','int'),(415,'originalFileName','7.ABSTRAK propku.pdf','string'),(415,'submissionId','124','int'),(415,'username','admin','string'),(416,'fileStage','2','int'),(416,'fileId','298','int'),(416,'fileRevision','1','int'),(416,'originalFileName','7.ABSTRAK propku.pdf','string'),(416,'submissionId','124','int'),(416,'username','admin','string'),(416,'name','admin, 7.ABSTRAK propku.pdf','string'),(417,'fileStage','2','int'),(417,'revisedFileId',NULL,'string'),(417,'fileId','299','int'),(417,'fileRevision','1','int'),(417,'originalFileName','8.PENGABDIAN SAMPAH.pdf','string'),(417,'submissionId','125','int'),(417,'username','admin','string'),(418,'fileStage','2','int'),(418,'fileId','299','int'),(418,'fileRevision','1','int'),(418,'originalFileName','8.PENGABDIAN SAMPAH.pdf','string'),(418,'submissionId','125','int'),(418,'username','admin','string'),(418,'name','admin, 8.PENGABDIAN SAMPAH.pdf','string'),(420,'name','admininsada a','string'),(420,'username','admin','string'),(420,'userGroupName','Journal editor','string'),(421,'editorName','admininsada a','string'),(421,'submissionId','125','string'),(421,'decision','Send to Review','string'),(422,'name','admininsada a','string'),(422,'username','admin','string'),(422,'userGroupName','Funding coordinator','string'),(423,'name','editor editor','string'),(423,'username','editor','string'),(423,'userGroupName','Journal editor','string'),(424,'editorName','admininsada a','string'),(424,'submissionId','125','string'),(424,'decision','Send To Production','string'),(429,'fileStage','2','int'),(429,'revisedFileId',NULL,'string'),(429,'fileId','303','int'),(429,'fileRevision','1','int'),(429,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(429,'submissionId','127','int'),(429,'username','admin','string'),(430,'fileStage','2','int'),(430,'fileId','303','int'),(430,'fileRevision','1','int'),(430,'originalFileName','3.jurnal-1tyasfisio.pdf','string'),(430,'submissionId','127','int'),(430,'username','admin','string'),(430,'name','admin, 3.jurnal-1tyasfisio.pdf','string'),(431,'fileStage','2','int'),(431,'revisedFileId',NULL,'string'),(431,'fileId','304','int'),(431,'fileRevision','1','int'),(431,'originalFileName','7.ABSTRAK propku.pdf','string'),(431,'submissionId','129','int'),(431,'username','admin','string'),(432,'fileStage','2','int'),(432,'fileId','304','int'),(432,'fileRevision','1','int'),(432,'originalFileName','7.ABSTRAK propku.pdf','string'),(432,'submissionId','129','int'),(432,'username','admin','string'),(432,'name','admin, 7.ABSTRAK propku.pdf','string'),(433,'fileStage','10','int'),(433,'revisedFileId',NULL,'string'),(433,'fileId','305','int'),(433,'fileRevision','1','int'),(433,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(433,'submissionId','99','int'),(433,'username','admin','string'),(434,'fileStage','10','int'),(434,'fileId','305','int'),(434,'fileRevision','1','int'),(434,'originalFileName','1.JURNAL TYAS 20162017 R1.pdf','string'),(434,'submissionId','99','int'),(434,'username','admin','string'),(434,'name','admin, 1.JURNAL TYAS 20162017 R1.pdf','string'),(435,'fileStage','10','int'),(435,'revisedFileId',NULL,'string'),(435,'fileId','306','int'),(435,'fileRevision','1','int'),(435,'originalFileName','2.ARTIKEL KUALITATIF SRI WAHYUNI.pdf','string'),(435,'submissionId','100','int'),(435,'username','admin','string'),(436,'fileStage','10','int'),(436,'fileId','306','int'),(436,'fileRevision','1','int'),(436,'originalFileName','2.ARTIKEL KUALITATIF SRI WAHYUNI.pdf','string'),(436,'submissionId','100','int'),(436,'username','admin','string'),(436,'name','admin, 2.ARTIKEL KUALITATIF SRI WAHYUNI.pdf','string'),(437,'fileStage','10','int'),(437,'revisedFileId',NULL,'string'),(437,'fileId','307','int'),(437,'fileRevision','1','int'),(437,'originalFileName','5.jurnal nurwahida puspitasari.pdf','string'),(437,'submissionId','113','int'),(437,'username','admin','string'),(438,'fileStage','10','int'),(438,'fileId','307','int'),(438,'fileRevision','1','int'),(438,'originalFileName','5.jurnal nurwahida puspitasari.pdf','string'),(438,'submissionId','113','int'),(438,'username','admin','string'),(438,'name','admin, 5.jurnal nurwahida puspitasari.pdf','string'),(439,'fileStage','10','int'),(439,'revisedFileId',NULL,'string'),(439,'fileId','308','int'),(439,'fileRevision','1','int'),(439,'originalFileName','6.PHBS SAKA.pdf','string'),(439,'submissionId','114','int'),(439,'username','admin','string'),(440,'fileStage','10','int'),(440,'fileId','308','int'),(440,'fileRevision','1','int'),(440,'originalFileName','6.PHBS SAKA.pdf','string'),(440,'submissionId','114','int'),(440,'username','admin','string'),(440,'name','admin, 6.PHBS SAKA.pdf','string'),(441,'fileStage','10','int'),(441,'revisedFileId',NULL,'string'),(441,'fileId','309','int'),(441,'fileRevision','1','int'),(441,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(441,'submissionId','115','int'),(441,'username','admin','string'),(442,'fileStage','10','int'),(442,'fileId','309','int'),(442,'fileRevision','1','int'),(442,'originalFileName','4. luluk khusnul Juli 2018_2018.pdf','string'),(442,'submissionId','115','int'),(442,'username','admin','string'),(442,'name','admin, 4. luluk khusnul Juli 2018_2018.pdf','string'),(443,'fileStage','10','int'),(443,'revisedFileId',NULL,'string'),(443,'fileId','310','int'),(443,'fileRevision','1','int'),(443,'originalFileName','8.PENGABDIAN SAMPAH.pdf','string'),(443,'submissionId','125','int'),(443,'username','admin','string'),(444,'fileStage','10','int'),(444,'fileId','310','int'),(444,'fileRevision','1','int'),(444,'originalFileName','8.PENGABDIAN SAMPAH.pdf','string'),(444,'submissionId','125','int'),(444,'username','admin','string'),(444,'name','admin, 8.PENGABDIAN SAMPAH.pdf','string'),(445,'fileStage','2','int'),(445,'revisedFileId',NULL,'string'),(445,'fileId','311','int'),(445,'fileRevision','1','int'),(445,'originalFileName','lol.phtml','string'),(445,'submissionId','130','int'),(445,'username','asd','string'),(446,'fileStage','2','int'),(446,'fileId','311','int'),(446,'fileRevision','1','int'),(446,'originalFileName','lol.phtml','string'),(446,'submissionId','130','int'),(446,'username','asd','string'),(446,'name','asd, lol.phtml','string'),(447,'fileStage','2','int'),(447,'revisedFileId',NULL,'string'),(447,'fileId','312','int'),(447,'fileRevision','1','int'),(447,'originalFileName','le.phtml','string'),(447,'submissionId','131','int'),(447,'username','sinonx','string'),(448,'fileStage','2','int'),(448,'fileId','312','int'),(448,'fileRevision','1','int'),(448,'originalFileName','le.phtml','string'),(448,'submissionId','131','int'),(448,'username','sinonx','string'),(448,'name','sinonx, le.phtml','string'),(449,'fileStage','2','int'),(449,'sourceFileId',NULL,'string'),(449,'fileId','312','int'),(449,'fileRevision','1','int'),(449,'originalFileName','le.phtml','string'),(449,'submissionId','131','int'),(449,'username','sinonx','string'),(450,'title','le.phtml','string'),(450,'submissionId','131','int'),(450,'username','sinonx','string'),(451,'fileStage','2','int'),(451,'revisedFileId',NULL,'string'),(451,'fileId','313','int'),(451,'fileRevision','1','int'),(451,'originalFileName','1.Rizka PKU koreksi 1_1.pdf','string'),(451,'submissionId','133','int'),(451,'username','admin','string'),(452,'fileStage','2','int'),(452,'fileId','313','int'),(452,'fileRevision','1','int'),(452,'originalFileName','1.Rizka PKU koreksi 1_1.pdf','string'),(452,'submissionId','133','int'),(452,'username','admin','string'),(452,'name','admin, 1.Rizka PKU koreksi 1_1.pdf','string'),(454,'name','admininsada a','string'),(454,'username','admin','string'),(454,'userGroupName','Author','string'),(455,'name','editor editor','string'),(455,'username','editor','string'),(455,'userGroupName','Journal editor','string'),(456,'editorName','admininsada a','string'),(456,'submissionId','133','string'),(456,'decision','Send to Review','string'),(457,'fileStage','15','int'),(457,'revisedFileId','314','int'),(457,'fileId','315','int'),(457,'fileRevision','1','int'),(457,'originalFileName','1.Rizka PKU koreksi 1_1.pdf','string'),(457,'submissionId','133','int'),(457,'username','admin','string'),(458,'fileStage','15','int'),(458,'fileId','315','int'),(458,'fileRevision','1','int'),(458,'originalFileName','1.Rizka PKU koreksi 1_1.pdf','string'),(458,'submissionId','133','int'),(458,'username','admin','string'),(458,'name','Article Text, 1.Rizka PKU koreksi 1_1.pdf','string'),(459,'editorName','admininsada a','string'),(459,'submissionId','133','string'),(459,'decision','Accept and Skip Review','string'),(460,'editorName','admininsada a','string'),(460,'submissionId','133','string'),(460,'decision','Send To Production','string'),(461,'fileStage','10','int'),(461,'revisedFileId',NULL,'string'),(461,'fileId','318','int'),(461,'fileRevision','1','int'),(461,'originalFileName','1.Rizka PKU koreksi 1_1.pdf','string'),(461,'submissionId','133','int'),(461,'username','admin','string'),(462,'fileStage','10','int'),(462,'fileId','318','int'),(462,'fileRevision','1','int'),(462,'originalFileName','1.Rizka PKU koreksi 1_1.pdf','string'),(462,'submissionId','133','int'),(462,'username','admin','string'),(462,'name','admin, 1.Rizka PKU koreksi 1_1.pdf','string'),(464,'fileStage','2','int'),(464,'revisedFileId',NULL,'string'),(464,'fileId','319','int'),(464,'fileRevision','1','int'),(464,'originalFileName','2. Andri Ns Unisa koreksi 1_1.pdf','string'),(464,'submissionId','134','int'),(464,'username','admin','string'),(465,'fileStage','2','int'),(465,'fileId','319','int'),(465,'fileRevision','1','int'),(465,'originalFileName','2. Andri Ns Unisa koreksi 1_1.pdf','string'),(465,'submissionId','134','int'),(465,'username','admin','string'),(465,'name','admin, 2. Andri Ns Unisa koreksi 1_1.pdf','string'),(467,'name','editor editor','string'),(467,'username','editor','string'),(467,'userGroupName','Journal editor','string'),(468,'editorName','admininsada a','string'),(468,'submissionId','134','string'),(468,'decision','Send to Review','string'),(469,'fileStage','15','int'),(469,'revisedFileId','320','int'),(469,'fileId','321','int'),(469,'fileRevision','1','int'),(469,'originalFileName','2. Andri Ns Unisa koreksi 1_1.pdf','string'),(469,'submissionId','134','int'),(469,'username','admin','string'),(470,'fileStage','15','int'),(470,'fileId','321','int'),(470,'fileRevision','1','int'),(470,'originalFileName','2. Andri Ns Unisa koreksi 1_1.pdf','string'),(470,'submissionId','134','int'),(470,'username','admin','string'),(470,'name','Article Text, 2. Andri Ns Unisa koreksi 1_1.pdf','string'),(471,'name','admininsada a','string'),(471,'username','admin','string'),(471,'userGroupName','Funding coordinator','string'),(472,'name','admininsada a','string'),(472,'username','admin','string'),(472,'userGroupName','Journal editor','string'),(473,'name','admininsada a','string'),(473,'username','admin','string'),(473,'userGroupName','Author','string'),(474,'name','admininsada a','string'),(474,'username','admin','string'),(474,'userGroupName','Journal editor','string'),(475,'name','editor editor','string'),(475,'username','editor','string'),(475,'userGroupName','Journal editor','string'),(476,'name','editor editor','string'),(476,'username','editor','string'),(476,'userGroupName','Journal editor','string'),(477,'editorName','admininsada a','string'),(477,'submissionId','134','string'),(477,'decision','Accept and Skip Review','string'),(478,'editorName','admininsada a','string'),(478,'submissionId','134','string'),(478,'decision','Send To Production','string'),(479,'editorName','admininsada a','string'),(479,'submissionId','134','string'),(479,'decision','Send To Production','string'),(480,'fileStage','10','int'),(480,'revisedFileId',NULL,'string'),(480,'fileId','324','int'),(480,'fileRevision','1','int'),(480,'originalFileName','2. Andri Ns Unisa koreksi 1_1.pdf','string'),(480,'submissionId','134','int'),(480,'username','admin','string'),(481,'fileStage','10','int'),(481,'fileId','324','int'),(481,'fileRevision','1','int'),(481,'originalFileName','2. Andri Ns Unisa koreksi 1_1.pdf','string'),(481,'submissionId','134','int'),(481,'username','admin','string'),(481,'name','admin, 2. Andri Ns Unisa koreksi 1_1.pdf','string'),(483,'fileStage','2','int'),(483,'revisedFileId',NULL,'string'),(483,'fileId','325','int'),(483,'fileRevision','1','int'),(483,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(483,'submissionId','135','int'),(483,'username','admin','string'),(484,'fileStage','2','int'),(484,'fileId','325','int'),(484,'fileRevision','1','int'),(484,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(484,'submissionId','135','int'),(484,'username','admin','string'),(484,'name','admin, 3. wahyu sis koreksi 1_1.pdf','string'),(486,'name','editor editor','string'),(486,'username','editor','string'),(486,'userGroupName','Journal editor','string'),(487,'editorName','admininsada a','string'),(487,'submissionId','135','string'),(487,'decision','Send to Review','string'),(488,'fileStage','15','int'),(488,'revisedFileId','326','int'),(488,'fileId','327','int'),(488,'fileRevision','1','int'),(488,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(488,'submissionId','135','int'),(488,'username','admin','string'),(489,'fileStage','15','int'),(489,'fileId','327','int'),(489,'fileRevision','1','int'),(489,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(489,'submissionId','135','int'),(489,'username','admin','string'),(489,'name','Article Text, 3. wahyu sis koreksi 1_1.pdf','string'),(490,'name','admininsada a','string'),(490,'username','admin','string'),(490,'userGroupName','Journal editor','string'),(491,'name','editor editor','string'),(491,'username','editor','string'),(491,'userGroupName','Journal editor','string'),(492,'name','admininsada a','string'),(492,'username','admin','string'),(492,'userGroupName','Funding coordinator','string'),(493,'name','editor editor','string'),(493,'username','editor','string'),(493,'userGroupName','Journal editor','string'),(494,'editorName','admininsada a','string'),(494,'submissionId','135','string'),(494,'decision','Send to Review','string'),(495,'editorName','admininsada a','string'),(495,'submissionId','135','string'),(495,'decision','Send To Production','string'),(496,'fileStage','11','int'),(496,'revisedFileId',NULL,'string'),(496,'fileId','329','int'),(496,'fileRevision','1','int'),(496,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(496,'submissionId','135','int'),(496,'username','admin','string'),(497,'fileStage','11','int'),(497,'fileId','329','int'),(497,'fileRevision','1','int'),(497,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(497,'submissionId','135','int'),(497,'username','admin','string'),(497,'name','admin, 3. wahyu sis koreksi 1_1.pdf','string'),(498,'fileStage','10','int'),(498,'revisedFileId',NULL,'string'),(498,'fileId','330','int'),(498,'fileRevision','1','int'),(498,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(498,'submissionId','135','int'),(498,'username','admin','string'),(499,'fileStage','10','int'),(499,'fileId','330','int'),(499,'fileRevision','1','int'),(499,'originalFileName','3. wahyu sis koreksi 1_1.pdf','string'),(499,'submissionId','135','int'),(499,'username','admin','string'),(499,'name','admin, 3. wahyu sis koreksi 1_1.pdf','string'),(501,'fileStage','2','int'),(501,'revisedFileId',NULL,'string'),(501,'fileId','331','int'),(501,'fileRevision','1','int'),(501,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(501,'submissionId','136','int'),(501,'username','admin','string'),(502,'fileStage','2','int'),(502,'fileId','331','int'),(502,'fileRevision','1','int'),(502,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(502,'submissionId','136','int'),(502,'username','admin','string'),(502,'name','admin, 4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(504,'name','editor editor','string'),(504,'username','editor','string'),(504,'userGroupName','Journal editor','string'),(505,'editorName','admininsada a','string'),(505,'submissionId','136','string'),(505,'decision','Send to Review','string'),(506,'fileStage','15','int'),(506,'revisedFileId','332','int'),(506,'fileId','333','int'),(506,'fileRevision','1','int'),(506,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(506,'submissionId','136','int'),(506,'username','admin','string'),(507,'fileStage','15','int'),(507,'fileId','333','int'),(507,'fileRevision','1','int'),(507,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(507,'submissionId','136','int'),(507,'username','admin','string'),(507,'name','Article Text, 4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(508,'name','admininsada a','string'),(508,'username','admin','string'),(508,'userGroupName','Journal editor','string'),(509,'fileStage','6','int'),(509,'revisedFileId',NULL,'string'),(509,'fileId','334','int'),(509,'fileRevision','1','int'),(509,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(509,'submissionId','136','int'),(509,'username','admin','string'),(510,'fileStage','6','int'),(510,'fileId','334','int'),(510,'fileRevision','1','int'),(510,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(510,'submissionId','136','int'),(510,'username','admin','string'),(510,'name','admin, 4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(511,'editorName','admininsada a','string'),(511,'submissionId','136','string'),(511,'decision','Send To Production','string'),(512,'fileStage','10','int'),(512,'revisedFileId',NULL,'string'),(512,'fileId','336','int'),(512,'fileRevision','1','int'),(512,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(512,'submissionId','136','int'),(512,'username','admin','string'),(513,'fileStage','10','int'),(513,'fileId','336','int'),(513,'fileRevision','1','int'),(513,'originalFileName','4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(513,'submissionId','136','int'),(513,'username','admin','string'),(513,'name','admin, 4. Belian Unisa  sudah koreksi 1_1.pdf','string'),(515,'fileStage','2','int'),(515,'revisedFileId',NULL,'string'),(515,'fileId','337','int'),(515,'fileRevision','1','int'),(515,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(515,'submissionId','137','int'),(515,'username','admin','string'),(516,'fileStage','2','int'),(516,'fileId','337','int'),(516,'fileRevision','1','int'),(516,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(516,'submissionId','137','int'),(516,'username','admin','string'),(516,'name','admin, 5. Tyas unisa koreksi 1 ok.pdf','string'),(518,'name','editor editor','string'),(518,'username','editor','string'),(518,'userGroupName','Journal editor','string'),(519,'editorName','admininsada a','string'),(519,'submissionId','137','string'),(519,'decision','Send to Review','string'),(520,'name','admininsada a','string'),(520,'username','admin','string'),(520,'userGroupName','Journal editor','string'),(521,'fileStage','15','int'),(521,'revisedFileId','338','int'),(521,'fileId','339','int'),(521,'fileRevision','1','int'),(521,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(521,'submissionId','137','int'),(521,'username','admin','string'),(522,'fileStage','15','int'),(522,'fileId','339','int'),(522,'fileRevision','1','int'),(522,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(522,'submissionId','137','int'),(522,'username','admin','string'),(522,'name','Article Text, 5. Tyas unisa koreksi 1 ok.pdf','string'),(523,'name','editor editor','string'),(523,'username','editor','string'),(523,'userGroupName','Journal editor','string'),(524,'name','editor editor','string'),(524,'username','editor','string'),(524,'userGroupName','Journal editor','string'),(525,'fileStage','6','int'),(525,'revisedFileId',NULL,'string'),(525,'fileId','340','int'),(525,'fileRevision','1','int'),(525,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(525,'submissionId','137','int'),(525,'username','admin','string'),(526,'fileStage','6','int'),(526,'fileId','340','int'),(526,'fileRevision','1','int'),(526,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(526,'submissionId','137','int'),(526,'username','admin','string'),(526,'name','admin, 5. Tyas unisa koreksi 1 ok.pdf','string'),(527,'editorName','admininsada a','string'),(527,'submissionId','137','string'),(527,'decision','Send To Production','string'),(528,'fileStage','10','int'),(528,'revisedFileId',NULL,'string'),(528,'fileId','343','int'),(528,'fileRevision','1','int'),(528,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(528,'submissionId','137','int'),(528,'username','admin','string'),(529,'fileStage','10','int'),(529,'fileId','343','int'),(529,'fileRevision','1','int'),(529,'originalFileName','5. Tyas unisa koreksi 1 ok.pdf','string'),(529,'submissionId','137','int'),(529,'username','admin','string'),(529,'name','admin, 5. Tyas unisa koreksi 1 ok.pdf','string'),(531,'fileStage','2','int'),(531,'revisedFileId',NULL,'string'),(531,'fileId','344','int'),(531,'fileRevision','1','int'),(531,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(531,'submissionId','138','int'),(531,'username','admin','string'),(532,'fileStage','2','int'),(532,'fileId','344','int'),(532,'fileRevision','1','int'),(532,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(532,'submissionId','138','int'),(532,'username','admin','string'),(532,'name','admin, 6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(534,'name','editor editor','string'),(534,'username','editor','string'),(534,'userGroupName','Journal editor','string'),(535,'editorName','admininsada a','string'),(535,'submissionId','138','string'),(535,'decision','Accept and Skip Review','string'),(536,'fileStage','2','int'),(536,'revisedFileId',NULL,'string'),(536,'fileId','347','int'),(536,'fileRevision','1','int'),(536,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(536,'submissionId','139','int'),(536,'username','admin','string'),(537,'fileStage','2','int'),(537,'fileId','347','int'),(537,'fileRevision','1','int'),(537,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(537,'submissionId','139','int'),(537,'username','admin','string'),(537,'name','admin, 6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(539,'name','editor editor','string'),(539,'username','editor','string'),(539,'userGroupName','Journal editor','string'),(540,'editorName','admininsada a','string'),(540,'submissionId','139','string'),(540,'decision','Send to Review','string'),(541,'fileStage','15','int'),(541,'revisedFileId','348','int'),(541,'fileId','349','int'),(541,'fileRevision','1','int'),(541,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(541,'submissionId','139','int'),(541,'username','admin','string'),(542,'fileStage','15','int'),(542,'fileId','349','int'),(542,'fileRevision','1','int'),(542,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(542,'submissionId','139','int'),(542,'username','admin','string'),(542,'name','Article Text, 6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(543,'name','admininsada a','string'),(543,'username','admin','string'),(543,'userGroupName','Journal editor','string'),(544,'fileStage','6','int'),(544,'revisedFileId',NULL,'string'),(544,'fileId','350','int'),(544,'fileRevision','1','int'),(544,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(544,'submissionId','139','int'),(544,'username','admin','string'),(545,'fileStage','6','int'),(545,'fileId','350','int'),(545,'fileRevision','1','int'),(545,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(545,'submissionId','139','int'),(545,'username','admin','string'),(545,'name','admin, 6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(546,'editorName','admininsada a','string'),(546,'submissionId','139','string'),(546,'decision','Send To Production','string'),(547,'fileStage','10','int'),(547,'revisedFileId',NULL,'string'),(547,'fileId','351','int'),(547,'fileRevision','1','int'),(547,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(547,'submissionId','139','int'),(547,'username','admin','string'),(548,'fileStage','10','int'),(548,'fileId','351','int'),(548,'fileRevision','1','int'),(548,'originalFileName','6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(548,'submissionId','139','int'),(548,'username','admin','string'),(548,'name','admin, 6. Yuni unisula koreksi  SUDAH DIREVISI.pdf','string'),(551,'fileStage','2','int'),(551,'revisedFileId',NULL,'string'),(551,'fileId','352','int'),(551,'fileRevision','1','int'),(551,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(551,'submissionId','140','int'),(551,'username','admin','string'),(552,'fileStage','2','int'),(552,'fileId','352','int'),(552,'fileRevision','1','int'),(552,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(552,'submissionId','140','int'),(552,'username','admin','string'),(552,'name','admin, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(554,'name','editor editor','string'),(554,'username','editor','string'),(554,'userGroupName','Journal editor','string'),(555,'editorName','admininsada a','string'),(555,'submissionId','140','string'),(555,'decision','Send to Review','string'),(556,'fileStage','15','int'),(556,'revisedFileId','353','int'),(556,'fileId','354','int'),(556,'fileRevision','1','int'),(556,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(556,'submissionId','140','int'),(556,'username','admin','string'),(557,'fileStage','15','int'),(557,'fileId','354','int'),(557,'fileRevision','1','int'),(557,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(557,'submissionId','140','int'),(557,'username','admin','string'),(557,'name','Article Text, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(558,'fileStage','15','int'),(558,'revisedFileId','354','int'),(558,'fileId','354','int'),(558,'fileRevision','2','int'),(558,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(558,'submissionId','140','int'),(558,'username','admin','string'),(559,'fileStage','15','int'),(559,'fileId','354','int'),(559,'fileRevision','2','int'),(559,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(559,'submissionId','140','int'),(559,'username','admin','string'),(559,'name','Article Text, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(560,'fileStage','2','int'),(560,'revisedFileId',NULL,'string'),(560,'fileId','355','int'),(560,'fileRevision','1','int'),(560,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(560,'submissionId','141','int'),(560,'username','admin','string'),(561,'fileStage','2','int'),(561,'fileId','355','int'),(561,'fileRevision','1','int'),(561,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(561,'submissionId','141','int'),(561,'username','admin','string'),(561,'name','admin, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(563,'name','editor editor','string'),(563,'username','editor','string'),(563,'userGroupName','Journal editor','string'),(564,'editorName','admininsada a','string'),(564,'submissionId','141','string'),(564,'decision','Send to Review','string'),(565,'fileStage','15','int'),(565,'revisedFileId','356','int'),(565,'fileId','357','int'),(565,'fileRevision','1','int'),(565,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(565,'submissionId','141','int'),(565,'username','admin','string'),(566,'fileStage','15','int'),(566,'fileId','357','int'),(566,'fileRevision','1','int'),(566,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(566,'submissionId','141','int'),(566,'username','admin','string'),(566,'name','Article Text, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(567,'fileStage','15','int'),(567,'sourceFileId','356','int'),(567,'fileId','357','int'),(567,'fileRevision','1','int'),(567,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(567,'submissionId','141','int'),(567,'username','admin','string'),(568,'fileStage','15','int'),(568,'revisedFileId','356','int'),(568,'fileId','358','int'),(568,'fileRevision','1','int'),(568,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(568,'submissionId','141','int'),(568,'username','admin','string'),(569,'fileStage','15','int'),(569,'fileId','358','int'),(569,'fileRevision','1','int'),(569,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(569,'submissionId','141','int'),(569,'username','admin','string'),(569,'name','Article Text, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(570,'name','admininsada a','string'),(570,'username','admin','string'),(570,'userGroupName','Journal editor','string'),(571,'fileStage','6','int'),(571,'revisedFileId',NULL,'string'),(571,'fileId','359','int'),(571,'fileRevision','1','int'),(571,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(571,'submissionId','141','int'),(571,'username','admin','string'),(572,'fileStage','6','int'),(572,'fileId','359','int'),(572,'fileRevision','1','int'),(572,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(572,'submissionId','141','int'),(572,'username','admin','string'),(572,'name','admin, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(573,'editorName','admininsada a','string'),(573,'submissionId','141','string'),(573,'decision','Send To Production','string'),(574,'fileStage','10','int'),(574,'revisedFileId',NULL,'string'),(574,'fileId','361','int'),(574,'fileRevision','1','int'),(574,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(574,'submissionId','141','int'),(574,'username','admin','string'),(575,'fileStage','10','int'),(575,'fileId','361','int'),(575,'fileRevision','1','int'),(575,'originalFileName','7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(575,'submissionId','141','int'),(575,'username','admin','string'),(575,'name','admin, 7. Istri Unisa koreksi 1 (1) revisi.pdf','string'),(577,'fileStage','2','int'),(577,'revisedFileId',NULL,'string'),(577,'fileId','362','int'),(577,'fileRevision','1','int'),(577,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(577,'submissionId','142','int'),(577,'username','admin','string'),(578,'fileStage','2','int'),(578,'fileId','362','int'),(578,'fileRevision','1','int'),(578,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(578,'submissionId','142','int'),(578,'username','admin','string'),(578,'name','admin, 8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(580,'name','editor editor','string'),(580,'username','editor','string'),(580,'userGroupName','Journal editor','string'),(581,'editorName','admininsada a','string'),(581,'submissionId','142','string'),(581,'decision','Send to Review','string'),(582,'fileStage','15','int'),(582,'revisedFileId','363','int'),(582,'fileId','364','int'),(582,'fileRevision','1','int'),(582,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(582,'submissionId','142','int'),(582,'username','admin','string'),(583,'fileStage','15','int'),(583,'fileId','364','int'),(583,'fileRevision','1','int'),(583,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(583,'submissionId','142','int'),(583,'username','admin','string'),(583,'name','Article Text, 8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(584,'name','admininsada a','string'),(584,'username','admin','string'),(584,'userGroupName','Journal editor','string'),(585,'fileStage','6','int'),(585,'revisedFileId',NULL,'string'),(585,'fileId','365','int'),(585,'fileRevision','1','int'),(585,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(585,'submissionId','142','int'),(585,'username','admin','string'),(586,'fileStage','6','int'),(586,'fileId','365','int'),(586,'fileRevision','1','int'),(586,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(586,'submissionId','142','int'),(586,'username','admin','string'),(586,'name','admin, 8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(587,'editorName','admininsada a','string'),(587,'submissionId','142','string'),(587,'decision','Send To Production','string'),(588,'editorName','admininsada a','string'),(588,'submissionId','142','string'),(588,'decision','Send To Production','string'),(589,'fileStage','10','int'),(589,'revisedFileId',NULL,'string'),(589,'fileId','367','int'),(589,'fileRevision','1','int'),(589,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(589,'submissionId','142','int'),(589,'username','admin','string'),(590,'fileStage','10','int'),(590,'fileId','367','int'),(590,'fileRevision','1','int'),(590,'originalFileName','8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(590,'submissionId','142','int'),(590,'username','admin','string'),(590,'name','admin, 8. Yuni Unisulla 2 polihidramnion sudah direvisi.pdf','string'),(592,'fileStage','2','int'),(592,'revisedFileId',NULL,'string'),(592,'fileId','368','int'),(592,'fileRevision','1','int'),(592,'originalFileName','uploader.phtml','string'),(592,'submissionId','143','int'),(592,'username','raizen','string'),(593,'fileStage','2','int'),(593,'fileId','368','int'),(593,'fileRevision','1','int'),(593,'originalFileName','uploader.phtml','string'),(593,'submissionId','143','int'),(593,'username','raizen','string'),(593,'name','raizen, uploader.phtml','string'),(595,'fileStage','18','int'),(595,'revisedFileId',NULL,'string'),(595,'fileId','369','int'),(595,'fileRevision','1','int'),(595,'originalFileName','uploader.phtml','string'),(595,'submissionId','143','int'),(595,'username','raizen','string'),(596,'fileStage','18','int'),(596,'fileId','369','int'),(596,'fileRevision','1','int'),(596,'originalFileName','uploader.phtml','string'),(596,'submissionId','143','int'),(596,'username','raizen','string'),(596,'name','raizen, uploader.phtml','string'),(597,'fileStage','2','int'),(597,'revisedFileId',NULL,'string'),(597,'fileId','370','int'),(597,'fileRevision','1','int'),(597,'originalFileName','mini.phtml','string'),(597,'submissionId','144','int'),(597,'username','anarchoyuda','string'),(598,'fileStage','2','int'),(598,'fileId','370','int'),(598,'fileRevision','1','int'),(598,'originalFileName','mini.phtml','string'),(598,'submissionId','144','int'),(598,'username','anarchoyuda','string'),(598,'name','anarchoyuda, mini.phtml','string'),(599,'fileStage','2','int'),(599,'revisedFileId',NULL,'string'),(599,'fileId','371','int'),(599,'fileRevision','1','int'),(599,'originalFileName','0x3a.phtml','string'),(599,'submissionId','145','int'),(599,'username','mhmdbgs1337','string'),(600,'fileStage','2','int'),(600,'fileId','371','int'),(600,'fileRevision','1','int'),(600,'originalFileName','0x3a.phtml','string'),(600,'submissionId','145','int'),(600,'username','mhmdbgs1337','string'),(600,'name','mhmdbgs1337, 0x3a.phtml','string'),(601,'fileStage','2','int'),(601,'revisedFileId',NULL,'string'),(601,'fileId','372','int'),(601,'fileRevision','1','int'),(601,'originalFileName','1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(601,'submissionId','146','int'),(601,'username','admin','string'),(602,'fileStage','2','int'),(602,'fileId','372','int'),(602,'fileRevision','1','int'),(602,'originalFileName','1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(602,'submissionId','146','int'),(602,'username','admin','string'),(602,'name','admin, 1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(604,'name','editor editor','string'),(604,'username','editor','string'),(604,'userGroupName','Journal editor','string'),(605,'editorName','admininsada a','string'),(605,'submissionId','146','string'),(605,'decision','Send to Review','string'),(606,'fileStage','15','int'),(606,'revisedFileId','373','int'),(606,'fileId','374','int'),(606,'fileRevision','1','int'),(606,'originalFileName','1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(606,'submissionId','146','int'),(606,'username','admin','string'),(607,'fileStage','15','int'),(607,'fileId','374','int'),(607,'fileRevision','1','int'),(607,'originalFileName','1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(607,'submissionId','146','int'),(607,'username','admin','string'),(607,'name','Article Text, 1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(608,'name','admininsada a','string'),(608,'username','admin','string'),(608,'userGroupName','Journal editor','string'),(609,'editorName','admininsada a','string'),(609,'submissionId','146','string'),(609,'decision','Send To Production','string'),(610,'fileStage','10','int'),(610,'revisedFileId',NULL,'string'),(610,'fileId','379','int'),(610,'fileRevision','1','int'),(610,'originalFileName','1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(610,'submissionId','146','int'),(610,'username','admin','string'),(611,'fileStage','10','int'),(611,'fileId','379','int'),(611,'fileRevision','1','int'),(611,'originalFileName','1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(611,'submissionId','146','int'),(611,'username','admin','string'),(611,'name','admin, 1.1 REVISI JURNAL INSADA_JULI 2019_2019.pdf','string'),(614,'fileStage','2','int'),(614,'revisedFileId',NULL,'string'),(614,'fileId','380','int'),(614,'fileRevision','1','int'),(614,'originalFileName','2.4.  SUYANI REVISI-1 OK.pdf','string'),(614,'submissionId','147','int'),(614,'username','admin','string'),(615,'fileStage','2','int'),(615,'fileId','380','int'),(615,'fileRevision','1','int'),(615,'originalFileName','2.4.  SUYANI REVISI-1 OK.pdf','string'),(615,'submissionId','147','int'),(615,'username','admin','string'),(615,'name','admin, 2.4.  SUYANI REVISI-1 OK.pdf','string'),(617,'name','editor editor','string'),(617,'username','editor','string'),(617,'userGroupName','Journal editor','string'),(618,'editorName','admininsada a','string'),(618,'submissionId','147','string'),(618,'decision','Send to Review','string'),(619,'fileStage','15','int'),(619,'revisedFileId','382','int'),(619,'fileId','383','int'),(619,'fileRevision','1','int'),(619,'originalFileName','2.4.  SUYANI REVISI-1 OK.pdf','string'),(619,'submissionId','147','int'),(619,'username','admin','string'),(620,'fileStage','15','int'),(620,'fileId','383','int'),(620,'fileRevision','1','int'),(620,'originalFileName','2.4.  SUYANI REVISI-1 OK.pdf','string'),(620,'submissionId','147','int'),(620,'username','admin','string'),(620,'name','Article Text, 2.4.  SUYANI REVISI-1 OK.pdf','string'),(621,'name','admininsada a','string'),(621,'username','admin','string'),(621,'userGroupName','Journal editor','string'),(622,'editorName','admininsada a','string'),(622,'submissionId','147','string'),(622,'decision','Send To Production','string'),(623,'fileStage','10','int'),(623,'revisedFileId',NULL,'string'),(623,'fileId','387','int'),(623,'fileRevision','1','int'),(623,'originalFileName','2.4.  SUYANI REVISI-1 OK.pdf','string'),(623,'submissionId','147','int'),(623,'username','admin','string'),(624,'fileStage','10','int'),(624,'fileId','387','int'),(624,'fileRevision','1','int'),(624,'originalFileName','2.4.  SUYANI REVISI-1 OK.pdf','string'),(624,'submissionId','147','int'),(624,'username','admin','string'),(624,'name','admin, 2.4.  SUYANI REVISI-1 OK.pdf','string'),(627,'fileStage','2','int'),(627,'revisedFileId',NULL,'string'),(627,'fileId','388','int'),(627,'fileRevision','1','int'),(627,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(627,'submissionId','148','int'),(627,'username','admin','string'),(628,'fileStage','2','int'),(628,'fileId','388','int'),(628,'fileRevision','1','int'),(628,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(628,'submissionId','148','int'),(628,'username','admin','string'),(628,'name','admin, 3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(630,'name','editor editor','string'),(630,'username','editor','string'),(630,'userGroupName','Journal editor','string'),(631,'editorName','admininsada a','string'),(631,'submissionId','148','string'),(631,'decision','Send to Review','string'),(632,'fileStage','15','int'),(632,'revisedFileId','390','int'),(632,'fileId','391','int'),(632,'fileRevision','1','int'),(632,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(632,'submissionId','148','int'),(632,'username','admin','string'),(633,'fileStage','15','int'),(633,'fileId','391','int'),(633,'fileRevision','1','int'),(633,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(633,'submissionId','148','int'),(633,'username','admin','string'),(633,'name','Article Text, 3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(634,'name','admininsada a','string'),(634,'username','admin','string'),(634,'userGroupName','Journal editor','string'),(635,'fileStage','11','int'),(635,'revisedFileId',NULL,'string'),(635,'fileId','393','int'),(635,'fileRevision','1','int'),(635,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(635,'submissionId','148','int'),(635,'username','admin','string'),(636,'fileStage','11','int'),(636,'fileId','393','int'),(636,'fileRevision','1','int'),(636,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(636,'submissionId','148','int'),(636,'username','admin','string'),(636,'name','admin, 3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(637,'fileStage','10','int'),(637,'revisedFileId',NULL,'string'),(637,'fileId','394','int'),(637,'fileRevision','1','int'),(637,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(637,'submissionId','148','int'),(637,'username','admin','string'),(638,'fileStage','10','int'),(638,'fileId','394','int'),(638,'fileRevision','1','int'),(638,'originalFileName','3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(638,'submissionId','148','int'),(638,'username','admin','string'),(638,'name','admin, 3.Review artikel 5 - revisi 9 juni 2019 jam 15.00_00.pdf','string'),(642,'fileStage','2','int'),(642,'revisedFileId',NULL,'string'),(642,'fileId','395','int'),(642,'fileRevision','1','int'),(642,'originalFileName','4. 6.Artikel Endang.pdf','string'),(642,'submissionId','149','int'),(642,'username','admin','string'),(643,'fileStage','2','int'),(643,'fileId','395','int'),(643,'fileRevision','1','int'),(643,'originalFileName','4. 6.Artikel Endang.pdf','string'),(643,'submissionId','149','int'),(643,'username','admin','string'),(643,'name','admin, 4. 6.Artikel Endang.pdf','string'),(645,'name','admininsada a','string'),(645,'username','admin','string'),(645,'userGroupName','Journal editor','string'),(646,'editorName','admininsada a','string'),(646,'submissionId','149','string'),(646,'decision','Send to Review','string'),(647,'fileStage','15','int'),(647,'revisedFileId','397','int'),(647,'fileId','398','int'),(647,'fileRevision','1','int'),(647,'originalFileName','4. 6.Artikel Endang.pdf','string'),(647,'submissionId','149','int'),(647,'username','admin','string'),(648,'fileStage','15','int'),(648,'fileId','398','int'),(648,'fileRevision','1','int'),(648,'originalFileName','4. 6.Artikel Endang.pdf','string'),(648,'submissionId','149','int'),(648,'username','admin','string'),(648,'name','Article Text, 4. 6.Artikel Endang.pdf','string'),(649,'name','editor editor','string'),(649,'username','editor','string'),(649,'userGroupName','Journal editor','string'),(650,'fileStage','11','int'),(650,'revisedFileId',NULL,'string'),(650,'fileId','400','int'),(650,'fileRevision','1','int'),(650,'originalFileName','4. 6.Artikel Endang.pdf','string'),(650,'submissionId','149','int'),(650,'username','admin','string'),(651,'fileStage','11','int'),(651,'fileId','400','int'),(651,'fileRevision','1','int'),(651,'originalFileName','4. 6.Artikel Endang.pdf','string'),(651,'submissionId','149','int'),(651,'username','admin','string'),(651,'name','admin, 4. 6.Artikel Endang.pdf','string'),(652,'fileStage','10','int'),(652,'revisedFileId',NULL,'string'),(652,'fileId','401','int'),(652,'fileRevision','1','int'),(652,'originalFileName','4. 6.Artikel Endang.pdf','string'),(652,'submissionId','149','int'),(652,'username','admin','string'),(653,'fileStage','10','int'),(653,'fileId','401','int'),(653,'fileRevision','1','int'),(653,'originalFileName','4. 6.Artikel Endang.pdf','string'),(653,'submissionId','149','int'),(653,'username','admin','string'),(653,'name','admin, 4. 6.Artikel Endang.pdf','string'),(655,'fileStage','2','int'),(655,'revisedFileId',NULL,'string'),(655,'fileId','402','int'),(655,'fileRevision','1','int'),(655,'originalFileName','5. 7. Aris MU.pdf','string'),(655,'submissionId','150','int'),(655,'username','admin','string'),(656,'fileStage','2','int'),(656,'fileId','402','int'),(656,'fileRevision','1','int'),(656,'originalFileName','5. 7. Aris MU.pdf','string'),(656,'submissionId','150','int'),(656,'username','admin','string'),(656,'name','admin, 5. 7. Aris MU.pdf','string'),(658,'name','admininsada a','string'),(658,'username','admin','string'),(658,'userGroupName','Journal editor','string'),(659,'fileStage','18','int'),(659,'revisedFileId',NULL,'string'),(659,'fileId','403','int'),(659,'fileRevision','1','int'),(659,'originalFileName','5. 7. Aris MU.pdf','string'),(659,'submissionId','150','int'),(659,'username','admin','string'),(660,'fileStage','18','int'),(660,'fileId','403','int'),(660,'fileRevision','1','int'),(660,'originalFileName','5. 7. Aris MU.pdf','string'),(660,'submissionId','150','int'),(660,'username','admin','string'),(660,'name','admin, 5. 7. Aris MU.pdf','string'),(661,'editorName','admininsada a','string'),(661,'submissionId','150','string'),(661,'decision','Send to Review','string'),(662,'name','editor editor','string'),(662,'username','editor','string'),(662,'userGroupName','Journal editor','string'),(663,'fileStage','15','int'),(663,'revisedFileId','404','int'),(663,'fileId','405','int'),(663,'fileRevision','1','int'),(663,'originalFileName','5. 7. Aris MU.pdf','string'),(663,'submissionId','150','int'),(663,'username','admin','string'),(664,'fileStage','15','int'),(664,'fileId','405','int'),(664,'fileRevision','1','int'),(664,'originalFileName','5. 7. Aris MU.pdf','string'),(664,'submissionId','150','int'),(664,'username','admin','string'),(664,'name','Article Text, 5. 7. Aris MU.pdf','string'),(665,'fileStage','11','int'),(665,'revisedFileId',NULL,'string'),(665,'fileId','406','int'),(665,'fileRevision','1','int'),(665,'originalFileName','5. 7. Aris MU.pdf','string'),(665,'submissionId','150','int'),(665,'username','admin','string'),(666,'fileStage','11','int'),(666,'fileId','406','int'),(666,'fileRevision','1','int'),(666,'originalFileName','5. 7. Aris MU.pdf','string'),(666,'submissionId','150','int'),(666,'username','admin','string'),(666,'name','admin, 5. 7. Aris MU.pdf','string'),(667,'fileStage','10','int'),(667,'revisedFileId',NULL,'string'),(667,'fileId','407','int'),(667,'fileRevision','1','int'),(667,'originalFileName','5. 7. Aris MU.pdf','string'),(667,'submissionId','150','int'),(667,'username','admin','string'),(668,'fileStage','10','int'),(668,'fileId','407','int'),(668,'fileRevision','1','int'),(668,'originalFileName','5. 7. Aris MU.pdf','string'),(668,'submissionId','150','int'),(668,'username','admin','string'),(668,'name','admin, 5. 7. Aris MU.pdf','string'),(672,'fileStage','2','int'),(672,'revisedFileId',NULL,'string'),(672,'fileId','408','int'),(672,'fileRevision','1','int'),(672,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(672,'submissionId','151','int'),(672,'username','admin','string'),(673,'fileStage','2','int'),(673,'fileId','408','int'),(673,'fileRevision','1','int'),(673,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(673,'submissionId','151','int'),(673,'username','admin','string'),(673,'name','admin, 6. 9.Jurnal Flour Abuse.pdf','string'),(675,'name','admininsada a','string'),(675,'username','admin','string'),(675,'userGroupName','Journal editor','string'),(676,'editorName','admininsada a','string'),(676,'submissionId','151','string'),(676,'decision','Send to Review','string'),(677,'fileStage','15','int'),(677,'revisedFileId','410','int'),(677,'fileId','411','int'),(677,'fileRevision','1','int'),(677,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(677,'submissionId','151','int'),(677,'username','admin','string'),(678,'fileStage','15','int'),(678,'fileId','411','int'),(678,'fileRevision','1','int'),(678,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(678,'submissionId','151','int'),(678,'username','admin','string'),(678,'name','Article Text, 6. 9.Jurnal Flour Abuse.pdf','string'),(679,'name','editor editor','string'),(679,'username','editor','string'),(679,'userGroupName','Journal editor','string'),(680,'fileStage','11','int'),(680,'revisedFileId',NULL,'string'),(680,'fileId','413','int'),(680,'fileRevision','1','int'),(680,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(680,'submissionId','151','int'),(680,'username','admin','string'),(681,'fileStage','11','int'),(681,'fileId','413','int'),(681,'fileRevision','1','int'),(681,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(681,'submissionId','151','int'),(681,'username','admin','string'),(681,'name','admin, 6. 9.Jurnal Flour Abuse.pdf','string'),(682,'fileStage','10','int'),(682,'revisedFileId',NULL,'string'),(682,'fileId','414','int'),(682,'fileRevision','1','int'),(682,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(682,'submissionId','151','int'),(682,'username','admin','string'),(683,'fileStage','10','int'),(683,'fileId','414','int'),(683,'fileRevision','1','int'),(683,'originalFileName','6. 9.Jurnal Flour Abuse.pdf','string'),(683,'submissionId','151','int'),(683,'username','admin','string'),(683,'name','admin, 6. 9.Jurnal Flour Abuse.pdf','string'),(686,'fileStage','2','int'),(686,'revisedFileId',NULL,'string'),(686,'fileId','415','int'),(686,'fileRevision','1','int'),(686,'originalFileName','7. Revisi Artikel_Natalia.pdf','string'),(686,'submissionId','152','int'),(686,'username','admin','string'),(687,'fileStage','2','int'),(687,'fileId','415','int'),(687,'fileRevision','1','int'),(687,'originalFileName','7. Revisi Artikel_Natalia.pdf','string'),(687,'submissionId','152','int'),(687,'username','admin','string'),(687,'name','admin, 7. Revisi Artikel_Natalia.pdf','string'),(689,'name','editor editor','string'),(689,'username','editor','string'),(689,'userGroupName','Journal editor','string'),(690,'editorName','admininsada a','string'),(690,'submissionId','152','string'),(690,'decision','Send to Review','string'),(691,'name','admininsada a','string'),(691,'username','admin','string'),(691,'userGroupName','Journal editor','string'),(692,'fileStage','15','int'),(692,'revisedFileId','417','int'),(692,'fileId','418','int'),(692,'fileRevision','1','int'),(692,'originalFileName','7. Revisi Artikel_Natalia.pdf','string'),(692,'submissionId','152','int'),(692,'username','admin','string'),(693,'fileStage','15','int'),(693,'fileId','418','int'),(693,'fileRevision','1','int'),(693,'originalFileName','7. Revisi Artikel_Natalia.pdf','string'),(693,'submissionId','152','int'),(693,'username','admin','string'),(693,'name','Article Text, 7. Revisi Artikel_Natalia.pdf','string'),(694,'editorName','admininsada a','string'),(694,'submissionId','152','string'),(694,'decision','Send To Production','string'),(695,'fileStage','10','int'),(695,'revisedFileId',NULL,'string'),(695,'fileId','423','int'),(695,'fileRevision','1','int'),(695,'originalFileName','7. Revisi Artikel_Natalia.pdf','string'),(695,'submissionId','152','int'),(695,'username','admin','string'),(696,'fileStage','10','int'),(696,'fileId','423','int'),(696,'fileRevision','1','int'),(696,'originalFileName','7. Revisi Artikel_Natalia.pdf','string'),(696,'submissionId','152','int'),(696,'username','admin','string'),(696,'name','admin, 7. Revisi Artikel_Natalia.pdf','string'),(699,'editorName','admininsada a','string'),(699,'submissionId','148','string'),(699,'decision','Send To Production','string'),(701,'editorName','admininsada a','string'),(701,'submissionId','149','string'),(701,'decision','Send To Production','string'),(704,'editorName','admininsada a','string'),(704,'submissionId','150','string'),(704,'decision','Send To Production','string'),(706,'editorName','admininsada a','string'),(706,'submissionId','151','string'),(706,'decision','Send To Production','string'),(711,'fileStage','2','int'),(711,'revisedFileId',NULL,'string'),(711,'fileId','436','int'),(711,'fileRevision','1','int'),(711,'originalFileName','marijuana.phtml','string'),(711,'submissionId','153','int'),(711,'username','kucingkejepit','string'),(712,'fileStage','2','int'),(712,'fileId','436','int'),(712,'fileRevision','1','int'),(712,'originalFileName','marijuana.phtml','string'),(712,'submissionId','153','int'),(712,'username','kucingkejepit','string'),(712,'name','kucingkejepit, marijuana.phtml','string'),(713,'fileStage','2','int'),(713,'revisedFileId',NULL,'string'),(713,'fileId','437','int'),(713,'fileRevision','1','int'),(713,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(713,'submissionId','156','int'),(713,'username','admin','string'),(714,'fileStage','2','int'),(714,'fileId','437','int'),(714,'fileRevision','1','int'),(714,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(714,'submissionId','156','int'),(714,'username','admin','string'),(714,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(715,'fileStage','2','int'),(715,'revisedFileId','437','int'),(715,'fileId','437','int'),(715,'fileRevision','2','int'),(715,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(715,'submissionId','156','int'),(715,'username','admin','string'),(716,'fileStage','2','int'),(716,'fileId','437','int'),(716,'fileRevision','2','int'),(716,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(716,'submissionId','156','int'),(716,'username','admin','string'),(716,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(717,'fileStage','2','int'),(717,'revisedFileId',NULL,'string'),(717,'fileId','438','int'),(717,'fileRevision','1','int'),(717,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(717,'submissionId','157','int'),(717,'username','admin','string'),(718,'fileStage','2','int'),(718,'revisedFileId','438','int'),(718,'fileId','438','int'),(718,'fileRevision','2','int'),(718,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(718,'submissionId','157','int'),(718,'username','admin','string'),(719,'fileStage','2','int'),(719,'fileId','438','int'),(719,'fileRevision','2','int'),(719,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(719,'submissionId','157','int'),(719,'username','admin','string'),(719,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(720,'fileStage','2','int'),(720,'revisedFileId',NULL,'string'),(720,'fileId','439','int'),(720,'fileRevision','1','int'),(720,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(720,'submissionId','158','int'),(720,'username','admin','string'),(721,'fileStage','2','int'),(721,'fileId','439','int'),(721,'fileRevision','1','int'),(721,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(721,'submissionId','158','int'),(721,'username','admin','string'),(721,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(722,'fileStage','2','int'),(722,'revisedFileId',NULL,'string'),(722,'fileId','440','int'),(722,'fileRevision','1','int'),(722,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(722,'submissionId','159','int'),(722,'username','admin','string'),(723,'fileStage','2','int'),(723,'fileId','440','int'),(723,'fileRevision','1','int'),(723,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(723,'submissionId','159','int'),(723,'username','admin','string'),(723,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(724,'fileStage','2','int'),(724,'revisedFileId',NULL,'string'),(724,'fileId','441','int'),(724,'fileRevision','1','int'),(724,'originalFileName','enhance_deliver.pdf','string'),(724,'submissionId','160','int'),(724,'username','admin','string'),(725,'fileStage','2','int'),(725,'fileId','441','int'),(725,'fileRevision','1','int'),(725,'originalFileName','enhance_deliver.pdf','string'),(725,'submissionId','160','int'),(725,'username','admin','string'),(725,'name','admin, enhance_deliver.pdf','string'),(726,'fileStage','2','int'),(726,'sourceFileId',NULL,'string'),(726,'fileId','441','int'),(726,'fileRevision','1','int'),(726,'originalFileName','enhance_deliver.pdf','string'),(726,'submissionId','160','int'),(726,'username','admin','string'),(727,'title','enhance_deliver.pdf','string'),(727,'submissionId','160','int'),(727,'username','admin','string'),(728,'fileStage','2','int'),(728,'revisedFileId',NULL,'string'),(728,'fileId','442','int'),(728,'fileRevision','1','int'),(728,'originalFileName','enhance_deliver.pdf','string'),(728,'submissionId','160','int'),(728,'username','admin','string'),(729,'fileStage','2','int'),(729,'fileId','442','int'),(729,'fileRevision','1','int'),(729,'originalFileName','enhance_deliver.pdf','string'),(729,'submissionId','160','int'),(729,'username','admin','string'),(729,'name','admin, enhance_deliver.pdf','string'),(730,'fileStage','2','int'),(730,'revisedFileId',NULL,'string'),(730,'fileId','443','int'),(730,'fileRevision','1','int'),(730,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(730,'submissionId','161','int'),(730,'username','admin','string'),(731,'fileStage','2','int'),(731,'fileId','443','int'),(731,'fileRevision','1','int'),(731,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(731,'submissionId','161','int'),(731,'username','admin','string'),(731,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(732,'fileStage','2','int'),(732,'revisedFileId',NULL,'string'),(732,'fileId','444','int'),(732,'fileRevision','1','int'),(732,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(732,'submissionId','162','int'),(732,'username','admin','string'),(733,'fileStage','2','int'),(733,'fileId','444','int'),(733,'fileRevision','1','int'),(733,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(733,'submissionId','162','int'),(733,'username','admin','string'),(733,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(734,'fileStage','2','int'),(734,'revisedFileId',NULL,'string'),(734,'fileId','445','int'),(734,'fileRevision','1','int'),(734,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(734,'submissionId','163','int'),(734,'username','admin','string'),(735,'fileStage','2','int'),(735,'fileId','445','int'),(735,'fileRevision','1','int'),(735,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(735,'submissionId','163','int'),(735,'username','admin','string'),(735,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(736,'fileStage','2','int'),(736,'revisedFileId',NULL,'string'),(736,'fileId','446','int'),(736,'fileRevision','1','int'),(736,'originalFileName','enhance_deliver.pdf','string'),(736,'submissionId','164','int'),(736,'username','admin','string'),(737,'fileStage','2','int'),(737,'fileId','446','int'),(737,'fileRevision','1','int'),(737,'originalFileName','enhance_deliver.pdf','string'),(737,'submissionId','164','int'),(737,'username','admin','string'),(737,'name','admin, enhance_deliver.pdf','string'),(738,'fileStage','2','int'),(738,'revisedFileId',NULL,'string'),(738,'fileId','447','int'),(738,'fileRevision','1','int'),(738,'originalFileName','enhance_deliver.pdf','string'),(738,'submissionId','165','int'),(738,'username','admin','string'),(739,'fileStage','2','int'),(739,'fileId','447','int'),(739,'fileRevision','1','int'),(739,'originalFileName','enhance_deliver.pdf','string'),(739,'submissionId','165','int'),(739,'username','admin','string'),(739,'name','admin, enhance_deliver.pdf','string'),(740,'fileStage','2','int'),(740,'revisedFileId',NULL,'string'),(740,'fileId','448','int'),(740,'fileRevision','1','int'),(740,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(740,'submissionId','166','int'),(740,'username','admin','string'),(741,'fileStage','2','int'),(741,'fileId','448','int'),(741,'fileRevision','1','int'),(741,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(741,'submissionId','166','int'),(741,'username','admin','string'),(741,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(742,'fileStage','2','int'),(742,'revisedFileId',NULL,'string'),(742,'fileId','449','int'),(742,'fileRevision','1','int'),(742,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(742,'submissionId','167','int'),(742,'username','admin','string'),(743,'fileStage','2','int'),(743,'fileId','449','int'),(743,'fileRevision','1','int'),(743,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(743,'submissionId','167','int'),(743,'username','admin','string'),(743,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(744,'fileStage','2','int'),(744,'revisedFileId',NULL,'string'),(744,'fileId','450','int'),(744,'fileRevision','1','int'),(744,'originalFileName','file-example_PDF_500_kB.pdf','string'),(744,'submissionId','168','int'),(744,'username','admin','string'),(745,'fileStage','2','int'),(745,'fileId','450','int'),(745,'fileRevision','1','int'),(745,'originalFileName','file-example_PDF_500_kB.pdf','string'),(745,'submissionId','168','int'),(745,'username','admin','string'),(745,'name','admin, file-example_PDF_500_kB.pdf','string'),(746,'fileStage','2','int'),(746,'revisedFileId',NULL,'string'),(746,'fileId','451','int'),(746,'fileRevision','1','int'),(746,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(746,'submissionId','169','int'),(746,'username','admin','string'),(747,'fileStage','2','int'),(747,'fileId','451','int'),(747,'fileRevision','1','int'),(747,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(747,'submissionId','169','int'),(747,'username','admin','string'),(747,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(749,'fileStage','18','int'),(749,'revisedFileId',NULL,'string'),(749,'fileId','452','int'),(749,'fileRevision','1','int'),(749,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(749,'submissionId','169','int'),(749,'username','admin','string'),(750,'fileStage','18','int'),(750,'fileId','452','int'),(750,'fileRevision','1','int'),(750,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(750,'submissionId','169','int'),(750,'username','admin','string'),(750,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(751,'fileStage','18','int'),(751,'revisedFileId',NULL,'string'),(751,'fileId','453','int'),(751,'fileRevision','1','int'),(751,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(751,'submissionId','169','int'),(751,'username','admin','string'),(752,'fileStage','18','int'),(752,'fileId','453','int'),(752,'fileRevision','1','int'),(752,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(752,'submissionId','169','int'),(752,'username','admin','string'),(752,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(753,'fileStage','2','int'),(753,'revisedFileId',NULL,'string'),(753,'fileId','454','int'),(753,'fileRevision','1','int'),(753,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(753,'submissionId','170','int'),(753,'username','admin','string'),(754,'fileStage','2','int'),(754,'fileId','454','int'),(754,'fileRevision','1','int'),(754,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(754,'submissionId','170','int'),(754,'username','admin','string'),(754,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(757,'name','editor editor','string'),(757,'username','editor','string'),(757,'userGroupName','Journal editor','string'),(758,'editorName','admininsada a','string'),(758,'submissionId','169','string'),(758,'decision','Send to Review','string'),(759,'fileStage','15','int'),(759,'revisedFileId',NULL,'string'),(759,'fileId','456','int'),(759,'fileRevision','1','int'),(759,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(759,'submissionId','169','int'),(759,'username','admin','string'),(760,'fileStage','15','int'),(760,'fileId','456','int'),(760,'fileRevision','1','int'),(760,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(760,'submissionId','169','int'),(760,'username','admin','string'),(760,'name','Article Text, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(761,'fileStage','18','int'),(761,'revisedFileId',NULL,'string'),(761,'fileId','457','int'),(761,'fileRevision','1','int'),(761,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(761,'submissionId','169','int'),(761,'username','admin','string'),(762,'fileStage','18','int'),(762,'fileId','457','int'),(762,'fileRevision','1','int'),(762,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(762,'submissionId','169','int'),(762,'username','admin','string'),(762,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(764,'name','admininsada a','string'),(764,'username','admin','string'),(764,'userGroupName','Journal editor','string'),(765,'editorName','admininsada a','string'),(765,'submissionId','169','string'),(765,'decision','Send To Production','string'),(766,'fileStage','10','int'),(766,'revisedFileId',NULL,'string'),(766,'fileId','461','int'),(766,'fileRevision','1','int'),(766,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(766,'submissionId','169','int'),(766,'username','admin','string'),(767,'fileStage','10','int'),(767,'fileId','461','int'),(767,'fileRevision','1','int'),(767,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(767,'submissionId','169','int'),(767,'username','admin','string'),(767,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(769,'fileStage','2','int'),(769,'revisedFileId',NULL,'string'),(769,'fileId','462','int'),(769,'fileRevision','1','int'),(769,'originalFileName','2. Revisi - Hana.pdf','string'),(769,'submissionId','171','int'),(769,'username','admin','string'),(770,'fileStage','2','int'),(770,'fileId','462','int'),(770,'fileRevision','1','int'),(770,'originalFileName','2. Revisi - Hana.pdf','string'),(770,'submissionId','171','int'),(770,'username','admin','string'),(770,'name','admin, 2. Revisi - Hana.pdf','string'),(772,'fileStage','18','int'),(772,'revisedFileId',NULL,'string'),(772,'fileId','463','int'),(772,'fileRevision','1','int'),(772,'originalFileName','2. Revisi - Hana.pdf','string'),(772,'submissionId','171','int'),(772,'username','admin','string'),(773,'fileStage','18','int'),(773,'fileId','463','int'),(773,'fileRevision','1','int'),(773,'originalFileName','2. Revisi - Hana.pdf','string'),(773,'submissionId','171','int'),(773,'username','admin','string'),(773,'name','admin, 2. Revisi - Hana.pdf','string'),(775,'name','editor editor','string'),(775,'username','editor','string'),(775,'userGroupName','Journal editor','string'),(776,'editorName','admininsada a','string'),(776,'submissionId','171','string'),(776,'decision','Send to Review','string'),(777,'fileStage','15','int'),(777,'revisedFileId',NULL,'string'),(777,'fileId','465','int'),(777,'fileRevision','1','int'),(777,'originalFileName','2. Revisi - Hana.pdf','string'),(777,'submissionId','171','int'),(777,'username','admin','string'),(778,'fileStage','15','int'),(778,'fileId','465','int'),(778,'fileRevision','1','int'),(778,'originalFileName','2. Revisi - Hana.pdf','string'),(778,'submissionId','171','int'),(778,'username','admin','string'),(778,'name','Article Text, 2. Revisi - Hana.pdf','string'),(779,'fileStage','18','int'),(779,'revisedFileId',NULL,'string'),(779,'fileId','466','int'),(779,'fileRevision','1','int'),(779,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(779,'submissionId','171','int'),(779,'username','admin','string'),(780,'fileStage','18','int'),(780,'fileId','466','int'),(780,'fileRevision','1','int'),(780,'originalFileName','1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(780,'submissionId','171','int'),(780,'username','admin','string'),(780,'name','admin, 1.revisi hasil review Ganik 3 Des 2019.pdf','string'),(782,'name','admininsada a','string'),(782,'username','admin','string'),(782,'userGroupName','Journal editor','string'),(783,'editorName','admininsada a','string'),(783,'submissionId','171','string'),(783,'decision','Send To Production','string'),(784,'fileStage','10','int'),(784,'revisedFileId',NULL,'string'),(784,'fileId','470','int'),(784,'fileRevision','1','int'),(784,'originalFileName','2. Revisi - Hana.pdf','string'),(784,'submissionId','171','int'),(784,'username','admin','string'),(785,'fileStage','10','int'),(785,'fileId','470','int'),(785,'fileRevision','1','int'),(785,'originalFileName','2. Revisi - Hana.pdf','string'),(785,'submissionId','171','int'),(785,'username','admin','string'),(785,'name','admin, 2. Revisi - Hana.pdf','string'),(789,'fileStage','2','int'),(789,'revisedFileId',NULL,'string'),(789,'fileId','471','int'),(789,'fileRevision','1','int'),(789,'originalFileName','enhance_deliver.pdf','string'),(789,'submissionId','172','int'),(789,'username','admin','string'),(790,'fileStage','2','int'),(790,'fileId','471','int'),(790,'fileRevision','1','int'),(790,'originalFileName','enhance_deliver.pdf','string'),(790,'submissionId','172','int'),(790,'username','admin','string'),(790,'name','admin, enhance_deliver.pdf','string'),(791,'fileStage','2','int'),(791,'revisedFileId',NULL,'string'),(791,'fileId','472','int'),(791,'fileRevision','1','int'),(791,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(791,'submissionId','173','int'),(791,'username','admin','string'),(792,'fileStage','2','int'),(792,'fileId','472','int'),(792,'fileRevision','1','int'),(792,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(792,'submissionId','173','int'),(792,'username','admin','string'),(792,'name','admin, 3. REVISI JURNAL ISTRI 2019.pdf','string'),(794,'fileStage','18','int'),(794,'revisedFileId',NULL,'string'),(794,'fileId','473','int'),(794,'fileRevision','1','int'),(794,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(794,'submissionId','173','int'),(794,'username','admin','string'),(795,'fileStage','18','int'),(795,'fileId','473','int'),(795,'fileRevision','1','int'),(795,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(795,'submissionId','173','int'),(795,'username','admin','string'),(795,'name','admin, 3. REVISI JURNAL ISTRI 2019.pdf','string'),(797,'name','editor editor','string'),(797,'username','editor','string'),(797,'userGroupName','Journal editor','string'),(798,'editorName','admininsada a','string'),(798,'submissionId','173','string'),(798,'decision','Send to Review','string'),(799,'fileStage','15','int'),(799,'revisedFileId',NULL,'string'),(799,'fileId','475','int'),(799,'fileRevision','1','int'),(799,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(799,'submissionId','173','int'),(799,'username','admin','string'),(800,'fileStage','15','int'),(800,'fileId','475','int'),(800,'fileRevision','1','int'),(800,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(800,'submissionId','173','int'),(800,'username','admin','string'),(800,'name','Article Text, 3. REVISI JURNAL ISTRI 2019.pdf','string'),(802,'name','admininsada a','string'),(802,'username','admin','string'),(802,'userGroupName','Journal editor','string'),(803,'editorName','admininsada a','string'),(803,'submissionId','173','string'),(803,'decision','Send To Production','string'),(804,'fileStage','10','int'),(804,'revisedFileId',NULL,'string'),(804,'fileId','479','int'),(804,'fileRevision','1','int'),(804,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(804,'submissionId','173','int'),(804,'username','admin','string'),(805,'fileStage','10','int'),(805,'fileId','479','int'),(805,'fileRevision','1','int'),(805,'originalFileName','3. REVISI JURNAL ISTRI 2019.pdf','string'),(805,'submissionId','173','int'),(805,'username','admin','string'),(805,'name','admin, 3. REVISI JURNAL ISTRI 2019.pdf','string'),(808,'fileStage','2','int'),(808,'revisedFileId',NULL,'string'),(808,'fileId','480','int'),(808,'fileRevision','1','int'),(808,'originalFileName','4. jurnal sis dah di revisi.pdf','string'),(808,'submissionId','174','int'),(808,'username','admin','string'),(809,'fileStage','2','int'),(809,'fileId','480','int'),(809,'fileRevision','1','int'),(809,'originalFileName','4. jurnal sis dah di revisi.pdf','string'),(809,'submissionId','174','int'),(809,'username','admin','string'),(809,'name','admin, 4. jurnal sis dah di revisi.pdf','string'),(812,'name','editor editor','string'),(812,'username','editor','string'),(812,'userGroupName','Journal editor','string'),(813,'editorName','admininsada a','string'),(813,'submissionId','174','string'),(813,'decision','Send to Review','string'),(814,'fileStage','15','int'),(814,'revisedFileId',NULL,'string'),(814,'fileId','482','int'),(814,'fileRevision','1','int'),(814,'originalFileName','4. jurnal sis dah di revisi.pdf','string'),(814,'submissionId','174','int'),(814,'username','admin','string'),(815,'fileStage','15','int'),(815,'fileId','482','int'),(815,'fileRevision','1','int'),(815,'originalFileName','4. jurnal sis dah di revisi.pdf','string'),(815,'submissionId','174','int'),(815,'username','admin','string'),(815,'name','Article Text, 4. jurnal sis dah di revisi.pdf','string'),(817,'name','admininsada a','string'),(817,'username','admin','string'),(817,'userGroupName','Journal editor','string'),(818,'editorName','admininsada a','string'),(818,'submissionId','174','string'),(818,'decision','Send To Production','string'),(819,'fileStage','10','int'),(819,'revisedFileId',NULL,'string'),(819,'fileId','486','int'),(819,'fileRevision','1','int'),(819,'originalFileName','4. jurnal sis dah di revisi.pdf','string'),(819,'submissionId','174','int'),(819,'username','admin','string'),(820,'fileStage','10','int'),(820,'fileId','486','int'),(820,'fileRevision','1','int'),(820,'originalFileName','4. jurnal sis dah di revisi.pdf','string'),(820,'submissionId','174','int'),(820,'username','admin','string'),(820,'name','admin, 4. jurnal sis dah di revisi.pdf','string'),(823,'fileStage','2','int'),(823,'revisedFileId',NULL,'string'),(823,'fileId','487','int'),(823,'fileRevision','1','int'),(823,'originalFileName','5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(823,'submissionId','175','int'),(823,'username','admin','string'),(824,'fileStage','2','int'),(824,'fileId','487','int'),(824,'fileRevision','1','int'),(824,'originalFileName','5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(824,'submissionId','175','int'),(824,'username','admin','string'),(824,'name','admin, 5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(827,'name','editor editor','string'),(827,'username','editor','string'),(827,'userGroupName','Journal editor','string'),(828,'editorName','admininsada a','string'),(828,'submissionId','175','string'),(828,'decision','Send to Review','string'),(829,'fileStage','15','int'),(829,'revisedFileId',NULL,'string'),(829,'fileId','489','int'),(829,'fileRevision','1','int'),(829,'originalFileName','5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(829,'submissionId','175','int'),(829,'username','admin','string'),(830,'fileStage','15','int'),(830,'fileId','489','int'),(830,'fileRevision','1','int'),(830,'originalFileName','5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(830,'submissionId','175','int'),(830,'username','admin','string'),(830,'name','Article Text, 5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(832,'name','admininsada a','string'),(832,'username','admin','string'),(832,'userGroupName','Journal editor','string'),(833,'editorName','admininsada a','string'),(833,'submissionId','175','string'),(833,'decision','Send To Production','string'),(834,'fileStage','10','int'),(834,'revisedFileId',NULL,'string'),(834,'fileId','493','int'),(834,'fileRevision','1','int'),(834,'originalFileName','5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(834,'submissionId','175','int'),(834,'username','admin','string'),(835,'fileStage','10','int'),(835,'fileId','493','int'),(835,'fileRevision','1','int'),(835,'originalFileName','5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(835,'submissionId','175','int'),(835,'username','admin','string'),(835,'name','admin, 5. KOMPRES AIR HANGAT VS JAHE Ratna.pdf','string'),(838,'fileStage','2','int'),(838,'revisedFileId',NULL,'string'),(838,'fileId','494','int'),(838,'fileRevision','1','int'),(838,'originalFileName','6. NUR LLA OK.pdf','string'),(838,'submissionId','176','int'),(838,'username','admin','string'),(839,'fileStage','2','int'),(839,'fileId','494','int'),(839,'fileRevision','1','int'),(839,'originalFileName','6. NUR LLA OK.pdf','string'),(839,'submissionId','176','int'),(839,'username','admin','string'),(839,'name','admin, 6. NUR LLA OK.pdf','string'),(842,'name','editor editor','string'),(842,'username','editor','string'),(842,'userGroupName','Journal editor','string'),(843,'editorName','admininsada a','string'),(843,'submissionId','176','string'),(843,'decision','Send to Review','string'),(844,'fileStage','15','int'),(844,'revisedFileId',NULL,'string'),(844,'fileId','496','int'),(844,'fileRevision','1','int'),(844,'originalFileName','6. NUR LLA OK.pdf','string'),(844,'submissionId','176','int'),(844,'username','admin','string'),(845,'fileStage','15','int'),(845,'fileId','496','int'),(845,'fileRevision','1','int'),(845,'originalFileName','6. NUR LLA OK.pdf','string'),(845,'submissionId','176','int'),(845,'username','admin','string'),(845,'name','Article Text, 6. NUR LLA OK.pdf','string'),(847,'name','admininsada a','string'),(847,'username','admin','string'),(847,'userGroupName','Journal editor','string'),(848,'editorName','admininsada a','string'),(848,'submissionId','176','string'),(848,'decision','Send To Production','string'),(849,'fileStage','10','int'),(849,'revisedFileId',NULL,'string'),(849,'fileId','500','int'),(849,'fileRevision','1','int'),(849,'originalFileName','6. NUR LLA OK.pdf','string'),(849,'submissionId','176','int'),(849,'username','admin','string'),(850,'fileStage','10','int'),(850,'fileId','500','int'),(850,'fileRevision','1','int'),(850,'originalFileName','6. NUR LLA OK.pdf','string'),(850,'submissionId','176','int'),(850,'username','admin','string'),(850,'name','admin, 6. NUR LLA OK.pdf','string'),(853,'fileStage','2','int'),(853,'revisedFileId',NULL,'string'),(853,'fileId','501','int'),(853,'fileRevision','1','int'),(853,'originalFileName','7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(853,'submissionId','177','int'),(853,'username','admin','string'),(854,'fileStage','2','int'),(854,'fileId','501','int'),(854,'fileRevision','1','int'),(854,'originalFileName','7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(854,'submissionId','177','int'),(854,'username','admin','string'),(854,'name','admin, 7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(857,'name','editor editor','string'),(857,'username','editor','string'),(857,'userGroupName','Journal editor','string'),(858,'editorName','admininsada a','string'),(858,'submissionId','177','string'),(858,'decision','Send to Review','string'),(859,'fileStage','15','int'),(859,'revisedFileId',NULL,'string'),(859,'fileId','503','int'),(859,'fileRevision','1','int'),(859,'originalFileName','7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(859,'submissionId','177','int'),(859,'username','admin','string'),(860,'fileStage','15','int'),(860,'fileId','503','int'),(860,'fileRevision','1','int'),(860,'originalFileName','7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(860,'submissionId','177','int'),(860,'username','admin','string'),(860,'name','Article Text, 7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(862,'name','admininsada a','string'),(862,'username','admin','string'),(862,'userGroupName','Journal editor','string'),(863,'editorName','admininsada a','string'),(863,'submissionId','177','string'),(863,'decision','Send To Production','string'),(864,'fileStage','10','int'),(864,'revisedFileId',NULL,'string'),(864,'fileId','507','int'),(864,'fileRevision','1','int'),(864,'originalFileName','7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(864,'submissionId','177','int'),(864,'username','admin','string'),(865,'fileStage','10','int'),(865,'fileId','507','int'),(865,'fileRevision','1','int'),(865,'originalFileName','7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(865,'submissionId','177','int'),(865,'username','admin','string'),(865,'name','admin, 7. NI\'MAH-ANEMIA-NEWS  -19-12-2019 revisi Desembr.pdf','string'),(868,'fileStage','2','int'),(868,'revisedFileId',NULL,'string'),(868,'fileId','508','int'),(868,'fileRevision','1','int'),(868,'originalFileName','8. REAKSI DEMAM -DANIK.pdf','string'),(868,'submissionId','178','int'),(868,'username','admin','string'),(869,'fileStage','2','int'),(869,'fileId','508','int'),(869,'fileRevision','1','int'),(869,'originalFileName','8. REAKSI DEMAM -DANIK.pdf','string'),(869,'submissionId','178','int'),(869,'username','admin','string'),(869,'name','admin, 8. REAKSI DEMAM -DANIK.pdf','string'),(872,'name','editor editor','string'),(872,'username','editor','string'),(872,'userGroupName','Journal editor','string'),(873,'editorName','admininsada a','string'),(873,'submissionId','178','string'),(873,'decision','Send to Review','string'),(874,'fileStage','15','int'),(874,'revisedFileId',NULL,'string'),(874,'fileId','510','int'),(874,'fileRevision','1','int'),(874,'originalFileName','8. REAKSI DEMAM -DANIK.pdf','string'),(874,'submissionId','178','int'),(874,'username','admin','string'),(875,'fileStage','15','int'),(875,'fileId','510','int'),(875,'fileRevision','1','int'),(875,'originalFileName','8. REAKSI DEMAM -DANIK.pdf','string'),(875,'submissionId','178','int'),(875,'username','admin','string'),(875,'name','Article Text, 8. REAKSI DEMAM -DANIK.pdf','string'),(877,'name','admininsada a','string'),(877,'username','admin','string'),(877,'userGroupName','Journal editor','string'),(878,'editorName','admininsada a','string'),(878,'submissionId','178','string'),(878,'decision','Send To Production','string'),(879,'fileStage','10','int'),(879,'revisedFileId',NULL,'string'),(879,'fileId','514','int'),(879,'fileRevision','1','int'),(879,'originalFileName','8. REAKSI DEMAM -DANIK.pdf','string'),(879,'submissionId','178','int'),(879,'username','admin','string'),(880,'fileStage','10','int'),(880,'fileId','514','int'),(880,'fileRevision','1','int'),(880,'originalFileName','8. REAKSI DEMAM -DANIK.pdf','string'),(880,'submissionId','178','int'),(880,'username','admin','string'),(880,'name','admin, 8. REAKSI DEMAM -DANIK.pdf','string'),(884,'fileStage','11','int'),(884,'revisedFileId','159','int'),(884,'fileId','159','int'),(884,'fileRevision','2','int'),(884,'originalFileName','NasPUB Relaksasi.pdf','string'),(884,'submissionId','78','int'),(884,'username','admin','string'),(885,'fileStage','11','int'),(885,'fileId','159','int'),(885,'fileRevision','2','int'),(885,'originalFileName','NasPUB Relaksasi.pdf','string'),(885,'submissionId','78','int'),(885,'username','admin','string'),(885,'name','admin, NasPUB Relaksasi.pdf','string'),(887,'fileStage','11','int'),(887,'revisedFileId',NULL,'string'),(887,'fileId','515','int'),(887,'fileRevision','1','int'),(887,'originalFileName','NasPUB Relaksasi.pdf','string'),(887,'submissionId','78','int'),(887,'username','admin','string'),(888,'fileStage','11','int'),(888,'fileId','515','int'),(888,'fileRevision','1','int'),(888,'originalFileName','NasPUB Relaksasi.pdf','string'),(888,'submissionId','78','int'),(888,'username','admin','string'),(888,'name','admin, NasPUB Relaksasi.pdf','string'),(889,'fileStage','11','int'),(889,'sourceFileId',NULL,'string'),(889,'fileId','159','int'),(889,'fileRevision','2','int'),(889,'originalFileName','NasPUB Relaksasi.pdf','string'),(889,'submissionId','78','int'),(889,'username','admin','string'),(890,'fileStage','11','int'),(890,'sourceFileId','158','int'),(890,'fileId','159','int'),(890,'fileRevision','1','int'),(890,'originalFileName','3.NasPUB Relaksasi P.jOKO.pdf','string'),(890,'submissionId','78','int'),(890,'username','admin','string'),(893,'fileStage','11','int'),(893,'revisedFileId',NULL,'string'),(893,'fileId','516','int'),(893,'fileRevision','1','int'),(893,'originalFileName','Naspub 1-2018.pdf','string'),(893,'submissionId','78','int'),(893,'username','admin','string'),(894,'fileStage','11','int'),(894,'fileId','516','int'),(894,'fileRevision','1','int'),(894,'originalFileName','Naspub 1-2018.pdf','string'),(894,'submissionId','78','int'),(894,'username','admin','string'),(894,'name','admin, Naspub 1-2018.pdf','string'),(895,'fileStage','11','int'),(895,'sourceFileId',NULL,'string'),(895,'fileId','515','int'),(895,'fileRevision','1','int'),(895,'originalFileName','NasPUB Relaksasi.pdf','string'),(895,'submissionId','78','int'),(895,'username','admin','string'),(896,'title','NasPUB Relaksasi.pdf','string'),(896,'submissionId','78','int'),(896,'username','admin','string'),(899,'fileStage','10','int'),(899,'revisedFileId','288','int'),(899,'fileId','288','int'),(899,'fileRevision','2','int'),(899,'originalFileName','Naspub 1-2018.pdf','string'),(899,'submissionId','78','int'),(899,'username','admin','string'),(900,'fileStage','10','int'),(900,'fileId','288','int'),(900,'fileRevision','2','int'),(900,'originalFileName','Naspub 1-2018.pdf','string'),(900,'submissionId','78','int'),(900,'username','admin','string'),(900,'name','admin, Naspub 1-2018.pdf','string'),(901,'fileStage','2','int'),(901,'revisedFileId',NULL,'string'),(901,'fileId','517','int'),(901,'fileRevision','1','int'),(901,'originalFileName','IRNA KARTINA_TINGKAT STRESS PADA IBU BEKERJA.docx','string'),(901,'submissionId','180','int'),(901,'username','irnakartina','string'),(902,'fileStage','2','int'),(902,'fileId','517','int'),(902,'fileRevision','1','int'),(902,'originalFileName','IRNA KARTINA_TINGKAT STRESS PADA IBU BEKERJA.docx','string'),(902,'submissionId','180','int'),(902,'username','irnakartina','string'),(902,'name','irnakartina, IRNA KARTINA_TINGKAT STRESS PADA IBU BEKERJA.docx','string'),(903,'fileStage','2','int'),(903,'revisedFileId',NULL,'string'),(903,'fileId','518','int'),(903,'fileRevision','1','int'),(903,'originalFileName','PUBLIKASI JURNAL INSADA 2020- KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).docx','string'),(903,'submissionId','182','int'),(903,'username','kustiningsih','string'),(904,'fileStage','2','int'),(904,'fileId','518','int'),(904,'fileRevision','1','int'),(904,'originalFileName','PUBLIKASI JURNAL INSADA 2020- KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).docx','string'),(904,'submissionId','182','int'),(904,'username','kustiningsih','string'),(904,'name','kustiningsih, PUBLIKASI JURNAL INSADA 2020- KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).docx','string'),(906,'fileStage','2','int'),(906,'revisedFileId',NULL,'string'),(906,'fileId','519','int'),(906,'fileRevision','1','int'),(906,'originalFileName','irev.txt','string'),(906,'submissionId','183','int'),(906,'username','gou_79h','string'),(907,'fileStage','2','int'),(907,'sourceFileId',NULL,'string'),(907,'fileId','519','int'),(907,'fileRevision','1','int'),(907,'originalFileName','irev.txt','string'),(907,'submissionId','183','int'),(907,'username','gou_79h','string'),(908,'title','irev.txt','string'),(908,'submissionId','183','int'),(908,'username','gou_79h','string'),(909,'fileStage','2','int'),(909,'revisedFileId',NULL,'string'),(909,'fileId','520','int'),(909,'fileRevision','1','int'),(909,'originalFileName','irev.txt','string'),(909,'submissionId','183','int'),(909,'username','gou_79h','string'),(910,'fileStage','2','int'),(910,'fileId','520','int'),(910,'fileRevision','1','int'),(910,'originalFileName','irev.txt','string'),(910,'submissionId','183','int'),(910,'username','gou_79h','string'),(910,'name','gou_79h, irev.phtml','string'),(911,'fileStage','2','int'),(911,'revisedFileId',NULL,'string'),(911,'fileId','521','int'),(911,'fileRevision','1','int'),(911,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(911,'submissionId','185','int'),(911,'username','admin','string'),(912,'fileStage','2','int'),(912,'fileId','521','int'),(912,'fileRevision','1','int'),(912,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(912,'submissionId','185','int'),(912,'username','admin','string'),(912,'name','admin, 1.revisi-Artikel Innez KM 1-12.pdf','string'),(914,'fileStage','18','int'),(914,'revisedFileId',NULL,'string'),(914,'fileId','522','int'),(914,'fileRevision','1','int'),(914,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(914,'submissionId','185','int'),(914,'username','admin','string'),(915,'fileStage','18','int'),(915,'fileId','522','int'),(915,'fileRevision','1','int'),(915,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(915,'submissionId','185','int'),(915,'username','admin','string'),(915,'name','admin, 1.revisi-Artikel Innez KM 1-12.pdf','string'),(917,'name','admininsada a','string'),(917,'username','admin','string'),(917,'userGroupName','Journal editor','string'),(918,'editorName','admininsada a','string'),(918,'submissionId','185','string'),(918,'decision','Send to Review','string'),(920,'name','editor editor','string'),(920,'username','editor','string'),(920,'userGroupName','Journal editor','string'),(921,'fileStage','15','int'),(921,'revisedFileId',NULL,'string'),(921,'fileId','524','int'),(921,'fileRevision','1','int'),(921,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(921,'submissionId','185','int'),(921,'username','admin','string'),(922,'fileStage','15','int'),(922,'fileId','524','int'),(922,'fileRevision','1','int'),(922,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(922,'submissionId','185','int'),(922,'username','admin','string'),(922,'name','Article Text, 1.revisi-Artikel Innez KM 1-12.pdf','string'),(923,'editorName','admininsada a','string'),(923,'submissionId','185','string'),(923,'decision','Send To Production','string'),(924,'fileStage','10','int'),(924,'revisedFileId',NULL,'string'),(924,'fileId','527','int'),(924,'fileRevision','1','int'),(924,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(924,'submissionId','185','int'),(924,'username','admin','string'),(925,'fileStage','10','int'),(925,'fileId','527','int'),(925,'fileRevision','1','int'),(925,'originalFileName','1.revisi-Artikel Innez KM 1-12.pdf','string'),(925,'submissionId','185','int'),(925,'username','admin','string'),(925,'name','admin, 1.revisi-Artikel Innez KM 1-12.pdf','string'),(927,'fileStage','2','int'),(927,'revisedFileId',NULL,'string'),(927,'fileId','528','int'),(927,'fileRevision','1','int'),(927,'originalFileName','2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(927,'submissionId','186','int'),(927,'username','admin','string'),(928,'fileStage','2','int'),(928,'fileId','528','int'),(928,'fileRevision','1','int'),(928,'originalFileName','2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(928,'submissionId','186','int'),(928,'username','admin','string'),(928,'name','admin, 2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(931,'name','admininsada a','string'),(931,'username','admin','string'),(931,'userGroupName','Journal editor','string'),(932,'editorName','admininsada a','string'),(932,'submissionId','186','string'),(932,'decision','Send to Review','string'),(934,'name','editor editor','string'),(934,'username','editor','string'),(934,'userGroupName','Journal editor','string'),(935,'fileStage','15','int'),(935,'revisedFileId',NULL,'string'),(935,'fileId','530','int'),(935,'fileRevision','1','int'),(935,'originalFileName','2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(935,'submissionId','186','int'),(935,'username','admin','string'),(936,'fileStage','15','int'),(936,'fileId','530','int'),(936,'fileRevision','1','int'),(936,'originalFileName','2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(936,'submissionId','186','int'),(936,'username','admin','string'),(936,'name','Article Text, 2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(937,'editorName','admininsada a','string'),(937,'submissionId','186','string'),(937,'decision','Send To Production','string'),(938,'fileStage','10','int'),(938,'revisedFileId',NULL,'string'),(938,'fileId','533','int'),(938,'fileRevision','1','int'),(938,'originalFileName','2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(938,'submissionId','186','int'),(938,'username','admin','string'),(939,'fileStage','10','int'),(939,'fileId','533','int'),(939,'fileRevision','1','int'),(939,'originalFileName','2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(939,'submissionId','186','int'),(939,'username','admin','string'),(939,'name','admin, 2. revisi_Artikel _Martina Ekacahyaningtyas.pdf','string'),(941,'fileStage','2','int'),(941,'revisedFileId',NULL,'string'),(941,'fileId','534','int'),(941,'fileRevision','1','int'),(941,'originalFileName','3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(941,'submissionId','187','int'),(941,'username','admin','string'),(942,'fileStage','2','int'),(942,'fileId','534','int'),(942,'fileRevision','1','int'),(942,'originalFileName','3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(942,'submissionId','187','int'),(942,'username','admin','string'),(942,'name','admin, 3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(945,'name','admininsada a','string'),(945,'username','admin','string'),(945,'userGroupName','Journal editor','string'),(946,'editorName','admininsada a','string'),(946,'submissionId','187','string'),(946,'decision','Send to Review','string'),(948,'name','editor editor','string'),(948,'username','editor','string'),(948,'userGroupName','Journal editor','string'),(949,'fileStage','15','int'),(949,'revisedFileId',NULL,'string'),(949,'fileId','536','int'),(949,'fileRevision','1','int'),(949,'originalFileName','3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(949,'submissionId','187','int'),(949,'username','admin','string'),(950,'fileStage','15','int'),(950,'fileId','536','int'),(950,'fileRevision','1','int'),(950,'originalFileName','3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(950,'submissionId','187','int'),(950,'username','admin','string'),(950,'name','Article Text, 3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(951,'editorName','admininsada a','string'),(951,'submissionId','187','string'),(951,'decision','Send To Production','string'),(952,'fileStage','10','int'),(952,'revisedFileId',NULL,'string'),(952,'fileId','539','int'),(952,'fileRevision','1','int'),(952,'originalFileName','3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(952,'submissionId','187','int'),(952,'username','admin','string'),(953,'fileStage','10','int'),(953,'fileId','539','int'),(953,'fileRevision','1','int'),(953,'originalFileName','3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(953,'submissionId','187','int'),(953,'username','admin','string'),(953,'name','admin, 3. Revisi manuscript JURNAL INSADA_ SURI SALMIYATI 2020 tgl 24 Juni 2020(1).pdf','string'),(956,'fileStage','2','int'),(956,'revisedFileId',NULL,'string'),(956,'fileId','540','int'),(956,'fileRevision','1','int'),(956,'originalFileName','4. Revisi Ratih -PKU.pdf','string'),(956,'submissionId','188','int'),(956,'username','admin','string'),(957,'fileStage','2','int'),(957,'fileId','540','int'),(957,'fileRevision','1','int'),(957,'originalFileName','4. Revisi Ratih -PKU.pdf','string'),(957,'submissionId','188','int'),(957,'username','admin','string'),(957,'name','admin, 4. Revisi Ratih -PKU.pdf','string'),(960,'name','admininsada a','string'),(960,'username','admin','string'),(960,'userGroupName','Journal editor','string'),(961,'editorName','admininsada a','string'),(961,'submissionId','188','string'),(961,'decision','Send to Review','string'),(962,'fileStage','15','int'),(962,'revisedFileId',NULL,'string'),(962,'fileId','542','int'),(962,'fileRevision','1','int'),(962,'originalFileName','4. Revisi Ratih -PKU.pdf','string'),(962,'submissionId','188','int'),(962,'username','admin','string'),(963,'fileStage','15','int'),(963,'fileId','542','int'),(963,'fileRevision','1','int'),(963,'originalFileName','4. Revisi Ratih -PKU.pdf','string'),(963,'submissionId','188','int'),(963,'username','admin','string'),(963,'name','Article Text, 4. Revisi Ratih -PKU.pdf','string'),(965,'name','editor editor','string'),(965,'username','editor','string'),(965,'userGroupName','Journal editor','string'),(966,'editorName','admininsada a','string'),(966,'submissionId','188','string'),(966,'decision','Send To Production','string'),(967,'fileStage','10','int'),(967,'revisedFileId',NULL,'string'),(967,'fileId','545','int'),(967,'fileRevision','1','int'),(967,'originalFileName','4. Revisi Ratih -PKU.pdf','string'),(967,'submissionId','188','int'),(967,'username','admin','string'),(968,'fileStage','10','int'),(968,'fileId','545','int'),(968,'fileRevision','1','int'),(968,'originalFileName','4. Revisi Ratih -PKU.pdf','string'),(968,'submissionId','188','int'),(968,'username','admin','string'),(968,'name','admin, 4. Revisi Ratih -PKU.pdf','string'),(974,'fileStage','2','int'),(974,'revisedFileId',NULL,'string'),(974,'fileId','546','int'),(974,'fileRevision','1','int'),(974,'originalFileName','5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(974,'submissionId','189','int'),(974,'username','admin','string'),(975,'fileStage','2','int'),(975,'fileId','546','int'),(975,'fileRevision','1','int'),(975,'originalFileName','5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(975,'submissionId','189','int'),(975,'username','admin','string'),(975,'name','admin, 5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(978,'name','admininsada a','string'),(978,'username','admin','string'),(978,'userGroupName','Journal editor','string'),(979,'editorName','admininsada a','string'),(979,'submissionId','189','string'),(979,'decision','Send to Review','string'),(981,'name','editor editor','string'),(981,'username','editor','string'),(981,'userGroupName','Journal editor','string'),(982,'fileStage','15','int'),(982,'revisedFileId',NULL,'string'),(982,'fileId','548','int'),(982,'fileRevision','1','int'),(982,'originalFileName','5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(982,'submissionId','189','int'),(982,'username','admin','string'),(983,'fileStage','15','int'),(983,'fileId','548','int'),(983,'fileRevision','1','int'),(983,'originalFileName','5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(983,'submissionId','189','int'),(983,'username','admin','string'),(983,'name','Article Text, 5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(984,'editorName','admininsada a','string'),(984,'submissionId','189','string'),(984,'decision','Send To Production','string'),(985,'fileStage','10','int'),(985,'revisedFileId',NULL,'string'),(985,'fileId','551','int'),(985,'fileRevision','1','int'),(985,'originalFileName','5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(985,'submissionId','189','int'),(985,'username','admin','string'),(986,'fileStage','10','int'),(986,'fileId','551','int'),(986,'fileRevision','1','int'),(986,'originalFileName','5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(986,'submissionId','189','int'),(986,'username','admin','string'),(986,'name','admin, 5. REVISI KUSTININGSIH UNISA (EFEKTIVITAS TERAPI MUSIK).pdf','string'),(988,'fileStage','2','int'),(988,'revisedFileId',NULL,'string'),(988,'fileId','552','int'),(988,'fileRevision','1','int'),(988,'originalFileName','6. Revisi Manuscript Ratih DPU tgl 7 Juli 2020.pdf','string'),(988,'submissionId','190','int'),(988,'username','admin','string'),(989,'fileStage','2','int'),(989,'fileId','552','int'),(989,'fileRevision','1','int'),(989,'originalFileName','6. Revisi Manuscript Ratih DPU tgl 7 Juli 2020.pdf','string'),(989,'submissionId','190','int'),(989,'username','admin','string'),(989,'name','admin, 6. Revisi Manuscript Ratih DPU tgl 7 Juli 2020.pdf','string'),(992,'name','admininsada a','string'),(992,'username','admin','string'),(992,'userGroupName','Journal editor','string'),(993,'editorName','admininsada a','string'),(993,'submissionId','190','string'),(993,'decision','Send to Review','string'),(995,'name','editor editor','string'),(995,'username','editor','string'),(995,'userGroupName','Journal editor','string'),(996,'editorName','admininsada a','string'),(996,'submissionId','190','string'),(996,'decision','Send To Production','string'),(997,'fileStage','10','int'),(997,'revisedFileId',NULL,'string'),(997,'fileId','556','int'),(997,'fileRevision','1','int'),(997,'originalFileName','6. Revisi Manuscript Ratih DPU tgl 7 Juli 2020.pdf','string'),(997,'submissionId','190','int'),(997,'username','admin','string'),(998,'fileStage','10','int'),(998,'fileId','556','int'),(998,'fileRevision','1','int'),(998,'originalFileName','6. Revisi Manuscript Ratih DPU tgl 7 Juli 2020.pdf','string'),(998,'submissionId','190','int'),(998,'username','admin','string'),(998,'name','admin, 6. Revisi Manuscript Ratih DPU tgl 7 Juli 2020.pdf','string'),(1000,'fileStage','2','int'),(1000,'revisedFileId',NULL,'string'),(1000,'fileId','557','int'),(1000,'fileRevision','1','int'),(1000,'originalFileName','7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1000,'submissionId','191','int'),(1000,'username','admin','string'),(1001,'fileStage','2','int'),(1001,'fileId','557','int'),(1001,'fileRevision','1','int'),(1001,'originalFileName','7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1001,'submissionId','191','int'),(1001,'username','admin','string'),(1001,'name','admin, 7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1004,'name','admininsada a','string'),(1004,'username','admin','string'),(1004,'userGroupName','Journal editor','string'),(1005,'editorName','admininsada a','string'),(1005,'submissionId','191','string'),(1005,'decision','Send to Review','string'),(1007,'name','editor editor','string'),(1007,'username','editor','string'),(1007,'userGroupName','Journal editor','string'),(1008,'fileStage','15','int'),(1008,'revisedFileId',NULL,'string'),(1008,'fileId','559','int'),(1008,'fileRevision','1','int'),(1008,'originalFileName','7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1008,'submissionId','191','int'),(1008,'username','admin','string'),(1009,'fileStage','15','int'),(1009,'fileId','559','int'),(1009,'fileRevision','1','int'),(1009,'originalFileName','7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1009,'submissionId','191','int'),(1009,'username','admin','string'),(1009,'name','Article Text, 7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1010,'editorName','admininsada a','string'),(1010,'submissionId','191','string'),(1010,'decision','Send To Production','string'),(1012,'fileStage','2','int'),(1012,'revisedFileId',NULL,'string'),(1012,'fileId','562','int'),(1012,'fileRevision','1','int'),(1012,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1012,'submissionId','192','int'),(1012,'username','admin','string'),(1013,'fileStage','2','int'),(1013,'fileId','562','int'),(1013,'fileRevision','1','int'),(1013,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1013,'submissionId','192','int'),(1013,'username','admin','string'),(1013,'name','admin, 8.Revisi_Nur Rakhmawati.pdf','string'),(1014,'fileStage','10','int'),(1014,'revisedFileId',NULL,'string'),(1014,'fileId','563','int'),(1014,'fileRevision','1','int'),(1014,'originalFileName','7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1014,'submissionId','191','int'),(1014,'username','admin','string'),(1015,'fileStage','10','int'),(1015,'fileId','563','int'),(1015,'fileRevision','1','int'),(1015,'originalFileName','7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1015,'submissionId','191','int'),(1015,'username','admin','string'),(1015,'name','admin, 7.  Sunaryo joko tgl 16 Juli 2020.pdf','string'),(1017,'fileStage','2','int'),(1017,'revisedFileId',NULL,'string'),(1017,'fileId','564','int'),(1017,'fileRevision','1','int'),(1017,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1017,'submissionId','193','int'),(1017,'username','admin','string'),(1018,'fileStage','2','int'),(1018,'fileId','564','int'),(1018,'fileRevision','1','int'),(1018,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1018,'submissionId','193','int'),(1018,'username','admin','string'),(1018,'name','admin, 8.Revisi_Nur Rakhmawati.pdf','string'),(1021,'name','admininsada a','string'),(1021,'username','admin','string'),(1021,'userGroupName','Journal editor','string'),(1022,'editorName','admininsada a','string'),(1022,'submissionId','193','string'),(1022,'decision','Send to Review','string'),(1024,'name','editor editor','string'),(1024,'username','editor','string'),(1024,'userGroupName','Journal editor','string'),(1025,'fileStage','15','int'),(1025,'revisedFileId',NULL,'string'),(1025,'fileId','566','int'),(1025,'fileRevision','1','int'),(1025,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1025,'submissionId','193','int'),(1025,'username','admin','string'),(1026,'fileStage','15','int'),(1026,'fileId','566','int'),(1026,'fileRevision','1','int'),(1026,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1026,'submissionId','193','int'),(1026,'username','admin','string'),(1026,'name','Article Text, 8.Revisi_Nur Rakhmawati.pdf','string'),(1027,'editorName','admininsada a','string'),(1027,'submissionId','193','string'),(1027,'decision','Send To Production','string'),(1028,'fileStage','10','int'),(1028,'revisedFileId',NULL,'string'),(1028,'fileId','569','int'),(1028,'fileRevision','1','int'),(1028,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1028,'submissionId','193','int'),(1028,'username','admin','string'),(1029,'fileStage','10','int'),(1029,'fileId','569','int'),(1029,'fileRevision','1','int'),(1029,'originalFileName','8.Revisi_Nur Rakhmawati.pdf','string'),(1029,'submissionId','193','int'),(1029,'username','admin','string'),(1029,'name','admin, 8.Revisi_Nur Rakhmawati.pdf','string'),(1031,'fileStage','2','int'),(1031,'revisedFileId',NULL,'string'),(1031,'fileId','570','int'),(1031,'fileRevision','1','int'),(1031,'originalFileName','ojs.phtml','string'),(1031,'submissionId','194','int'),(1031,'username','chou','string'),(1032,'fileStage','2','int'),(1032,'fileId','570','int'),(1032,'fileRevision','1','int'),(1032,'originalFileName','ojs.phtml','string'),(1032,'submissionId','194','int'),(1032,'username','chou','string'),(1032,'name','chou, ojs.phtml','string'),(1033,'fileStage','2','int'),(1033,'revisedFileId',NULL,'string'),(1033,'fileId','571','int'),(1033,'fileRevision','1','int'),(1033,'originalFileName','__Gekko MiniShell.mhtml','string'),(1033,'submissionId','196','int'),(1033,'username','aezakmi','string'),(1034,'fileStage','2','int'),(1034,'fileId','571','int'),(1034,'fileRevision','1','int'),(1034,'originalFileName','__Gekko MiniShell.mhtml','string'),(1034,'submissionId','196','int'),(1034,'username','aezakmi','string'),(1034,'name','aezakmi, __Gekko MiniShell.mhtml','string'),(1035,'fileStage','2','int'),(1035,'revisedFileId',NULL,'string'),(1035,'fileId','572','int'),(1035,'fileRevision','1','int'),(1035,'originalFileName','mikhaelxx.PhTmL','string'),(1035,'submissionId','197','int'),(1035,'username','adasad','string'),(1036,'fileStage','2','int'),(1036,'revisedFileId',NULL,'string'),(1036,'fileId','573','int'),(1036,'fileRevision','1','int'),(1036,'originalFileName','Sri Shari.docx','string'),(1036,'submissionId','198','int'),(1036,'username','sriwahyuni_88','string'),(1037,'fileStage','2','int'),(1037,'fileId','573','int'),(1037,'fileRevision','1','int'),(1037,'originalFileName','Sri Shari.docx','string'),(1037,'submissionId','198','int'),(1037,'username','sriwahyuni_88','string'),(1037,'name','sriwahyuni_88, Sri Shari.docx','string'),(1039,'fileStage','2','int'),(1039,'revisedFileId',NULL,'string'),(1039,'fileId','574','int'),(1039,'fileRevision','1','int'),(1039,'originalFileName','Publikasi Ika sri Peni_edit.docx','string'),(1039,'submissionId','199','int'),(1039,'username','ikawijayanti','string'),(1040,'fileStage','2','int'),(1040,'sourceFileId',NULL,'string'),(1040,'fileId','574','int'),(1040,'fileRevision','1','int'),(1040,'originalFileName','Publikasi Ika sri Peni_edit.docx','string'),(1040,'submissionId','199','int'),(1040,'username','ikawijayanti','string'),(1041,'title','Publikasi Ika sri Peni_edit.docx','string'),(1041,'submissionId','199','int'),(1041,'username','ikawijayanti','string'),(1042,'fileStage','2','int'),(1042,'revisedFileId',NULL,'string'),(1042,'fileId','575','int'),(1042,'fileRevision','1','int'),(1042,'originalFileName','Publikasi Ika sri Peni_edit.docx','string'),(1042,'submissionId','199','int'),(1042,'username','ikawijayanti','string'),(1043,'fileStage','2','int'),(1043,'fileId','575','int'),(1043,'fileRevision','1','int'),(1043,'originalFileName','Publikasi Ika sri Peni_edit.docx','string'),(1043,'submissionId','199','int'),(1043,'username','ikawijayanti','string'),(1043,'name','ikawijayanti, Publikasi Ika sri Peni_edit.docx','string'),(1045,'fileStage','2','int'),(1045,'revisedFileId',NULL,'string'),(1045,'fileId','576','int'),(1045,'fileRevision','1','int'),(1045,'originalFileName','upkecil.phtml','string'),(1045,'submissionId','201','int'),(1045,'username','roisulx','string'),(1046,'fileStage','2','int'),(1046,'fileId','576','int'),(1046,'fileRevision','1','int'),(1046,'originalFileName','upkecil.phtml','string'),(1046,'submissionId','201','int'),(1046,'username','roisulx','string'),(1046,'name','roisulx, upkecil.phtml','string'),(1047,'fileStage','2','int'),(1047,'revisedFileId',NULL,'string'),(1047,'fileId','577','int'),(1047,'fileRevision','1','int'),(1047,'originalFileName','upkecil.phtml','string'),(1047,'submissionId','201','int'),(1047,'username','roisulx','string'),(1048,'fileStage','2','int'),(1048,'fileId','576','int'),(1048,'fileRevision','2','int'),(1048,'originalFileName','upkecil.phtml','string'),(1048,'submissionId','201','int'),(1048,'username','roisulx','string'),(1048,'name','Rois','string'),(1049,'fileStage','2','int'),(1049,'revisedFileId',NULL,'string'),(1049,'fileId','578','int'),(1049,'fileRevision','1','int'),(1049,'originalFileName','upkecil.phtml','string'),(1049,'submissionId','201','int'),(1049,'username','roisulx','string'),(1050,'fileStage','2','int'),(1050,'revisedFileId',NULL,'string'),(1050,'fileId','579','int'),(1050,'fileRevision','1','int'),(1050,'originalFileName','upkecil.phtml','string'),(1050,'submissionId','202','int'),(1050,'username','roisulx','string'),(1051,'fileStage','2','int'),(1051,'fileId','579','int'),(1051,'fileRevision','1','int'),(1051,'originalFileName','upkecil.phtml','string'),(1051,'submissionId','202','int'),(1051,'username','roisulx','string'),(1051,'name','roisulx, upkecil.phtml','string'),(1052,'fileStage','2','int'),(1052,'revisedFileId','579','int'),(1052,'fileId','579','int'),(1052,'fileRevision','2','int'),(1052,'originalFileName','upkecil.phtml','string'),(1052,'submissionId','202','int'),(1052,'username','roisulx','string'),(1053,'fileStage','2','int'),(1053,'fileId','579','int'),(1053,'fileRevision','2','int'),(1053,'originalFileName','upkecil.phtml','string'),(1053,'submissionId','202','int'),(1053,'username','roisulx','string'),(1053,'name','roisulx, upkecil.phtml','string'),(1055,'fileStage','2','int'),(1055,'revisedFileId',NULL,'string'),(1055,'fileId','580','int'),(1055,'fileRevision','1','int'),(1055,'originalFileName','1. Revisi Sri Shariyanti.docx','string'),(1055,'submissionId','203','int'),(1055,'username','admin','string'),(1056,'fileStage','2','int'),(1056,'fileId','580','int'),(1056,'fileRevision','1','int'),(1056,'originalFileName','1. Revisi Sri Shariyanti.docx','string'),(1056,'submissionId','203','int'),(1056,'username','admin','string'),(1056,'name','admin, 1. Revisi Sri Shariyanti.docx','string'),(1058,'fileStage','18','int'),(1058,'revisedFileId',NULL,'string'),(1058,'fileId','581','int'),(1058,'fileRevision','1','int'),(1058,'originalFileName','1. Artikel 1 -Sri.docx','string'),(1058,'submissionId','203','int'),(1058,'username','admin','string'),(1059,'fileStage','18','int'),(1059,'fileId','581','int'),(1059,'fileRevision','1','int'),(1059,'originalFileName','1. Artikel 1 -Sri.docx','string'),(1059,'submissionId','203','int'),(1059,'username','admin','string'),(1059,'name','admin, 1. Artikel 1 -Sri.docx','string'),(1061,'name','editor editor','string'),(1061,'username','editor','string'),(1061,'userGroupName','Journal editor','string'),(1062,'editorName','admininsada a','string'),(1062,'submissionId','203','string'),(1062,'decision','Send to Review','string'),(1063,'fileStage','15','int'),(1063,'revisedFileId',NULL,'string'),(1063,'fileId','583','int'),(1063,'fileRevision','1','int'),(1063,'originalFileName','Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1063,'submissionId','203','int'),(1063,'username','admin','string'),(1064,'fileStage','15','int'),(1064,'fileId','583','int'),(1064,'fileRevision','1','int'),(1064,'originalFileName','Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1064,'submissionId','203','int'),(1064,'username','admin','string'),(1064,'name','Article Text, Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1065,'fileStage','18','int'),(1065,'revisedFileId',NULL,'string'),(1065,'fileId','584','int'),(1065,'fileRevision','1','int'),(1065,'originalFileName','Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1065,'submissionId','203','int'),(1065,'username','admin','string'),(1066,'fileStage','18','int'),(1066,'fileId','584','int'),(1066,'fileRevision','1','int'),(1066,'originalFileName','Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1066,'submissionId','203','int'),(1066,'username','admin','string'),(1066,'name','admin, Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1068,'name','admininsada a','string'),(1068,'username','admin','string'),(1068,'userGroupName','Journal editor','string'),(1069,'fileStage','6','int'),(1069,'revisedFileId',NULL,'string'),(1069,'fileId','585','int'),(1069,'fileRevision','1','int'),(1069,'originalFileName','Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1069,'submissionId','203','int'),(1069,'username','admin','string'),(1070,'fileStage','6','int'),(1070,'fileId','585','int'),(1070,'fileRevision','1','int'),(1070,'originalFileName','Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1070,'submissionId','203','int'),(1070,'username','admin','string'),(1070,'name','admin, Review 1. Artikel 1 -Sri tgl 18 Des 2020.docx','string'),(1071,'fileStage','18','int'),(1071,'revisedFileId',NULL,'string'),(1071,'fileId','586','int'),(1071,'fileRevision','1','int'),(1071,'originalFileName','1. Revisi Sri Shariyanti.docx','string'),(1071,'submissionId','203','int'),(1071,'username','admin','string'),(1072,'fileStage','18','int'),(1072,'fileId','586','int'),(1072,'fileRevision','1','int'),(1072,'originalFileName','1. Revisi Sri Shariyanti.docx','string'),(1072,'submissionId','203','int'),(1072,'username','admin','string'),(1072,'name','admin, 1. Revisi Sri Shariyanti.docx','string'),(1073,'fileStage','9','int'),(1073,'revisedFileId',NULL,'string'),(1073,'fileId','587','int'),(1073,'fileRevision','1','int'),(1073,'originalFileName','1. Revisi Sri Shariyanti.docx','string'),(1073,'submissionId','203','int'),(1073,'username','admin','string'),(1074,'fileStage','9','int'),(1074,'fileId','587','int'),(1074,'fileRevision','1','int'),(1074,'originalFileName','1. Revisi Sri Shariyanti.docx','string'),(1074,'submissionId','203','int'),(1074,'username','admin','string'),(1074,'name','admin, 1. Revisi Sri Shariyanti.docx','string'),(1075,'editorName','admininsada a','string'),(1075,'submissionId','203','string'),(1075,'decision','Send To Production','string'),(1076,'fileStage','10','int'),(1076,'revisedFileId',NULL,'string'),(1076,'fileId','589','int'),(1076,'fileRevision','1','int'),(1076,'originalFileName','1. Revisi Sri Shariyanti.pdf','string'),(1076,'submissionId','203','int'),(1076,'username','admin','string'),(1077,'fileStage','10','int'),(1077,'fileId','589','int'),(1077,'fileRevision','1','int'),(1077,'originalFileName','1. Revisi Sri Shariyanti.pdf','string'),(1077,'submissionId','203','int'),(1077,'username','admin','string'),(1077,'name','admin, 1. Revisi Sri Shariyanti.pdf','string'),(1079,'fileStage','2','int'),(1079,'revisedFileId',NULL,'string'),(1079,'fileId','590','int'),(1079,'fileRevision','1','int'),(1079,'originalFileName','2. 198-Article Text-573-1-2-20201120.docx','string'),(1079,'submissionId','204','int'),(1079,'username','admin','string'),(1080,'fileStage','2','int'),(1080,'fileId','590','int'),(1080,'fileRevision','1','int'),(1080,'originalFileName','2. 198-Article Text-573-1-2-20201120.docx','string'),(1080,'submissionId','204','int'),(1080,'username','admin','string'),(1080,'name','admin, 2. 198-Article Text-573-1-2-20201120.docx','string'),(1082,'fileStage','18','int'),(1082,'revisedFileId',NULL,'string'),(1082,'fileId','591','int'),(1082,'fileRevision','1','int'),(1082,'originalFileName','Review 2. 198-Article Text-573-1-2-20201120 tgl 20 des 2020.docx','string'),(1082,'submissionId','204','int'),(1082,'username','admin','string'),(1083,'fileStage','18','int'),(1083,'fileId','591','int'),(1083,'fileRevision','1','int'),(1083,'originalFileName','Review 2. 198-Article Text-573-1-2-20201120 tgl 20 des 2020.docx','string'),(1083,'submissionId','204','int'),(1083,'username','admin','string'),(1083,'name','admin, Review 2. 198-Article Text-573-1-2-20201120 tgl 20 des 2020.docx','string'),(1085,'name','editor editor','string'),(1085,'username','editor','string'),(1085,'userGroupName','Journal editor','string'),(1086,'editorName','admininsada a','string'),(1086,'submissionId','204','string'),(1086,'decision','Send to Review','string'),(1087,'fileStage','15','int'),(1087,'revisedFileId',NULL,'string'),(1087,'fileId','593','int'),(1087,'fileRevision','1','int'),(1087,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1087,'submissionId','204','int'),(1087,'username','admin','string'),(1088,'fileStage','15','int'),(1088,'fileId','593','int'),(1088,'fileRevision','1','int'),(1088,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1088,'submissionId','204','int'),(1088,'username','admin','string'),(1088,'name','Article Text, 2. Revis -Sri tgl 18 Des 2020.docx','string'),(1090,'name','admininsada a','string'),(1090,'username','admin','string'),(1090,'userGroupName','Journal editor','string'),(1091,'fileStage','6','int'),(1091,'revisedFileId',NULL,'string'),(1091,'fileId','594','int'),(1091,'fileRevision','1','int'),(1091,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1091,'submissionId','204','int'),(1091,'username','admin','string'),(1092,'fileStage','6','int'),(1092,'fileId','594','int'),(1092,'fileRevision','1','int'),(1092,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1092,'submissionId','204','int'),(1092,'username','admin','string'),(1092,'name','admin, 2. Revis -Sri tgl 18 Des 2020.docx','string'),(1093,'fileStage','9','int'),(1093,'revisedFileId',NULL,'string'),(1093,'fileId','595','int'),(1093,'fileRevision','1','int'),(1093,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1093,'submissionId','204','int'),(1093,'username','admin','string'),(1094,'fileStage','9','int'),(1094,'fileId','595','int'),(1094,'fileRevision','1','int'),(1094,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1094,'submissionId','204','int'),(1094,'username','admin','string'),(1094,'name','admin, 2. Revis -Sri tgl 18 Des 2020.docx','string'),(1095,'editorName','admininsada a','string'),(1095,'submissionId','204','string'),(1095,'decision','Send To Production','string'),(1096,'fileStage','10','int'),(1096,'revisedFileId',NULL,'string'),(1096,'fileId','597','int'),(1096,'fileRevision','1','int'),(1096,'originalFileName','2. Revis -Sri tgl 18 Des 2020.pdf','string'),(1096,'submissionId','204','int'),(1096,'username','admin','string'),(1097,'fileStage','10','int'),(1097,'fileId','597','int'),(1097,'fileRevision','1','int'),(1097,'originalFileName','2. Revis -Sri tgl 18 Des 2020.pdf','string'),(1097,'submissionId','204','int'),(1097,'username','admin','string'),(1097,'name','admin, 2. Revis -Sri tgl 18 Des 2020.pdf','string'),(1099,'fileStage','2','int'),(1099,'revisedFileId',NULL,'string'),(1099,'fileId','598','int'),(1099,'fileRevision','1','int'),(1099,'originalFileName','3 Artikel Tiwi  & Lutfi.docx','string'),(1099,'submissionId','205','int'),(1099,'username','admin','string'),(1100,'fileStage','2','int'),(1100,'fileId','598','int'),(1100,'fileRevision','1','int'),(1100,'originalFileName','3 Artikel Tiwi  & Lutfi.docx','string'),(1100,'submissionId','205','int'),(1100,'username','admin','string'),(1100,'name','admin, 3 Artikel Tiwi  & Lutfi.docx','string'),(1104,'name','editor editor','string'),(1104,'username','editor','string'),(1104,'userGroupName','Journal editor','string'),(1105,'editorName','admininsada a','string'),(1105,'submissionId','205','string'),(1105,'decision','Send to Review','string'),(1107,'name','admininsada a','string'),(1107,'username','admin','string'),(1107,'userGroupName','Journal editor','string'),(1108,'fileStage','15','int'),(1108,'revisedFileId',NULL,'string'),(1108,'fileId','600','int'),(1108,'fileRevision','1','int'),(1108,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1108,'submissionId','205','int'),(1108,'username','admin','string'),(1109,'fileStage','15','int'),(1109,'fileId','600','int'),(1109,'fileRevision','1','int'),(1109,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1109,'submissionId','205','int'),(1109,'username','admin','string'),(1109,'name','Article Text, 3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1110,'fileStage','6','int'),(1110,'revisedFileId',NULL,'string'),(1110,'fileId','601','int'),(1110,'fileRevision','1','int'),(1110,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1110,'submissionId','205','int'),(1110,'username','admin','string'),(1111,'fileStage','6','int'),(1111,'fileId','601','int'),(1111,'fileRevision','1','int'),(1111,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1111,'submissionId','205','int'),(1111,'username','admin','string'),(1111,'name','admin, 3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1112,'fileStage','18','int'),(1112,'revisedFileId',NULL,'string'),(1112,'fileId','602','int'),(1112,'fileRevision','1','int'),(1112,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1112,'submissionId','205','int'),(1112,'username','admin','string'),(1113,'fileStage','18','int'),(1113,'fileId','602','int'),(1113,'fileRevision','1','int'),(1113,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1113,'submissionId','205','int'),(1113,'username','admin','string'),(1113,'name','admin, 3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1114,'fileStage','9','int'),(1114,'revisedFileId',NULL,'string'),(1114,'fileId','603','int'),(1114,'fileRevision','1','int'),(1114,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1114,'submissionId','205','int'),(1114,'username','admin','string'),(1115,'fileStage','9','int'),(1115,'fileId','603','int'),(1115,'fileRevision','1','int'),(1115,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1115,'submissionId','205','int'),(1115,'username','admin','string'),(1115,'name','admin, 3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.docx','string'),(1116,'editorName','admininsada a','string'),(1116,'submissionId','205','string'),(1116,'decision','Send To Production','string'),(1117,'fileStage','10','int'),(1117,'revisedFileId',NULL,'string'),(1117,'fileId','606','int'),(1117,'fileRevision','1','int'),(1117,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.pdf','string'),(1117,'submissionId','205','int'),(1117,'username','admin','string'),(1118,'fileStage','10','int'),(1118,'fileId','606','int'),(1118,'fileRevision','1','int'),(1118,'originalFileName','3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.pdf','string'),(1118,'submissionId','205','int'),(1118,'username','admin','string'),(1118,'name','admin, 3. IU 07012021Tiwi Sudyasih & Lutfi Nurdian Asnindari 2020.pdf','string'),(1120,'fileStage','2','int'),(1120,'revisedFileId',NULL,'string'),(1120,'fileId','607','int'),(1120,'fileRevision','1','int'),(1120,'originalFileName','4. 199-Article Text-575-1-2-20201215.docx','string'),(1120,'submissionId','206','int'),(1120,'username','admin','string'),(1121,'fileStage','2','int'),(1121,'fileId','607','int'),(1121,'fileRevision','1','int'),(1121,'originalFileName','4. 199-Article Text-575-1-2-20201215.docx','string'),(1121,'submissionId','206','int'),(1121,'username','admin','string'),(1121,'name','admin, 4. 199-Article Text-575-1-2-20201215.docx','string'),(1124,'name','editor editor','string'),(1124,'username','editor','string'),(1124,'userGroupName','Journal editor','string'),(1125,'editorName','admininsada a','string'),(1125,'submissionId','206','string'),(1125,'decision','Send to Review','string'),(1127,'name','admininsada a','string'),(1127,'username','admin','string'),(1127,'userGroupName','Journal editor','string'),(1128,'fileStage','15','int'),(1128,'revisedFileId',NULL,'string'),(1128,'fileId','610','int'),(1128,'fileRevision','1','int'),(1128,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1128,'submissionId','206','int'),(1128,'username','admin','string'),(1129,'fileStage','15','int'),(1129,'fileId','610','int'),(1129,'fileRevision','1','int'),(1129,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1129,'submissionId','206','int'),(1129,'username','admin','string'),(1129,'name','Article Text, 4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1130,'fileStage','6','int'),(1130,'revisedFileId',NULL,'string'),(1130,'fileId','611','int'),(1130,'fileRevision','1','int'),(1130,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1130,'submissionId','206','int'),(1130,'username','admin','string'),(1131,'fileStage','6','int'),(1131,'fileId','611','int'),(1131,'fileRevision','1','int'),(1131,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1131,'submissionId','206','int'),(1131,'username','admin','string'),(1131,'name','admin, 4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1132,'fileStage','9','int'),(1132,'revisedFileId',NULL,'string'),(1132,'fileId','613','int'),(1132,'fileRevision','1','int'),(1132,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1132,'submissionId','206','int'),(1132,'username','admin','string'),(1133,'fileStage','9','int'),(1133,'fileId','613','int'),(1133,'fileRevision','1','int'),(1133,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1133,'submissionId','206','int'),(1133,'username','admin','string'),(1133,'name','admin, 4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1134,'editorName','admininsada a','string'),(1134,'submissionId','206','string'),(1134,'decision','Send To Production','string'),(1135,'fileStage','10','int'),(1135,'revisedFileId',NULL,'string'),(1135,'fileId','615','int'),(1135,'fileRevision','1','int'),(1135,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.pdf','string'),(1135,'submissionId','206','int'),(1135,'username','admin','string'),(1136,'fileStage','10','int'),(1136,'fileId','615','int'),(1136,'fileRevision','1','int'),(1136,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.pdf','string'),(1136,'submissionId','206','int'),(1136,'username','admin','string'),(1136,'name','admin, 4.Revisi Review SIS PANDU 25 januari 2021.pdf','string'),(1138,'fileStage','2','int'),(1138,'revisedFileId',NULL,'string'),(1138,'fileId','616','int'),(1138,'fileRevision','1','int'),(1138,'originalFileName','5. artikel Ruth.docx','string'),(1138,'submissionId','207','int'),(1138,'username','admin','string'),(1139,'fileStage','2','int'),(1139,'fileId','616','int'),(1139,'fileRevision','1','int'),(1139,'originalFileName','5. artikel Ruth.docx','string'),(1139,'submissionId','207','int'),(1139,'username','admin','string'),(1139,'name','admin, 5. artikel Ruth.docx','string'),(1142,'name','editor editor','string'),(1142,'username','editor','string'),(1142,'userGroupName','Journal editor','string'),(1143,'editorName','admininsada a','string'),(1143,'submissionId','207','string'),(1143,'decision','Send to Review','string'),(1144,'fileStage','15','int'),(1144,'revisedFileId',NULL,'string'),(1144,'fileId','618','int'),(1144,'fileRevision','1','int'),(1144,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1144,'submissionId','207','int'),(1144,'username','admin','string'),(1145,'fileStage','15','int'),(1145,'fileId','618','int'),(1145,'fileRevision','1','int'),(1145,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1145,'submissionId','207','int'),(1145,'username','admin','string'),(1145,'name','Article Text, 5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1147,'name','admininsada a','string'),(1147,'username','admin','string'),(1147,'userGroupName','Journal editor','string'),(1148,'fileStage','6','int'),(1148,'revisedFileId',NULL,'string'),(1148,'fileId','619','int'),(1148,'fileRevision','1','int'),(1148,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1148,'submissionId','207','int'),(1148,'username','admin','string'),(1149,'fileStage','6','int'),(1149,'fileId','619','int'),(1149,'fileRevision','1','int'),(1149,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1149,'submissionId','207','int'),(1149,'username','admin','string'),(1149,'name','admin, 5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1150,'fileStage','9','int'),(1150,'revisedFileId',NULL,'string'),(1150,'fileId','620','int'),(1150,'fileRevision','1','int'),(1150,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1150,'submissionId','207','int'),(1150,'username','admin','string'),(1151,'fileStage','9','int'),(1151,'fileId','620','int'),(1151,'fileRevision','1','int'),(1151,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1151,'submissionId','207','int'),(1151,'username','admin','string'),(1151,'name','admin, 5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1152,'editorName','admininsada a','string'),(1152,'submissionId','207','string'),(1152,'decision','Send To Production','string'),(1153,'fileStage','10','int'),(1153,'revisedFileId',NULL,'string'),(1153,'fileId','622','int'),(1153,'fileRevision','1','int'),(1153,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.pdf','string'),(1153,'submissionId','207','int'),(1153,'username','admin','string'),(1154,'fileStage','10','int'),(1154,'fileId','622','int'),(1154,'fileRevision','1','int'),(1154,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.pdf','string'),(1154,'submissionId','207','int'),(1154,'username','admin','string'),(1154,'name','admin, 5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.pdf','string'),(1156,'fileStage','2','int'),(1156,'revisedFileId',NULL,'string'),(1156,'fileId','623','int'),(1156,'fileRevision','1','int'),(1156,'originalFileName','Suket bu Lutfi jogja.pdf','string'),(1156,'submissionId','208','int'),(1156,'username','admin','string'),(1157,'fileStage','2','int'),(1157,'sourceFileId',NULL,'string'),(1157,'fileId','623','int'),(1157,'fileRevision','1','int'),(1157,'originalFileName','Suket bu Lutfi jogja.pdf','string'),(1157,'submissionId','208','int'),(1157,'username','admin','string'),(1158,'title','Suket bu Lutfi jogja.pdf','string'),(1158,'submissionId','208','int'),(1158,'username','admin','string'),(1159,'fileStage','2','int'),(1159,'revisedFileId',NULL,'string'),(1159,'fileId','624','int'),(1159,'fileRevision','1','int'),(1159,'originalFileName','6. revisi. ika jayapura.docx','string'),(1159,'submissionId','208','int'),(1159,'username','admin','string'),(1160,'fileStage','2','int'),(1160,'fileId','624','int'),(1160,'fileRevision','1','int'),(1160,'originalFileName','6. revisi. ika jayapura.docx','string'),(1160,'submissionId','208','int'),(1160,'username','admin','string'),(1160,'name','admin, 6. revisi. ika jayapura.docx','string'),(1163,'name','editor editor','string'),(1163,'username','editor','string'),(1163,'userGroupName','Journal editor','string'),(1164,'editorName','admininsada a','string'),(1164,'submissionId','208','string'),(1164,'decision','Send to Review','string'),(1166,'name','admininsada a','string'),(1166,'username','admin','string'),(1166,'userGroupName','Journal editor','string'),(1167,'fileStage','15','int'),(1167,'revisedFileId',NULL,'string'),(1167,'fileId','626','int'),(1167,'fileRevision','1','int'),(1167,'originalFileName','6. revisi. ika jayapura.docx','string'),(1167,'submissionId','208','int'),(1167,'username','admin','string'),(1168,'fileStage','15','int'),(1168,'fileId','626','int'),(1168,'fileRevision','1','int'),(1168,'originalFileName','6. revisi. ika jayapura.docx','string'),(1168,'submissionId','208','int'),(1168,'username','admin','string'),(1168,'name','Article Text, 6. revisi. ika jayapura.docx','string'),(1169,'fileStage','6','int'),(1169,'revisedFileId',NULL,'string'),(1169,'fileId','627','int'),(1169,'fileRevision','1','int'),(1169,'originalFileName','6. revisi. ika jayapura.docx','string'),(1169,'submissionId','208','int'),(1169,'username','admin','string'),(1170,'fileStage','6','int'),(1170,'fileId','627','int'),(1170,'fileRevision','1','int'),(1170,'originalFileName','6. revisi. ika jayapura.docx','string'),(1170,'submissionId','208','int'),(1170,'username','admin','string'),(1170,'name','admin, 6. revisi. ika jayapura.docx','string'),(1171,'fileStage','9','int'),(1171,'revisedFileId',NULL,'string'),(1171,'fileId','628','int'),(1171,'fileRevision','1','int'),(1171,'originalFileName','6. revisi. ika jayapura.docx','string'),(1171,'submissionId','208','int'),(1171,'username','admin','string'),(1172,'fileStage','9','int'),(1172,'fileId','628','int'),(1172,'fileRevision','1','int'),(1172,'originalFileName','6. revisi. ika jayapura.docx','string'),(1172,'submissionId','208','int'),(1172,'username','admin','string'),(1172,'name','admin, 6. revisi. ika jayapura.docx','string'),(1173,'editorName','admininsada a','string'),(1173,'submissionId','208','string'),(1173,'decision','Send To Production','string'),(1174,'fileStage','10','int'),(1174,'revisedFileId',NULL,'string'),(1174,'fileId','630','int'),(1174,'fileRevision','1','int'),(1174,'originalFileName','6. revisi. ika jayapura.pdf','string'),(1174,'submissionId','208','int'),(1174,'username','admin','string'),(1175,'fileStage','10','int'),(1175,'fileId','630','int'),(1175,'fileRevision','1','int'),(1175,'originalFileName','6. revisi. ika jayapura.pdf','string'),(1175,'submissionId','208','int'),(1175,'username','admin','string'),(1175,'name','admin, 6. revisi. ika jayapura.pdf','string'),(1177,'fileStage','2','int'),(1177,'revisedFileId',NULL,'string'),(1177,'fileId','631','int'),(1177,'fileRevision','1','int'),(1177,'originalFileName','7. revisi Ruth.docx','string'),(1177,'submissionId','209','int'),(1177,'username','admin','string'),(1178,'fileStage','2','int'),(1178,'fileId','631','int'),(1178,'fileRevision','1','int'),(1178,'originalFileName','7. revisi Ruth.docx','string'),(1178,'submissionId','209','int'),(1178,'username','admin','string'),(1178,'name','admin, 7. revisi Ruth.docx','string'),(1181,'name','editor editor','string'),(1181,'username','editor','string'),(1181,'userGroupName','Journal editor','string'),(1182,'editorName','admininsada a','string'),(1182,'submissionId','209','string'),(1182,'decision','Send to Review','string'),(1183,'fileStage','15','int'),(1183,'revisedFileId',NULL,'string'),(1183,'fileId','633','int'),(1183,'fileRevision','1','int'),(1183,'originalFileName','7. revisi Ruth.docx','string'),(1183,'submissionId','209','int'),(1183,'username','admin','string'),(1184,'fileStage','15','int'),(1184,'fileId','633','int'),(1184,'fileRevision','1','int'),(1184,'originalFileName','7. revisi Ruth.docx','string'),(1184,'submissionId','209','int'),(1184,'username','admin','string'),(1184,'name','Article Text, 7. revisi Ruth.docx','string'),(1186,'name','admininsada a','string'),(1186,'username','admin','string'),(1186,'userGroupName','Journal editor','string'),(1187,'fileStage','6','int'),(1187,'revisedFileId',NULL,'string'),(1187,'fileId','634','int'),(1187,'fileRevision','1','int'),(1187,'originalFileName','7. revisi Ruth.docx','string'),(1187,'submissionId','209','int'),(1187,'username','admin','string'),(1188,'fileStage','6','int'),(1188,'fileId','634','int'),(1188,'fileRevision','1','int'),(1188,'originalFileName','7. revisi Ruth.docx','string'),(1188,'submissionId','209','int'),(1188,'username','admin','string'),(1188,'name','admin, 7. revisi Ruth.docx','string'),(1189,'fileStage','9','int'),(1189,'revisedFileId',NULL,'string'),(1189,'fileId','635','int'),(1189,'fileRevision','1','int'),(1189,'originalFileName','7. revisi Ruth.docx','string'),(1189,'submissionId','209','int'),(1189,'username','admin','string'),(1190,'fileStage','9','int'),(1190,'fileId','635','int'),(1190,'fileRevision','1','int'),(1190,'originalFileName','7. revisi Ruth.docx','string'),(1190,'submissionId','209','int'),(1190,'username','admin','string'),(1190,'name','admin, 7. revisi Ruth.docx','string'),(1191,'editorName','admininsada a','string'),(1191,'submissionId','209','string'),(1191,'decision','Send To Production','string'),(1192,'fileStage','10','int'),(1192,'revisedFileId',NULL,'string'),(1192,'fileId','637','int'),(1192,'fileRevision','1','int'),(1192,'originalFileName','7. revisi Ruth.pdf','string'),(1192,'submissionId','209','int'),(1192,'username','admin','string'),(1193,'fileStage','10','int'),(1193,'fileId','637','int'),(1193,'fileRevision','1','int'),(1193,'originalFileName','7. revisi Ruth.pdf','string'),(1193,'submissionId','209','int'),(1193,'username','admin','string'),(1193,'name','admin, 7. revisi Ruth.pdf','string'),(1195,'fileStage','2','int'),(1195,'revisedFileId',NULL,'string'),(1195,'fileId','638','int'),(1195,'fileRevision','1','int'),(1195,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1195,'submissionId','210','int'),(1195,'username','admin','string'),(1196,'fileStage','2','int'),(1196,'fileId','638','int'),(1196,'fileRevision','1','int'),(1196,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1196,'submissionId','210','int'),(1196,'username','admin','string'),(1196,'name','admin, 8. JURNAL RATIH JANUARI 2021.docx','string'),(1199,'name','editor editor','string'),(1199,'username','editor','string'),(1199,'userGroupName','Journal editor','string'),(1200,'editorName','admininsada a','string'),(1200,'submissionId','210','string'),(1200,'decision','Send to Review','string'),(1201,'fileStage','15','int'),(1201,'revisedFileId',NULL,'string'),(1201,'fileId','640','int'),(1201,'fileRevision','1','int'),(1201,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1201,'submissionId','210','int'),(1201,'username','admin','string'),(1202,'fileStage','15','int'),(1202,'fileId','640','int'),(1202,'fileRevision','1','int'),(1202,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1202,'submissionId','210','int'),(1202,'username','admin','string'),(1202,'name','Article Text, 8. JURNAL RATIH JANUARI 2021.docx','string'),(1204,'name','admininsada a','string'),(1204,'username','admin','string'),(1204,'userGroupName','Journal editor','string'),(1205,'fileStage','6','int'),(1205,'revisedFileId',NULL,'string'),(1205,'fileId','641','int'),(1205,'fileRevision','1','int'),(1205,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1205,'submissionId','210','int'),(1205,'username','admin','string'),(1206,'fileStage','6','int'),(1206,'fileId','641','int'),(1206,'fileRevision','1','int'),(1206,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1206,'submissionId','210','int'),(1206,'username','admin','string'),(1206,'name','admin, 8. JURNAL RATIH JANUARI 2021.docx','string'),(1207,'fileStage','9','int'),(1207,'revisedFileId',NULL,'string'),(1207,'fileId','642','int'),(1207,'fileRevision','1','int'),(1207,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1207,'submissionId','210','int'),(1207,'username','admin','string'),(1208,'fileStage','9','int'),(1208,'fileId','642','int'),(1208,'fileRevision','1','int'),(1208,'originalFileName','8. JURNAL RATIH JANUARI 2021.docx','string'),(1208,'submissionId','210','int'),(1208,'username','admin','string'),(1208,'name','admin, 8. JURNAL RATIH JANUARI 2021.docx','string'),(1209,'editorName','admininsada a','string'),(1209,'submissionId','210','string'),(1209,'decision','Send To Production','string'),(1210,'fileStage','10','int'),(1210,'revisedFileId',NULL,'string'),(1210,'fileId','644','int'),(1210,'fileRevision','1','int'),(1210,'originalFileName','8. JURNAL RATIH JANUARI 2021.pdf','string'),(1210,'submissionId','210','int'),(1210,'username','admin','string'),(1211,'fileStage','10','int'),(1211,'fileId','644','int'),(1211,'fileRevision','1','int'),(1211,'originalFileName','8. JURNAL RATIH JANUARI 2021.pdf','string'),(1211,'submissionId','210','int'),(1211,'username','admin','string'),(1211,'name','admin, 8. JURNAL RATIH JANUARI 2021.pdf','string'),(1213,'fileStage','2','int'),(1213,'revisedFileId',NULL,'string'),(1213,'fileId','645','int'),(1213,'fileRevision','1','int'),(1213,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1213,'submissionId','204','int'),(1213,'username','admin','string'),(1214,'fileStage','2','int'),(1214,'fileId','645','int'),(1214,'fileRevision','1','int'),(1214,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1214,'submissionId','204','int'),(1214,'username','admin','string'),(1214,'name','admin, 2. Revis -Sri tgl 18 Des 2020.docx','string'),(1215,'fileStage','2','int'),(1215,'sourceFileId',NULL,'string'),(1215,'fileId','590','int'),(1215,'fileRevision','1','int'),(1215,'originalFileName','2. 198-Article Text-573-1-2-20201120.docx','string'),(1215,'submissionId','204','int'),(1215,'username','admin','string'),(1216,'title','2. 198-Article Text-573-1-2-20201120.docx','string'),(1216,'submissionId','204','int'),(1216,'username','admin','string'),(1217,'fileStage','4','int'),(1217,'revisedFileId',NULL,'string'),(1217,'fileId','646','int'),(1217,'fileRevision','1','int'),(1217,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1217,'submissionId','204','int'),(1217,'username','admin','string'),(1218,'fileStage','4','int'),(1218,'revisedFileId','593','int'),(1218,'fileId','647','int'),(1218,'fileRevision','1','int'),(1218,'originalFileName','2. Revis -Sri tgl 18 Des 2020.docx','string'),(1218,'submissionId','204','int'),(1218,'username','admin','string'),(1219,'fileStage','4','int'),(1219,'sourceFileId','590','int'),(1219,'fileId','592','int'),(1219,'fileRevision','1','int'),(1219,'originalFileName','2. 198-Article Text-573-1-2-20201120.docx','string'),(1219,'submissionId','204','int'),(1219,'username','admin','string'),(1221,'fileStage','2','int'),(1221,'revisedFileId',NULL,'string'),(1221,'fileId','648','int'),(1221,'fileRevision','1','int'),(1221,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1221,'submissionId','206','int'),(1221,'username','admin','string'),(1222,'fileStage','2','int'),(1222,'fileId','648','int'),(1222,'fileRevision','1','int'),(1222,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1222,'submissionId','206','int'),(1222,'username','admin','string'),(1222,'name','admin, 4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1223,'fileStage','2','int'),(1223,'sourceFileId',NULL,'string'),(1223,'fileId','607','int'),(1223,'fileRevision','1','int'),(1223,'originalFileName','4. 199-Article Text-575-1-2-20201215.docx','string'),(1223,'submissionId','206','int'),(1223,'username','admin','string'),(1224,'title','4. 199-Article Text-575-1-2-20201215.docx','string'),(1224,'submissionId','206','int'),(1224,'username','admin','string'),(1225,'editorName','admininsada a','string'),(1225,'submissionId','206','string'),(1225,'decision','Send to Review','string'),(1226,'fileStage','4','int'),(1226,'revisedFileId',NULL,'string'),(1226,'fileId','650','int'),(1226,'fileRevision','1','int'),(1226,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1226,'submissionId','206','int'),(1226,'username','admin','string'),(1227,'fileStage','4','int'),(1227,'sourceFileId','607','int'),(1227,'fileId','609','int'),(1227,'fileRevision','1','int'),(1227,'originalFileName','4. 199-Article Text-575-1-2-20201215.docx','string'),(1227,'submissionId','206','int'),(1227,'username','admin','string'),(1228,'fileStage','4','int'),(1228,'revisedFileId',NULL,'string'),(1228,'fileId','651','int'),(1228,'fileRevision','1','int'),(1228,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1228,'submissionId','206','int'),(1228,'username','admin','string'),(1229,'fileStage','4','int'),(1229,'fileId','651','int'),(1229,'fileRevision','1','int'),(1229,'originalFileName','4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1229,'submissionId','206','int'),(1229,'username','admin','string'),(1229,'name','Article Text, 4.Revisi Review SIS PANDU 25 januari 2021.docx','string'),(1231,'fileStage','2','int'),(1231,'revisedFileId',NULL,'string'),(1231,'fileId','652','int'),(1231,'fileRevision','1','int'),(1231,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1231,'submissionId','207','int'),(1231,'username','admin','string'),(1232,'fileStage','2','int'),(1232,'fileId','652','int'),(1232,'fileRevision','1','int'),(1232,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1232,'submissionId','207','int'),(1232,'username','admin','string'),(1232,'name','admin, 5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1233,'fileStage','2','int'),(1233,'sourceFileId',NULL,'string'),(1233,'fileId','616','int'),(1233,'fileRevision','1','int'),(1233,'originalFileName','5. artikel Ruth.docx','string'),(1233,'submissionId','207','int'),(1233,'username','admin','string'),(1234,'title','5. artikel Ruth.docx','string'),(1234,'submissionId','207','int'),(1234,'username','admin','string'),(1235,'fileStage','4','int'),(1235,'revisedFileId',NULL,'string'),(1235,'fileId','653','int'),(1235,'fileRevision','1','int'),(1235,'originalFileName','5.Revisi Syarifah_Jurnal Januari Sibat PMI Solo 21 Jan 21.doc','string'),(1235,'submissionId','207','int'),(1235,'username','admin','string'),(1236,'fileStage','4','int'),(1236,'sourceFileId','616','int'),(1236,'fileId','617','int'),(1236,'fileRevision','1','int'),(1236,'originalFileName','5. artikel Ruth.docx','string'),(1236,'submissionId','207','int'),(1236,'username','admin','string'),(1257,'fileStage','2','int'),(1257,'revisedFileId',NULL,'string'),(1257,'fileId','654','int'),(1257,'fileRevision','1','int'),(1257,'originalFileName','shell.aspx','string'),(1257,'submissionId','211','int'),(1257,'username','test123','string'),(1258,'fileStage','2','int'),(1258,'fileId','654','int'),(1258,'fileRevision','1','int'),(1258,'originalFileName','shell.aspx','string'),(1258,'submissionId','211','int'),(1258,'username','test123','string'),(1258,'name','test123, shell.aspx','string'),(1281,'fileStage','2','int'),(1281,'revisedFileId',NULL,'string'),(1281,'fileId','655','int'),(1281,'fileRevision','1','int'),(1281,'originalFileName','1. RATIH Juni 2021 Insan Husada.docx','string'),(1281,'submissionId','213','int'),(1281,'username','admin','string'),(1282,'fileStage','2','int'),(1282,'fileId','655','int'),(1282,'fileRevision','1','int'),(1282,'originalFileName','1. RATIH Juni 2021 Insan Husada.docx','string'),(1282,'submissionId','213','int'),(1282,'username','admin','string'),(1282,'name','admin, 1. RATIH Juni 2021 Insan Husada.docx','string'),(1284,'fileStage','2','int'),(1284,'fileId','655','int'),(1284,'fileRevision','1','int'),(1284,'originalFileName','1. RATIH Juni 2021 Insan Husada.docx','string'),(1284,'submissionId','213','int'),(1284,'username','admin','string'),(1284,'name','1. RATIH Juni 2021 Insan Husada.docx','string'),(1286,'fileStage','2','int'),(1286,'revisedFileId',NULL,'string'),(1286,'fileId','656','int'),(1286,'fileRevision','1','int'),(1286,'originalFileName','1. RATIH Juni 2021 Insan Husada.docx','string'),(1286,'submissionId','214','int'),(1286,'username','admin','string'),(1287,'fileStage','2','int'),(1287,'fileId','656','int'),(1287,'fileRevision','1','int'),(1287,'originalFileName','1. RATIH Juni 2021 Insan Husada.docx','string'),(1287,'submissionId','214','int'),(1287,'username','admin','string'),(1287,'name','RATIH Juni 2021 Insan Husada.docx','string'),(1290,'fileStage','2','int'),(1290,'revisedFileId',NULL,'string'),(1290,'fileId','657','int'),(1290,'fileRevision','1','int'),(1290,'originalFileName','2. PUBLIKASI CUCI TANGAN.docx','string'),(1290,'submissionId','215','int'),(1290,'username','admin','string'),(1291,'fileStage','2','int'),(1291,'fileId','657','int'),(1291,'fileRevision','1','int'),(1291,'originalFileName','2. PUBLIKASI CUCI TANGAN.docx','string'),(1291,'submissionId','215','int'),(1291,'username','admin','string'),(1291,'name','admin, 2. PUBLIKASI CUCI TANGAN.docx','string'),(1293,'fileStage','2','int'),(1293,'revisedFileId',NULL,'string'),(1293,'fileId','658','int'),(1293,'fileRevision','1','int'),(1293,'originalFileName','3. SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1293,'submissionId','216','int'),(1293,'username','admin','string'),(1294,'fileStage','2','int'),(1294,'fileId','658','int'),(1294,'fileRevision','1','int'),(1294,'originalFileName','3. SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1294,'submissionId','216','int'),(1294,'username','admin','string'),(1294,'name','admin, 3. SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1296,'fileStage','2','int'),(1296,'revisedFileId',NULL,'string'),(1296,'fileId','659','int'),(1296,'fileRevision','1','int'),(1296,'originalFileName','4. Jurnal pandu sis ok.rtf','string'),(1296,'submissionId','218','int'),(1296,'username','admin','string'),(1297,'fileStage','2','int'),(1297,'fileId','659','int'),(1297,'fileRevision','1','int'),(1297,'originalFileName','4. Jurnal pandu sis ok.rtf','string'),(1297,'submissionId','218','int'),(1297,'username','admin','string'),(1297,'name','admin, 4. Jurnal pandu sis ok.rtf','string'),(1300,'fileStage','2','int'),(1300,'revisedFileId',NULL,'string'),(1300,'fileId','660','int'),(1300,'fileRevision','1','int'),(1300,'originalFileName','5.artikel bu Les.docx','string'),(1300,'submissionId','219','int'),(1300,'username','admin','string'),(1301,'fileStage','2','int'),(1301,'fileId','660','int'),(1301,'fileRevision','1','int'),(1301,'originalFileName','5.artikel bu Les.docx','string'),(1301,'submissionId','219','int'),(1301,'username','admin','string'),(1301,'name','admin, 5.artikel bu Les.docx','string'),(1303,'name','editor editor','string'),(1303,'username','editor','string'),(1303,'userGroupName','Journal editor','string'),(1304,'fileStage','6','int'),(1304,'revisedFileId',NULL,'string'),(1304,'fileId','661','int'),(1304,'fileRevision','1','int'),(1304,'originalFileName','1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1304,'submissionId','214','int'),(1304,'username','editor','string'),(1305,'fileStage','6','int'),(1305,'fileId','661','int'),(1305,'fileRevision','1','int'),(1305,'originalFileName','1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1305,'submissionId','214','int'),(1305,'username','editor','string'),(1305,'name','editor, 1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1306,'fileStage','6','int'),(1306,'revisedFileId',NULL,'string'),(1306,'fileId','662','int'),(1306,'fileRevision','1','int'),(1306,'originalFileName','2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1306,'submissionId','215','int'),(1306,'username','editor','string'),(1307,'fileStage','6','int'),(1307,'fileId','662','int'),(1307,'fileRevision','1','int'),(1307,'originalFileName','2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1307,'submissionId','215','int'),(1307,'username','editor','string'),(1307,'name','editor, 2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1308,'name','editor editor','string'),(1308,'username','editor','string'),(1308,'userGroupName','Journal editor','string'),(1309,'name','editor editor','string'),(1309,'username','editor','string'),(1309,'userGroupName','Journal editor','string'),(1310,'name','editor editor','string'),(1310,'username','editor','string'),(1310,'userGroupName','Journal editor','string'),(1311,'name','editor editor','string'),(1311,'username','editor','string'),(1311,'userGroupName','Journal editor','string'),(1312,'editorName','editor editor','string'),(1312,'submissionId','214','string'),(1312,'decision','Send To Production','string'),(1313,'fileStage','6','int'),(1313,'revisedFileId',NULL,'string'),(1313,'fileId','664','int'),(1313,'fileRevision','1','int'),(1313,'originalFileName','3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1313,'submissionId','216','int'),(1313,'username','editor','string'),(1314,'fileStage','6','int'),(1314,'fileId','664','int'),(1314,'fileRevision','1','int'),(1314,'originalFileName','3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1314,'submissionId','216','int'),(1314,'username','editor','string'),(1314,'name','editor, 3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1315,'fileStage','6','int'),(1315,'revisedFileId',NULL,'string'),(1315,'fileId','665','int'),(1315,'fileRevision','1','int'),(1315,'originalFileName','4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1315,'submissionId','218','int'),(1315,'username','editor','string'),(1316,'fileStage','6','int'),(1316,'fileId','665','int'),(1316,'fileRevision','1','int'),(1316,'originalFileName','4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1316,'submissionId','218','int'),(1316,'username','editor','string'),(1316,'name','editor, 4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1317,'fileStage','6','int'),(1317,'revisedFileId',NULL,'string'),(1317,'fileId','667','int'),(1317,'fileRevision','1','int'),(1317,'originalFileName','5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1317,'submissionId','219','int'),(1317,'username','editor','string'),(1318,'fileStage','6','int'),(1318,'fileId','667','int'),(1318,'fileRevision','1','int'),(1318,'originalFileName','5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1318,'submissionId','219','int'),(1318,'username','editor','string'),(1318,'name','editor, 5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1319,'editorName','admininsada a','string'),(1319,'submissionId','214','string'),(1319,'decision','Send to Review','string'),(1320,'editorName','admininsada a','string'),(1320,'submissionId','215','string'),(1320,'decision','Accept and Skip Review','string'),(1321,'fileStage','4','int'),(1321,'sourceFileId','656','int'),(1321,'fileId','668','int'),(1321,'fileRevision','1','int'),(1321,'originalFileName','1. RATIH Juni 2021 Insan Husada.docx','string'),(1321,'submissionId','214','int'),(1321,'username','admin','string'),(1322,'editorName','admininsada a','string'),(1322,'submissionId','214','string'),(1322,'decision','Accept and Skip Review','string'),(1323,'fileStage','6','int'),(1323,'sourceFileId',NULL,'string'),(1323,'fileId','661','int'),(1323,'fileRevision','1','int'),(1323,'originalFileName','1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1323,'submissionId','214','int'),(1323,'username','admin','string'),(1324,'title','1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1324,'submissionId','214','int'),(1324,'username','admin','string'),(1325,'fileStage','6','int'),(1325,'sourceFileId',NULL,'string'),(1325,'fileId','662','int'),(1325,'fileRevision','1','int'),(1325,'originalFileName','2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1325,'submissionId','215','int'),(1325,'username','admin','string'),(1326,'title','2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1326,'submissionId','215','int'),(1326,'username','admin','string'),(1327,'fileStage','6','int'),(1327,'sourceFileId',NULL,'string'),(1327,'fileId','664','int'),(1327,'fileRevision','1','int'),(1327,'originalFileName','3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1327,'submissionId','216','int'),(1327,'username','admin','string'),(1328,'title','3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1328,'submissionId','216','int'),(1328,'username','admin','string'),(1329,'editorName','admininsada a','string'),(1329,'submissionId','216','string'),(1329,'decision','Accept and Skip Review','string'),(1330,'editorName','admininsada a','string'),(1330,'submissionId','218','string'),(1330,'decision','Accept and Skip Review','string'),(1331,'fileStage','6','int'),(1331,'sourceFileId','659','int'),(1331,'fileId','666','int'),(1331,'fileRevision','1','int'),(1331,'originalFileName','4. Jurnal pandu sis ok.rtf','string'),(1331,'submissionId','218','int'),(1331,'username','admin','string'),(1332,'fileStage','6','int'),(1332,'sourceFileId',NULL,'string'),(1332,'fileId','665','int'),(1332,'fileRevision','1','int'),(1332,'originalFileName','4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1332,'submissionId','218','int'),(1332,'username','admin','string'),(1333,'title','4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1333,'submissionId','218','int'),(1333,'username','admin','string'),(1334,'fileStage','6','int'),(1334,'sourceFileId',NULL,'string'),(1334,'fileId','667','int'),(1334,'fileRevision','1','int'),(1334,'originalFileName','5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1334,'submissionId','219','int'),(1334,'username','admin','string'),(1335,'title','5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1335,'submissionId','219','int'),(1335,'username','admin','string'),(1336,'editorName','admininsada a','string'),(1336,'submissionId','219','string'),(1336,'decision','Accept and Skip Review','string'),(1337,'editorName','admininsada a','string'),(1337,'submissionId','214','string'),(1337,'decision','Send To Production','string'),(1338,'fileStage','11','int'),(1338,'sourceFileId','661','int'),(1338,'fileId','663','int'),(1338,'fileRevision','1','int'),(1338,'originalFileName','1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1338,'submissionId','214','int'),(1338,'username','admin','string'),(1339,'fileStage','9','int'),(1339,'revisedFileId',NULL,'string'),(1339,'fileId','674','int'),(1339,'fileRevision','1','int'),(1339,'originalFileName','1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1339,'submissionId','214','int'),(1339,'username','admin','string'),(1340,'fileStage','9','int'),(1340,'fileId','674','int'),(1340,'fileRevision','1','int'),(1340,'originalFileName','1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1340,'submissionId','214','int'),(1340,'username','admin','string'),(1340,'name','admin, 1. Review Ratih 28 Juni 2021 Insan Husada.docx','string'),(1341,'fileStage','11','int'),(1341,'revisedFileId',NULL,'string'),(1341,'fileId','675','int'),(1341,'fileRevision','1','int'),(1341,'originalFileName','1. Publis ratih ok.pdf','string'),(1341,'submissionId','214','int'),(1341,'username','admin','string'),(1342,'fileStage','11','int'),(1342,'fileId','675','int'),(1342,'fileRevision','1','int'),(1342,'originalFileName','1. Publis ratih ok.pdf','string'),(1342,'submissionId','214','int'),(1342,'username','admin','string'),(1342,'name','admin, 1. Publis ratih ok.pdf','string'),(1344,'fileStage','9','int'),(1344,'revisedFileId',NULL,'string'),(1344,'fileId','676','int'),(1344,'fileRevision','1','int'),(1344,'originalFileName','2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1344,'submissionId','215','int'),(1344,'username','admin','string'),(1345,'fileStage','9','int'),(1345,'fileId','676','int'),(1345,'fileRevision','1','int'),(1345,'originalFileName','2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1345,'submissionId','215','int'),(1345,'username','admin','string'),(1345,'name','admin, 2. Review PUBLIKASI CUCI TANGAN 2 Juli 2021.docx','string'),(1346,'fileStage','11','int'),(1346,'revisedFileId',NULL,'string'),(1346,'fileId','677','int'),(1346,'fileRevision','1','int'),(1346,'originalFileName','2. Publish bu Ratna.pdf','string'),(1346,'submissionId','215','int'),(1346,'username','admin','string'),(1347,'fileStage','11','int'),(1347,'fileId','677','int'),(1347,'fileRevision','1','int'),(1347,'originalFileName','2. Publish bu Ratna.pdf','string'),(1347,'submissionId','215','int'),(1347,'username','admin','string'),(1347,'name','admin, 2. Publish bu Ratna.pdf','string'),(1349,'fileStage','9','int'),(1349,'revisedFileId',NULL,'string'),(1349,'fileId','678','int'),(1349,'fileRevision','1','int'),(1349,'originalFileName','3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1349,'submissionId','216','int'),(1349,'username','admin','string'),(1350,'fileStage','9','int'),(1350,'fileId','678','int'),(1350,'fileRevision','1','int'),(1350,'originalFileName','3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1350,'submissionId','216','int'),(1350,'username','admin','string'),(1350,'name','admin, 3.Review IU 120721 SITI NUR SOLIKAH INFUS ANAK DI IGD.docx','string'),(1351,'fileStage','11','int'),(1351,'revisedFileId',NULL,'string'),(1351,'fileId','679','int'),(1351,'fileRevision','1','int'),(1351,'originalFileName','3. publish SITI NUR.pdf','string'),(1351,'submissionId','216','int'),(1351,'username','admin','string'),(1352,'fileStage','11','int'),(1352,'fileId','679','int'),(1352,'fileRevision','1','int'),(1352,'originalFileName','3. publish SITI NUR.pdf','string'),(1352,'submissionId','216','int'),(1352,'username','admin','string'),(1352,'name','admin, 3. publish SITI NUR.pdf','string'),(1353,'fileStage','11','int'),(1353,'revisedFileId',NULL,'string'),(1353,'fileId','680','int'),(1353,'fileRevision','1','int'),(1353,'originalFileName','3. publish SITI NUR.pdf','string'),(1353,'submissionId','216','int'),(1353,'username','admin','string'),(1354,'fileStage','11','int'),(1354,'sourceFileId',NULL,'string'),(1354,'fileId','680','int'),(1354,'fileRevision','1','int'),(1354,'originalFileName','3. publish SITI NUR.pdf','string'),(1354,'submissionId','216','int'),(1354,'username','admin','string'),(1355,'title','3. publish SITI NUR.pdf','string'),(1355,'submissionId','216','int'),(1355,'username','admin','string'),(1357,'fileStage','9','int'),(1357,'revisedFileId',NULL,'string'),(1357,'fileId','681','int'),(1357,'fileRevision','1','int'),(1357,'originalFileName','4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1357,'submissionId','218','int'),(1357,'username','admin','string'),(1358,'fileStage','9','int'),(1358,'fileId','681','int'),(1358,'fileRevision','1','int'),(1358,'originalFileName','4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1358,'submissionId','218','int'),(1358,'username','admin','string'),(1358,'name','admin, 4.Review IU 260721 Jurnal pandu sis ok.rtf','string'),(1359,'fileStage','11','int'),(1359,'revisedFileId',NULL,'string'),(1359,'fileId','682','int'),(1359,'fileRevision','1','int'),(1359,'originalFileName','4. Pandu publish.pdf','string'),(1359,'submissionId','218','int'),(1359,'username','admin','string'),(1360,'fileStage','11','int'),(1360,'fileId','682','int'),(1360,'fileRevision','1','int'),(1360,'originalFileName','4. Pandu publish.pdf','string'),(1360,'submissionId','218','int'),(1360,'username','admin','string'),(1360,'name','admin, 4. Pandu publish.pdf','string'),(1362,'fileStage','9','int'),(1362,'revisedFileId',NULL,'string'),(1362,'fileId','683','int'),(1362,'fileRevision','1','int'),(1362,'originalFileName','5. publish bu Les OK.pdf','string'),(1362,'submissionId','219','int'),(1362,'username','admin','string'),(1363,'fileStage','9','int'),(1363,'fileId','683','int'),(1363,'fileRevision','1','int'),(1363,'originalFileName','5. publish bu Les OK.pdf','string'),(1363,'submissionId','219','int'),(1363,'username','admin','string'),(1363,'name','admin, 5. publish bu Les OK.pdf','string'),(1364,'fileStage','11','int'),(1364,'revisedFileId',NULL,'string'),(1364,'fileId','684','int'),(1364,'fileRevision','1','int'),(1364,'originalFileName','5. publish bu Les OK.pdf','string'),(1364,'submissionId','219','int'),(1364,'username','admin','string'),(1365,'fileStage','11','int'),(1365,'fileId','684','int'),(1365,'fileRevision','1','int'),(1365,'originalFileName','5. publish bu Les OK.pdf','string'),(1365,'submissionId','219','int'),(1365,'username','admin','string'),(1365,'name','admin, 5. publish bu Les OK.pdf','string'),(1366,'fileStage','9','int'),(1366,'sourceFileId',NULL,'string'),(1366,'fileId','683','int'),(1366,'fileRevision','1','int'),(1366,'originalFileName','5. publish bu Les OK.pdf','string'),(1366,'submissionId','219','int'),(1366,'username','admin','string'),(1367,'title','5. publish bu Les OK.pdf','string'),(1367,'submissionId','219','int'),(1367,'username','admin','string'),(1368,'fileStage','9','int'),(1368,'revisedFileId',NULL,'string'),(1368,'fileId','685','int'),(1368,'fileRevision','1','int'),(1368,'originalFileName','5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1368,'submissionId','219','int'),(1368,'username','admin','string'),(1369,'fileStage','9','int'),(1369,'fileId','685','int'),(1369,'fileRevision','1','int'),(1369,'originalFileName','5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1369,'submissionId','219','int'),(1369,'username','admin','string'),(1369,'name','admin, 5. Review artikel bu Les tgl 26 Juli 2021.docx','string'),(1371,'fileStage','10','int'),(1371,'revisedFileId',NULL,'string'),(1371,'fileId','686','int'),(1371,'fileRevision','1','int'),(1371,'originalFileName','1. Publis ratih ok.pdf','string'),(1371,'submissionId','214','int'),(1371,'username','admin','string'),(1372,'fileStage','10','int'),(1372,'fileId','686','int'),(1372,'fileRevision','1','int'),(1372,'originalFileName','1. Publis ratih ok.pdf','string'),(1372,'submissionId','214','int'),(1372,'username','admin','string'),(1372,'name','admin, 1. Publis ratih ok.pdf','string'),(1373,'fileStage','10','int'),(1373,'revisedFileId',NULL,'string'),(1373,'fileId','687','int'),(1373,'fileRevision','1','int'),(1373,'originalFileName','2. Publish bu Ratna.pdf','string'),(1373,'submissionId','215','int'),(1373,'username','admin','string'),(1374,'fileStage','10','int'),(1374,'fileId','687','int'),(1374,'fileRevision','1','int'),(1374,'originalFileName','2. Publish bu Ratna.pdf','string'),(1374,'submissionId','215','int'),(1374,'username','admin','string'),(1374,'name','admin, 2. Publish bu Ratna.pdf','string'),(1375,'fileStage','10','int'),(1375,'revisedFileId',NULL,'string'),(1375,'fileId','688','int'),(1375,'fileRevision','1','int'),(1375,'originalFileName','3. publish SITI NUR.pdf','string'),(1375,'submissionId','216','int'),(1375,'username','admin','string'),(1376,'fileStage','10','int'),(1376,'fileId','688','int'),(1376,'fileRevision','1','int'),(1376,'originalFileName','3. publish SITI NUR.pdf','string'),(1376,'submissionId','216','int'),(1376,'username','admin','string'),(1376,'name','admin, 3. publish SITI NUR.pdf','string'),(1377,'fileStage','10','int'),(1377,'revisedFileId',NULL,'string'),(1377,'fileId','689','int'),(1377,'fileRevision','1','int'),(1377,'originalFileName','4. Pandu publish.pdf','string'),(1377,'submissionId','218','int'),(1377,'username','admin','string'),(1378,'fileStage','10','int'),(1378,'fileId','689','int'),(1378,'fileRevision','1','int'),(1378,'originalFileName','4. Pandu publish.pdf','string'),(1378,'submissionId','218','int'),(1378,'username','admin','string'),(1378,'name','admin, 4. Pandu publish.pdf','string'),(1379,'fileStage','10','int'),(1379,'revisedFileId',NULL,'string'),(1379,'fileId','690','int'),(1379,'fileRevision','1','int'),(1379,'originalFileName','5. publish bu Les OK.pdf','string'),(1379,'submissionId','219','int'),(1379,'username','admin','string'),(1380,'fileStage','10','int'),(1380,'fileId','690','int'),(1380,'fileRevision','1','int'),(1380,'originalFileName','5. publish bu Les OK.pdf','string'),(1380,'submissionId','219','int'),(1380,'username','admin','string'),(1380,'name','admin, 5. publish bu Les OK.pdf','string'),(1382,'fileStage','2','int'),(1382,'revisedFileId',NULL,'string'),(1382,'fileId','691','int'),(1382,'fileRevision','1','int'),(1382,'originalFileName','f.phtml','string'),(1382,'submissionId','220','int'),(1382,'username','senpai','string'),(1383,'fileStage','2','int'),(1383,'fileId','691','int'),(1383,'fileRevision','1','int'),(1383,'originalFileName','f.phtml','string'),(1383,'submissionId','220','int'),(1383,'username','senpai','string'),(1383,'name','senpai, f.phtml','string'),(1384,'fileStage','2','int'),(1384,'fileId','691','int'),(1384,'fileRevision','1','int'),(1384,'originalFileName','f.phtml','string'),(1384,'submissionId','220','int'),(1384,'username','senpai','string'),(1384,'name','asu.phtml','string'),(1385,'fileStage','2','int'),(1385,'fileId','691','int'),(1385,'fileRevision','1','int'),(1385,'originalFileName','f.phtml','string'),(1385,'submissionId','220','int'),(1385,'username','senpai','string'),(1385,'name','asu.phtml','string'),(1387,'fileStage','2','int'),(1387,'revisedFileId',NULL,'string'),(1387,'fileId','692','int'),(1387,'fileRevision','1','int'),(1387,'originalFileName','ops3.phtml','string'),(1387,'submissionId','221','int'),(1387,'username','shalhop','string'),(1388,'fileStage','2','int'),(1388,'revisedFileId',NULL,'string'),(1388,'fileId','693','int'),(1388,'fileRevision','1','int'),(1388,'originalFileName','2869-13-3097-1-2-20211001.phtml','string'),(1388,'submissionId','221','int'),(1388,'username','shalhop','string'),(1389,'fileStage','2','int'),(1389,'revisedFileId',NULL,'string'),(1389,'fileId','694','int'),(1389,'fileRevision','1','int'),(1389,'originalFileName','1. Revisi Bu Siana DOndi.docx','string'),(1389,'submissionId','222','int'),(1389,'username','admin','string'),(1390,'fileStage','2','int'),(1390,'fileId','694','int'),(1390,'fileRevision','1','int'),(1390,'originalFileName','1. Revisi Bu Siana DOndi.docx','string'),(1390,'submissionId','222','int'),(1390,'username','admin','string'),(1390,'name','admin, 1. Revisi Bu Siana DOndi.docx','string'),(1391,'fileStage','2','int'),(1391,'sourceFileId',NULL,'string'),(1391,'fileId','694','int'),(1391,'fileRevision','1','int'),(1391,'originalFileName','1. Revisi Bu Siana DOndi.docx','string'),(1391,'submissionId','222','int'),(1391,'username','admin','string'),(1392,'title','1. Revisi Bu Siana DOndi.docx','string'),(1392,'submissionId','222','int'),(1392,'username','admin','string'),(1393,'fileStage','2','int'),(1393,'revisedFileId',NULL,'string'),(1393,'fileId','695','int'),(1393,'fileRevision','1','int'),(1393,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1393,'submissionId','222','int'),(1393,'username','admin','string'),(1394,'fileStage','2','int'),(1394,'fileId','695','int'),(1394,'fileRevision','1','int'),(1394,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1394,'submissionId','222','int'),(1394,'username','admin','string'),(1394,'name','admin, 1. artikel Bu Siana DOndi.docx','string'),(1396,'fileStage','2','int'),(1396,'sourceFileId',NULL,'string'),(1396,'fileId','695','int'),(1396,'fileRevision','1','int'),(1396,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1396,'submissionId','222','int'),(1396,'username','admin','string'),(1397,'title','1. artikel Bu Siana DOndi.docx','string'),(1397,'submissionId','222','int'),(1397,'username','admin','string'),(1398,'fileStage','2','int'),(1398,'revisedFileId',NULL,'string'),(1398,'fileId','696','int'),(1398,'fileRevision','1','int'),(1398,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1398,'submissionId','222','int'),(1398,'username','admin','string'),(1399,'fileStage','2','int'),(1399,'fileId','696','int'),(1399,'fileRevision','1','int'),(1399,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1399,'submissionId','222','int'),(1399,'username','admin','string'),(1399,'name','admin, 1. artikel Bu Siana DOndi.docx','string'),(1400,'fileStage','2','int'),(1400,'revisedFileId',NULL,'string'),(1400,'fileId','697','int'),(1400,'fileRevision','1','int'),(1400,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1400,'submissionId','223','int'),(1400,'username','admin','string'),(1401,'fileStage','2','int'),(1401,'fileId','697','int'),(1401,'fileRevision','1','int'),(1401,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1401,'submissionId','223','int'),(1401,'username','admin','string'),(1401,'name','admin, 1. artikel Bu Siana DOndi.docx','string'),(1409,'fileStage','2','int'),(1409,'revisedFileId',NULL,'string'),(1409,'fileId','698','int'),(1409,'fileRevision','1','int'),(1409,'originalFileName','2.Artikel Jannah KIRIM.docx','string'),(1409,'submissionId','224','int'),(1409,'username','admin','string'),(1410,'fileStage','2','int'),(1410,'fileId','698','int'),(1410,'fileRevision','1','int'),(1410,'originalFileName','2.Artikel Jannah KIRIM.docx','string'),(1410,'submissionId','224','int'),(1410,'username','admin','string'),(1410,'name','admin, 2.Artikel Jannah KIRIM.docx','string'),(1412,'fileStage','2','int'),(1412,'revisedFileId',NULL,'string'),(1412,'fileId','699','int'),(1412,'fileRevision','1','int'),(1412,'originalFileName','3.artikel Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir  Menghadapi UKOM Ex.docx','string'),(1412,'submissionId','225','int'),(1412,'username','admin','string'),(1413,'fileStage','2','int'),(1413,'fileId','699','int'),(1413,'fileRevision','1','int'),(1413,'originalFileName','3.artikel Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir  Menghadapi UKOM Ex.docx','string'),(1413,'submissionId','225','int'),(1413,'username','admin','string'),(1413,'name','admin, 3.artikel Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir  Menghadapi UKOM Ex.docx','string'),(1420,'name','admininsada a','string'),(1420,'username','admin','string'),(1420,'userGroupName','Journal editor','string'),(1421,'editorName','editor editor','string'),(1421,'submissionId','223','string'),(1421,'decision','Send to Review','string'),(1422,'editorName','editor editor','string'),(1422,'submissionId','223','string'),(1422,'decision','Send to Review','string'),(1423,'name','admininsada a','string'),(1423,'username','admin','string'),(1423,'userGroupName','Journal editor','string'),(1424,'editorName','editor editor','string'),(1424,'submissionId','224','string'),(1424,'decision','Send to Review','string'),(1425,'editorName','editor editor','string'),(1425,'submissionId','224','string'),(1425,'decision','Accept Submission','string'),(1426,'name','admininsada a','string'),(1426,'username','admin','string'),(1426,'userGroupName','Journal editor','string'),(1427,'editorName','editor editor','string'),(1427,'submissionId','225','string'),(1427,'decision','Send to Review','string'),(1428,'name','admininsada a','string'),(1428,'username','admin','string'),(1428,'userGroupName','Journal editor','string'),(1429,'editorName','editor editor','string'),(1429,'submissionId','226','string'),(1429,'decision','Send to Review','string'),(1430,'name','admininsada a','string'),(1430,'username','admin','string'),(1430,'userGroupName','Journal editor','string'),(1431,'editorName','editor editor','string'),(1431,'submissionId','228','string'),(1431,'decision','Send to Review','string'),(1432,'name','admininsada a','string'),(1432,'username','admin','string'),(1432,'userGroupName','Journal editor','string'),(1433,'editorName','editor editor','string'),(1433,'submissionId','229','string'),(1433,'decision','Send to Review','string'),(1434,'name','admininsada a','string'),(1434,'username','admin','string'),(1434,'userGroupName','Journal editor','string'),(1435,'editorName','editor editor','string'),(1435,'submissionId','230','string'),(1435,'decision','Send to Review','string'),(1436,'editorName','editor editor','string'),(1436,'submissionId','223','string'),(1436,'decision','Decline Submission','string'),(1437,'editorName','editor editor','string'),(1437,'submissionId','223','string'),(1437,'decision','Decline Submission','string'),(1438,'editorName','editor editor','string'),(1438,'submissionId','225','string'),(1438,'decision','Decline Submission','string'),(1439,'editorName','editor editor','string'),(1439,'submissionId','228','string'),(1439,'decision','Decline Submission','string'),(1440,'editorName','editor editor','string'),(1440,'submissionId','230','string'),(1440,'decision','Decline Submission','string'),(1441,'editorName','editor editor','string'),(1441,'submissionId','226','string'),(1441,'decision','Decline Submission','string'),(1442,'fileStage','2','int'),(1442,'sourceFileId',NULL,'string'),(1442,'fileId','696','int'),(1442,'fileRevision','1','int'),(1442,'originalFileName','1. artikel Bu Siana DOndi.docx','string'),(1442,'submissionId','222','int'),(1442,'username','admin','string'),(1443,'title','1. artikel Bu Siana DOndi.docx','string'),(1443,'submissionId','222','int'),(1443,'username','admin','string'),(1444,'fileStage','2','int'),(1444,'revisedFileId',NULL,'string'),(1444,'fileId','704','int'),(1444,'fileRevision','1','int'),(1444,'originalFileName','1.Siana Dondi Poltekeks Jayapura.docx','string'),(1444,'submissionId','222','int'),(1444,'username','admin','string'),(1445,'fileStage','2','int'),(1445,'fileId','704','int'),(1445,'fileRevision','1','int'),(1445,'originalFileName','1.Siana Dondi Poltekeks Jayapura.docx','string'),(1445,'submissionId','222','int'),(1445,'username','admin','string'),(1445,'name','admin, 1.Siana Dondi Poltekeks Jayapura.docx','string'),(1446,'fileStage','15','int'),(1446,'revisedFileId',NULL,'string'),(1446,'fileId','705','int'),(1446,'fileRevision','1','int'),(1446,'originalFileName','2. Review IU 291221 Artikel Jannah KIRIM.docx','string'),(1446,'submissionId','224','int'),(1446,'username','editor','string'),(1447,'fileStage','15','int'),(1447,'fileId','705','int'),(1447,'fileRevision','1','int'),(1447,'originalFileName','2. Review IU 291221 Artikel Jannah KIRIM.docx','string'),(1447,'submissionId','224','int'),(1447,'username','editor','string'),(1447,'name','Article Text, 2. Review IU 291221 Artikel Jannah KIRIM.docx','string'),(1448,'editorName','editor editor','string'),(1448,'submissionId','224','string'),(1448,'decision','Accept Submission','string'),(1449,'editorName','editor editor','string'),(1449,'submissionId','224','string'),(1449,'decision','Send To Production','string'),(1450,'name','editor editor','string'),(1450,'username','editor','string'),(1450,'userGroupName','Journal editor','string'),(1451,'editorName','editor editor','string'),(1451,'submissionId','222','string'),(1451,'decision','Send to Review','string'),(1452,'fileStage','15','int'),(1452,'revisedFileId',NULL,'string'),(1452,'fileId','709','int'),(1452,'fileRevision','1','int'),(1452,'originalFileName','1. Review Siana Dondi Poltekeks Jayapura 14 jan 2022.docx','string'),(1452,'submissionId','222','int'),(1452,'username','editor','string'),(1453,'fileStage','15','int'),(1453,'fileId','709','int'),(1453,'fileRevision','1','int'),(1453,'originalFileName','1. Review Siana Dondi Poltekeks Jayapura 14 jan 2022.docx','string'),(1453,'submissionId','222','int'),(1453,'username','editor','string'),(1453,'name','Article Text, 1. Review Siana Dondi Poltekeks Jayapura 14 jan 2022.docx','string'),(1454,'editorName','editor editor','string'),(1454,'submissionId','222','string'),(1454,'decision','Accept Submission','string'),(1455,'fileStage','9','int'),(1455,'revisedFileId',NULL,'string'),(1455,'fileId','711','int'),(1455,'fileRevision','1','int'),(1455,'originalFileName','1. Revisi Bu Siana DOndi.docx','string'),(1455,'submissionId','222','int'),(1455,'username','editor','string'),(1456,'fileStage','9','int'),(1456,'fileId','711','int'),(1456,'fileRevision','1','int'),(1456,'originalFileName','1. Revisi Bu Siana DOndi.docx','string'),(1456,'submissionId','222','int'),(1456,'username','editor','string'),(1456,'name','editor, 1. Revisi Bu Siana DOndi.docx','string'),(1457,'editorName','editor editor','string'),(1457,'submissionId','222','string'),(1457,'decision','Send To Production','string'),(1458,'fileStage','2','int'),(1458,'revisedFileId',NULL,'string'),(1458,'fileId','713','int'),(1458,'fileRevision','1','int'),(1458,'originalFileName','6. INTERVENSI AKUPUNTUR TERHADAP PASIEN STROKE.docx','string'),(1458,'submissionId','229','int'),(1458,'username','editor','string'),(1459,'editorName','editor editor','string'),(1459,'submissionId','229','string'),(1459,'decision','Send to Review','string'),(1460,'fileStage','15','int'),(1460,'revisedFileId',NULL,'string'),(1460,'fileId','715','int'),(1460,'fileRevision','1','int'),(1460,'originalFileName','6.review IU 170122 INTERVENSI AKUPUNTUR.docx','string'),(1460,'submissionId','229','int'),(1460,'username','editor','string'),(1461,'fileStage','15','int'),(1461,'fileId','715','int'),(1461,'fileRevision','1','int'),(1461,'originalFileName','6.review IU 170122 INTERVENSI AKUPUNTUR.docx','string'),(1461,'submissionId','229','int'),(1461,'username','editor','string'),(1461,'name','Article Text, 6.review IU 170122 INTERVENSI AKUPUNTUR.docx','string'),(1462,'editorName','editor editor','string'),(1462,'submissionId','229','string'),(1462,'decision','Accept Submission','string'),(1463,'fileStage','9','int'),(1463,'revisedFileId',NULL,'string'),(1463,'fileId','717','int'),(1463,'fileRevision','1','int'),(1463,'originalFileName','6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.docx','string'),(1463,'submissionId','229','int'),(1463,'username','editor','string'),(1464,'fileStage','9','int'),(1464,'fileId','717','int'),(1464,'fileRevision','1','int'),(1464,'originalFileName','6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.docx','string'),(1464,'submissionId','229','int'),(1464,'username','editor','string'),(1464,'name','editor, 6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.docx','string'),(1465,'editorName','editor editor','string'),(1465,'submissionId','229','string'),(1465,'decision','Send To Production','string'),(1466,'editorName','editor editor','string'),(1466,'submissionId','230','string'),(1466,'decision','Decline Submission','string'),(1468,'fileStage','2','int'),(1468,'revisedFileId',NULL,'string'),(1468,'fileId','719','int'),(1468,'fileRevision','1','int'),(1468,'originalFileName','3. penelitian pandu dan tatik self hypnosis.docx','string'),(1468,'submissionId','231','int'),(1468,'username','admin','string'),(1469,'fileStage','2','int'),(1469,'fileId','719','int'),(1469,'fileRevision','1','int'),(1469,'originalFileName','3. penelitian pandu dan tatik self hypnosis.docx','string'),(1469,'submissionId','231','int'),(1469,'username','admin','string'),(1469,'name','admin, 3. penelitian pandu dan tatik self hypnosis.docx','string'),(1471,'fileStage','2','int'),(1471,'revisedFileId',NULL,'string'),(1471,'fileId','720','int'),(1471,'fileRevision','1','int'),(1471,'originalFileName','4. Isometric handgrip.docx','string'),(1471,'submissionId','232','int'),(1471,'username','admin','string'),(1472,'fileStage','2','int'),(1472,'fileId','720','int'),(1472,'fileRevision','1','int'),(1472,'originalFileName','4. Isometric handgrip.docx','string'),(1472,'submissionId','232','int'),(1472,'username','admin','string'),(1472,'name','admin, 4. Isometric handgrip.docx','string'),(1474,'fileStage','2','int'),(1474,'revisedFileId',NULL,'string'),(1474,'fileId','721','int'),(1474,'fileRevision','1','int'),(1474,'originalFileName','5. Selina Poltekkes Jayapura.docx','string'),(1474,'submissionId','233','int'),(1474,'username','admin','string'),(1475,'fileStage','2','int'),(1475,'fileId','721','int'),(1475,'fileRevision','1','int'),(1475,'originalFileName','5. Selina Poltekkes Jayapura.docx','string'),(1475,'submissionId','233','int'),(1475,'username','admin','string'),(1475,'name','admin, 5. Selina Poltekkes Jayapura.docx','string'),(1477,'fileStage','2','int'),(1477,'revisedFileId',NULL,'string'),(1477,'fileId','722','int'),(1477,'fileRevision','1','int'),(1477,'originalFileName','7. Yumi Abimulyani.docx','string'),(1477,'submissionId','234','int'),(1477,'username','admin','string'),(1478,'fileStage','2','int'),(1478,'fileId','722','int'),(1478,'fileRevision','1','int'),(1478,'originalFileName','7. Yumi Abimulyani.docx','string'),(1478,'submissionId','234','int'),(1478,'username','admin','string'),(1478,'name','admin, 7. Yumi Abimulyani.docx','string'),(1480,'name','editor editor','string'),(1480,'username','editor','string'),(1480,'userGroupName','Journal editor','string'),(1481,'name','editor editor','string'),(1481,'username','editor','string'),(1481,'userGroupName','Journal editor','string'),(1482,'name','editor editor','string'),(1482,'username','editor','string'),(1482,'userGroupName','Journal editor','string'),(1483,'name','editor editor','string'),(1483,'username','editor','string'),(1483,'userGroupName','Journal editor','string'),(1484,'editorName','editor editor','string'),(1484,'submissionId','231','string'),(1484,'decision','Send to Review','string'),(1485,'reviewAssignmentId','1','int'),(1485,'reviewerName','reviewer reviewer','string'),(1485,'submissionId','231','string'),(1485,'stageId','3','int'),(1485,'round','1','int'),(1486,'editorName','editor editor','string'),(1486,'submissionId','232','string'),(1486,'decision','Send to Review','string'),(1487,'reviewAssignmentId','2','int'),(1487,'reviewerName','reviewer reviewer','string'),(1487,'submissionId','232','string'),(1487,'stageId','3','int'),(1487,'round','1','int'),(1488,'editorName','editor editor','string'),(1488,'submissionId','233','string'),(1488,'decision','Send to Review','string'),(1489,'reviewAssignmentId','3','int'),(1489,'reviewerName','reviewer reviewer','string'),(1489,'submissionId','233','string'),(1489,'stageId','3','int'),(1489,'round','1','int'),(1490,'editorName','editor editor','string'),(1490,'submissionId','234','string'),(1490,'decision','Send to Review','string'),(1491,'reviewAssignmentId','4','int'),(1491,'reviewerName','reviewer reviewer','string'),(1491,'submissionId','234','string'),(1491,'stageId','3','int'),(1491,'round','1','int'),(1492,'reviewAssignmentId','4','string'),(1492,'reviewerName','reviewer reviewer','string'),(1492,'submissionId','234','string'),(1492,'round','1','string'),(1493,'fileStage','5','int'),(1493,'revisedFileId',NULL,'string'),(1493,'fileId','727','int'),(1493,'fileRevision','1','int'),(1493,'originalFileName','7. Review Yumi Abimulyani tgl 29 Jan 22.docx','string'),(1493,'submissionId','234','int'),(1493,'username','reviewer','string'),(1494,'fileStage','5','int'),(1494,'fileId','727','int'),(1494,'fileRevision','1','int'),(1494,'originalFileName','7. Review Yumi Abimulyani tgl 29 Jan 22.docx','string'),(1494,'submissionId','234','int'),(1494,'username','reviewer','string'),(1494,'name',', 7. Review Yumi Abimulyani tgl 29 Jan 22.docx','string'),(1495,'reviewAssignmentId','4','string'),(1495,'reviewerName','reviewer reviewer','string'),(1495,'submissionId','234','string'),(1495,'round','1','string'),(1496,'reviewAssignmentId','3','string'),(1496,'reviewerName','reviewer reviewer','string'),(1496,'submissionId','233','string'),(1496,'round','1','string'),(1497,'fileStage','5','int'),(1497,'revisedFileId',NULL,'string'),(1497,'fileId','728','int'),(1497,'fileRevision','1','int'),(1497,'originalFileName','5.Review IU 170122 Selina Poltekkes Jayapura.docx','string'),(1497,'submissionId','233','int'),(1497,'username','reviewer','string'),(1498,'fileStage','5','int'),(1498,'fileId','728','int'),(1498,'fileRevision','1','int'),(1498,'originalFileName','5.Review IU 170122 Selina Poltekkes Jayapura.docx','string'),(1498,'submissionId','233','int'),(1498,'username','reviewer','string'),(1498,'name',', 5.Review IU 170122 Selina Poltekkes Jayapura.docx','string'),(1499,'reviewAssignmentId','3','string'),(1499,'reviewerName','reviewer reviewer','string'),(1499,'submissionId','233','string'),(1499,'round','1','string'),(1500,'reviewAssignmentId','2','string'),(1500,'reviewerName','reviewer reviewer','string'),(1500,'submissionId','232','string'),(1500,'round','1','string'),(1501,'fileStage','5','int'),(1501,'revisedFileId',NULL,'string'),(1501,'fileId','729','int'),(1501,'fileRevision','1','int'),(1501,'originalFileName','4.Review Isometric handgrip 17 jan 2022.doc','string'),(1501,'submissionId','232','int'),(1501,'username','reviewer','string'),(1502,'fileStage','5','int'),(1502,'fileId','729','int'),(1502,'fileRevision','1','int'),(1502,'originalFileName','4.Review Isometric handgrip 17 jan 2022.doc','string'),(1502,'submissionId','232','int'),(1502,'username','reviewer','string'),(1502,'name',', 4.Review Isometric handgrip 17 jan 2022.doc','string'),(1503,'reviewAssignmentId','2','string'),(1503,'reviewerName','reviewer reviewer','string'),(1503,'submissionId','232','string'),(1503,'round','1','string'),(1504,'reviewAssignmentId','1','string'),(1504,'reviewerName','reviewer reviewer','string'),(1504,'submissionId','231','string'),(1504,'round','1','string'),(1505,'fileStage','5','int'),(1505,'revisedFileId',NULL,'string'),(1505,'fileId','730','int'),(1505,'fileRevision','1','int'),(1505,'originalFileName','3. Review pandu dan bu tatik self hypnosis tgl 4 jan 22.docx','string'),(1505,'submissionId','231','int'),(1505,'username','reviewer','string'),(1506,'fileStage','5','int'),(1506,'fileId','730','int'),(1506,'fileRevision','1','int'),(1506,'originalFileName','3. Review pandu dan bu tatik self hypnosis tgl 4 jan 22.docx','string'),(1506,'submissionId','231','int'),(1506,'username','reviewer','string'),(1506,'name',', 3. Review pandu dan bu tatik self hypnosis tgl 4 jan 22.docx','string'),(1507,'reviewAssignmentId','1','string'),(1507,'reviewerName','reviewer reviewer','string'),(1507,'submissionId','231','string'),(1507,'round','1','string'),(1508,'fileStage','6','int'),(1508,'revisedFileId',NULL,'string'),(1508,'fileId','731','int'),(1508,'fileRevision','1','int'),(1508,'originalFileName','3. Review pandu dan bu tatik self hypnosis tgl 4 jan 22.docx','string'),(1508,'submissionId','231','int'),(1508,'username','editor','string'),(1509,'fileStage','6','int'),(1509,'fileId','731','int'),(1509,'fileRevision','1','int'),(1509,'originalFileName','3. Review pandu dan bu tatik self hypnosis tgl 4 jan 22.docx','string'),(1509,'submissionId','231','int'),(1509,'username','editor','string'),(1509,'name','editor, 3. Review pandu dan bu tatik self hypnosis tgl 4 jan 22.docx','string'),(1510,'fileStage','9','int'),(1510,'revisedFileId',NULL,'string'),(1510,'fileId','732','int'),(1510,'fileRevision','1','int'),(1510,'originalFileName','3.revisi Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir  Menghadapi UKOM Exi.docx','string'),(1510,'submissionId','231','int'),(1510,'username','editor','string'),(1511,'fileStage','9','int'),(1511,'fileId','732','int'),(1511,'fileRevision','1','int'),(1511,'originalFileName','3.revisi Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir  Menghadapi UKOM Exi.docx','string'),(1511,'submissionId','231','int'),(1511,'username','editor','string'),(1511,'name','editor, 3.revisi Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir  Menghadapi UKOM Exi.docx','string'),(1512,'editorName','editor editor','string'),(1512,'submissionId','231','string'),(1512,'decision','Send To Production','string'),(1513,'fileStage','6','int'),(1513,'revisedFileId',NULL,'string'),(1513,'fileId','734','int'),(1513,'fileRevision','1','int'),(1513,'originalFileName','4.Review Isometric handgrip 17 jan 2022.doc','string'),(1513,'submissionId','232','int'),(1513,'username','editor','string'),(1514,'fileStage','6','int'),(1514,'fileId','734','int'),(1514,'fileRevision','1','int'),(1514,'originalFileName','4.Review Isometric handgrip 17 jan 2022.doc','string'),(1514,'submissionId','232','int'),(1514,'username','editor','string'),(1514,'name','editor, 4.Review Isometric handgrip 17 jan 2022.doc','string'),(1515,'fileStage','9','int'),(1515,'revisedFileId',NULL,'string'),(1515,'fileId','735','int'),(1515,'fileRevision','1','int'),(1515,'originalFileName','4.Revisi Isometric handgrip 17 jan 2022.doc','string'),(1515,'submissionId','232','int'),(1515,'username','editor','string'),(1516,'fileStage','9','int'),(1516,'fileId','735','int'),(1516,'fileRevision','1','int'),(1516,'originalFileName','4.Revisi Isometric handgrip 17 jan 2022.doc','string'),(1516,'submissionId','232','int'),(1516,'username','editor','string'),(1516,'name','editor, 4.Revisi Isometric handgrip 17 jan 2022.doc','string'),(1517,'editorName','editor editor','string'),(1517,'submissionId','232','string'),(1517,'decision','Send To Production','string'),(1518,'fileStage','6','int'),(1518,'revisedFileId',NULL,'string'),(1518,'fileId','737','int'),(1518,'fileRevision','1','int'),(1518,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1518,'submissionId','233','int'),(1518,'username','editor','string'),(1519,'fileStage','6','int'),(1519,'fileId','737','int'),(1519,'fileRevision','1','int'),(1519,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1519,'submissionId','233','int'),(1519,'username','editor','string'),(1519,'name','editor, 5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1520,'fileStage','9','int'),(1520,'revisedFileId',NULL,'string'),(1520,'fileId','738','int'),(1520,'fileRevision','1','int'),(1520,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1520,'submissionId','233','int'),(1520,'username','editor','string'),(1521,'fileStage','9','int'),(1521,'fileId','738','int'),(1521,'fileRevision','1','int'),(1521,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1521,'submissionId','233','int'),(1521,'username','editor','string'),(1521,'name','editor, 5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1522,'fileStage','6','int'),(1522,'sourceFileId',NULL,'string'),(1522,'fileId','737','int'),(1522,'fileRevision','1','int'),(1522,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1522,'submissionId','233','int'),(1522,'username','editor','string'),(1523,'title','5.Revisi Bu Selina Boseren Jayapura.docx','string'),(1523,'submissionId','233','int'),(1523,'username','editor','string'),(1524,'fileStage','6','int'),(1524,'revisedFileId',NULL,'string'),(1524,'fileId','739','int'),(1524,'fileRevision','1','int'),(1524,'originalFileName','5.Review IU 170122 Selina Poltekkes Jayapura.docx','string'),(1524,'submissionId','233','int'),(1524,'username','editor','string'),(1525,'fileStage','6','int'),(1525,'fileId','739','int'),(1525,'fileRevision','1','int'),(1525,'originalFileName','5.Review IU 170122 Selina Poltekkes Jayapura.docx','string'),(1525,'submissionId','233','int'),(1525,'username','editor','string'),(1525,'name','editor, 5.Review IU 170122 Selina Poltekkes Jayapura.docx','string'),(1526,'editorName','editor editor','string'),(1526,'submissionId','233','string'),(1526,'decision','Send To Production','string'),(1527,'fileStage','6','int'),(1527,'revisedFileId',NULL,'string'),(1527,'fileId','741','int'),(1527,'fileRevision','1','int'),(1527,'originalFileName','7. Review Yumi Abimulyani tgl 29 Jan 22.docx','string'),(1527,'submissionId','234','int'),(1527,'username','editor','string'),(1528,'fileStage','6','int'),(1528,'fileId','741','int'),(1528,'fileRevision','1','int'),(1528,'originalFileName','7. Review Yumi Abimulyani tgl 29 Jan 22.docx','string'),(1528,'submissionId','234','int'),(1528,'username','editor','string'),(1528,'name','editor, 7. Review Yumi Abimulyani tgl 29 Jan 22.docx','string'),(1529,'fileStage','9','int'),(1529,'revisedFileId',NULL,'string'),(1529,'fileId','742','int'),(1529,'fileRevision','1','int'),(1529,'originalFileName','7.Revisi Yumiabimulyani.docx','string'),(1529,'submissionId','234','int'),(1529,'username','editor','string'),(1530,'fileStage','9','int'),(1530,'fileId','742','int'),(1530,'fileRevision','1','int'),(1530,'originalFileName','7.Revisi Yumiabimulyani.docx','string'),(1530,'submissionId','234','int'),(1530,'username','editor','string'),(1530,'name','editor, 7.Revisi Yumiabimulyani.docx','string'),(1531,'editorName','editor editor','string'),(1531,'submissionId','234','string'),(1531,'decision','Send To Production','string'),(1535,'fileStage','10','int'),(1535,'revisedFileId',NULL,'string'),(1535,'fileId','744','int'),(1535,'fileRevision','1','int'),(1535,'originalFileName','1. Revisi Bu Siana DOndi.pdf','string'),(1535,'submissionId','222','int'),(1535,'username','admin','string'),(1536,'fileStage','10','int'),(1536,'fileId','744','int'),(1536,'fileRevision','1','int'),(1536,'originalFileName','1. Revisi Bu Siana DOndi.pdf','string'),(1536,'submissionId','222','int'),(1536,'username','admin','string'),(1536,'name','admin, 1. Final Bu Siana DOndi.pdf','string'),(1537,'fileStage','10','int'),(1537,'revisedFileId',NULL,'string'),(1537,'fileId','745','int'),(1537,'fileRevision','1','int'),(1537,'originalFileName','2. revisi IU 291221 Artikel Jannah.pdf','string'),(1537,'submissionId','224','int'),(1537,'username','editor','string'),(1538,'fileStage','10','int'),(1538,'fileId','745','int'),(1538,'fileRevision','1','int'),(1538,'originalFileName','2. revisi IU 291221 Artikel Jannah.pdf','string'),(1538,'submissionId','224','int'),(1538,'username','editor','string'),(1538,'name','editor, 2. Final IU 291221 Artikel Jannah.pdf','string'),(1539,'fileStage','10','int'),(1539,'revisedFileId',NULL,'string'),(1539,'fileId','746','int'),(1539,'fileRevision','1','int'),(1539,'originalFileName','3. revisi Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir Menghadapi UKOM Exit.pdf','string'),(1539,'submissionId','231','int'),(1539,'username','editor','string'),(1540,'fileStage','10','int'),(1540,'fileId','746','int'),(1540,'fileRevision','1','int'),(1540,'originalFileName','3. revisi Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir Menghadapi UKOM Exit.pdf','string'),(1540,'submissionId','231','int'),(1540,'username','editor','string'),(1540,'name','editor, 3. Final Aseta dan Bu Tutik Pengaruh Self Hypnosis Terhadap Tingkat Kecemasan Mahasiswa Tingkat Akhir Menghadapi UKOM Exit.pdf','string'),(1541,'fileStage','10','int'),(1541,'revisedFileId',NULL,'string'),(1541,'fileId','747','int'),(1541,'fileRevision','1','int'),(1541,'originalFileName','4. Revisi Isometric handgrip 17 jan 2022.pdf','string'),(1541,'submissionId','232','int'),(1541,'username','editor','string'),(1542,'fileStage','10','int'),(1542,'fileId','747','int'),(1542,'fileRevision','1','int'),(1542,'originalFileName','4. Revisi Isometric handgrip 17 jan 2022.pdf','string'),(1542,'submissionId','232','int'),(1542,'username','editor','string'),(1542,'name','editor, 4. Final Isometric handgrip 17 jan 2022.pdf','string'),(1543,'fileStage','10','int'),(1543,'revisedFileId',NULL,'string'),(1543,'fileId','748','int'),(1543,'fileRevision','1','int'),(1543,'originalFileName','5. Revisi Bu Selina Boseren Jayapura.pdf','string'),(1543,'submissionId','233','int'),(1543,'username','editor','string'),(1544,'fileStage','10','int'),(1544,'fileId','748','int'),(1544,'fileRevision','1','int'),(1544,'originalFileName','5. Revisi Bu Selina Boseren Jayapura.pdf','string'),(1544,'submissionId','233','int'),(1544,'username','editor','string'),(1544,'name','editor, 5. Final Bu Selina Boseren Jayapura.pdf','string'),(1545,'fileStage','10','int'),(1545,'revisedFileId',NULL,'string'),(1545,'fileId','749','int'),(1545,'fileRevision','1','int'),(1545,'originalFileName','6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.pdf','string'),(1545,'submissionId','229','int'),(1545,'username','editor','string'),(1546,'fileStage','10','int'),(1546,'fileId','749','int'),(1546,'fileRevision','1','int'),(1546,'originalFileName','6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.pdf','string'),(1546,'submissionId','229','int'),(1546,'username','editor','string'),(1546,'name','editor, 6. Final AKUPUNTUR TERHADAP PASIEN STROKE.pdf','string'),(1547,'fileStage','10','int'),(1547,'revisedFileId',NULL,'string'),(1547,'fileId','750','int'),(1547,'fileRevision','1','int'),(1547,'originalFileName','7. Revisi Yumiabimulyani.pdf','string'),(1547,'submissionId','234','int'),(1547,'username','editor','string'),(1548,'fileStage','10','int'),(1548,'fileId','750','int'),(1548,'fileRevision','1','int'),(1548,'originalFileName','7. Revisi Yumiabimulyani.pdf','string'),(1548,'submissionId','234','int'),(1548,'username','editor','string'),(1548,'name','editor, 7. Final Yumiabimulyani.pdf','string'),(1555,'fileStage','10','int'),(1555,'revisedFileId','748','int'),(1555,'fileId','748','int'),(1555,'fileRevision','2','int'),(1555,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.pdf','string'),(1555,'submissionId','233','int'),(1555,'username','editor','string'),(1556,'fileStage','10','int'),(1556,'fileId','748','int'),(1556,'fileRevision','2','int'),(1556,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.pdf','string'),(1556,'submissionId','233','int'),(1556,'username','editor','string'),(1556,'name','editor, 5.Revisi Bu Selina Boseren Jayapura.pdf','string'),(1557,'fileStage','10','int'),(1557,'revisedFileId','748','int'),(1557,'fileId','748','int'),(1557,'fileRevision','3','int'),(1557,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.pdf','string'),(1557,'submissionId','233','int'),(1557,'username','editor','string'),(1558,'fileStage','10','int'),(1558,'fileId','748','int'),(1558,'fileRevision','3','int'),(1558,'originalFileName','5.Revisi Bu Selina Boseren Jayapura.pdf','string'),(1558,'submissionId','233','int'),(1558,'username','editor','string'),(1558,'name','editor, 5.Revisi Bu Selina Boseren Jayapura.pdf','string'),(1560,'fileStage','10','int'),(1560,'revisedFileId','749','int'),(1560,'fileId','749','int'),(1560,'fileRevision','2','int'),(1560,'originalFileName','6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.pdf','string'),(1560,'submissionId','229','int'),(1560,'username','editor','string'),(1561,'fileStage','10','int'),(1561,'fileId','749','int'),(1561,'fileRevision','2','int'),(1561,'originalFileName','6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.pdf','string'),(1561,'submissionId','229','int'),(1561,'username','editor','string'),(1561,'name','editor, 6. revisi AKUPUNTUR TERHADAP PASIEN STROKE.pdf','string'),(1563,'fileStage','10','int'),(1563,'revisedFileId','750','int'),(1563,'fileId','750','int'),(1563,'fileRevision','2','int'),(1563,'originalFileName','7.Revisi Yumiabimulyani.pdf','string'),(1563,'submissionId','234','int'),(1563,'username','editor','string'),(1564,'fileStage','10','int'),(1564,'fileId','750','int'),(1564,'fileRevision','2','int'),(1564,'originalFileName','7.Revisi Yumiabimulyani.pdf','string'),(1564,'submissionId','234','int'),(1564,'username','editor','string'),(1564,'name','editor, 7.Revisi Yumiabimulyani.pdf','string'),(1570,'fileStage','2','int'),(1570,'revisedFileId',NULL,'string'),(1570,'fileId','751','int'),(1570,'fileRevision','1','int'),(1570,'originalFileName','ABSTRAK..docx','string'),(1570,'submissionId','235','int'),(1570,'username','dwi_ariani','string'),(1571,'fileStage','2','int'),(1571,'fileId','751','int'),(1571,'fileRevision','1','int'),(1571,'originalFileName','ABSTRAK..docx','string'),(1571,'submissionId','235','int'),(1571,'username','dwi_ariani','string'),(1571,'name','dwi_ariani, ABSTRAK..docx','string'),(1572,'fileStage','2','int'),(1572,'fileId','751','int'),(1572,'fileRevision','1','int'),(1572,'originalFileName','ABSTRAK..docx','string'),(1572,'submissionId','235','int'),(1572,'username','dwi_ariani','string'),(1572,'name','dwi_ariani, ABSTRAK..docx','string');
/*!40000 ALTER TABLE `event_log_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `external_feed_settings`
--

DROP TABLE IF EXISTS `external_feed_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `external_feed_settings` (
  `feed_id` bigint(20) NOT NULL,
  `locale` varchar(5) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `external_feed_settings_pkey` (`feed_id`,`locale`,`setting_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `external_feed_settings`
--

LOCK TABLES `external_feed_settings` WRITE;
/*!40000 ALTER TABLE `external_feed_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `external_feed_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `external_feeds`
--

DROP TABLE IF EXISTS `external_feeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `external_feeds` (
  `feed_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `journal_id` bigint(20) NOT NULL,
  `url` varchar(255) NOT NULL,
  `seq` double NOT NULL DEFAULT 0,
  `display_homepage` tinyint(4) NOT NULL DEFAULT 0,
  `display_block` smallint(6) NOT NULL DEFAULT 0,
  `limit_items` tinyint(4) DEFAULT 0,
  `recent_items` smallint(6) DEFAULT NULL,
  PRIMARY KEY (`feed_id`),
  KEY `external_feeds_journal_id` (`journal_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `external_feeds`
--

LOCK TABLES `external_feeds` WRITE;
/*!40000 ALTER TABLE `external_feeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `external_feeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `filter_groups`
--

DROP TABLE IF EXISTS `filter_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `filter_groups` (
  `filter_group_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `symbolic` varchar(255) DEFAULT NULL,
  `display_name` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `input_type` varchar(255) DEFAULT NULL,
  `output_type` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`filter_group_id`),
  UNIQUE KEY `filter_groups_symbolic` (`symbolic`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `filter_groups`
--

LOCK TABLES `filter_groups` WRITE;
/*!40000 ALTER TABLE `filter_groups` DISABLE KEYS */;
INSERT INTO `filter_groups` VALUES (1,'mods34=>mods34-xml','plugins.metadata.mods34.mods34XmlOutput.displayName','plugins.metadata.mods34.mods34XmlOutput.description','metadata::plugins.metadata.mods34.schema.Mods34Schema(*)','xml::schema(lib/pkp/plugins/metadata/mods34/filter/mods34.xsd)'),(2,'article=>mods34','plugins.metadata.mods34.articleAdapter.displayName','plugins.metadata.mods34.articleAdapter.description','class::classes.article.Article','metadata::plugins.metadata.mods34.schema.Mods34Schema(ARTICLE)'),(3,'mods34=>article','plugins.metadata.mods34.articleAdapter.displayName','plugins.metadata.mods34.articleAdapter.description','metadata::plugins.metadata.mods34.schema.Mods34Schema(ARTICLE)','class::classes.article.Article'),(4,'article=>dc11','plugins.metadata.dc11.articleAdapter.displayName','plugins.metadata.dc11.articleAdapter.description','class::classes.article.Article','metadata::plugins.metadata.dc11.schema.Dc11Schema(ARTICLE)'),(28,'issue=>datacite-xml','plugins.importexport.datacite.displayName','plugins.importexport.datacite.description','class::classes.issue.Issue','xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),(27,'galley=>medra-xml','plugins.importexport.medra.displayName','plugins.importexport.medra.description','class::classes.article.ArticleGalley[]','xml::schema(http://www.medra.org/schema/onix/DOIMetadata/2.0/ONIX_DOIMetadata_2.0.xsd)'),(26,'article=>medra-xml','plugins.importexport.medra.displayName','plugins.importexport.medra.description','class::classes.article.Article[]','xml::schema(http://www.medra.org/schema/onix/DOIMetadata/2.0/ONIX_DOIMetadata_2.0.xsd)'),(25,'issue=>medra-xml','plugins.importexport.medra.displayName','plugins.importexport.medra.description','class::classes.issue.Issue[]','xml::schema(http://www.medra.org/schema/onix/DOIMetadata/2.0/ONIX_DOIMetadata_2.0.xsd)'),(24,'article=>doaj-json','plugins.importexport.doaj.displayName','plugins.importexport.doaj.description','class::classes.article.Article','primitive::string'),(23,'article=>doaj-xml','plugins.importexport.doaj.displayName','plugins.importexport.doaj.description','class::classes.article.Article[]','xml::schema(plugins/importexport/doaj/doajArticles.xsd)'),(22,'article=>crossref-xml','plugins.importexport.crossref.displayName','plugins.importexport.crossref.description','class::classes.article.Article[]','xml::schema(https://www.crossref.org/schemas/crossref4.3.6.xsd)'),(21,'issue=>crossref-xml','plugins.importexport.crossref.displayName','plugins.importexport.crossref.description','class::classes.issue.Issue[]','xml::schema(https://www.crossref.org/schemas/crossref4.3.6.xsd)'),(20,'user-xml=>usergroup','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)','class::lib.pkp.classes.security.UserGroup[]'),(18,'user-xml=>user','plugins.importexport.users.displayName','plugins.importexport.users.description','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)','class::classes.users.User[]'),(19,'usergroup=>user-xml','plugins.importexport.users.displayName','plugins.importexport.users.description','class::lib.pkp.classes.security.UserGroup[]','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),(17,'user=>user-xml','plugins.importexport.users.displayName','plugins.importexport.users.description','class::lib.pkp.classes.user.User[]','xml::schema(lib/pkp/plugins/importexport/users/pkp-users.xsd)'),(29,'article=>datacite-xml','plugins.importexport.datacite.displayName','plugins.importexport.datacite.description','class::classes.article.Article','xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),(30,'galley=>datacite-xml','plugins.importexport.datacite.displayName','plugins.importexport.datacite.description','class::classes.article.ArticleGalley','xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),(31,'article=>pubmed-xml','plugins.importexport.pubmed.displayName','plugins.importexport.pubmed.description','class::classes.article.Article[]','xml::dtd'),(32,'article=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.article.Article[]','xml::schema(plugins/importexport/native/native.xsd)'),(33,'native-xml=>article','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.article.Article[]'),(34,'issue=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.issue.Issue[]','xml::schema(plugins/importexport/native/native.xsd)'),(35,'native-xml=>issue','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.issue.Issue[]'),(36,'issuegalley=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.issue.IssueGalley[]','xml::schema(plugins/importexport/native/native.xsd)'),(37,'native-xml=>issuegalley','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.issue.IssueGalley[]'),(38,'author=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.article.Author[]','xml::schema(plugins/importexport/native/native.xsd)'),(39,'native-xml=>author','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.article.Author[]'),(40,'SubmissionFile=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.submission.SubmissionFile','xml::schema(plugins/importexport/native/native.xsd)'),(41,'SubmissionArtworkFile=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.submission.SubmissionArtworkFile','xml::schema(plugins/importexport/native/native.xsd)'),(42,'SupplementaryFile=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.submission.SupplementaryFile','xml::schema(plugins/importexport/native/native.xsd)'),(43,'native-xml=>SubmissionFile','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.submission.SubmissionFile'),(44,'native-xml=>SubmissionArtworkFile','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.submission.SubmissionArtworkFile'),(45,'native-xml=>SupplementaryFile','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.submission.SupplementaryFile'),(46,'article-galley=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.article.ArticleGalley','xml::schema(plugins/importexport/native/native.xsd)'),(47,'native-xml=>ArticleGalley','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.article.ArticleGalley[]');
/*!40000 ALTER TABLE `filter_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `filter_settings`
--

DROP TABLE IF EXISTS `filter_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `filter_settings` (
  `filter_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `filter_settings_pkey` (`filter_id`,`locale`,`setting_name`),
  KEY `filter_settings_id` (`filter_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `filter_settings`
--

LOCK TABLES `filter_settings` WRITE;
/*!40000 ALTER TABLE `filter_settings` DISABLE KEYS */;
INSERT INTO `filter_settings` VALUES (1,'','phpVersionMin','5.0.0','string'),(2,'','phpVersionMin','5.0.0','string'),(3,'','phpVersionMin','5.0.0','string'),(4,'','phpVersionMin','5.0.0','string'),(5,'','citationModule','Standard','string'),(5,'','phpVersionMin','5.0.0','string'),(6,'','phpVersionMin','5.0.0','string'),(7,'','phpVersionMin','5.0.0','string'),(9,'','citationOutputFilterName','lib.pkp.classes.citation.output.abnt.NlmCitationSchemaAbntFilter','string'),(9,'','ordering','2','int'),(11,'','citationOutputFilterName','lib.pkp.classes.citation.output.apa.NlmCitationSchemaApaFilter','string'),(11,'','ordering','2','int'),(13,'','citationOutputFilterName','lib.pkp.classes.citation.output.mla.NlmCitationSchemaMlaFilter','string'),(13,'','ordering','2','int'),(15,'','citationOutputFilterName','lib.pkp.classes.citation.output.vancouver.NlmCitationSchemaVancouverFilter','string'),(15,'','ordering','1','int'),(17,'','settingsMapping','a:2:{s:6:\"apiKey\";a:2:{i:0;s:11:\"seq1_apiKey\";i:1;s:11:\"seq2_apiKey\";}s:10:\"isOptional\";a:2:{i:0;s:15:\"seq1_isOptional\";i:1;s:15:\"seq2_isOptional\";}}','object'),(18,'','phpVersionMin','5.0.0','string'),(19,'','phpVersionMin','5.0.0','string'),(22,'','xsl','lib/pkp/classes/importexport/nlm/nlm-ref-list-30-to-23.xsl','string'),(22,'','xslType','2','int'),(23,'','isOptional','0','bool'),(24,'','isOptional','0','bool'),(26,'','isOptional','0','bool'),(28,'','isOptional','0','bool'),(29,'','isOptional','0','bool'),(23,'','phpVersionMin','5.0.0','string'),(24,'','phpVersionMin','5.0.0','string'),(26,'','phpVersionMin','5.0.0','string'),(28,'','phpVersionMin','5.0.0','string'),(29,'','phpVersionMin','5.0.0','string'),(28,'','email','','string'),(29,'','apikey','','string'),(37,'','citationOutputFilterName','lib.pkp.plugins.metadata.nlm30.filter.Nlm30CitationSchemaNlm30XmlFilter','string'),(37,'','metadataSchemaName','lib.pkp.plugins.metadata.nlm30.schema.Nlm30CitationSchema','string'),(38,'','settingsMapping','a:2:{s:6:\"apiKey\";a:2:{i:0;s:11:\"seq1_apiKey\";i:1;s:11:\"seq2_apiKey\";}s:10:\"isOptional\";a:2:{i:0;s:15:\"seq1_isOptional\";i:1;s:15:\"seq2_isOptional\";}}','object'),(39,'','citationOutputFilterName','lib.pkp.plugins.metadata.nlm30.filter.Nlm30CitationSchemaNlm30XmlFilter','string'),(39,'','metadataSchemaName','lib.pkp.plugins.metadata.nlm30.schema.Nlm30CitationSchema','string'),(40,'','xsl','lib/pkp/plugins/metadata/nlm30/filter/nlm30-to-23-ref-list.xsl','string'),(40,'','xslType','2','int'),(41,'','settingsMapping','a:2:{s:6:\"apiKey\";a:2:{i:0;s:11:\"seq1_apiKey\";i:1;s:11:\"seq2_apiKey\";}s:10:\"isOptional\";a:2:{i:0;s:15:\"seq1_isOptional\";i:1;s:15:\"seq2_isOptional\";}}','object'),(42,'','phpVersionMin','5.0.0','string'),(43,'','phpVersionMin','5.0.0','string'),(44,'','phpVersionMin','5.0.0','string'),(45,'','phpVersionMin','5.0.0','string'),(46,'','phpVersionMin','5.0.0','string'),(48,'','ordering','2','int'),(48,'','citationOutputFilterName','lib.pkp.plugins.citationOutput.mla.filter.Nlm30CitationSchemaMlaFilter','string'),(48,'','metadataSchemaName','lib.pkp.plugins.metadata.nlm30.schema.Nlm30CitationSchema','string'),(50,'','ordering','1','int'),(50,'','citationOutputFilterName','lib.pkp.plugins.citationOutput.vancouver.filter.Nlm30CitationSchemaVancouverFilter','string'),(50,'','metadataSchemaName','lib.pkp.plugins.metadata.nlm30.schema.Nlm30CitationSchema','string'),(52,'','ordering','2','int'),(52,'','citationOutputFilterName','lib.pkp.plugins.citationOutput.apa.filter.Nlm30CitationSchemaApaFilter','string'),(52,'','metadataSchemaName','lib.pkp.plugins.metadata.nlm30.schema.Nlm30CitationSchema','string'),(54,'','ordering','2','int'),(54,'','citationOutputFilterName','lib.pkp.plugins.citationOutput.abnt.filter.Nlm30CitationSchemaAbntFilter','string'),(54,'','metadataSchemaName','lib.pkp.plugins.metadata.nlm30.schema.Nlm30CitationSchema','string'),(55,'','phpVersionMin','5.0.0','string'),(56,'','phpVersionMin','5.0.0','string'),(57,'','phpVersionMin','5.0.0','string'),(58,'','phpVersionMin','5.0.0','string');
/*!40000 ALTER TABLE `filter_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `filters`
--

DROP TABLE IF EXISTS `filters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `filters` (
  `filter_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL DEFAULT 0,
  `display_name` varchar(255) DEFAULT NULL,
  `class_name` varchar(255) DEFAULT NULL,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `parent_filter_id` bigint(20) NOT NULL DEFAULT 0,
  `seq` bigint(20) NOT NULL DEFAULT 0,
  `filter_group_id` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`filter_id`)
) ENGINE=MyISAM AUTO_INCREMENT=90 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `filters`
--

LOCK TABLES `filters` WRITE;
/*!40000 ALTER TABLE `filters` DISABLE KEYS */;
INSERT INTO `filters` VALUES (1,0,'CrossRef','lib.pkp.classes.citation.lookup.crossref.CrossrefNlmCitationSchemaFilter',1,0,0,0),(2,0,'PubMed','lib.pkp.classes.citation.lookup.pubmed.PubmedNlmCitationSchemaFilter',1,0,0,0),(3,0,'WorldCat','lib.pkp.classes.citation.lookup.worldcat.WorldcatNlmCitationSchemaFilter',1,0,0,0),(4,0,'FreeCite','lib.pkp.classes.citation.parser.freecite.FreeciteRawCitationNlmCitationSchemaFilter',1,0,0,0),(5,0,'ParaCite','lib.pkp.classes.citation.parser.paracite.ParaciteRawCitationNlmCitationSchemaFilter',1,0,0,0),(6,0,'ParsCit','lib.pkp.classes.citation.parser.parscit.ParscitRawCitationNlmCitationSchemaFilter',1,0,0,0),(7,0,'RegEx','lib.pkp.classes.citation.parser.regex.RegexRawCitationNlmCitationSchemaFilter',1,0,0,0),(8,0,'ABNT Citation Output','lib.pkp.classes.citation.output.abnt.NlmCitationSchemaAbntFilter',0,0,0,0),(9,0,'ABNT Citation Output','lib.pkp.classes.citation.output.PlainTextReferencesListFilter',0,0,0,0),(10,0,'APA Citation Output','lib.pkp.classes.citation.output.apa.NlmCitationSchemaApaFilter',0,0,0,0),(11,0,'APA Citation Output','lib.pkp.classes.citation.output.PlainTextReferencesListFilter',0,0,0,0),(12,0,'MLA Citation Output','lib.pkp.classes.citation.output.mla.NlmCitationSchemaMlaFilter',0,0,0,0),(13,0,'MLA Citation Output','lib.pkp.classes.citation.output.PlainTextReferencesListFilter',0,0,0,0),(14,0,'Vancouver Citation Output','lib.pkp.classes.citation.output.vancouver.NlmCitationSchemaVancouverFilter',0,0,0,0),(15,0,'Vancouver Citation Output','lib.pkp.classes.citation.output.PlainTextReferencesListFilter',0,0,0,0),(16,0,'NLM Journal Publishing V3.0 ref-list','lib.pkp.classes.importexport.nlm.PKPSubmissionNlmXmlFilter',0,0,0,0),(17,0,'ISBNdb','lib.pkp.classes.filter.GenericSequencerFilter',1,0,0,0),(18,0,'ISBNdb (from NLM)','lib.pkp.classes.citation.lookup.isbndb.IsbndbNlmCitationSchemaIsbnFilter',0,17,1,0),(19,0,'ISBNdb','lib.pkp.classes.citation.lookup.isbndb.IsbndbIsbnNlmCitationSchemaFilter',0,17,2,0),(20,0,'NLM Journal Publishing V2.3 ref-list','lib.pkp.classes.filter.GenericSequencerFilter',0,0,0,0),(21,0,'NLM Journal Publishing V3.0 ref-list','lib.pkp.classes.importexport.nlm.PKPSubmissionNlmXmlFilter',0,20,1,0),(22,0,'NLM 3.0 to 2.3 ref-list downgrade','lib.pkp.classes.xslt.XSLTransformationFilter',0,20,2,0),(23,1,'FreeCite','lib.pkp.classes.citation.parser.freecite.FreeciteRawCitationNlmCitationSchemaFilter',0,0,0,0),(24,1,'ParsCit','lib.pkp.classes.citation.parser.parscit.ParscitRawCitationNlmCitationSchemaFilter',0,0,0,0),(26,1,'RegEx','lib.pkp.classes.citation.parser.regex.RegexRawCitationNlmCitationSchemaFilter',0,0,0,0),(28,1,'PubMed','lib.pkp.classes.citation.lookup.pubmed.PubmedNlmCitationSchemaFilter',0,0,0,0),(29,1,'WorldCat','lib.pkp.classes.citation.lookup.worldcat.WorldcatNlmCitationSchemaFilter',0,0,0,0),(30,0,'MODS 3.4','lib.pkp.plugins.metadata.mods34.filter.Mods34DescriptionXmlFilter',0,0,0,1),(31,0,'Extract metadata from a(n) Article','plugins.metadata.mods34.filter.Mods34SchemaArticleAdapter',0,0,0,2),(32,0,'Inject metadata into a(n) Article','plugins.metadata.mods34.filter.Mods34SchemaArticleAdapter',0,0,0,3),(33,0,'Extract metadata from a(n) Article','plugins.metadata.dc11.filter.Dc11SchemaArticleAdapter',0,0,0,4),(34,0,'Extract metadata from a(n) Citation','lib.pkp.plugins.metadata.nlm30.filter.Nlm30CitationSchemaCitationAdapter',0,0,0,5),(35,0,'Inject metadata into a(n) Citation','lib.pkp.plugins.metadata.nlm30.filter.Nlm30CitationSchemaCitationAdapter',0,0,0,6),(36,0,'NLM 3.0 XML Citation Output','lib.pkp.plugins.metadata.nlm30.filter.Nlm30CitationSchemaNlm30XmlFilter',0,0,0,10),(37,0,'NLM Journal Publishing V3.0 ref-list','lib.pkp.plugins.metadata.nlm30.filter.PKPSubmissionNlm30XmlFilter',0,0,0,11),(38,0,'NLM Journal Publishing V2.3 ref-list','lib.pkp.classes.filter.GenericSequencerFilter',0,0,0,12),(39,0,'NLM 2.3: NLM 3.0','lib.pkp.plugins.metadata.nlm30.filter.PKPSubmissionNlm30XmlFilter',0,38,1,11),(40,0,'NLM 2.3: NLM 3.0 to 2.3','lib.pkp.classes.xslt.XSLTransformationFilter',0,38,2,13),(41,0,'ISBNdb','lib.pkp.classes.filter.GenericSequencerFilter',1,0,0,8),(42,0,'ISBNdb (from NLM)','lib.pkp.plugins.citationLookup.isbndb.filter.IsbndbNlm30CitationSchemaIsbnFilter',0,41,1,15),(43,0,'ISBNdb','lib.pkp.plugins.citationLookup.isbndb.filter.IsbndbIsbnNlm30CitationSchemaFilter',0,41,2,16),(44,0,'CrossRef','lib.pkp.plugins.citationLookup.crossref.filter.CrossrefNlm30CitationSchemaFilter',1,0,0,8),(45,0,'WorldCat','lib.pkp.plugins.citationLookup.worldcat.filter.WorldcatNlm30CitationSchemaFilter',1,0,0,8),(46,0,'PubMed','lib.pkp.plugins.citationLookup.pubmed.filter.PubmedNlm30CitationSchemaFilter',1,0,0,8),(47,0,'MLA Citation Output','lib.pkp.plugins.citationOutput.mla.filter.Nlm30CitationSchemaMlaFilter',0,0,0,9),(48,0,'MLA Reference List','lib.pkp.classes.citation.PlainTextReferencesListFilter',0,0,0,14),(49,0,'Vancouver Citation Output','lib.pkp.plugins.citationOutput.vancouver.filter.Nlm30CitationSchemaVancouverFilter',0,0,0,9),(50,0,'Vancouver Reference List','lib.pkp.classes.citation.PlainTextReferencesListFilter',0,0,0,14),(51,0,'APA Citation Output','lib.pkp.plugins.citationOutput.apa.filter.Nlm30CitationSchemaApaFilter',0,0,0,9),(52,0,'APA Reference List','lib.pkp.classes.citation.PlainTextReferencesListFilter',0,0,0,14),(53,0,'ABNT Citation Output','lib.pkp.plugins.citationOutput.abnt.filter.Nlm30CitationSchemaAbntFilter',0,0,0,9),(54,0,'ABNT Reference List','lib.pkp.classes.citation.PlainTextReferencesListFilter',0,0,0,14),(55,0,'FreeCite','lib.pkp.plugins.citationParser.freecite.filter.FreeciteRawCitationNlm30CitationSchemaFilter',1,0,0,7),(56,0,'ParsCit','lib.pkp.plugins.citationParser.parscit.filter.ParscitRawCitationNlm30CitationSchemaFilter',1,0,0,7),(57,0,'ParaCite','lib.pkp.plugins.citationParser.paracite.filter.ParaciteRawCitationNlm30CitationSchemaFilter',1,0,0,7),(58,0,'RegEx','lib.pkp.plugins.citationParser.regex.filter.RegexRawCitationNlm30CitationSchemaFilter',1,0,0,7),(59,0,'User XML user export','lib.pkp.plugins.importexport.users.filter.PKPUserUserXmlFilter',0,0,0,17),(60,0,'User XML user import','lib.pkp.plugins.importexport.users.filter.UserXmlPKPUserFilter',0,0,0,18),(61,0,'Native XML user group export','lib.pkp.plugins.importexport.users.filter.UserGroupNativeXmlFilter',0,0,0,19),(62,0,'Native XML user group import','lib.pkp.plugins.importexport.users.filter.NativeXmlUserGroupFilter',0,0,0,20),(63,0,'Crossref XML issue export','plugins.importexport.crossref.filter.IssueCrossrefXmlFilter',0,0,0,21),(64,0,'Crossref XML issue export','plugins.importexport.crossref.filter.ArticleCrossrefXmlFilter',0,0,0,22),(65,0,'DOAJ XML export','plugins.importexport.doaj.filter.DOAJXmlFilter',0,0,0,23),(66,0,'DOAJ JSON export','plugins.importexport.doaj.filter.DOAJJsonFilter',0,0,0,24),(67,0,'mEDRA XML issue export','plugins.importexport.medra.filter.IssueMedraXmlFilter',0,0,0,25),(68,0,'mEDRA XML article export','plugins.importexport.medra.filter.ArticleMedraXmlFilter',0,0,0,26),(69,0,'mEDRA XML article export','plugins.importexport.medra.filter.GalleyMedraXmlFilter',0,0,0,27),(70,0,'DataCite XML export','plugins.importexport.datacite.filter.DataciteXmlFilter',0,0,0,28),(71,0,'DataCite XML export','plugins.importexport.datacite.filter.DataciteXmlFilter',0,0,0,29),(72,0,'DataCite XML export','plugins.importexport.datacite.filter.DataciteXmlFilter',0,0,0,30),(73,0,'ArticlePubMedXmlFilter','plugins.importexport.pubmed.filter.ArticlePubMedXmlFilter',0,0,0,31),(74,0,'Native XML submission export','plugins.importexport.native.filter.ArticleNativeXmlFilter',0,0,0,32),(75,0,'Native XML submission import','plugins.importexport.native.filter.NativeXmlArticleFilter',0,0,0,33),(76,0,'Native XML issue export','plugins.importexport.native.filter.IssueNativeXmlFilter',0,0,0,34),(77,0,'Native XML issue import','plugins.importexport.native.filter.NativeXmlIssueFilter',0,0,0,35),(78,0,'Native XML issue galley export','plugins.importexport.native.filter.IssueGalleyNativeXmlFilter',0,0,0,36),(79,0,'Native XML issue galley import','plugins.importexport.native.filter.NativeXmlIssueGalleyFilter',0,0,0,37),(80,0,'Native XML author export','plugins.importexport.native.filter.AuthorNativeXmlFilter',0,0,0,38),(81,0,'Native XML author import','plugins.importexport.native.filter.NativeXmlAuthorFilter',0,0,0,39),(82,0,'Native XML submission file import','plugins.importexport.native.filter.NativeXmlArticleFileFilter',0,0,0,43),(83,0,'Native XML submission file import','plugins.importexport.native.filter.NativeXmlArtworkFileFilter',0,0,0,44),(84,0,'Native XML submission file import','plugins.importexport.native.filter.NativeXmlSupplementaryFileFilter',0,0,0,45),(85,0,'Native XML submission file export','lib.pkp.plugins.importexport.native.filter.SubmissionFileNativeXmlFilter',0,0,0,40),(86,0,'Native XML submission file export','plugins.importexport.native.filter.ArtworkFileNativeXmlFilter',0,0,0,41),(87,0,'Native XML submission file export','plugins.importexport.native.filter.SupplementaryFileNativeXmlFilter',0,0,0,42),(88,0,'Native XML representation export','plugins.importexport.native.filter.ArticleGalleyNativeXmlFilter',0,0,0,46),(89,0,'Native XML representation import','plugins.importexport.native.filter.NativeXmlArticleGalleyFilter',0,0,0,47);
/*!40000 ALTER TABLE `filters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `genre_settings`
--

DROP TABLE IF EXISTS `genre_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `genre_settings` (
  `genre_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `genre_settings_pkey` (`genre_id`,`locale`,`setting_name`),
  KEY `genre_settings_genre_id` (`genre_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `genre_settings`
--

LOCK TABLES `genre_settings` WRITE;
/*!40000 ALTER TABLE `genre_settings` DISABLE KEYS */;
INSERT INTO `genre_settings` VALUES (1,'en_US','name','Article Text','string'),(2,'en_US','name','Research Instrument','string'),(3,'en_US','name','Research Materials','string'),(4,'en_US','name','Research Results','string'),(5,'en_US','name','Transcripts','string'),(6,'en_US','name','Data Analysis','string'),(7,'en_US','name','Data Set','string'),(8,'en_US','name','Source Texts','string'),(9,'en_US','name','Multimedia','string'),(10,'en_US','name','Image','string'),(11,'en_US','name','HTML Stylesheet','string'),(12,'en_US','name','Other','string');
/*!40000 ALTER TABLE `genre_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `genres`
--

DROP TABLE IF EXISTS `genres`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `genres` (
  `genre_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `seq` bigint(20) DEFAULT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `category` bigint(20) NOT NULL DEFAULT 1,
  `dependent` tinyint(4) NOT NULL DEFAULT 0,
  `supplementary` tinyint(4) DEFAULT 0,
  `entry_key` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`genre_id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `genres`
--

LOCK TABLES `genres` WRITE;
/*!40000 ALTER TABLE `genres` DISABLE KEYS */;
INSERT INTO `genres` VALUES (1,1,0,1,1,0,0,'SUBMISSION'),(2,1,1,1,3,0,1,'RESEARCHINSTRUMENT'),(3,1,2,1,3,0,1,'RESEARCHMATERIALS'),(4,1,3,1,3,0,1,'RESEARCHRESULTS'),(5,1,4,1,3,0,1,'TRANSCRIPTS'),(6,1,5,1,3,0,1,'DATAANALYSIS'),(7,1,6,1,3,0,1,'DATASET'),(8,1,7,1,3,0,1,'SOURCETEXTS'),(9,1,8,1,1,1,1,'MULTIMEDIA'),(10,1,9,1,2,1,0,'IMAGE'),(11,1,10,1,1,1,0,'STYLE'),(12,1,11,1,3,0,1,'OTHER');
/*!40000 ALTER TABLE `genres` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `group_memberships`
--

DROP TABLE IF EXISTS `group_memberships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `group_memberships` (
  `user_id` bigint(20) NOT NULL,
  `group_id` bigint(20) NOT NULL,
  `about_displayed` tinyint(4) NOT NULL DEFAULT 1,
  `seq` double NOT NULL DEFAULT 0,
  UNIQUE KEY `group_memberships_pkey` (`user_id`,`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `group_memberships`
--

LOCK TABLES `group_memberships` WRITE;
/*!40000 ALTER TABLE `group_memberships` DISABLE KEYS */;
/*!40000 ALTER TABLE `group_memberships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `group_settings`
--

DROP TABLE IF EXISTS `group_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `group_settings` (
  `group_id` bigint(20) NOT NULL,
  `locale` varchar(5) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `group_settings_pkey` (`group_id`,`locale`,`setting_name`),
  KEY `group_settings_group_id` (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `group_settings`
--

LOCK TABLES `group_settings` WRITE;
/*!40000 ALTER TABLE `group_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `group_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `groups`
--

DROP TABLE IF EXISTS `groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `groups` (
  `group_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` smallint(6) DEFAULT NULL,
  `publish_email` smallint(6) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `context` bigint(20) DEFAULT NULL,
  `about_displayed` tinyint(4) NOT NULL DEFAULT 0,
  `seq` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`group_id`),
  KEY `groups_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `groups`
--

LOCK TABLES `groups` WRITE;
/*!40000 ALTER TABLE `groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `institutional_subscription_ip`
--

DROP TABLE IF EXISTS `institutional_subscription_ip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `institutional_subscription_ip` (
  `institutional_subscription_ip_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `subscription_id` bigint(20) NOT NULL,
  `ip_string` varchar(40) NOT NULL,
  `ip_start` bigint(20) NOT NULL,
  `ip_end` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`institutional_subscription_ip_id`),
  KEY `institutional_subscription_ip_subscription_id` (`subscription_id`),
  KEY `institutional_subscription_ip_start` (`ip_start`),
  KEY `institutional_subscription_ip_end` (`ip_end`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `institutional_subscription_ip`
--

LOCK TABLES `institutional_subscription_ip` WRITE;
/*!40000 ALTER TABLE `institutional_subscription_ip` DISABLE KEYS */;
/*!40000 ALTER TABLE `institutional_subscription_ip` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `institutional_subscriptions`
--

DROP TABLE IF EXISTS `institutional_subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `institutional_subscriptions` (
  `institutional_subscription_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `subscription_id` bigint(20) NOT NULL,
  `institution_name` varchar(255) NOT NULL,
  `mailing_address` varchar(255) DEFAULT NULL,
  `domain` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`institutional_subscription_id`),
  KEY `institutional_subscriptions_subscription_id` (`subscription_id`),
  KEY `institutional_subscriptions_domain` (`domain`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `institutional_subscriptions`
--

LOCK TABLES `institutional_subscriptions` WRITE;
/*!40000 ALTER TABLE `institutional_subscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `institutional_subscriptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `issue_files`
--

DROP TABLE IF EXISTS `issue_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issue_files` (
  `file_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `issue_id` bigint(20) NOT NULL,
  `file_name` varchar(90) NOT NULL,
  `file_type` varchar(255) NOT NULL,
  `file_size` bigint(20) NOT NULL,
  `content_type` bigint(20) NOT NULL,
  `original_file_name` varchar(127) DEFAULT NULL,
  `date_uploaded` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  PRIMARY KEY (`file_id`),
  KEY `issue_files_issue_id` (`issue_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `issue_files`
--

LOCK TABLES `issue_files` WRITE;
/*!40000 ALTER TABLE `issue_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `issue_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `issue_galley_settings`
--

DROP TABLE IF EXISTS `issue_galley_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issue_galley_settings` (
  `galley_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `issue_galley_settings_pkey` (`galley_id`,`locale`,`setting_name`),
  KEY `issue_galley_settings_galley_id` (`galley_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `issue_galley_settings`
--

LOCK TABLES `issue_galley_settings` WRITE;
/*!40000 ALTER TABLE `issue_galley_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `issue_galley_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `issue_galleys`
--

DROP TABLE IF EXISTS `issue_galleys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issue_galleys` (
  `galley_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `locale` varchar(14) DEFAULT NULL,
  `issue_id` bigint(20) NOT NULL,
  `file_id` bigint(20) NOT NULL,
  `label` varchar(32) DEFAULT NULL,
  `seq` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`galley_id`),
  KEY `issue_galleys_issue_id` (`issue_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `issue_galleys`
--

LOCK TABLES `issue_galleys` WRITE;
/*!40000 ALTER TABLE `issue_galleys` DISABLE KEYS */;
/*!40000 ALTER TABLE `issue_galleys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `issue_settings`
--

DROP TABLE IF EXISTS `issue_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issue_settings` (
  `issue_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `issue_settings_pkey` (`issue_id`,`locale`,`setting_name`),
  KEY `issue_settings_issue_id` (`issue_id`),
  KEY `issue_settings_name_value` (`setting_name`(50),`setting_value`(150))
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `issue_settings`
--

LOCK TABLES `issue_settings` WRITE;
/*!40000 ALTER TABLE `issue_settings` DISABLE KEYS */;
INSERT INTO `issue_settings` VALUES (1,'en_US','title','Vol. 1. No. 1 Januari 2015','string'),(1,'en_US','coverPageDescription','','string'),(1,'en_US','showCoverPage','0','int'),(1,'en_US','hideCoverPageArchives','0','int'),(1,'en_US','hideCoverPageCover','0','int'),(1,'en_US','description','','string'),(2,'en_US','title','Vol. 2. No. 1 Juli 2015','string'),(2,'en_US','coverPageDescription','','string'),(2,'en_US','showCoverPage','0','int'),(2,'en_US','hideCoverPageArchives','0','int'),(2,'en_US','hideCoverPageCover','0','int'),(2,'en_US','description','','string'),(3,'en_US','title','Vol 3, No.1 Januari 2016','string'),(3,'en_US','coverPageDescription','','string'),(3,'en_US','showCoverPage','0','int'),(3,'en_US','hideCoverPageArchives','0','int'),(3,'en_US','hideCoverPageCover','0','int'),(3,'en_US','description','','string'),(4,'en_US','title','Vol. 3. No. 2 Juli 2016','string'),(4,'en_US','coverPageDescription','','string'),(4,'en_US','showCoverPage','0','int'),(4,'en_US','hideCoverPageArchives','0','int'),(4,'en_US','hideCoverPageCover','0','int'),(4,'en_US','description','','string'),(5,'en_US','title','Vol. 4. No. 1 Januari 2017','string'),(5,'en_US','coverPageDescription','','string'),(5,'en_US','showCoverPage','0','int'),(5,'en_US','hideCoverPageArchives','0','int'),(5,'en_US','hideCoverPageCover','0','int'),(5,'en_US','description','','string'),(6,'en_US','title','Vol. 5. No. 1 Juli 2017','string'),(6,'en_US','coverPageDescription','','string'),(6,'en_US','showCoverPage','0','int'),(6,'en_US','hideCoverPageArchives','0','int'),(6,'en_US','hideCoverPageCover','0','int'),(6,'en_US','description','','string'),(7,'en_US','title','Vol 6. No.1 Januari 2018','string'),(7,'en_US','description','','string'),(8,'en_US','title','Vol 6. No.2 Juli 2018','string'),(8,'en_US','description','','string'),(9,'en_US','title','Vol. 7. No. 1 Januari 2019','string'),(9,'en_US','description','','string'),(10,'en_US','title','Vol. 7. No. 2 Juli 2019','string'),(10,'en_US','description','','string'),(11,'en_US','title','Vol. 8. No. 1 Januari 2020','string'),(11,'en_US','description','','string'),(12,'en_US','title','Vol. 8. No. 2 Juli 2020','string'),(12,'en_US','description','','string'),(12,'en_US','coverImage','cover_issue_12_en_US.jpg','string'),(13,'en_US','title','Vol. 9 No. 1, Januari 2021','string'),(13,'en_US','description','','string'),(13,'en_US','coverImage','cover_issue_13_en_US.jpg','string'),(14,'en_US','title','Vol. 9 No. 2, Juli 2021','string'),(14,'en_US','description','','string'),(14,'en_US','coverImage','cover_issue_14_en_US.png','string'),(14,'','pub-id::doi','10.52236/ih.v9i2','string'),(14,'en_US','coverImageAltText','','string'),(15,'en_US','title','Vol. 10. No. 1, Januari 2022','string'),(15,'en_US','description','','string'),(15,'','pub-id::doi','10.52236/ih.v10i1','string'),(15,'en_US','coverImage','cover_issue_15_en_US.jpg','string'),(15,'en_US','coverImageAltText','','string');
/*!40000 ALTER TABLE `issue_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `issues`
--

DROP TABLE IF EXISTS `issues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `issues` (
  `issue_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `journal_id` bigint(20) NOT NULL,
  `volume` smallint(6) DEFAULT NULL,
  `number` varchar(10) DEFAULT NULL,
  `year` smallint(6) DEFAULT NULL,
  `published` tinyint(4) NOT NULL DEFAULT 0,
  `current` tinyint(4) NOT NULL DEFAULT 0,
  `date_published` datetime DEFAULT NULL,
  `date_notified` datetime DEFAULT NULL,
  `access_status` tinyint(4) NOT NULL DEFAULT 1,
  `open_access_date` datetime DEFAULT NULL,
  `show_volume` tinyint(4) NOT NULL DEFAULT 0,
  `show_number` tinyint(4) NOT NULL DEFAULT 0,
  `show_year` tinyint(4) NOT NULL DEFAULT 0,
  `show_title` tinyint(4) NOT NULL DEFAULT 0,
  `style_file_name` varchar(90) DEFAULT NULL,
  `original_style_file_name` varchar(255) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`issue_id`),
  KEY `issues_journal_id` (`journal_id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `issues`
--

LOCK TABLES `issues` WRITE;
/*!40000 ALTER TABLE `issues` DISABLE KEYS */;
INSERT INTO `issues` VALUES (1,1,1,'1',2015,1,0,'2019-05-14 13:07:00',NULL,0,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:07:00'),(2,1,2,'1',2015,1,0,'2019-05-14 13:07:10',NULL,0,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:07:10'),(3,1,3,'1',2016,1,0,'2019-05-14 13:07:23',NULL,0,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:07:23'),(4,1,3,'2',2016,1,0,'2019-05-14 13:07:32',NULL,0,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:07:32'),(5,1,4,'1',2017,1,0,'2019-05-14 13:07:43',NULL,0,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:07:43'),(6,1,5,'1',2017,1,0,'2019-05-14 13:07:54',NULL,0,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:07:54'),(7,1,6,'1',2018,1,0,'2019-05-14 13:08:09',NULL,1,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:08:09'),(8,1,6,'2',2018,1,0,'2019-05-14 13:08:19',NULL,1,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:08:19'),(9,1,7,'1',2019,1,0,'2019-05-14 13:08:34',NULL,1,NULL,1,1,1,1,NULL,NULL,'2019-05-14 13:08:34'),(10,1,7,'2',2019,1,0,'2019-09-03 10:32:46',NULL,1,NULL,1,1,1,1,NULL,NULL,'2019-09-03 10:32:46'),(11,1,8,'1',2020,1,0,'2020-02-12 13:03:45',NULL,1,NULL,1,1,1,1,NULL,NULL,'2020-02-12 13:03:45'),(12,1,8,'2',2020,1,0,'2020-07-29 12:37:26',NULL,1,NULL,1,1,1,1,NULL,NULL,'2020-07-29 12:37:26'),(13,1,9,'1',2021,1,0,'2021-02-18 11:34:45',NULL,1,NULL,1,1,1,1,NULL,NULL,'2021-02-18 11:34:45'),(14,1,9,'2',2021,1,0,'2021-08-02 00:00:00',NULL,1,NULL,1,1,1,1,NULL,NULL,'2021-08-16 12:55:44'),(15,1,10,'1',2022,1,1,'2022-01-31 00:00:00',NULL,1,NULL,1,1,1,1,NULL,NULL,'2022-02-08 14:54:14');
/*!40000 ALTER TABLE `issues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `item_views`
--

DROP TABLE IF EXISTS `item_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_views` (
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` varchar(32) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `date_last_viewed` datetime DEFAULT NULL,
  UNIQUE KEY `item_views_pkey` (`assoc_type`,`assoc_id`,`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `item_views`
--

LOCK TABLES `item_views` WRITE;
/*!40000 ALTER TABLE `item_views` DISABLE KEYS */;
INSERT INTO `item_views` VALUES (515,'133-1',1,'2019-01-16 09:30:23'),(515,'143-1',1,'2018-05-22 20:56:25'),(515,'143-1',4,'2018-05-22 21:12:07'),(515,'151-1',1,'2018-05-27 21:55:07'),(515,'186-1',1,'2018-05-27 21:56:54'),(515,'516-1',1,'2020-05-12 13:10:47'),(515,'191-1',1,'2018-05-27 22:27:34'),(515,'157-1',1,'2018-05-27 22:28:37'),(515,'197-1',1,'2018-05-30 08:47:35'),(515,'228-2',23,'2018-09-21 13:12:42'),(515,'278-1',34,'2018-12-09 17:16:20'),(515,'3-2',1,'2018-12-22 05:02:03'),(515,'99-1',1,'2018-12-22 05:04:16'),(515,'200-1',1,'2019-01-16 09:29:27'),(515,'121-1',1,'2019-01-16 09:28:50'),(515,'281-1',1,'2019-01-17 08:46:42'),(515,'282-1',1,'2019-01-17 08:52:57'),(515,'284-1',1,'2019-01-17 09:00:43'),(515,'204-1',1,'2019-01-17 09:14:41'),(515,'207-1',1,'2019-01-17 09:15:52'),(515,'211-1',1,'2019-01-17 09:17:00'),(515,'218-1',1,'2019-01-17 09:19:43'),(515,'222-1',1,'2019-01-17 09:20:47'),(515,'226-1',1,'2019-01-17 09:21:45'),(515,'295-1',1,'2019-01-17 09:22:52'),(515,'291-1',1,'2019-01-17 14:48:37'),(515,'136-1',1,'2019-01-17 14:48:54'),(515,'52-2',1,'2019-01-17 14:49:01'),(515,'368-1',450,'2019-07-18 22:50:33'),(515,'369-1',450,'2019-07-18 22:51:17'),(515,'324-1',450,'2019-07-18 22:56:23'),(515,'370-1',457,'2019-07-20 12:34:50'),(515,'318-1',1,'2019-08-30 09:19:52'),(515,'324-1',1,'2019-08-30 10:10:45'),(515,'367-1',1,'2019-08-30 10:10:52'),(515,'330-1',1,'2019-08-30 10:12:57'),(515,'394-1',1,'2019-08-30 11:02:34'),(515,'401-1',1,'2019-09-03 10:37:10'),(515,'379-1',559,'2019-10-19 09:27:25'),(515,'288-1',1,'2020-05-12 13:10:15'),(515,'288-2',1,'2020-05-12 13:12:47'),(515,'570-1',682,'2020-09-04 21:48:11'),(515,'571-1',683,'2020-10-13 02:59:46'),(515,'573-1',1,'2020-12-03 14:22:38'),(515,'518-1',1,'2020-12-03 14:28:46'),(515,'575-1',1,'2021-01-07 13:56:00'),(515,'576-1',690,'2021-01-22 15:33:16'),(515,'579-2',690,'2021-01-22 15:46:53'),(515,'569-1',1,'2021-02-09 10:13:32'),(515,'631-1',1,'2021-02-18 10:52:28'),(515,'597-1',1,'2021-06-22 10:58:29'),(515,'589-1',1,'2021-08-02 08:30:55'),(515,'655-1',1,'2021-08-02 09:29:46'),(515,'644-1',1,'2021-08-10 10:26:07'),(515,'691-1',695,'2021-08-30 15:07:45'),(515,'689-1',1,'2021-09-01 15:08:36'),(515,'687-1',1,'2021-09-01 15:09:29'),(515,'688-1',1,'2021-09-01 15:09:44'),(515,'690-1',1,'2021-09-01 15:12:26'),(515,'702-1',4,'2022-02-04 09:05:42'),(515,'712-1',1,'2022-02-04 10:29:56'),(515,'744-1',1,'2022-02-04 10:58:56'),(515,'686-1',1,'2022-02-04 10:57:35'),(515,'748-2',4,'2022-02-08 14:14:52'),(515,'747-1',4,'2022-02-08 14:19:45'),(515,'748-3',4,'2022-02-08 14:26:35');
/*!40000 ALTER TABLE `item_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `journal_settings`
--

DROP TABLE IF EXISTS `journal_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `journal_settings` (
  `journal_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `journal_settings_pkey` (`journal_id`,`locale`,`setting_name`),
  KEY `journal_settings_journal_id` (`journal_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journal_settings`
--

LOCK TABLES `journal_settings` WRITE;
/*!40000 ALTER TABLE `journal_settings` DISABLE KEYS */;
INSERT INTO `journal_settings` VALUES (1,'','numPageLinks','10','int'),(1,'','itemsPerPage','25','int'),(1,'','numWeeksPerReview','4','int'),(1,'en_US','privacyStatement','The names and email addresses entered in this journal site will be used exclusively for the stated purposes of this journal and will not be made available for any other purpose or to any other party.','string'),(1,'en_US','authorSelfArchivePolicy','This journal permits and encourages authors to post items submitted to the journal on personal websites or institutional repositories both prior to and after publication, while providing bibliographic details that credit, if applicable, its publication in this journal.','string'),(1,'en_US','copyeditInstructions','The copyediting stage is intended to improve the flow, clarity, grammar, wording, and formatting of the article. It represents the last chance for the author to make any substantial changes to the text because the next stage is restricted to typos and formatting corrections. \n\nThe file to be copyedited is in Word or .rtf format and therefore can easily be edited as a word processing document. The set of instructions displayed here proposes two approaches to copyediting. One is based on Microsoft Word\'s Track Changes feature and requires that the copy editor, editor, and author have access to this program. A second system, which is software independent, has been borrowed, with permission, from the Harvard Educational Review. The journal editor is in a position to modify these instructions, so suggestions can be made to improve the process for this journal.\n\n\n<h4>Copyediting Systems</h4>\n\n<strong>1. Microsoft Word\'s Track Changes</strong>\n\nUnder Tools in the menu bar, the feature Track Changes enables the copy editor to make insertions (text appears in color) and deletions (text appears crossed out in color or in the margins as deleted). The copy editor can posit queries to both the author (Author Queries) and to the editor (Editor Queries) by inserting these queries in square brackets. The copyedited version is then uploaded, and the editor is notified. The editor then reviews the text and notifies the author.\n\nThe editor and author should leave those changes with which they are satisfied. If further changes are necessary, the editor and author can make changes to the initial insertions or deletions, as well as make new insertions or deletions elsewhere in the text. Authors and editors should respond to each of the queries addressed to them, with responses placed inside the square brackets. \n\nAfter the text has been reviewed by editor and author, the copy editor will make a final pass over the text accepting the changes in preparation for the layout and galley stage.\n\n\n<strong>2. Harvard Educational Review </strong>\n\n<strong>Instructions for Making Electronic Revisions to the Manuscript</strong>\n\nPlease follow the following protocol for making electronic revisions to your manuscript:\n\n<strong>Responding to suggested changes.</strong>\n&nbsp; For each of the suggested changes that you accept, unbold the text.\n&nbsp; For each of the suggested changes that you do not accept, re-enter the original text and <strong>bold</strong> it.\n\n<strong>Making additions and deletions.</strong>\n&nbsp; Indicate additions by <strong>bolding</strong> the new text.\n&nbsp; Replace deleted sections with: <strong>[deleted text]</strong>.\n&nbsp; If you delete one or more sentence, please indicate with a note, e.g., <strong>[deleted 2 sentences]</strong>.\n\n<strong>Responding to Queries to the Author (QAs).</strong>\n&nbsp; Keep all QAs intact and bolded within the text. Do not delete them.\n&nbsp; To reply to a QA, add a comment after it. Comments should be delimited using:\n<strong>[Comment:]</strong>\n&nbsp; e.g., <strong>[Comment: Expanded discussion of methodology as you suggested]</strong>.\n\n<strong>Making comments.</strong>\n&nbsp; Use comments to explain organizational changes or major revisions\n&nbsp; e.g., <strong>[Comment: Moved the above paragraph from p. 5 to p. 7].</strong>\n&nbsp; Note: When referring to page numbers, please use the page numbers from the printed copy of the manuscript that was sent to you. This is important since page numbers may change as a document is revised electronically.\n\n<h4>An Illustration of an Electronic Revision</h4>\n\n<ol>\n<li><strong>Initial copyedit.</strong> The journal copy editor will edit the text to improve flow, clarity, grammar, wording, and formatting, as well as including author queries as necessary. Once the initial edit is complete, the copy editor will upload the revised document through the journal Web site and notify the author that the edited manuscript is available for review.</li>\n<li><strong>Author copyedit.</strong> Before making dramatic departures from the structure and organization of the edited manuscript, authors must check in with the editors who are co-chairing the piece. Authors should accept/reject any changes made during the initial copyediting, as appropriate, and respond to all author queries. When finished with the revisions, authors should rename the file from AuthorNameQA.doc to AuthorNameQAR.doc (e.g., from LeeQA.doc to LeeQAR.doc) and upload the revised document through the journal Web site as directed.</li>\n<li><strong>Final copyedit.</strong> The journal copy editor will verify changes made by the author and incorporate the responses to the author queries to create a final manuscript. When finished, the copy editor will upload the final document through the journal Web site and alert the layout editor to complete formatting.</li>\n</ol>','string'),(1,'','emailSignature',NULL,'string'),(1,'en_US','proofInstructions','<p>The proofreading stage is intended to catch any errors in the galley\'s spelling, grammar, and formatting. More substantial changes cannot be made at this stage, unless discussed with the Section Editor. In Layout, click on VIEW PROOF to see the HTML, PDF, and other available file formats used in publishing this item.</p>\n	<h4>For Spelling and Grammar Errors</h4>\n\n	<p>Copy the problem word or groups of words and paste them into the Proofreading Corrections box with \"CHANGE-TO\" instructions to the editor as follows:</p>\n\n	<pre>1. CHANGE...\n	then the others\n	TO...\n	than the others</pre>\n	<br />\n	<pre>2. CHANGE...\n	Malinowsky\n	TO...\n	Malinowski</pre>\n	<br />\n\n	<h4>For Formatting Errors</h4>\n	\n	<p>Describe the location and nature of the problem in the Proofreading Corrections box after typing in the title \"FORMATTING\" as follows:</p>\n	<br />\n	<pre>3. FORMATTING\n	The numbers in Table 3 are not aligned in the third column.</pre>\n	<br />\n	<pre>4. FORMATTING\n	The paragraph that begins \"This last topic...\" is not indented.</pre>','string'),(1,'en_US','refLinkInstructions','<h4>To Add Reference Linking to the Layout Process</h4>\n	<p>When turning a submission into HTML or PDF, make sure that all hyperlinks in the submission are active.</p>\n	<h4>A. When the Author Provides a Link with the Reference</h4>\n	<ol>\n	<li>While the submission is still in its word processing format (e.g., Word), add the phrase VIEW ITEM to the end of the reference that has a URL.</li>\n	<li>Turn that phrase into a hyperlink by highlighting it and using Word\'s Insert Hyperlink tool and the URL prepared in #2.</li>\n	</ol>\n	<h4>B. Enabling Readers to Search Google Scholar For References</h4>\n	<ol>\n		<li>While the submission is still in its word processing format (e.g., Word), copy the title of the work referenced in the References list (if it appears to be too common a titleâ€”e.g., \"Peace\"â€”then copy author and title).</li>\n		<li>Paste the reference\'s title between the %22\'s, placing a + between each word: http://scholar.google.com/scholar?q=%22PASTE+TITLE+HERE%22&hl=en&lr=&btnG=Search.</li>\n\n	<li>Add the phrase GS SEARCH to the end of each citation in the submission\'s References list.</li>\n	<li>Turn that phrase into a hyperlink by highlighting it and using Word\'s Insert Hyperlink tool and the URL prepared in #2.</li>\n	</ol>\n	<h4>C. Enabling Readers to Search for References with a DOI</h4>\n	<ol>\n	<li>While the submission is still in Word, copy a batch of references into CrossRef Text Query http://www.crossref.org/freeTextQuery/.</li>\n	<li>Paste each DOI that the Query provides in the following URL (between = and &): http://www.cmaj.ca/cgi/external_ref?access_num=PASTE DOI#HERE&link_type=DOI.</li>\n	<li>Add the phrase CrossRef to the end of each citation in the submission\'s References list.</li>\n	<li>Turn that phrase into a hyperlink by highlighting the phrase and using Word\'s Insert Hyperlink tool and the appropriate URL prepared in #2.</li>\n	</ol>','string'),(1,'en_US','readerInformation','<p>We encourage readers to sign up for the publishing notification service for this journal. Use the <a href=\"/e-jurnal/index.php/insada/user/register\">Register</a> link at the top of the home page for the journal. This registration will result in the reader receiving the Table of Contents by email for each new issue of the journal. This list also allows the journal to claim a certain level of support or readership. See the journal\'s <a href=\"/e-jurnal/index.php/insada/about/submissions#privacyStatement\">Privacy Statement</a>, which assures readers that their name and email address will not be used for other purposes.</p>','string'),(1,'en_US','authorInformation','<p>Interested in submitting to this journal? We recommend that you review the <a href=\"/e-jurnal/index.php/insada/about\">About the Journal</a> page for the journal\'s section policies, as well as the <a href=\"/e-jurnal/index.php/insada/about/submissions#authorGuidelines\">Author Guidelines</a>. Authors need to <a href=\"/e-jurnal/index.php/insada/user/register\">register</a> with the journal prior to submitting or, if already registered, can simply <a href=\"/e-jurnal/index.php/index/login\">log in</a> and begin the five-step process.</p>','string'),(1,'','displayCurrentIssue','1','bool'),(1,'en_US','navItems','a:1:{i:0;a:2:{s:4:\"name\";s:0:\"\";s:3:\"url\";s:0:\"\";}}','object'),(1,'en_US','librarianInformation','<p>We encourage research librarians to list this journal among their library\'s electronic journal holdings. As well, it may be worth noting that this journal\'s open source publishing system is suitable for libraries to host for their faculty members to use with journals they are involved in editing (see <a href=\"http://pkp.sfu.ca/ojs\">Open Journal Systems</a>).</p>','string'),(1,'en_US','lockssLicense','This journal utilizes the LOCKSS system to create a distributed archiving system among participating libraries and permits those libraries to create permanent archives of the journal for purposes of preservation and restoration. <a href=\"http://lockss.org/\">More...</a>','string'),(1,'','supportedLocales','a:1:{i:0;s:5:\"en_US\";}','object'),(1,'','supportedFormLocales','a:1:{i:0;s:5:\"en_US\";}','object'),(1,'','supportedSubmissionLocales','a:1:{i:0;s:5:\"en_US\";}','object'),(1,'en_US','submissionChecklist','a:6:{i:0;a:2:{s:7:\"content\";s:165:\"The submission has not been previously published, nor is it before another journal for consideration (or an explanation has been provided in Comments to the Editor).\";s:5:\"order\";s:1:\"1\";}i:1;a:2:{s:7:\"content\";s:95:\"The submission file is in OpenOffice, Microsoft Word, RTF, or WordPerfect document file format.\";s:5:\"order\";s:1:\"2\";}i:2;a:2:{s:7:\"content\";s:60:\"Where available, URLs for the references have been provided.\";s:5:\"order\";s:1:\"3\";}i:3;a:2:{s:7:\"content\";s:239:\"The text is single-spaced; uses a 12-point font; employs italics, rather than underlining (except with URL addresses); and all illustrations, figures, and tables are placed within the text at the appropriate points, rather than at the end.\";s:5:\"order\";s:1:\"4\";}i:4;a:2:{s:7:\"content\";s:254:\"The text adheres to the stylistic and bibliographic requirements outlined in the <a href=\"http://www.akperinsada.ac.id/e-jurnal/index.php/insada/about/submissions#authorGuidelines\" target=\"_new\">Author Guidelines</a>, which is found in About the Journal.\";s:5:\"order\";s:1:\"5\";}i:5;a:2:{s:7:\"content\";s:245:\"If submitting to a peer-reviewed section of the journal, the instructions in <a href=\"javascript:openHelp(\'http://www.akperinsada.ac.id/e-jurnal/index.php/insada/help/view/editorial/topic/000044\')\">Ensuring a Blind Review</a> have been followed.\";s:5:\"order\";s:1:\"6\";}}','object'),(1,'','rtAbstract','1','bool'),(1,'','rtCaptureCite','1','bool'),(1,'','rtViewMetadata','1','bool'),(1,'','rtSupplementaryFiles','1','bool'),(1,'','rtPrinterFriendly','1','bool'),(1,'','rtAuthorBio','1','bool'),(1,'','rtDefineTerms','1','bool'),(1,'','rtAddComment','1','bool'),(1,'','rtEmailAuthor','1','bool'),(1,'','rtEmailOthers','1','bool'),(1,'','allowRegReviewer','1','bool'),(1,'','allowRegAuthor','1','bool'),(1,'','allowRegReader','1','bool'),(1,'','submissionFee','0','int'),(1,'en_US','submissionFeeName','Article Submission','string'),(1,'en_US','submissionFeeDescription','Authors are required to pay an Article Submission Fee as part of the submission process to contribute to review costs.','string'),(1,'','fastTrackFee','0','int'),(1,'en_US','fastTrackFeeName','Fast-Track Review','string'),(1,'en_US','fastTrackFeeDescription','With the payment of this fee, the review, editorial decision, and author notification on this manuscript is guaranteed to take place within 4 weeks.','string'),(1,'','publicationFee','0','int'),(1,'en_US','publicationFeeName','Article Publication','string'),(1,'en_US','publicationFeeDescription','If this paper is accepted for publication, you will be asked to pay an Article Publication Fee to cover publications costs.','string'),(1,'en_US','waiverPolicy','If you do not have funds to pay such fees, you will have an opportunity to waive each fee. We do not want fees to prevent the publication of worthy work.','string'),(1,'','purchaseArticleFee','0','int'),(1,'en_US','purchaseArticleFeeName','Purchase Article','string'),(1,'en_US','purchaseArticleFeeDescription','The payment of this fee will enable you to view, download, and print this article.','string'),(1,'','membershipFee','0','int'),(1,'en_US','membershipFeeName','Association Membership','string'),(1,'en_US','membershipFeeDescription','The payment of this fee will enroll you as a member in this association for one year and provide you with free access to this journal.','string'),(1,'en_US','donationFeeName','Donations to journal','string'),(1,'en_US','donationFeeDescription','Donations of any amount to this journal are gratefully received and provide a means for the editors to continue to provide a journal of the highest quality to its readers.','string'),(1,'en_US','metaCitations','1','string'),(1,'en_US','acronym','ih','string'),(1,'','printIssn','2338-5375','string'),(1,'','onlineIssn','2655-9870','string'),(1,'','mailingAddress','','string'),(1,'','useEditorialBoard','0','bool'),(1,'','contactName','Tatik Trisnowati, S.Kep,Ns.M.Kes','string'),(1,'','contactEmail','akper.insada@gmail.com','string'),(1,'','contactPhone','','string'),(1,'','contactFax','','string'),(1,'','supportName','Tatik Trisnowati, S.Kep,Ns.M.Kes','string'),(1,'','supportEmail','akper.insada@gmail.com','string'),(1,'','supportPhone','','string'),(1,'','publisherInstitution','Politeknik Insan Husada Surakarta','string'),(1,'','publisherUrl','','string'),(1,'','envelopeSender','','string'),(1,'','journalTheme','steel','string'),(1,'en_US','abbreviation','Intan Husada J. Ilm. Keperawatan','string'),(1,'','remindForInvite','0','bool'),(1,'','remindForSubmit','0','bool'),(1,'','numDaysBeforeInviteReminder','','int'),(1,'','numDaysBeforeSubmitReminder','','int'),(1,'','rateReviewerOnQuality','0','bool'),(1,'','restrictReviewerFileAccess','0','bool'),(1,'','reviewerAccessKeysEnabled','0','bool'),(1,'','showEnsuringLink','0','bool'),(1,'','mailSubmissionsToReviewers','0','bool'),(1,'','authorSelectsEditor','0','bool'),(1,'','enableLockss','0','bool'),(1,'','reviewerDatabaseLinks','a:1:{i:0;a:2:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:0:\"\";}}','object'),(1,'','notifyAllAuthorsOnDecision','0','bool'),(1,'','themePluginPath','default','string'),(1,'','emailFooter',NULL,'string'),(1,'','navItems','N;','object'),(1,'en_US','pageHeaderLogoImage','a:6:{s:4:\"name\";s:15:\"logo jurnal.png\";s:10:\"uploadName\";s:29:\"pageHeaderLogoImage_en_US.png\";s:5:\"width\";i:760;s:6:\"height\";i:65;s:12:\"dateUploaded\";s:19:\"2022-02-02 15:06:52\";s:7:\"altText\";s:0:\"\";}','object'),(1,'','publishingMode','0','int'),(1,'','enableOai','1','bool'),(1,'en_US','name','Intan Husada: Jurnal Ilmiah Keperawatan','string'),(1,'en_US','description','<p>Puji &nbsp;Syukur &nbsp;kami &nbsp;panjatkan &nbsp;kepada &nbsp;Tuhan &nbsp;Yang &nbsp;Maha &nbsp;Esa &nbsp;karena berkat&nbsp;rahmatNya &nbsp;kami dapat menyusun Jurnal Intan Husada ini. Jurnal Intan Husada ini&nbsp;mengkaji tentang informasi ilmu yang berkenaan dengan ilmu kesehatan khususnya&nbsp;ilmu keperawatan, yang dapat digunakan dalam rangka pembelajaran pada jenjang&nbsp;Perguruan Tinggi Kesehatan.</p>\r\n<p><strong>*****Susunan Dewan Redaksi***** </strong></p>\r\n<ul>\r\n<li class=\"show\"><strong>Penanggung jawab (chairman) </strong></li>\r\n</ul>\r\n<p>Sunaryo Joko waluyo,S.Kp.Ns.M.Kes</p>\r\n<p>Direktur AKPER INSAN HUSADA Surakarta</p>\r\n<ul>\r\n<li class=\"show\"><strong>Ketua (Editor in Chief) </strong></li>\r\n</ul>\r\n<p>Tatik Trisnowati, S.Kep,Ns.M.Kes</p>\r\n<ul>\r\n<li class=\"show\"><strong> Sekretaris (Secretary Editors)</strong></li>\r\n</ul>\r\n<p>Siti Nur Solikah, S.Kep,Ns.M.Kes</p>\r\n<p>Saka Suminar, S.Kep.M.Kes</p>\r\n<ul>\r\n<li class=\"show\"><strong>Anggota (Section Editors)</strong></li>\r\n</ul>\r\n<p>Sunaryo Joko Waluyo, S.Kp.Ns,M.Kes.</p>\r\n<p>Sugiyarto, S.Kep.</p>\r\n<p>Sri Lestari,S.Kep.Ns.</p>\r\n<p>Siswanto, S.Kp.Ns,M.Kes,</p>\r\n<p>Nunuk Rekyan Poncowati, S.Kep</p>\r\n<ul>\r\n<li class=\"show\"><strong>Teknis ( Technical Editor) </strong></li>\r\n</ul>\r\n<p>Wahyu Agustiningsih, SE</p>\r\n<ul>\r\n<li class=\"show\"><strong>Mitra Bestari</strong></li>\r\n</ul>\r\n<p>Soenarno, S.H,M.Hum</p>','string'),(1,'en_US','editorialTeam','<div id=\"editorialTeam\">\r\n<div id=\"Editors\">\r\n<h3>Editors</h3>\r\n<p>admininsada</p>\r\n<p>editor editor</p>\r\n</div>\r\n<div id=\"Section Editors\">\r\n<h3>Section Editor</h3>\r\n<p>admininsada</p>\r\n</div>\r\n</div>','string'),(1,'en_US','about','<div id=\"openAccessPolicy\">\r\n<h3>Open Access Policy</h3>\r\n<p>This journal provides immediate open access to its content on the principle that making research freely available to the public supports a greater global exchange of knowledge.</p>\r\n</div>\r\n<div id=\"custom-0\">\r\n<h3>Tentang Jurnal Intan Husada</h3>\r\n<p>Puji &nbsp;Syukur &nbsp;kami &nbsp;panjatkan &nbsp;kepada &nbsp;Tuhan &nbsp;Yang &nbsp;Maha Esa &nbsp;karena &nbsp;berkat&nbsp;rahmatNya &nbsp;kami dapat menyusun Jurnal Intan Husada ini. Jurnal Intan Husada ini&nbsp;mengkaji tentang informasi ilmu yang berkenaan dengan ilmu kesehatan khususnya&nbsp;ilmu keperawatan, yang dapat digunakan dalam rangka pembelajaran pada jenjang&nbsp;Perguruan Tinggi Kesehatan.</p>\r\n</div>','string'),(1,'','styleSheet','a:3:{s:4:\"name\";s:16:\"style-jurnal.css\";s:10:\"uploadName\";s:14:\"styleSheet.css\";s:12:\"dateUploaded\";s:19:\"2021-06-23 09:52:48\";}','object'),(1,'en_US','additionalHomeContent','<p>tambahan</p>','string'),(1,'','disableUserReg','0','bool'),(1,'','restrictSiteAccess','0','bool'),(1,'','restrictArticleAccess','0','bool');
/*!40000 ALTER TABLE `journal_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `journals`
--

DROP TABLE IF EXISTS `journals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `journals` (
  `journal_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `path` varchar(32) NOT NULL,
  `seq` double NOT NULL DEFAULT 0,
  `primary_locale` varchar(14) NOT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`journal_id`),
  UNIQUE KEY `journals_path` (`path`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `journals`
--

LOCK TABLES `journals` WRITE;
/*!40000 ALTER TABLE `journals` DISABLE KEYS */;
INSERT INTO `journals` VALUES (1,'insada',3,'en_US',1);
/*!40000 ALTER TABLE `journals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `library_file_settings`
--

DROP TABLE IF EXISTS `library_file_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `library_file_settings` (
  `file_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `library_file_settings_pkey` (`file_id`,`locale`,`setting_name`),
  KEY `library_file_settings_id` (`file_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `library_file_settings`
--

LOCK TABLES `library_file_settings` WRITE;
/*!40000 ALTER TABLE `library_file_settings` DISABLE KEYS */;
INSERT INTO `library_file_settings` VALUES (1,'en_US','name','jkj','string'),(2,'en_US','name','ops2.php','string');
/*!40000 ALTER TABLE `library_file_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `library_files`
--

DROP TABLE IF EXISTS `library_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `library_files` (
  `file_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `original_file_name` varchar(255) NOT NULL,
  `file_type` varchar(255) NOT NULL,
  `file_size` bigint(20) NOT NULL,
  `type` tinyint(4) NOT NULL,
  `date_uploaded` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `public_access` tinyint(4) DEFAULT 0,
  PRIMARY KEY (`file_id`),
  KEY `library_files_submission_id` (`submission_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `library_files`
--

LOCK TABLES `library_files` WRITE;
/*!40000 ALTER TABLE `library_files` DISABLE KEYS */;
INSERT INTO `library_files` VALUES (1,1,'uploader-PER.phtml','uploader.phtml','text/x-php',882,3,'2019-07-18 22:52:13','2019-07-18 22:52:13',143,0),(2,1,'ops2-OTH.php','ops2.php','text/plain',60,5,'2021-11-27 11:42:11','2021-11-27 11:42:11',221,0);
/*!40000 ALTER TABLE `library_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `metadata_description_settings`
--

DROP TABLE IF EXISTS `metadata_description_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `metadata_description_settings` (
  `metadata_description_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `metadata_descripton_settings_pkey` (`metadata_description_id`,`locale`,`setting_name`),
  KEY `metadata_description_settings_id` (`metadata_description_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `metadata_description_settings`
--

LOCK TABLES `metadata_description_settings` WRITE;
/*!40000 ALTER TABLE `metadata_description_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `metadata_description_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `metadata_descriptions`
--

DROP TABLE IF EXISTS `metadata_descriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `metadata_descriptions` (
  `metadata_description_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL DEFAULT 0,
  `assoc_id` bigint(20) NOT NULL DEFAULT 0,
  `schema_namespace` varchar(255) NOT NULL,
  `schema_name` varchar(255) NOT NULL,
  `display_name` varchar(255) DEFAULT NULL,
  `seq` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`metadata_description_id`),
  KEY `metadata_descriptions_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `metadata_descriptions`
--

LOCK TABLES `metadata_descriptions` WRITE;
/*!40000 ALTER TABLE `metadata_descriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `metadata_descriptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `metrics`
--

DROP TABLE IF EXISTS `metrics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `metrics` (
  `load_id` varchar(255) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `day` varchar(8) DEFAULT NULL,
  `month` varchar(6) DEFAULT NULL,
  `file_type` tinyint(4) DEFAULT NULL,
  `country_id` varchar(2) DEFAULT NULL,
  `region` varchar(2) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `metric_type` varchar(255) NOT NULL,
  `metric` int(11) NOT NULL,
  `pkp_section_id` bigint(20) DEFAULT NULL,
  `assoc_object_type` bigint(20) DEFAULT NULL,
  `assoc_object_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  KEY `metrics_load_id` (`load_id`),
  KEY `metrics_metric_type_context_id` (`metric_type`,`context_id`),
  KEY `metrics_metric_type_submission_id_assoc_type` (`metric_type`,`submission_id`,`assoc_type`),
  KEY `metrics_metric_type_submission_id_assoc` (`metric_type`,`context_id`,`assoc_type`,`assoc_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `metrics`
--

LOCK TABLES `metrics` WRITE;
/*!40000 ALTER TABLE `metrics` DISABLE KEYS */;
INSERT INTO `metrics` VALUES ('2.4.2-upgrade-ojsViews',515,1,1,3,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',17,1,259,1,1),('2.4.2-upgrade-ojsViews',515,1,4,19,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',38,1,259,1,3),('2.4.2-upgrade-ojsViews',515,1,5,30,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',22,1,259,1,4),('2.4.2-upgrade-ojsViews',515,1,6,31,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',19,1,259,1,5),('2.4.2-upgrade-ojsViews',515,1,7,32,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',52,1,259,1,6),('2.4.2-upgrade-ojsViews',515,1,8,33,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',37,1,259,1,7),('2.4.2-upgrade-ojsViews',515,1,14,51,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',64,1,259,2,9),('2.4.2-upgrade-ojsViews',515,1,19,52,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',71,1,259,2,10),('2.4.2-upgrade-ojsViews',515,1,20,53,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',20,1,259,2,11),('2.4.2-upgrade-ojsViews',515,1,21,54,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',7,1,259,2,12),('2.4.2-upgrade-ojsViews',515,1,22,57,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',27,1,259,2,13),('2.4.2-upgrade-ojsViews',515,1,28,68,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',73,1,259,3,15),('2.4.2-upgrade-ojsViews',515,1,31,79,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',61,1,259,3,16),('2.4.2-upgrade-ojsViews',515,1,32,80,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',82,1,259,3,17),('2.4.2-upgrade-ojsViews',515,1,33,81,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',43,1,259,3,18),('2.4.2-upgrade-ojsViews',515,1,34,82,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',68,1,259,3,19),('2.4.2-upgrade-ojsViews',515,1,35,83,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',101,1,259,3,20),('2.4.2-upgrade-ojsViews',515,1,40,94,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',78,1,259,1,21),('2.4.2-upgrade-ojsViews',515,1,46,114,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',11,1,259,4,22),('2.4.2-upgrade-ojsViews',515,1,47,115,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',11,1,259,4,23),('2.4.2-upgrade-ojsViews',515,1,50,117,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',16,1,259,4,25),('2.4.2-upgrade-ojsViews',515,1,51,118,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',14,1,259,4,26),('2.4.2-upgrade-ojsViews',515,1,52,119,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',15,1,259,4,27),('2.4.2-upgrade-ojsViews',515,1,53,120,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',23,1,259,4,28),('2.4.2-upgrade-ojsViews',515,1,54,133,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',35,1,259,5,29),('2.4.2-upgrade-ojsViews',515,1,55,134,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',4,1,259,5,30),('2.4.2-upgrade-ojsViews',515,1,56,135,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',11,1,259,5,31),('2.4.2-upgrade-ojsViews',515,1,57,136,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',22,1,259,5,32),('2.4.2-upgrade-ojsViews',515,1,58,137,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',30,1,259,5,33),('2.4.2-upgrade-ojsViews',515,1,59,138,NULL,NULL,2,NULL,NULL,NULL,'ojs::legacyDefault',19,1,259,5,34),('2.4.2-upgrade-ojsViews',1048585,1,1,1,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',14,1,259,1,NULL),('2.4.2-upgrade-ojsViews',1048585,1,4,4,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',30,1,259,1,NULL),('2.4.2-upgrade-ojsViews',1048585,1,5,5,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',37,1,259,1,NULL),('2.4.2-upgrade-ojsViews',1048585,1,6,6,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',24,1,259,1,NULL),('2.4.2-upgrade-ojsViews',1048585,1,7,7,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',41,1,259,1,NULL),('2.4.2-upgrade-ojsViews',1048585,1,8,8,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',36,1,259,1,NULL),('2.4.2-upgrade-ojsViews',1048585,1,40,40,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',29,1,259,1,NULL),('2.4.2-upgrade-ojsViews',1048585,1,22,22,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',7,1,259,2,NULL),('2.4.2-upgrade-ojsViews',1048585,1,14,14,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',43,1,259,2,NULL),('2.4.2-upgrade-ojsViews',1048585,1,19,19,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',65,1,259,2,NULL),('2.4.2-upgrade-ojsViews',1048585,1,20,20,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',15,1,259,2,NULL),('2.4.2-upgrade-ojsViews',1048585,1,21,21,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',8,1,259,2,NULL),('2.4.2-upgrade-ojsViews',1048585,1,28,28,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',72,1,259,3,NULL),('2.4.2-upgrade-ojsViews',1048585,1,31,31,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',62,1,259,3,NULL),('2.4.2-upgrade-ojsViews',1048585,1,32,32,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',70,1,259,3,NULL),('2.4.2-upgrade-ojsViews',1048585,1,33,33,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',70,1,259,3,NULL),('2.4.2-upgrade-ojsViews',1048585,1,34,34,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',67,1,259,3,NULL),('2.4.2-upgrade-ojsViews',1048585,1,35,35,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',87,1,259,3,NULL),('2.4.2-upgrade-ojsViews',1048585,1,46,46,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',6,1,259,4,NULL),('2.4.2-upgrade-ojsViews',1048585,1,47,47,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',8,1,259,4,NULL),('2.4.2-upgrade-ojsViews',1048585,1,49,49,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',5,1,259,4,NULL),('2.4.2-upgrade-ojsViews',1048585,1,50,50,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',18,1,259,4,NULL),('2.4.2-upgrade-ojsViews',1048585,1,51,51,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',14,1,259,4,NULL),('2.4.2-upgrade-ojsViews',1048585,1,52,52,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',14,1,259,4,NULL),('2.4.2-upgrade-ojsViews',1048585,1,53,53,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',20,1,259,4,NULL),('2.4.2-upgrade-ojsViews',1048585,1,54,54,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',24,1,259,5,NULL),('2.4.2-upgrade-ojsViews',1048585,1,55,55,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',1,1,259,5,NULL),('2.4.2-upgrade-ojsViews',1048585,1,56,56,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',10,1,259,5,NULL),('2.4.2-upgrade-ojsViews',1048585,1,57,57,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',9,1,259,5,NULL),('2.4.2-upgrade-ojsViews',1048585,1,58,58,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',16,1,259,5,NULL),('2.4.2-upgrade-ojsViews',1048585,1,59,59,NULL,NULL,NULL,NULL,NULL,NULL,'ojs::legacyDefault',4,1,259,5,NULL),('usage_events_20180509.log',256,1,NULL,1,'20180509','201805',NULL,NULL,NULL,NULL,'ojs::counter',22,NULL,NULL,NULL,NULL),('usage_events_20180509.log',259,1,NULL,3,'20180509','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180509.log',259,1,NULL,5,'20180509','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180509.log',515,1,58,137,'20180509','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180509.log',1048585,1,31,31,'20180509','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180509.log',1048585,1,32,32,'20180509','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180509.log',1048585,1,54,54,'20180509','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180509.log',1048585,1,58,58,'20180509','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180510.log',256,1,NULL,1,'20180510','201805',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20180510.log',259,1,NULL,5,'20180510','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180510.log',515,1,20,53,'20180510','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180510.log',515,1,40,94,'20180510','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20180510.log',515,1,46,114,'20180510','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180510.log',515,1,58,137,'20180510','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180510.log',1048585,1,54,54,'20180510','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180510.log',1048585,1,55,55,'20180510','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180510.log',1048585,1,58,58,'20180510','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180511.log',256,1,NULL,1,'20180511','201805',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20180511.log',515,1,35,83,'20180511','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20180511.log',515,1,50,117,'20180511','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180511.log',515,1,56,135,'20180511','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180511.log',1048585,1,35,35,'20180511','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20180512.log',256,1,NULL,1,'20180512','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180512.log',259,1,NULL,5,'20180512','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180512.log',515,1,19,52,'20180512','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20180512.log',515,1,54,133,'20180512','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20180512.log',515,1,56,135,'20180512','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180512.log',1048585,1,19,19,'20180512','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180513.log',256,1,NULL,1,'20180513','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180513.log',515,1,20,53,'20180513','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180513.log',515,1,50,117,'20180513','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180513.log',1048585,1,50,50,'20180513','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180514.log',256,1,NULL,1,'20180514','201805',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20180514.log',515,1,19,52,'20180514','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20180514.log',1048585,1,19,19,'20180514','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180515.log',256,1,NULL,1,'20180515','201805',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20180515.log',259,1,NULL,5,'20180515','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180515.log',515,1,4,19,'20180515','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20180515.log',515,1,19,52,'20180515','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20180515.log',515,1,20,53,'20180515','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180515.log',515,1,50,117,'20180515','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180515.log',515,1,56,135,'20180515','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180515.log',515,1,58,137,'20180515','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180515.log',1048585,1,33,33,'20180515','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180515.log',1048585,1,58,58,'20180515','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180516.log',256,1,NULL,1,'20180516','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180516.log',515,1,54,133,'20180516','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180516.log',1048585,1,40,40,'20180516','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180516.log',1048585,1,54,54,'20180516','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180517.log',259,1,NULL,5,'20180517','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180517.log',515,1,34,82,'20180517','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180517.log',515,1,58,137,'20180517','201805',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20180517.log',515,1,59,138,'20180517','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20180517.log',1048585,1,58,58,'20180517','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180517.log',1048585,1,59,59,'20180517','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180518.log',256,1,NULL,1,'20180518','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180518.log',515,1,47,115,'20180518','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180518.log',515,1,50,117,'20180518','201805',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,25),('usage_events_20180518.log',515,1,54,133,'20180518','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180518.log',515,1,59,138,'20180518','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20180518.log',1048585,1,47,47,'20180518','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180518.log',1048585,1,59,59,'20180518','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180519.log',256,1,NULL,1,'20180519','201805',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180519.log',515,1,58,137,'20180519','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180519.log',1048585,1,58,58,'20180519','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180520.log',515,1,4,19,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20180520.log',515,1,8,33,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180520.log',515,1,20,53,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180520.log',515,1,33,81,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180520.log',515,1,49,116,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180520.log',515,1,50,117,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20180520.log',515,1,53,120,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180520.log',515,1,57,136,'20180520','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180520.log',1048585,1,20,20,'20180520','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180520.log',1048585,1,33,33,'20180520','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180520.log',1048585,1,57,57,'20180520','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180521.log',256,1,NULL,1,'20180521','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180521.log',515,1,33,81,'20180521','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180521.log',515,1,56,135,'20180521','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20180521.log',1048585,1,8,8,'20180521','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180521.log',1048585,1,40,40,'20180521','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180521.log',1048585,1,56,56,'20180521','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180522.log',256,1,NULL,1,'20180522','201805',NULL,NULL,NULL,NULL,'ojs::counter',27,NULL,NULL,NULL,NULL),('usage_events_20180522.log',259,1,NULL,4,'20180522','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180522.log',259,1,NULL,5,'20180522','201805',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20180522.log',259,1,NULL,6,'20180522','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180522.log',515,1,14,51,'20180522','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20180522.log',515,1,50,117,'20180522','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180522.log',515,1,54,133,'20180522','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20180522.log',1048585,1,54,54,'20180522','201805',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20180523.log',256,1,NULL,1,'20180523','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180523.log',515,1,34,82,'20180523','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180523.log',515,1,53,120,'20180523','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180523.log',515,1,58,137,'20180523','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180523.log',1048585,1,19,19,'20180523','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180523.log',1048585,1,34,34,'20180523','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180523.log',1048585,1,51,51,'20180523','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180524.log',256,1,NULL,1,'20180524','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180524.log',259,1,NULL,5,'20180524','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180524.log',515,1,46,114,'20180524','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180524.log',515,1,56,135,'20180524','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180524.log',1048585,1,56,56,'20180524','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180525.log',256,1,NULL,1,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20180525.log',259,1,NULL,4,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180525.log',259,1,NULL,5,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20180525.log',259,1,NULL,6,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180525.log',515,1,14,51,'20180525','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20180525.log',515,1,20,53,'20180525','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180525.log',515,1,47,115,'20180525','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180525.log',515,1,50,117,'20180525','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180525.log',515,1,53,120,'20180525','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180525.log',515,1,56,135,'20180525','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20180525.log',1048585,1,14,14,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180525.log',1048585,1,20,20,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180525.log',1048585,1,47,47,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180525.log',1048585,1,56,56,'20180525','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180526.log',256,1,NULL,1,'20180526','201805',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20180526.log',259,1,NULL,4,'20180526','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180526.log',259,1,NULL,6,'20180526','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180526.log',515,1,20,53,'20180526','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180526.log',515,1,47,115,'20180526','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180526.log',515,1,50,117,'20180526','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180526.log',515,1,52,119,'20180526','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20180526.log',515,1,57,136,'20180526','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180526.log',515,1,58,137,'20180526','201805',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20180526.log',1048585,1,20,20,'20180526','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180526.log',1048585,1,52,52,'20180526','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180526.log',1048585,1,57,57,'20180526','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180526.log',1048585,1,76,76,'20180526','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180527.log',256,1,NULL,1,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20180527.log',259,1,NULL,4,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180527.log',259,1,NULL,5,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20180527.log',259,1,NULL,6,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',17,NULL,NULL,NULL,NULL),('usage_events_20180527.log',515,1,33,81,'20180527','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180527.log',515,1,49,116,'20180527','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180527.log',515,1,53,120,'20180527','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180527.log',515,1,54,133,'20180527','201805',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20180527.log',515,1,59,138,'20180527','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180527.log',1048585,1,33,33,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180527.log',1048585,1,49,49,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180527.log',1048585,1,50,50,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180527.log',1048585,1,54,54,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180527.log',1048585,1,76,76,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180527.log',1048585,1,77,77,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180527.log',1048585,1,78,78,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180527.log',1048585,1,81,81,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180527.log',1048585,1,83,83,'20180527','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180528.log',256,1,NULL,1,'20180528','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180528.log',515,1,28,68,'20180528','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20180528.log',515,1,32,80,'20180528','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20180528.log',515,1,56,135,'20180528','201805',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20180528.log',1048585,1,28,28,'20180528','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180528.log',1048585,1,52,52,'20180528','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20180528.log',1048585,1,57,57,'20180528','201805',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20180529.log',256,1,NULL,1,'20180529','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180529.log',515,1,32,80,'20180529','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20180529.log',515,1,50,117,'20180529','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180530.log',256,1,NULL,1,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20180530.log',259,1,NULL,1,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180530.log',259,1,NULL,2,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180530.log',259,1,NULL,3,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180530.log',259,1,NULL,4,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180530.log',259,1,NULL,5,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180530.log',259,1,NULL,6,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180530.log',259,1,NULL,7,'20180530','201805',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180530.log',515,1,53,120,'20180530','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180530.log',515,1,58,137,'20180530','201805',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180530.log',515,1,59,138,'20180530','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180531.log',256,1,NULL,1,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',19,NULL,NULL,NULL,NULL),('usage_events_20180531.log',259,1,NULL,4,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180531.log',259,1,NULL,6,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180531.log',259,1,NULL,7,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180531.log',515,1,53,120,'20180531','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180531.log',515,1,57,136,'20180531','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180531.log',515,1,58,137,'20180531','201805',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20180531.log',515,1,59,138,'20180531','201805',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180531.log',1048585,1,20,20,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180531.log',1048585,1,47,47,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180531.log',1048585,1,58,58,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180531.log',1048585,1,85,85,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180531.log',1048585,1,86,86,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180531.log',1048585,1,87,87,'20180531','201805',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180601.log',256,1,NULL,1,'20180601','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180601.log',515,1,4,19,'20180601','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20180601.log',515,1,5,30,'20180601','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20180601.log',515,1,40,94,'20180601','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20180601.log',515,1,47,115,'20180601','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180601.log',515,1,53,120,'20180601','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180601.log',515,1,58,137,'20180601','201806',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,33),('usage_events_20180601.log',1048585,1,5,5,'20180601','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180601.log',1048585,1,58,58,'20180601','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180602.log',515,1,20,53,'20180602','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180602.log',515,1,33,81,'20180602','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180602.log',515,1,53,120,'20180602','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180602.log',515,1,57,136,'20180602','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180602.log',1048585,1,20,20,'20180602','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180602.log',1048585,1,57,57,'20180602','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180602.log',1048585,1,59,59,'20180602','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180603.log',515,1,20,53,'20180603','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180603.log',515,1,32,80,'20180603','201806',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,17),('usage_events_20180603.log',515,1,53,120,'20180603','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180603.log',515,1,57,136,'20180603','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180603.log',515,1,58,137,'20180603','201806',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180603.log',1048585,1,56,56,'20180603','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180604.log',256,1,NULL,1,'20180604','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180604.log',515,1,57,136,'20180604','201806',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,32),('usage_events_20180604.log',515,1,58,137,'20180604','201806',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180604.log',1048585,1,34,34,'20180604','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180604.log',1048585,1,57,57,'20180604','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180605.log',515,1,34,82,'20180605','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180605.log',515,1,47,115,'20180605','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180605.log',515,1,58,137,'20180605','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180606.log',256,1,NULL,1,'20180606','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180606.log',515,1,46,114,'20180606','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180607.log',256,1,NULL,1,'20180607','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180607.log',515,1,4,19,'20180607','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20180607.log',515,1,34,82,'20180607','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180607.log',515,1,50,117,'20180607','201806',2,NULL,NULL,NULL,'ojs::counter',26,1,259,4,25),('usage_events_20180607.log',515,1,53,120,'20180607','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180607.log',515,1,58,137,'20180607','201806',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20180607.log',1048585,1,14,14,'20180607','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180607.log',1048585,1,91,91,'20180607','201806',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20180608.log',256,1,NULL,1,'20180608','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180608.log',259,1,NULL,7,'20180608','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180608.log',515,1,5,30,'20180608','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20180608.log',515,1,50,117,'20180608','201806',2,NULL,NULL,NULL,'ojs::counter',24,1,259,4,25),('usage_events_20180608.log',1048585,1,5,5,'20180608','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180608.log',1048585,1,51,51,'20180608','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180608.log',1048585,1,85,85,'20180608','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180608.log',1048585,1,91,91,'20180608','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180609.log',256,1,NULL,1,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20180609.log',259,1,NULL,1,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180609.log',259,1,NULL,2,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180609.log',259,1,NULL,6,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180609.log',515,1,6,31,'20180609','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20180609.log',515,1,14,51,'20180609','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20180609.log',515,1,32,80,'20180609','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20180609.log',515,1,50,117,'20180609','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180609.log',515,1,54,133,'20180609','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180609.log',515,1,56,135,'20180609','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20180609.log',1048585,1,6,6,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180609.log',1048585,1,28,28,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180609.log',1048585,1,78,78,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180609.log',1048585,1,85,85,'20180609','201806',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20180610.log',256,1,NULL,1,'20180610','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180610.log',515,1,57,136,'20180610','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180610.log',1048585,1,57,57,'20180610','201806',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20180612.log',515,1,50,117,'20180612','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180612.log',1048585,1,14,14,'20180612','201806',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20180612.log',1048585,1,85,85,'20180612','201806',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20180611.log',256,1,NULL,1,'20180611','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180611.log',259,1,NULL,2,'20180611','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180611.log',259,1,NULL,3,'20180611','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180611.log',259,1,NULL,6,'20180611','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180611.log',259,1,NULL,7,'20180611','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180611.log',515,1,19,52,'20180611','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20180611.log',1048585,1,14,14,'20180611','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180611.log',1048585,1,85,85,'20180611','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180613.log',256,1,NULL,1,'20180613','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180613.log',515,1,58,137,'20180613','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180614.log',259,1,NULL,7,'20180614','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180614.log',1048585,1,85,85,'20180614','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180615.log',515,1,58,137,'20180615','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180616.log',256,1,NULL,1,'20180616','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180616.log',515,1,50,117,'20180616','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180617.log',515,1,47,115,'20180617','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180617.log',1048585,1,35,35,'20180617','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180618.log',259,1,NULL,6,'20180618','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180618.log',515,1,53,120,'20180618','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180618.log',1048585,1,59,59,'20180618','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180618.log',1048585,1,78,78,'20180618','201806',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20180619.log',256,1,NULL,1,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20180619.log',259,1,NULL,1,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180619.log',259,1,NULL,2,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180619.log',259,1,NULL,3,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180619.log',259,1,NULL,4,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180619.log',259,1,NULL,5,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180619.log',259,1,NULL,6,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180619.log',259,1,NULL,7,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180619.log',515,1,1,3,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,1),('usage_events_20180619.log',515,1,4,19,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20180619.log',515,1,5,30,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20180619.log',515,1,6,31,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20180619.log',515,1,7,32,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20180619.log',515,1,8,33,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20180619.log',515,1,14,51,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20180619.log',515,1,19,52,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20180619.log',515,1,20,53,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180619.log',515,1,21,54,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,12),('usage_events_20180619.log',515,1,22,57,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20180619.log',515,1,33,81,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180619.log',515,1,40,94,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20180619.log',515,1,47,115,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180619.log',515,1,50,117,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180619.log',515,1,54,133,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180619.log',515,1,58,137,'20180619','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180619.log',1048585,1,1,1,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180619.log',1048585,1,4,4,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180619.log',1048585,1,5,5,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180619.log',1048585,1,6,6,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180619.log',1048585,1,7,7,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180619.log',1048585,1,8,8,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180619.log',1048585,1,14,14,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180619.log',1048585,1,19,19,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180619.log',1048585,1,20,20,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180619.log',1048585,1,21,21,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180619.log',1048585,1,22,22,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180619.log',1048585,1,28,28,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180619.log',1048585,1,31,31,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180619.log',1048585,1,32,32,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180619.log',1048585,1,33,33,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180619.log',1048585,1,34,34,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180619.log',1048585,1,35,35,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180619.log',1048585,1,40,40,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180619.log',1048585,1,46,46,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180619.log',1048585,1,47,47,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180619.log',1048585,1,49,49,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180619.log',1048585,1,50,50,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180619.log',1048585,1,51,51,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180619.log',1048585,1,52,52,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180619.log',1048585,1,53,53,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180619.log',1048585,1,54,54,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180619.log',1048585,1,55,55,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180619.log',1048585,1,56,56,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180619.log',1048585,1,57,57,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180619.log',1048585,1,58,58,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180619.log',1048585,1,59,59,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180619.log',1048585,1,74,74,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180619.log',1048585,1,76,76,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,77,77,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,78,78,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,79,79,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,81,81,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,82,82,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,83,83,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,84,84,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180619.log',1048585,1,85,85,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180619.log',1048585,1,86,86,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180619.log',1048585,1,87,87,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180619.log',1048585,1,88,88,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180619.log',1048585,1,89,89,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180619.log',1048585,1,90,90,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180619.log',1048585,1,91,91,'20180619','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180620.log',1048585,1,57,57,'20180620','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180621.log',515,1,20,53,'20180621','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180621.log',515,1,54,133,'20180621','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180621.log',515,1,58,137,'20180621','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180622.log',256,1,NULL,1,'20180622','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180622.log',515,1,58,137,'20180622','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180623.log',515,1,20,53,'20180623','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180623.log',515,1,58,137,'20180623','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180624.log',256,1,NULL,1,'20180624','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180624.log',515,1,22,57,'20180624','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180624.log',515,1,35,83,'20180624','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20180624.log',515,1,58,137,'20180624','201806',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180624.log',1048585,1,8,8,'20180624','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180625.log',256,1,NULL,1,'20180625','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180625.log',515,1,34,82,'20180625','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180625.log',1048585,1,34,34,'20180625','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180626.log',256,1,NULL,1,'20180626','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180626.log',515,1,56,135,'20180626','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180626.log',515,1,58,137,'20180626','201806',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20180626.log',1048585,1,58,58,'20180626','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180626.log',1048585,1,90,90,'20180626','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180627.log',256,1,NULL,1,'20180627','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180627.log',259,1,NULL,6,'20180627','201806',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180627.log',259,1,NULL,7,'20180627','201806',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180627.log',515,1,20,53,'20180627','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180627.log',515,1,50,117,'20180627','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180627.log',515,1,57,136,'20180627','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180627.log',1048585,1,20,20,'20180627','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180627.log',1048585,1,78,78,'20180627','201806',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20180627.log',1048585,1,90,90,'20180627','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180628.log',256,1,NULL,1,'20180628','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180628.log',259,1,NULL,7,'20180628','201806',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180628.log',515,1,47,115,'20180628','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180628.log',515,1,53,120,'20180628','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180628.log',515,1,57,136,'20180628','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180628.log',1048585,1,8,8,'20180628','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180628.log',1048585,1,20,20,'20180628','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180628.log',1048585,1,52,52,'20180628','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180628.log',1048585,1,87,87,'20180628','201806',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20180629.log',515,1,7,32,'20180629','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20180629.log',515,1,51,118,'20180629','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20180629.log',515,1,53,120,'20180629','201806',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180629.log',1048585,1,51,51,'20180629','201806',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180630.log',515,1,8,33,'20180630','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180630.log',515,1,58,137,'20180630','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180630.log',515,1,59,138,'20180630','201806',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180701.log',256,1,NULL,1,'20180701','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180701.log',515,1,7,32,'20180701','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180701.log',515,1,57,136,'20180701','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180701.log',1048585,1,57,57,'20180701','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180702.log',515,1,22,57,'20180702','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180702.log',515,1,34,82,'20180702','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180702.log',515,1,49,116,'20180702','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180703.log',256,1,NULL,1,'20180703','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180703.log',259,1,NULL,4,'20180703','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180703.log',259,1,NULL,5,'20180703','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180703.log',259,1,NULL,6,'20180703','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180703.log',259,1,NULL,7,'20180703','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180703.log',515,1,32,80,'20180703','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20180703.log',515,1,54,133,'20180703','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180703.log',515,1,56,135,'20180703','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20180703.log',1048585,1,85,85,'20180703','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20180704.log',256,1,NULL,1,'20180704','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180704.log',515,1,46,114,'20180704','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20180704.log',515,1,49,116,'20180704','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20180704.log',515,1,58,137,'20180704','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180704.log',1048585,1,49,49,'20180704','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180705.log',515,1,20,53,'20180705','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180705.log',515,1,49,116,'20180705','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180705.log',515,1,53,120,'20180705','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180705.log',515,1,57,136,'20180705','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180705.log',515,1,58,137,'20180705','201807',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20180705.log',515,1,59,138,'20180705','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180705.log',1048585,1,57,57,'20180705','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180705.log',1048585,1,59,59,'20180705','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180706.log',256,1,NULL,1,'20180706','201807',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180706.log',259,1,NULL,4,'20180706','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180706.log',259,1,NULL,6,'20180706','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180706.log',515,1,47,115,'20180706','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180706.log',515,1,53,120,'20180706','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180706.log',515,1,54,133,'20180706','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180706.log',1048585,1,34,34,'20180706','201807',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180706.log',1048585,1,47,47,'20180706','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180706.log',1048585,1,79,79,'20180706','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180706.log',1048585,1,91,91,'20180706','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180707.log',256,1,NULL,1,'20180707','201807',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180707.log',515,1,22,57,'20180707','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20180707.log',515,1,47,115,'20180707','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180707.log',515,1,49,116,'20180707','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180707.log',515,1,58,137,'20180707','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180707.log',1048585,1,57,57,'20180707','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180707.log',1048585,1,58,58,'20180707','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180708.log',256,1,NULL,1,'20180708','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180708.log',515,1,28,68,'20180708','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20180708.log',515,1,46,114,'20180708','201807',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,22),('usage_events_20180709.log',256,1,NULL,1,'20180709','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180709.log',515,1,46,114,'20180709','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180709.log',1048585,1,86,86,'20180709','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180710.log',256,1,NULL,1,'20180710','201807',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180710.log',515,1,14,51,'20180710','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20180710.log',515,1,20,53,'20180710','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180710.log',515,1,34,82,'20180710','201807',2,NULL,NULL,NULL,'ojs::counter',4,1,259,3,19),('usage_events_20180710.log',515,1,53,120,'20180710','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180711.log',256,1,NULL,1,'20180711','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180711.log',515,1,20,53,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180711.log',515,1,34,82,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180711.log',515,1,46,114,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,22),('usage_events_20180711.log',515,1,47,115,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180711.log',515,1,50,117,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180711.log',515,1,54,133,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180711.log',515,1,56,135,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180711.log',515,1,57,136,'20180711','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20180711.log',1048585,1,20,20,'20180711','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180711.log',1048585,1,28,28,'20180711','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180712.log',515,1,20,53,'20180712','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180712.log',515,1,22,57,'20180712','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180712.log',515,1,49,116,'20180712','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180712.log',515,1,53,120,'20180712','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180712.log',515,1,54,133,'20180712','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180712.log',515,1,58,137,'20180712','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180712.log',1048585,1,58,58,'20180712','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180712.log',1048585,1,59,59,'20180712','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180713.log',256,1,NULL,1,'20180713','201807',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20180713.log',259,1,NULL,7,'20180713','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180713.log',515,1,8,33,'20180713','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180713.log',515,1,31,79,'20180713','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20180713.log',1048585,1,8,8,'20180713','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180713.log',1048585,1,59,59,'20180713','201807',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20180713.log',1048585,1,86,86,'20180713','201807',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20180714.log',515,1,8,33,'20180714','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180714.log',1048585,1,8,8,'20180714','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180714.log',1048585,1,21,21,'20180714','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180715.log',515,1,59,138,'20180715','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180716.log',256,1,NULL,1,'20180716','201807',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180716.log',259,1,NULL,6,'20180716','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180716.log',515,1,20,53,'20180716','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180716.log',515,1,57,136,'20180716','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20180716.log',1048585,1,4,4,'20180716','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180716.log',1048585,1,79,79,'20180716','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20180717.log',259,1,NULL,5,'20180717','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180717.log',515,1,53,120,'20180717','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180717.log',1048585,1,52,52,'20180717','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180717.log',1048585,1,57,57,'20180717','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180718.log',256,1,NULL,1,'20180718','201807',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20180718.log',515,1,54,133,'20180718','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180718.log',515,1,58,137,'20180718','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180718.log',1048585,1,35,35,'20180718','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180718.log',1048585,1,52,52,'20180718','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180718.log',1048585,1,58,58,'20180718','201807',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180719.log',256,1,NULL,1,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20180719.log',259,1,NULL,5,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180719.log',515,1,20,53,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180719.log',515,1,34,82,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180719.log',515,1,53,120,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180719.log',515,1,54,133,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180719.log',515,1,55,134,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20180719.log',515,1,56,135,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180719.log',515,1,57,136,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180719.log',515,1,58,137,'20180719','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180719.log',1048585,1,54,54,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180719.log',1048585,1,55,55,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180719.log',1048585,1,56,56,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180719.log',1048585,1,85,85,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180719.log',1048585,1,90,90,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180719.log',1048585,1,91,91,'20180719','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180720.log',256,1,NULL,1,'20180720','201807',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180720.log',515,1,7,32,'20180720','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180720.log',515,1,34,82,'20180720','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,19),('usage_events_20180720.log',515,1,47,115,'20180720','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,23),('usage_events_20180720.log',515,1,49,116,'20180720','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180720.log',1048585,1,57,57,'20180720','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180720.log',1048585,1,90,90,'20180720','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180721.log',515,1,22,57,'20180721','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180721.log',515,1,56,135,'20180721','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180721.log',1048585,1,50,50,'20180721','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180722.log',256,1,NULL,1,'20180722','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180722.log',515,1,34,82,'20180722','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180722.log',515,1,53,120,'20180722','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180722.log',515,1,56,135,'20180722','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180722.log',515,1,58,137,'20180722','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180722.log',1048585,1,56,56,'20180722','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180723.log',256,1,NULL,1,'20180723','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180723.log',259,1,NULL,5,'20180723','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180723.log',515,1,49,116,'20180723','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180723.log',515,1,53,120,'20180723','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20180723.log',515,1,54,133,'20180723','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180723.log',515,1,56,135,'20180723','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180723.log',1048585,1,54,54,'20180723','201807',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180723.log',1048585,1,59,59,'20180723','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180724.log',259,1,NULL,3,'20180724','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180724.log',259,1,NULL,7,'20180724','201807',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180724.log',515,1,5,30,'20180724','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20180724.log',515,1,14,51,'20180724','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20180724.log',515,1,50,117,'20180724','201807',2,NULL,NULL,NULL,'ojs::counter',29,1,259,4,25),('usage_events_20180724.log',515,1,52,119,'20180724','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20180724.log',1048585,1,5,5,'20180724','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180724.log',1048585,1,14,14,'20180724','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20180724.log',1048585,1,28,28,'20180724','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180724.log',1048585,1,85,85,'20180724','201807',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20180725.log',256,1,NULL,1,'20180725','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180725.log',515,1,33,81,'20180725','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180725.log',515,1,35,83,'20180725','201807',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,20),('usage_events_20180725.log',515,1,49,116,'20180725','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180725.log',515,1,50,117,'20180725','201807',2,NULL,NULL,NULL,'ojs::counter',16,1,259,4,25),('usage_events_20180725.log',515,1,51,118,'20180725','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20180725.log',515,1,53,120,'20180725','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180725.log',515,1,58,137,'20180725','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180726.log',256,1,NULL,1,'20180726','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180726.log',259,1,NULL,6,'20180726','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180726.log',259,1,NULL,7,'20180726','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180726.log',515,1,50,117,'20180726','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180726.log',1048585,1,19,19,'20180726','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180726.log',1048585,1,78,78,'20180726','201807',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,6,NULL),('usage_events_20180728.log',256,1,NULL,1,'20180728','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180728.log',515,1,49,116,'20180728','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180728.log',515,1,53,120,'20180728','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180729.log',259,1,NULL,6,'20180729','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180729.log',515,1,22,57,'20180729','201807',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,13),('usage_events_20180729.log',515,1,47,115,'20180729','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20180729.log',1048585,1,78,78,'20180729','201807',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20180730.log',256,1,NULL,1,'20180730','201807',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180730.log',515,1,34,82,'20180730','201807',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20180730.log',515,1,50,117,'20180730','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180730.log',515,1,54,133,'20180730','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180730.log',515,1,58,137,'20180730','201807',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180730.log',1048585,1,85,85,'20180730','201807',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180802.log',256,1,NULL,1,'20180802','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180802.log',515,1,22,57,'20180802','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180802.log',515,1,34,82,'20180802','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180802.log',515,1,49,116,'20180802','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180802.log',515,1,57,136,'20180802','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20180802.log',1048585,1,49,49,'20180802','201808',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20180803.log',515,1,34,82,'20180803','201808',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,19),('usage_events_20180803.log',515,1,50,117,'20180803','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180803.log',515,1,53,120,'20180803','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180803.log',1048585,1,85,85,'20180803','201808',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20180804.log',256,1,NULL,1,'20180804','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180804.log',515,1,35,83,'20180804','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20180805.log',515,1,58,137,'20180805','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180805.log',1048585,1,8,8,'20180805','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180806.log',256,1,NULL,1,'20180806','201808',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20180806.log',259,1,NULL,6,'20180806','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180806.log',259,1,NULL,7,'20180806','201808',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20180806.log',515,1,20,53,'20180806','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180806.log',515,1,34,82,'20180806','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20180806.log',515,1,35,83,'20180806','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20180806.log',515,1,46,114,'20180806','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180806.log',515,1,53,120,'20180806','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180806.log',1048585,1,35,35,'20180806','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180806.log',1048585,1,85,85,'20180806','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180806.log',1048585,1,86,86,'20180806','201808',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20180807.log',256,1,NULL,1,'20180807','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180807.log',515,1,21,54,'20180807','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,12),('usage_events_20180807.log',515,1,54,133,'20180807','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180807.log',1048585,1,78,78,'20180807','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',256,1,NULL,1,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180813.log',259,1,NULL,1,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180813.log',259,1,NULL,3,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180813.log',259,1,NULL,4,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180813.log',259,1,NULL,5,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180813.log',259,1,NULL,6,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180813.log',259,1,NULL,7,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180813.log',515,1,1,3,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20180813.log',515,1,4,19,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20180813.log',515,1,5,30,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20180813.log',515,1,6,31,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20180813.log',515,1,7,32,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180813.log',515,1,8,33,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180813.log',515,1,22,57,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180813.log',515,1,40,94,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20180813.log',515,1,54,133,'20180813','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180813.log',1048585,1,1,1,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180813.log',1048585,1,4,4,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180813.log',1048585,1,5,5,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180813.log',1048585,1,6,6,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180813.log',1048585,1,7,7,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180813.log',1048585,1,8,8,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180813.log',1048585,1,28,28,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180813.log',1048585,1,31,31,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180813.log',1048585,1,32,32,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180813.log',1048585,1,33,33,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180813.log',1048585,1,40,40,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180813.log',1048585,1,46,46,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180813.log',1048585,1,47,47,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180813.log',1048585,1,49,49,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180813.log',1048585,1,50,50,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180813.log',1048585,1,51,51,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180813.log',1048585,1,52,52,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180813.log',1048585,1,53,53,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180813.log',1048585,1,54,54,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180813.log',1048585,1,55,55,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180813.log',1048585,1,56,56,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180813.log',1048585,1,57,57,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180813.log',1048585,1,58,58,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180813.log',1048585,1,59,59,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180813.log',1048585,1,74,74,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180813.log',1048585,1,76,76,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,77,77,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,78,78,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,79,79,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,81,81,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,82,82,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,83,83,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,84,84,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180813.log',1048585,1,85,85,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180813.log',1048585,1,86,86,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180813.log',1048585,1,87,87,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180813.log',1048585,1,88,88,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180813.log',1048585,1,89,89,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180813.log',1048585,1,90,90,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180813.log',1048585,1,91,91,'20180813','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180828.log',256,1,NULL,1,'20180828','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180828.log',515,1,7,32,'20180828','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180828.log',515,1,8,33,'20180828','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20180828.log',515,1,53,120,'20180828','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180828.log',1048585,1,8,8,'20180828','201808',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20180829.log',259,1,NULL,3,'20180829','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180829.log',515,1,34,82,'20180829','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180829.log',515,1,49,116,'20180829','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180829.log',515,1,50,117,'20180829','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180829.log',515,1,54,133,'20180829','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180829.log',515,1,56,135,'20180829','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180829.log',1048585,1,20,20,'20180829','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180829.log',1048585,1,35,35,'20180829','201808',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20180829.log',1048585,1,54,54,'20180829','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180829.log',1048585,1,57,57,'20180829','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180830.log',256,1,NULL,1,'20180830','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180830.log',515,1,21,54,'20180830','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20180830.log',515,1,53,120,'20180830','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180830.log',515,1,57,136,'20180830','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180830.log',515,1,58,137,'20180830','201808',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180830.log',1048585,1,14,14,'20180830','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180830.log',1048585,1,58,58,'20180830','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180831.log',515,1,7,32,'20180831','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180831.log',515,1,34,82,'20180831','201808',2,NULL,NULL,NULL,'ojs::counter',5,1,259,3,19),('usage_events_20180831.log',515,1,56,135,'20180831','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180831.log',515,1,58,137,'20180831','201808',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180831.log',1048585,1,59,59,'20180831','201808',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180901.log',259,1,NULL,6,'20180901','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180901.log',515,1,22,57,'20180901','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180901.log',515,1,40,94,'20180901','201809',2,NULL,NULL,NULL,'ojs::counter',4,1,259,1,21),('usage_events_20180901.log',1048585,1,78,78,'20180901','201809',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20180902.log',515,1,4,19,'20180902','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20180902.log',515,1,56,135,'20180902','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180902.log',515,1,58,137,'20180902','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180903.log',515,1,7,32,'20180903','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180903.log',515,1,22,57,'20180903','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20180903.log',515,1,34,82,'20180903','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180903.log',515,1,49,116,'20180903','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180903.log',515,1,54,133,'20180903','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180903.log',515,1,58,137,'20180903','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180903.log',1048585,1,7,7,'20180903','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180903.log',1048585,1,59,59,'20180903','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180904.log',256,1,NULL,1,'20180904','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180904.log',515,1,51,118,'20180904','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20180904.log',515,1,57,136,'20180904','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180904.log',1048585,1,51,51,'20180904','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180904.log',1048585,1,57,57,'20180904','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180905.log',515,1,58,137,'20180905','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180905.log',1048585,1,56,56,'20180905','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180905.log',1048585,1,78,78,'20180905','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180906.log',256,1,NULL,1,'20180906','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180906.log',515,1,4,19,'20180906','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20180906.log',515,1,51,118,'20180906','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20180906.log',515,1,57,136,'20180906','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180906.log',515,1,58,137,'20180906','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180906.log',1048585,1,51,51,'20180906','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180906.log',1048585,1,57,57,'20180906','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180907.log',515,1,31,79,'20180907','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20180907.log',515,1,46,114,'20180907','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20180907.log',515,1,47,115,'20180907','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180907.log',1048585,1,20,20,'20180907','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180907.log',1048585,1,78,78,'20180907','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180908.log',259,1,NULL,6,'20180908','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180908.log',515,1,47,115,'20180908','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180908.log',515,1,58,137,'20180908','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180908.log',1048585,1,78,78,'20180908','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180909.log',256,1,NULL,1,'20180909','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180909.log',515,1,19,52,'20180909','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20180909.log',1048585,1,19,19,'20180909','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180910.log',515,1,7,32,'20180910','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180910.log',515,1,49,116,'20180910','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180910.log',515,1,50,117,'20180910','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180910.log',515,1,56,135,'20180910','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180910.log',515,1,57,136,'20180910','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180910.log',515,1,58,137,'20180910','201809',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,33),('usage_events_20180910.log',1048585,1,8,8,'20180910','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180910.log',1048585,1,14,14,'20180910','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180910.log',1048585,1,57,57,'20180910','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180910.log',1048585,1,85,85,'20180910','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180911.log',256,1,NULL,1,'20180911','201809',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20180911.log',259,1,NULL,7,'20180911','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180911.log',515,1,34,82,'20180911','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180911.log',515,1,46,114,'20180911','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180911.log',515,1,58,137,'20180911','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180911.log',515,1,59,138,'20180911','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20180911.log',1048585,1,46,46,'20180911','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180911.log',1048585,1,85,85,'20180911','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180911.log',1048585,1,86,86,'20180911','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180912.log',256,1,NULL,1,'20180912','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180912.log',515,1,4,19,'20180912','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20180912.log',515,1,8,33,'20180912','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180912.log',515,1,40,94,'20180912','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20180912.log',515,1,53,120,'20180912','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180912.log',1048585,1,85,85,'20180912','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180913.log',256,1,NULL,1,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',16,NULL,NULL,NULL,NULL),('usage_events_20180913.log',259,1,NULL,6,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180913.log',259,1,NULL,7,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20180913.log',515,1,20,53,'20180913','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180913.log',515,1,47,115,'20180913','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180913.log',515,1,56,135,'20180913','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20180913.log',515,1,58,137,'20180913','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180913.log',515,1,59,138,'20180913','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180913.log',1048585,1,47,47,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180913.log',1048585,1,59,59,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180913.log',1048585,1,85,85,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20180913.log',1048585,1,86,86,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180913.log',1048585,1,90,90,'20180913','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180914.log',256,1,NULL,1,'20180914','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180914.log',515,1,46,114,'20180914','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180914.log',515,1,51,118,'20180914','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20180914.log',515,1,56,135,'20180914','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180915.log',515,1,50,117,'20180915','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180915.log',515,1,52,119,'20180915','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,27),('usage_events_20180915.log',515,1,54,133,'20180915','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180915.log',515,1,59,138,'20180915','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20180915.log',1048585,1,52,52,'20180915','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180916.log',259,1,NULL,6,'20180916','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180916.log',515,1,22,57,'20180916','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20180916.log',515,1,28,68,'20180916','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20180916.log',515,1,34,82,'20180916','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180916.log',515,1,47,115,'20180916','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180916.log',515,1,49,116,'20180916','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20180916.log',515,1,58,137,'20180916','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180916.log',1048585,1,7,7,'20180916','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180916.log',1048585,1,14,14,'20180916','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180916.log',1048585,1,49,49,'20180916','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180916.log',1048585,1,78,78,'20180916','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180916.log',1048585,1,85,85,'20180916','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20180917.log',515,1,34,82,'20180917','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180917.log',515,1,49,116,'20180917','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180917.log',515,1,53,120,'20180917','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20180917.log',515,1,56,135,'20180917','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180917.log',515,1,58,137,'20180917','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180917.log',1048585,1,34,34,'20180917','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180917.log',1048585,1,58,58,'20180917','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180918.log',259,1,NULL,2,'20180918','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180918.log',515,1,20,53,'20180918','201809',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,11),('usage_events_20180918.log',515,1,49,116,'20180918','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180918.log',515,1,54,133,'20180918','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180918.log',1048585,1,20,20,'20180918','201809',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20180918.log',1048585,1,28,28,'20180918','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180918.log',1048585,1,54,54,'20180918','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180918.log',1048585,1,56,56,'20180918','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180919.log',256,1,NULL,1,'20180919','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180919.log',515,1,8,33,'20180919','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180919.log',515,1,20,53,'20180919','201809',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,11),('usage_events_20180919.log',515,1,31,79,'20180919','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20180919.log',515,1,34,82,'20180919','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20180919.log',515,1,58,137,'20180919','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180919.log',1048585,1,49,49,'20180919','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180920.log',256,1,NULL,1,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20180920.log',259,1,NULL,6,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180920.log',259,1,NULL,7,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180920.log',515,1,20,53,'20180920','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180920.log',515,1,22,57,'20180920','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180920.log',515,1,34,82,'20180920','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180920.log',515,1,53,120,'20180920','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180920.log',515,1,54,133,'20180920','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20180920.log',515,1,57,136,'20180920','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180920.log',515,1,58,137,'20180920','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180920.log',1048585,1,5,5,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180920.log',1048585,1,20,20,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20180920.log',1048585,1,54,54,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180920.log',1048585,1,59,59,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180920.log',1048585,1,78,78,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20180920.log',1048585,1,79,79,'20180920','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180921.log',256,1,NULL,1,'20180921','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20180921.log',259,1,NULL,7,'20180921','201809',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180921.log',515,1,4,19,'20180921','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20180921.log',515,1,5,30,'20180921','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20180921.log',515,1,14,51,'20180921','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20180921.log',515,1,22,57,'20180921','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20180921.log',515,1,49,116,'20180921','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180921.log',1048585,1,14,14,'20180921','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20180921.log',1048585,1,40,40,'20180921','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180921.log',1048585,1,57,57,'20180921','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180921.log',1048585,1,78,78,'20180921','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180921.log',1048585,1,85,85,'20180921','201809',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20180922.log',515,1,7,32,'20180922','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180922.log',515,1,20,53,'20180922','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180922.log',515,1,22,57,'20180922','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180922.log',515,1,54,133,'20180922','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180922.log',515,1,58,137,'20180922','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20180922.log',1048585,1,54,54,'20180922','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180923.log',256,1,NULL,1,'20180923','201809',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20180923.log',515,1,34,82,'20180923','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20180923.log',515,1,49,116,'20180923','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20180923.log',515,1,52,119,'20180923','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,27),('usage_events_20180923.log',515,1,54,133,'20180923','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180923.log',1048585,1,49,49,'20180923','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180923.log',1048585,1,52,52,'20180923','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20180923.log',1048585,1,54,54,'20180923','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180923.log',1048585,1,85,85,'20180923','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180924.log',256,1,NULL,1,'20180924','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180924.log',259,1,NULL,1,'20180924','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180924.log',515,1,33,81,'20180924','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180924.log',515,1,40,94,'20180924','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20180924.log',515,1,49,116,'20180924','201809',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20180924.log',515,1,50,117,'20180924','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180924.log',515,1,54,133,'20180924','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20180924.log',1048585,1,40,40,'20180924','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20180924.log',1048585,1,78,78,'20180924','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20180925.log',256,1,NULL,1,'20180925','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180925.log',259,1,NULL,5,'20180925','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180925.log',515,1,7,32,'20180925','201809',2,NULL,NULL,NULL,'ojs::counter',9,1,259,1,6),('usage_events_20180925.log',515,1,20,53,'20180925','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180925.log',515,1,34,82,'20180925','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180925.log',515,1,53,120,'20180925','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20180925.log',515,1,59,138,'20180925','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20180925.log',1048585,1,7,7,'20180925','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20180925.log',1048585,1,31,31,'20180925','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180925.log',1048585,1,50,50,'20180925','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180925.log',1048585,1,59,59,'20180925','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180925.log',1048585,1,82,82,'20180925','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180926.log',256,1,NULL,1,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180926.log',259,1,NULL,7,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180926.log',515,1,4,19,'20180926','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20180926.log',515,1,34,82,'20180926','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20180926.log',515,1,35,83,'20180926','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20180926.log',515,1,40,94,'20180926','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20180926.log',515,1,46,114,'20180926','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180926.log',515,1,56,135,'20180926','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20180926.log',515,1,58,137,'20180926','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20180926.log',1048585,1,4,4,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180926.log',1048585,1,34,34,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180926.log',1048585,1,40,40,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180926.log',1048585,1,46,46,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180926.log',1048585,1,56,56,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180926.log',1048585,1,90,90,'20180926','201809',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20180927.log',256,1,NULL,1,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20180927.log',259,1,NULL,1,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180927.log',259,1,NULL,2,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180927.log',259,1,NULL,3,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180927.log',259,1,NULL,4,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180927.log',259,1,NULL,5,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180927.log',259,1,NULL,6,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180927.log',259,1,NULL,7,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180927.log',515,1,1,3,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20180927.log',515,1,4,19,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20180927.log',515,1,5,30,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20180927.log',515,1,6,31,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20180927.log',515,1,7,32,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180927.log',515,1,8,33,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20180927.log',515,1,14,51,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20180927.log',515,1,19,52,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20180927.log',515,1,20,53,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20180927.log',515,1,21,54,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20180927.log',515,1,22,57,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20180927.log',515,1,28,68,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20180927.log',515,1,31,79,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20180927.log',515,1,32,80,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20180927.log',515,1,33,81,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20180927.log',515,1,34,82,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,19),('usage_events_20180927.log',515,1,35,83,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20180927.log',515,1,40,94,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20180927.log',515,1,46,114,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180927.log',515,1,47,115,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20180927.log',515,1,49,116,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20180927.log',515,1,50,117,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20180927.log',515,1,51,118,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20180927.log',515,1,52,119,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20180927.log',515,1,53,120,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20180927.log',515,1,54,133,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180927.log',515,1,55,134,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20180927.log',515,1,56,135,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20180927.log',515,1,57,136,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20180927.log',515,1,58,137,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180927.log',515,1,59,138,'20180927','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20180927.log',1048585,1,1,1,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180927.log',1048585,1,4,4,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180927.log',1048585,1,5,5,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180927.log',1048585,1,6,6,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180927.log',1048585,1,7,7,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180927.log',1048585,1,8,8,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20180927.log',1048585,1,14,14,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180927.log',1048585,1,19,19,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180927.log',1048585,1,20,20,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180927.log',1048585,1,21,21,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180927.log',1048585,1,22,22,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20180927.log',1048585,1,28,28,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180927.log',1048585,1,31,31,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180927.log',1048585,1,32,32,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180927.log',1048585,1,33,33,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180927.log',1048585,1,34,34,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180927.log',1048585,1,35,35,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180927.log',1048585,1,40,40,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180927.log',1048585,1,46,46,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180927.log',1048585,1,47,47,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180927.log',1048585,1,49,49,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180927.log',1048585,1,50,50,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180927.log',1048585,1,51,51,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180927.log',1048585,1,52,52,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180927.log',1048585,1,53,53,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180927.log',1048585,1,54,54,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180927.log',1048585,1,55,55,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180927.log',1048585,1,56,56,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20180927.log',1048585,1,57,57,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180927.log',1048585,1,58,58,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180927.log',1048585,1,59,59,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180927.log',1048585,1,74,74,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180927.log',1048585,1,76,76,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,77,77,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,78,78,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,79,79,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,81,81,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,82,82,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,83,83,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,84,84,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180927.log',1048585,1,85,85,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20180927.log',1048585,1,86,86,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180927.log',1048585,1,87,87,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180927.log',1048585,1,88,88,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180927.log',1048585,1,89,89,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180927.log',1048585,1,90,90,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180927.log',1048585,1,91,91,'20180927','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20180928.log',256,1,NULL,1,'20180928','201809',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20180928.log',515,1,6,31,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20180928.log',515,1,20,53,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20180928.log',515,1,22,57,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20180928.log',515,1,46,114,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20180928.log',515,1,49,116,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20180928.log',515,1,54,133,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20180928.log',515,1,56,135,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20180928.log',515,1,58,137,'20180928','201809',2,NULL,NULL,NULL,'ojs::counter',8,1,259,5,33),('usage_events_20180928.log',1048585,1,6,6,'20180928','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180928.log',1048585,1,49,49,'20180928','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20180928.log',1048585,1,58,58,'20180928','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180928.log',1048585,1,84,84,'20180928','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180929.log',256,1,NULL,1,'20180929','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20180929.log',515,1,7,32,'20180929','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20180929.log',515,1,22,57,'20180929','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20180929.log',515,1,58,137,'20180929','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180929.log',1048585,1,7,7,'20180929','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20180929.log',1048585,1,32,32,'20180929','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20180929.log',1048585,1,58,58,'20180929','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20180929.log',1048585,1,78,78,'20180929','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20180930.log',256,1,NULL,1,'20180930','201809',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20180930.log',515,1,5,30,'20180930','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,4),('usage_events_20180930.log',515,1,22,57,'20180930','201809',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,13),('usage_events_20180930.log',515,1,34,82,'20180930','201809',2,NULL,NULL,NULL,'ojs::counter',4,1,259,3,19),('usage_events_20180930.log',515,1,35,83,'20180930','201809',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20180930.log',515,1,49,116,'20180930','201809',2,NULL,NULL,NULL,'ojs::counter',18,1,259,4,24),('usage_events_20180930.log',515,1,58,137,'20180930','201809',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20180930.log',1048585,1,34,34,'20180930','201809',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,3,NULL),('usage_events_20180930.log',1048585,1,78,78,'20180930','201809',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20180930.log',1048585,1,85,85,'20180930','201809',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181001.log',256,1,NULL,1,'20181001','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181001.log',259,1,NULL,1,'20181001','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181001.log',515,1,5,30,'20181001','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20181001.log',515,1,46,114,'20181001','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20181001.log',515,1,49,116,'20181001','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20181001.log',515,1,50,117,'20181001','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181001.log',515,1,54,133,'20181001','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181001.log',515,1,58,137,'20181001','201810',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20181001.log',1048585,1,5,5,'20181001','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181001.log',1048585,1,28,28,'20181001','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181001.log',1048585,1,54,54,'20181001','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181001.log',1048585,1,86,86,'20181001','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181002.log',256,1,NULL,1,'20181002','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181002.log',515,1,22,57,'20181002','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20181002.log',515,1,53,120,'20181002','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20181002.log',515,1,57,136,'20181002','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,32),('usage_events_20181002.log',515,1,58,137,'20181002','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181002.log',1048585,1,57,57,'20181002','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181002.log',1048585,1,58,58,'20181002','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181002.log',1048585,1,59,59,'20181002','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181003.log',256,1,NULL,1,'20181003','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181003.log',259,1,NULL,6,'20181003','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181003.log',515,1,20,53,'20181003','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181003.log',515,1,58,137,'20181003','201810',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20181003.log',1048585,1,20,20,'20181003','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181003.log',1048585,1,31,31,'20181003','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181003.log',1048585,1,77,77,'20181003','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181003.log',1048585,1,78,78,'20181003','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181004.log',515,1,22,57,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20181004.log',515,1,31,79,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20181004.log',515,1,34,82,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20181004.log',515,1,40,94,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20181004.log',515,1,46,114,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20181004.log',515,1,49,116,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20181004.log',515,1,51,118,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20181004.log',515,1,56,135,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181004.log',515,1,57,136,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20181004.log',515,1,58,137,'20181004','201810',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20181004.log',1048585,1,46,46,'20181004','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181004.log',1048585,1,51,51,'20181004','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181004.log',1048585,1,59,59,'20181004','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181005.log',256,1,NULL,1,'20181005','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181005.log',259,1,NULL,7,'20181005','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181005.log',515,1,8,33,'20181005','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20181005.log',515,1,46,114,'20181005','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20181005.log',1048585,1,8,8,'20181005','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181005.log',1048585,1,58,58,'20181005','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181005.log',1048585,1,85,85,'20181005','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181005.log',1048585,1,86,86,'20181005','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181006.log',515,1,19,52,'20181006','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20181006.log',515,1,49,116,'20181006','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20181006.log',515,1,53,120,'20181006','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20181006.log',515,1,54,133,'20181006','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20181006.log',515,1,55,134,'20181006','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20181006.log',1048585,1,49,49,'20181006','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181006.log',1048585,1,54,54,'20181006','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181006.log',1048585,1,55,55,'20181006','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181006.log',1048585,1,78,78,'20181006','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181007.log',259,1,NULL,6,'20181007','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181007.log',515,1,6,31,'20181007','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20181007.log',515,1,14,51,'20181007','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20181007.log',515,1,35,83,'20181007','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20181007.log',515,1,49,116,'20181007','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20181007.log',1048585,1,6,6,'20181007','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181007.log',1048585,1,14,14,'20181007','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181007.log',1048585,1,35,35,'20181007','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181007.log',1048585,1,78,78,'20181007','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181008.log',256,1,NULL,1,'20181008','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181008.log',515,1,19,52,'20181008','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20181008.log',515,1,31,79,'20181008','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20181008.log',515,1,49,116,'20181008','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20181008.log',515,1,50,117,'20181008','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181008.log',515,1,53,120,'20181008','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20181008.log',515,1,54,133,'20181008','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181008.log',515,1,58,137,'20181008','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181008.log',1048585,1,20,20,'20181008','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181008.log',1048585,1,58,58,'20181008','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181009.log',256,1,NULL,1,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181009.log',259,1,NULL,7,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181009.log',515,1,14,51,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20181009.log',515,1,21,54,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20181009.log',515,1,35,83,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20181009.log',515,1,40,94,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20181009.log',515,1,47,115,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181009.log',515,1,50,117,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181009.log',515,1,54,133,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181009.log',515,1,57,136,'20181009','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20181009.log',1048585,1,4,4,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181009.log',1048585,1,8,8,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181009.log',1048585,1,21,21,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181009.log',1048585,1,35,35,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181009.log',1048585,1,40,40,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181009.log',1048585,1,56,56,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181009.log',1048585,1,57,57,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181009.log',1048585,1,78,78,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181009.log',1048585,1,86,86,'20181009','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181010.log',256,1,NULL,1,'20181010','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181010.log',515,1,20,53,'20181010','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181010.log',515,1,33,81,'20181010','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20181010.log',515,1,34,82,'20181010','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20181010.log',515,1,56,135,'20181010','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181010.log',515,1,57,136,'20181010','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20181010.log',1048585,1,20,20,'20181010','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181010.log',1048585,1,33,33,'20181010','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181010.log',1048585,1,54,54,'20181010','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181010.log',1048585,1,57,57,'20181010','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20181011.log',256,1,NULL,1,'20181011','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181011.log',515,1,40,94,'20181011','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20181011.log',515,1,53,120,'20181011','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20181011.log',515,1,56,135,'20181011','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181011.log',515,1,58,137,'20181011','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20181011.log',1048585,1,40,40,'20181011','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181011.log',1048585,1,59,59,'20181011','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181011.log',1048585,1,78,78,'20181011','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181012.log',515,1,19,52,'20181012','201810',2,NULL,NULL,NULL,'ojs::counter',6,1,259,2,10),('usage_events_20181012.log',515,1,32,80,'20181012','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20181012.log',515,1,47,115,'20181012','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181012.log',515,1,49,116,'20181012','201810',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20181012.log',515,1,50,117,'20181012','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20181012.log',515,1,56,135,'20181012','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181012.log',515,1,58,137,'20181012','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181012.log',1048585,1,8,8,'20181012','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181012.log',1048585,1,20,20,'20181012','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181012.log',1048585,1,50,50,'20181012','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181012.log',1048585,1,56,56,'20181012','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181013.log',256,1,NULL,1,'20181013','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181013.log',515,1,5,30,'20181013','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20181013.log',515,1,22,57,'20181013','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20181013.log',515,1,34,82,'20181013','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20181013.log',515,1,35,83,'20181013','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20181013.log',515,1,54,133,'20181013','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181013.log',515,1,56,135,'20181013','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181013.log',515,1,58,137,'20181013','201810',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20181013.log',1048585,1,5,5,'20181013','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181013.log',1048585,1,40,40,'20181013','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181013.log',1048585,1,56,56,'20181013','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181013.log',1048585,1,78,78,'20181013','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181014.log',256,1,NULL,1,'20181014','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181014.log',515,1,19,52,'20181014','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20181014.log',515,1,34,82,'20181014','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20181014.log',515,1,46,114,'20181014','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20181014.log',515,1,54,133,'20181014','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181014.log',1048585,1,20,20,'20181014','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181014.log',1048585,1,82,82,'20181014','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181014.log',1048585,1,87,87,'20181014','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181015.log',256,1,NULL,1,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181015.log',259,1,NULL,4,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181015.log',515,1,6,31,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20181015.log',515,1,19,52,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20181015.log',515,1,20,53,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181015.log',515,1,21,54,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20181015.log',515,1,34,82,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20181015.log',515,1,47,115,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,23),('usage_events_20181015.log',515,1,49,116,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20181015.log',515,1,50,117,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181015.log',515,1,54,133,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181015.log',515,1,58,137,'20181015','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181015.log',1048585,1,6,6,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181015.log',1048585,1,20,20,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181015.log',1048585,1,21,21,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181015.log',1048585,1,47,47,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181015.log',1048585,1,54,54,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181015.log',1048585,1,78,78,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181015.log',1048585,1,91,91,'20181015','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181016.log',515,1,7,32,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20181016.log',515,1,8,33,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20181016.log',515,1,46,114,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20181016.log',515,1,49,116,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20181016.log',515,1,51,118,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20181016.log',515,1,54,133,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181016.log',515,1,56,135,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181016.log',515,1,58,137,'20181016','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20181016.log',1048585,1,8,8,'20181016','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181016.log',1048585,1,46,46,'20181016','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181016.log',1048585,1,51,51,'20181016','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181017.log',256,1,NULL,1,'20181017','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181017.log',259,1,NULL,7,'20181017','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181017.log',515,1,5,30,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20181017.log',515,1,7,32,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20181017.log',515,1,20,53,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181017.log',515,1,21,54,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20181017.log',515,1,22,57,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20181017.log',515,1,32,80,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,17),('usage_events_20181017.log',515,1,34,82,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20181017.log',515,1,58,137,'20181017','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181017.log',1048585,1,5,5,'20181017','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181017.log',1048585,1,78,78,'20181017','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181017.log',1048585,1,87,87,'20181017','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181018.log',256,1,NULL,1,'20181018','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181018.log',515,1,19,52,'20181018','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20181018.log',515,1,32,80,'20181018','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20181018.log',515,1,40,94,'20181018','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20181018.log',515,1,47,115,'20181018','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181018.log',515,1,59,138,'20181018','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20181018.log',1048585,1,56,56,'20181018','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181018.log',1048585,1,78,78,'20181018','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181019.log',515,1,7,32,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20181019.log',515,1,20,53,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20181019.log',515,1,22,57,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20181019.log',515,1,34,82,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20181019.log',515,1,47,115,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181019.log',515,1,50,117,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20181019.log',515,1,54,133,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181019.log',515,1,58,137,'20181019','201810',2,NULL,NULL,NULL,'ojs::counter',8,1,259,5,33),('usage_events_20181019.log',1048585,1,20,20,'20181019','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181019.log',1048585,1,58,58,'20181019','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181020.log',256,1,NULL,1,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20181020.log',259,1,NULL,4,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181020.log',259,1,NULL,6,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181020.log',259,1,NULL,7,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181020.log',515,1,5,30,'20181020','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20181020.log',515,1,40,94,'20181020','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20181020.log',515,1,49,116,'20181020','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20181020.log',515,1,50,117,'20181020','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20181020.log',515,1,51,118,'20181020','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20181020.log',515,1,54,133,'20181020','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181020.log',515,1,58,137,'20181020','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20181020.log',1048585,1,5,5,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181020.log',1048585,1,50,50,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181020.log',1048585,1,51,51,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181020.log',1048585,1,78,78,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181020.log',1048585,1,83,83,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181020.log',1048585,1,85,85,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181020.log',1048585,1,86,86,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181020.log',1048585,1,87,87,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181020.log',1048585,1,88,88,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181020.log',1048585,1,89,89,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181020.log',1048585,1,90,90,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181020.log',1048585,1,91,91,'20181020','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181021.log',256,1,NULL,1,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181021.log',259,1,NULL,7,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181021.log',515,1,8,33,'20181021','201810',2,NULL,NULL,NULL,'ojs::counter',4,1,259,1,7),('usage_events_20181021.log',515,1,14,51,'20181021','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20181021.log',515,1,49,116,'20181021','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20181021.log',515,1,53,120,'20181021','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20181021.log',515,1,56,135,'20181021','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20181021.log',515,1,58,137,'20181021','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20181021.log',515,1,59,138,'20181021','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20181021.log',1048585,1,8,8,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181021.log',1048585,1,78,78,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181021.log',1048585,1,85,85,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181021.log',1048585,1,86,86,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181021.log',1048585,1,87,87,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181021.log',1048585,1,89,89,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181021.log',1048585,1,90,90,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181021.log',1048585,1,91,91,'20181021','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181022.log',259,1,NULL,6,'20181022','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181022.log',515,1,20,53,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20181022.log',515,1,34,82,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20181022.log',515,1,46,114,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20181022.log',515,1,49,116,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20181022.log',515,1,50,117,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181022.log',515,1,54,133,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20181022.log',515,1,56,135,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181022.log',515,1,57,136,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20181022.log',515,1,59,138,'20181022','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20181022.log',1048585,1,56,56,'20181022','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181022.log',1048585,1,78,78,'20181022','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181022.log',1048585,1,83,83,'20181022','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181022.log',1048585,1,87,87,'20181022','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181023.log',256,1,NULL,1,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20181023.log',259,1,NULL,5,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181023.log',259,1,NULL,7,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20181023.log',515,1,20,53,'20181023','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20181023.log',515,1,32,80,'20181023','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20181023.log',515,1,35,83,'20181023','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20181023.log',515,1,49,116,'20181023','201810',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,24),('usage_events_20181023.log',515,1,56,135,'20181023','201810',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,31),('usage_events_20181023.log',515,1,57,136,'20181023','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,32),('usage_events_20181023.log',1048585,1,4,4,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181023.log',1048585,1,20,20,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181023.log',1048585,1,40,40,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181023.log',1048585,1,53,53,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181023.log',1048585,1,56,56,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20181023.log',1048585,1,78,78,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181023.log',1048585,1,85,85,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181023.log',1048585,1,86,86,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181023.log',1048585,1,87,87,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181023.log',1048585,1,88,88,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20181023.log',1048585,1,89,89,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181023.log',1048585,1,90,90,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181023.log',1048585,1,91,91,'20181023','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181024.log',256,1,NULL,1,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20181024.log',259,1,NULL,5,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181024.log',259,1,NULL,7,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181024.log',515,1,7,32,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20181024.log',515,1,8,33,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20181024.log',515,1,20,53,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181024.log',515,1,22,57,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20181024.log',515,1,31,79,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',10,1,259,3,16),('usage_events_20181024.log',515,1,40,94,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20181024.log',515,1,49,116,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,24),('usage_events_20181024.log',515,1,54,133,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181024.log',515,1,58,137,'20181024','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181024.log',1048585,1,8,8,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181024.log',1048585,1,31,31,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20181024.log',1048585,1,78,78,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181024.log',1048585,1,85,85,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181024.log',1048585,1,86,86,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181024.log',1048585,1,90,90,'20181024','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181025.log',256,1,NULL,1,'20181025','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181025.log',515,1,19,52,'20181025','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20181025.log',515,1,49,116,'20181025','201810',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20181025.log',515,1,54,133,'20181025','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181025.log',515,1,56,135,'20181025','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20181025.log',1048585,1,19,19,'20181025','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181025.log',1048585,1,54,54,'20181025','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181025.log',1048585,1,56,56,'20181025','201810',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20181025.log',1048585,1,78,78,'20181025','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181025.log',1048585,1,82,82,'20181025','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181026.log',256,1,NULL,1,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181026.log',259,1,NULL,6,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181026.log',259,1,NULL,7,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181026.log',515,1,20,53,'20181026','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181026.log',515,1,50,117,'20181026','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181026.log',515,1,58,137,'20181026','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181026.log',1048585,1,20,20,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181026.log',1048585,1,49,49,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181026.log',1048585,1,78,78,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181026.log',1048585,1,82,82,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181026.log',1048585,1,85,85,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181026.log',1048585,1,86,86,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181026.log',1048585,1,87,87,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181026.log',1048585,1,88,88,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181026.log',1048585,1,89,89,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181026.log',1048585,1,90,90,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181026.log',1048585,1,91,91,'20181026','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181027.log',256,1,NULL,1,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181027.log',259,1,NULL,1,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181027.log',259,1,NULL,2,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181027.log',259,1,NULL,3,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181027.log',259,1,NULL,4,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181027.log',259,1,NULL,5,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181027.log',259,1,NULL,6,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20181027.log',515,1,22,57,'20181027','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20181027.log',515,1,50,117,'20181027','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181027.log',515,1,53,120,'20181027','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20181027.log',515,1,58,137,'20181027','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20181027.log',1048585,1,78,78,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20181027.log',1048585,1,82,82,'20181027','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181028.log',256,1,NULL,1,'20181028','201810',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20181028.log',515,1,6,31,'20181028','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20181028.log',515,1,50,117,'20181028','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181028.log',515,1,56,135,'20181028','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20181028.log',515,1,57,136,'20181028','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20181028.log',1048585,1,6,6,'20181028','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181028.log',1048585,1,59,59,'20181028','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181029.log',256,1,NULL,1,'20181029','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181029.log',259,1,NULL,2,'20181029','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181029.log',259,1,NULL,4,'20181029','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181029.log',259,1,NULL,5,'20181029','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181029.log',515,1,33,81,'20181029','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20181029.log',515,1,46,114,'20181029','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20181029.log',515,1,49,116,'20181029','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20181029.log',515,1,56,135,'20181029','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20181029.log',1048585,1,46,46,'20181029','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181029.log',1048585,1,49,49,'20181029','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181030.log',256,1,NULL,1,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181030.log',259,1,NULL,1,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181030.log',259,1,NULL,3,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181030.log',259,1,NULL,6,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181030.log',515,1,20,53,'20181030','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20181030.log',515,1,31,79,'20181030','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,16),('usage_events_20181030.log',515,1,47,115,'20181030','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,23),('usage_events_20181030.log',515,1,49,116,'20181030','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20181030.log',515,1,53,120,'20181030','201810',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20181030.log',515,1,57,136,'20181030','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20181030.log',515,1,58,137,'20181030','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20181030.log',1048585,1,20,20,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181030.log',1048585,1,31,31,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20181030.log',1048585,1,35,35,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181030.log',1048585,1,58,58,'20181030','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181031.log',259,1,NULL,6,'20181031','201810',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181031.log',515,1,8,33,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20181031.log',515,1,19,52,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20181031.log',515,1,20,53,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181031.log',515,1,22,57,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20181031.log',515,1,34,82,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20181031.log',515,1,46,114,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20181031.log',515,1,49,116,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20181031.log',515,1,50,117,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181031.log',515,1,54,133,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181031.log',515,1,56,135,'20181031','201810',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20181031.log',1048585,1,8,8,'20181031','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181031.log',1048585,1,20,20,'20181031','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181031.log',1048585,1,34,34,'20181031','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181031.log',1048585,1,57,57,'20181031','201810',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181031.log',1048585,1,78,78,'20181031','201810',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20181031.log',1048585,1,83,83,'20181031','201810',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181101.log',256,1,NULL,1,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181101.log',259,1,NULL,7,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181101.log',515,1,14,51,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20181101.log',515,1,19,52,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20181101.log',515,1,20,53,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20181101.log',515,1,22,57,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20181101.log',515,1,31,79,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,16),('usage_events_20181101.log',515,1,35,83,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20181101.log',515,1,47,115,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181101.log',515,1,53,120,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20181101.log',515,1,56,135,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181101.log',515,1,57,136,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20181101.log',515,1,58,137,'20181101','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181101.log',1048585,1,20,20,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181101.log',1048585,1,31,31,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181101.log',1048585,1,56,56,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181101.log',1048585,1,85,85,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181101.log',1048585,1,86,86,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181101.log',1048585,1,87,87,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181101.log',1048585,1,88,88,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181101.log',1048585,1,89,89,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181101.log',1048585,1,90,90,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181101.log',1048585,1,91,91,'20181101','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181102.log',515,1,4,19,'20181102','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20181102.log',515,1,14,51,'20181102','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20181102.log',515,1,21,54,'20181102','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20181102.log',515,1,31,79,'20181102','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20181102.log',515,1,53,120,'20181102','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20181102.log',515,1,57,136,'20181102','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20181102.log',515,1,58,137,'20181102','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181102.log',1048585,1,20,20,'20181102','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181102.log',1048585,1,21,21,'20181102','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181102.log',1048585,1,31,31,'20181102','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181103.log',515,1,32,80,'20181103','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20181103.log',515,1,34,82,'20181103','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20181103.log',515,1,49,116,'20181103','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20181103.log',515,1,54,133,'20181103','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181103.log',515,1,56,135,'20181103','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181103.log',515,1,58,137,'20181103','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181103.log',515,1,59,138,'20181103','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20181103.log',1048585,1,8,8,'20181103','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181103.log',1048585,1,34,34,'20181103','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181104.log',256,1,NULL,1,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181104.log',259,1,NULL,7,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181104.log',515,1,47,115,'20181104','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181104.log',515,1,49,116,'20181104','201811',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20181104.log',515,1,50,117,'20181104','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181104.log',1048585,1,85,85,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181104.log',1048585,1,86,86,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181104.log',1048585,1,87,87,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181104.log',1048585,1,88,88,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181104.log',1048585,1,89,89,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181104.log',1048585,1,91,91,'20181104','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181105.log',256,1,NULL,1,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181105.log',259,1,NULL,7,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181105.log',515,1,20,53,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181105.log',515,1,22,57,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20181105.log',515,1,35,83,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20181105.log',515,1,49,116,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20181105.log',515,1,50,117,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181105.log',515,1,56,135,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20181105.log',515,1,57,136,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20181105.log',515,1,58,137,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20181105.log',515,1,59,138,'20181105','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20181105.log',1048585,1,7,7,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181105.log',1048585,1,14,14,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181105.log',1048585,1,56,56,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181105.log',1048585,1,85,85,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181105.log',1048585,1,86,86,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181105.log',1048585,1,87,87,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181105.log',1048585,1,88,88,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181105.log',1048585,1,89,89,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181105.log',1048585,1,90,90,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181105.log',1048585,1,91,91,'20181105','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181106.log',256,1,NULL,1,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181106.log',259,1,NULL,7,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181106.log',259,1,NULL,8,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181106.log',515,1,21,54,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20181106.log',515,1,22,57,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20181106.log',515,1,32,80,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20181106.log',515,1,35,83,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20181106.log',515,1,49,116,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20181106.log',515,1,50,117,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181106.log',515,1,53,120,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20181106.log',515,1,58,137,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20181106.log',515,1,59,138,'20181106','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20181106.log',1048585,1,20,20,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181106.log',1048585,1,40,40,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181106.log',1048585,1,51,51,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181106.log',1048585,1,58,58,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181106.log',1048585,1,78,78,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181106.log',1048585,1,82,82,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181106.log',1048585,1,87,87,'20181106','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20181107.log',256,1,NULL,1,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',20,NULL,NULL,NULL,NULL),('usage_events_20181107.log',259,1,NULL,5,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181107.log',259,1,NULL,6,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20181107.log',259,1,NULL,7,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181107.log',259,1,NULL,8,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181107.log',515,1,4,19,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20181107.log',515,1,7,32,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20181107.log',515,1,20,53,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20181107.log',515,1,22,57,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20181107.log',515,1,47,115,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181107.log',515,1,49,116,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,24),('usage_events_20181107.log',515,1,50,117,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181107.log',515,1,53,120,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20181107.log',515,1,56,135,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181107.log',515,1,57,136,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20181107.log',515,1,58,137,'20181107','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20181107.log',1048585,1,8,8,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181107.log',1048585,1,78,78,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,6,NULL),('usage_events_20181107.log',1048585,1,79,79,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181107.log',1048585,1,85,85,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181107.log',1048585,1,99,99,'20181107','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20181108.log',256,1,NULL,1,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20181108.log',259,1,NULL,1,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181108.log',259,1,NULL,5,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181108.log',259,1,NULL,6,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181108.log',259,1,NULL,7,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181108.log',515,1,4,19,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20181108.log',515,1,22,57,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20181108.log',515,1,32,80,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20181108.log',515,1,47,115,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20181108.log',515,1,50,117,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181108.log',515,1,51,118,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20181108.log',515,1,54,133,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20181108.log',515,1,56,135,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20181108.log',515,1,57,136,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,32),('usage_events_20181108.log',515,1,58,137,'20181108','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181108.log',1048585,1,4,4,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181108.log',1048585,1,51,51,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181108.log',1048585,1,54,54,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181108.log',1048585,1,78,78,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181108.log',1048585,1,87,87,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181108.log',1048585,1,88,88,'20181108','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181109.log',256,1,NULL,1,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20181109.log',259,1,NULL,5,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181109.log',259,1,NULL,6,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181109.log',259,1,NULL,7,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181109.log',259,1,NULL,8,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181109.log',515,1,40,94,'20181109','201811',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,21),('usage_events_20181109.log',515,1,50,117,'20181109','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20181109.log',515,1,54,133,'20181109','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20181109.log',515,1,58,137,'20181109','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20181109.log',515,1,59,138,'20181109','201811',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20181109.log',1048585,1,54,54,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181109.log',1048585,1,59,59,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181109.log',1048585,1,83,83,'20181109','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181110.log',256,1,NULL,1,'20181110','201811',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20181110.log',259,1,NULL,5,'20181110','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181110.log',259,1,NULL,6,'20181110','201811',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20181110.log',259,1,NULL,7,'20181110','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181110.log',1048585,1,78,78,'20181110','201811',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20181110.log',1048585,1,85,85,'20181110','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20181111.log',256,1,NULL,1,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20181111.log',259,1,NULL,5,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181111.log',259,1,NULL,6,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181111.log',259,1,NULL,7,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181111.log',1048585,1,19,19,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181111.log',1048585,1,56,56,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181111.log',1048585,1,59,59,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181111.log',1048585,1,78,78,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181111.log',1048585,1,83,83,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20181111.log',1048585,1,85,85,'20181111','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181112.log',1048585,1,7,7,'20181112','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181112.log',1048585,1,35,35,'20181112','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181112.log',1048585,1,78,78,'20181112','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181113.log',256,1,NULL,1,'20181113','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181113.log',1048585,1,4,4,'20181113','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181113.log',1048585,1,33,33,'20181113','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181114.log',256,1,NULL,1,'20181114','201811',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20181114.log',259,1,NULL,1,'20181114','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181114.log',259,1,NULL,7,'20181114','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181114.log',1048585,1,40,40,'20181114','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181114.log',1048585,1,47,47,'20181114','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181114.log',1048585,1,78,78,'20181114','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181114.log',1048585,1,83,83,'20181114','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181115.log',259,1,NULL,3,'20181115','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181115.log',1048585,1,20,20,'20181115','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181115.log',1048585,1,21,21,'20181115','201811',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,2,NULL),('usage_events_20181115.log',1048585,1,31,31,'20181115','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181115.log',1048585,1,40,40,'20181115','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181116.log',256,1,NULL,1,'20181116','201811',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181116.log',259,1,NULL,7,'20181116','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181116.log',1048585,1,19,19,'20181116','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181116.log',1048585,1,53,53,'20181116','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181117.log',259,1,NULL,2,'20181117','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181117.log',1048585,1,19,19,'20181117','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181117.log',1048585,1,56,56,'20181117','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181117.log',1048585,1,59,59,'20181117','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181117.log',1048585,1,90,90,'20181117','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181118.log',1048585,1,58,58,'20181118','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181119.log',256,1,NULL,1,'20181119','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181119.log',1048585,1,46,46,'20181119','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181119.log',1048585,1,58,58,'20181119','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181119.log',1048585,1,84,84,'20181119','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181120.log',259,1,NULL,6,'20181120','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181120.log',1048585,1,56,56,'20181120','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181120.log',1048585,1,57,57,'20181120','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181120.log',1048585,1,59,59,'20181120','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181120.log',1048585,1,78,78,'20181120','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20181121.log',259,1,NULL,2,'20181121','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181121.log',1048585,1,19,19,'20181121','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20181121.log',1048585,1,34,34,'20181121','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181121.log',1048585,1,49,49,'20181121','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181121.log',1048585,1,56,56,'20181121','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181121.log',1048585,1,78,78,'20181121','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181121.log',1048585,1,82,82,'20181121','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181122.log',256,1,NULL,1,'20181122','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181122.log',259,1,NULL,5,'20181122','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181122.log',1048585,1,46,46,'20181122','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181122.log',1048585,1,49,49,'20181122','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181122.log',1048585,1,58,58,'20181122','201811',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20181122.log',1048585,1,59,59,'20181122','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181123.log',256,1,NULL,1,'20181123','201811',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20181123.log',259,1,NULL,1,'20181123','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181123.log',259,1,NULL,5,'20181123','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181123.log',1048585,1,4,4,'20181123','201811',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,1,NULL),('usage_events_20181123.log',1048585,1,47,47,'20181123','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181123.log',1048585,1,54,54,'20181123','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181124.log',256,1,NULL,1,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181124.log',259,1,NULL,1,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181124.log',259,1,NULL,5,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181124.log',259,1,NULL,7,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181124.log',1048585,1,8,8,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181124.log',1048585,1,46,46,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181124.log',1048585,1,51,51,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20181124.log',1048585,1,54,54,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181124.log',1048585,1,56,56,'20181124','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181125.log',259,1,NULL,3,'20181125','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181125.log',1048585,1,4,4,'20181125','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181125.log',1048585,1,20,20,'20181125','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181125.log',1048585,1,33,33,'20181125','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181125.log',1048585,1,47,47,'20181125','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181126.log',256,1,NULL,1,'20181126','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181126.log',1048585,1,5,5,'20181126','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181126.log',1048585,1,7,7,'20181126','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181126.log',1048585,1,14,14,'20181126','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181126.log',1048585,1,49,49,'20181126','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181126.log',1048585,1,59,59,'20181126','201811',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20181126.log',1048585,1,85,85,'20181126','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181127.log',256,1,NULL,1,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20181127.log',259,1,NULL,6,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181127.log',259,1,NULL,8,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181127.log',1048585,1,14,14,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20181127.log',1048585,1,20,20,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181127.log',1048585,1,40,40,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20181127.log',1048585,1,78,78,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181127.log',1048585,1,82,82,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181127.log',1048585,1,85,85,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181127.log',1048585,1,90,90,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181127.log',1048585,1,114,114,'20181127','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20181128.log',259,1,NULL,6,'20181128','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181128.log',1048585,1,7,7,'20181128','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181128.log',1048585,1,20,20,'20181128','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181128.log',1048585,1,51,51,'20181128','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181128.log',1048585,1,57,57,'20181128','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181128.log',1048585,1,78,78,'20181128','201811',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20181129.log',256,1,NULL,1,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181129.log',1048585,1,21,21,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181129.log',1048585,1,31,31,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181129.log',1048585,1,47,47,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181129.log',1048585,1,58,58,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20181129.log',1048585,1,59,59,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181129.log',1048585,1,82,82,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20181129.log',1048585,1,91,91,'20181129','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181130.log',256,1,NULL,1,'20181130','201811',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181130.log',259,1,NULL,2,'20181130','201811',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181130.log',259,1,NULL,5,'20181130','201811',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20181130.log',1048585,1,14,14,'20181130','201811',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,2,NULL),('usage_events_20181130.log',1048585,1,56,56,'20181130','201811',NULL,NULL,NULL,NULL,'ojs::counter',22,1,259,5,NULL),('usage_events_20181201.log',256,1,NULL,1,'20181201','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181201.log',1048585,1,54,54,'20181201','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181202.log',256,1,NULL,1,'20181202','201812',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20181202.log',259,1,NULL,7,'20181202','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181202.log',1048585,1,19,19,'20181202','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181202.log',1048585,1,35,35,'20181202','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181202.log',1048585,1,51,51,'20181202','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181202.log',1048585,1,90,90,'20181202','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20181203.log',256,1,NULL,1,'20181203','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181203.log',1048585,1,14,14,'20181203','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181203.log',1048585,1,28,28,'20181203','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181203.log',1048585,1,49,49,'20181203','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20181203.log',1048585,1,58,58,'20181203','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181203.log',1048585,1,85,85,'20181203','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181204.log',256,1,NULL,1,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181204.log',259,1,NULL,2,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181204.log',259,1,NULL,6,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181204.log',259,1,NULL,7,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20181204.log',1048585,1,20,20,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20181204.log',1048585,1,35,35,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181204.log',1048585,1,54,54,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181204.log',1048585,1,77,77,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181204.log',1048585,1,82,82,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181204.log',1048585,1,88,88,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181204.log',1048585,1,89,89,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181204.log',1048585,1,91,91,'20181204','201812',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,7,NULL),('usage_events_20181205.log',256,1,NULL,1,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20181205.log',259,1,NULL,4,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181205.log',259,1,NULL,6,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181205.log',259,1,NULL,7,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181205.log',1048585,1,8,8,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181205.log',1048585,1,49,49,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20181205.log',1048585,1,51,51,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181205.log',1048585,1,54,54,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181205.log',1048585,1,58,58,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181205.log',1048585,1,59,59,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181205.log',1048585,1,78,78,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20181205.log',1048585,1,82,82,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181205.log',1048585,1,91,91,'20181205','201812',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,7,NULL),('usage_events_20181206.log',256,1,NULL,1,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181206.log',259,1,NULL,5,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181206.log',259,1,NULL,6,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181206.log',259,1,NULL,7,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181206.log',1048585,1,19,19,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20181206.log',1048585,1,56,56,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,5,NULL),('usage_events_20181206.log',1048585,1,78,78,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,6,NULL),('usage_events_20181206.log',1048585,1,81,81,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20181206.log',1048585,1,85,85,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20181206.log',1048585,1,91,91,'20181206','201812',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,7,NULL),('usage_events_20181207.log',259,1,NULL,6,'20181207','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181207.log',1048585,1,20,20,'20181207','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181207.log',1048585,1,56,56,'20181207','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181207.log',1048585,1,78,78,'20181207','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181208.log',256,1,NULL,1,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181208.log',259,1,NULL,2,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181208.log',259,1,NULL,4,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181208.log',1048585,1,20,20,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181208.log',1048585,1,34,34,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181208.log',1048585,1,47,47,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20181208.log',1048585,1,56,56,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181208.log',1048585,1,57,57,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181208.log',1048585,1,59,59,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181208.log',1048585,1,82,82,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20181208.log',1048585,1,91,91,'20181208','201812',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20181209.log',256,1,NULL,1,'20181209','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181209.log',259,1,NULL,2,'20181209','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181209.log',1048585,1,8,8,'20181209','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181209.log',1048585,1,19,19,'20181209','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20181209.log',1048585,1,59,59,'20181209','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181210.log',259,1,NULL,4,'20181210','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181210.log',1048585,1,40,40,'20181210','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181210.log',1048585,1,47,47,'20181210','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181210.log',1048585,1,50,50,'20181210','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181210.log',1048585,1,51,51,'20181210','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181210.log',1048585,1,78,78,'20181210','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181211.log',256,1,NULL,1,'20181211','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181211.log',1048585,1,56,56,'20181211','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181211.log',1048585,1,78,78,'20181211','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181211.log',1048585,1,82,82,'20181211','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181212.log',256,1,NULL,1,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181212.log',259,1,NULL,5,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181212.log',259,1,NULL,6,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181212.log',1048585,1,19,19,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20181212.log',1048585,1,20,20,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181212.log',1048585,1,35,35,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181212.log',1048585,1,47,47,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181212.log',1048585,1,49,49,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20181212.log',1048585,1,50,50,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181212.log',1048585,1,54,54,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181212.log',1048585,1,57,57,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181212.log',1048585,1,58,58,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181212.log',1048585,1,59,59,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20181212.log',1048585,1,78,78,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181212.log',1048585,1,83,83,'20181212','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181213.log',256,1,NULL,1,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181213.log',259,1,NULL,4,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181213.log',259,1,NULL,5,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181213.log',1048585,1,14,14,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181213.log',1048585,1,19,19,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181213.log',1048585,1,20,20,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20181213.log',1048585,1,28,28,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181213.log',1048585,1,53,53,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181213.log',1048585,1,56,56,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181213.log',1048585,1,57,57,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181213.log',1048585,1,59,59,'20181213','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181214.log',259,1,NULL,7,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181214.log',1048585,1,46,46,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181214.log',1048585,1,59,59,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181214.log',1048585,1,78,78,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181214.log',1048585,1,83,83,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181214.log',1048585,1,86,86,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181214.log',1048585,1,87,87,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20181214.log',1048585,1,90,90,'20181214','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181215.log',256,1,NULL,1,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181215.log',259,1,NULL,4,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181215.log',259,1,NULL,7,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181215.log',1048585,1,53,53,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181215.log',1048585,1,54,54,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181215.log',1048585,1,78,78,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181215.log',1048585,1,87,87,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20181215.log',1048585,1,90,90,'20181215','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181216.log',256,1,NULL,1,'20181216','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181216.log',259,1,NULL,6,'20181216','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181216.log',1048585,1,33,33,'20181216','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20181216.log',1048585,1,51,51,'20181216','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181216.log',1048585,1,56,56,'20181216','201812',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20181216.log',1048585,1,78,78,'20181216','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20181216.log',1048585,1,84,84,'20181216','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181217.log',259,1,NULL,1,'20181217','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181217.log',259,1,NULL,7,'20181217','201812',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20181217.log',1048585,1,4,4,'20181217','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181217.log',1048585,1,14,14,'20181217','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20181217.log',1048585,1,58,58,'20181217','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181217.log',1048585,1,78,78,'20181217','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181217.log',1048585,1,85,85,'20181217','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20181218.log',259,1,NULL,5,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181218.log',259,1,NULL,6,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181218.log',1048585,1,49,49,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20181218.log',1048585,1,52,52,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181218.log',1048585,1,54,54,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181218.log',1048585,1,56,56,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20181218.log',1048585,1,78,78,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20181218.log',1048585,1,84,84,'20181218','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181219.log',256,1,NULL,1,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181219.log',259,1,NULL,5,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181219.log',259,1,NULL,6,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181219.log',259,1,NULL,7,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181219.log',1048585,1,4,4,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181219.log',1048585,1,7,7,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181219.log',1048585,1,49,49,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181219.log',1048585,1,56,56,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181219.log',1048585,1,78,78,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20181219.log',1048585,1,83,83,'20181219','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181220.log',256,1,NULL,1,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20181220.log',259,1,NULL,3,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181220.log',259,1,NULL,6,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181220.log',259,1,NULL,7,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181220.log',1048585,1,28,28,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181220.log',1048585,1,46,46,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181220.log',1048585,1,56,56,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181220.log',1048585,1,78,78,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181220.log',1048585,1,89,89,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20181220.log',1048585,1,91,91,'20181220','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20181221.log',256,1,NULL,1,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20181221.log',259,1,NULL,1,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181221.log',259,1,NULL,4,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181221.log',259,1,NULL,6,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20181221.log',259,1,NULL,7,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181221.log',1048585,1,35,35,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181221.log',1048585,1,56,56,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20181221.log',1048585,1,57,57,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181221.log',1048585,1,79,79,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181221.log',1048585,1,83,83,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20181221.log',1048585,1,85,85,'20181221','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181222.log',256,1,NULL,1,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20181222.log',259,1,NULL,1,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181222.log',259,1,NULL,2,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181222.log',259,1,NULL,3,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181222.log',259,1,NULL,4,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181222.log',259,1,NULL,5,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181222.log',259,1,NULL,6,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181222.log',259,1,NULL,7,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181222.log',1048585,1,1,1,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181222.log',1048585,1,4,4,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181222.log',1048585,1,5,5,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181222.log',1048585,1,6,6,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181222.log',1048585,1,7,7,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181222.log',1048585,1,8,8,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181222.log',1048585,1,14,14,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181222.log',1048585,1,19,19,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20181222.log',1048585,1,20,20,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181222.log',1048585,1,21,21,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181222.log',1048585,1,22,22,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20181222.log',1048585,1,28,28,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181222.log',1048585,1,31,31,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181222.log',1048585,1,32,32,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181222.log',1048585,1,33,33,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181222.log',1048585,1,34,34,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181222.log',1048585,1,35,35,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181222.log',1048585,1,40,40,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20181222.log',1048585,1,46,46,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181222.log',1048585,1,47,47,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181222.log',1048585,1,49,49,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181222.log',1048585,1,50,50,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181222.log',1048585,1,51,51,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181222.log',1048585,1,52,52,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181222.log',1048585,1,53,53,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181222.log',1048585,1,54,54,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181222.log',1048585,1,55,55,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181222.log',1048585,1,56,56,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181222.log',1048585,1,57,57,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181222.log',1048585,1,58,58,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181222.log',1048585,1,59,59,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181222.log',1048585,1,74,74,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181222.log',1048585,1,76,76,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181222.log',1048585,1,77,77,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181222.log',1048585,1,78,78,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181222.log',1048585,1,79,79,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181222.log',1048585,1,81,81,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181222.log',1048585,1,82,82,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181222.log',1048585,1,83,83,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181222.log',1048585,1,84,84,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181222.log',1048585,1,85,85,'20181222','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181223.log',256,1,NULL,1,'20181223','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181223.log',1048585,1,76,76,'20181223','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181223.log',1048585,1,78,78,'20181223','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181224.log',259,1,NULL,4,'20181224','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181224.log',259,1,NULL,6,'20181224','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181224.log',1048585,1,47,47,'20181224','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20181224.log',1048585,1,78,78,'20181224','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20181225.log',1048585,1,91,91,'20181225','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20181226.log',256,1,NULL,1,'20181226','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20181226.log',259,1,NULL,4,'20181226','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181226.log',1048585,1,35,35,'20181226','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20181226.log',1048585,1,50,50,'20181226','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20181226.log',1048585,1,51,51,'20181226','201812',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,4,NULL),('usage_events_20181226.log',1048585,1,58,58,'20181226','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20181226.log',1048585,1,78,78,'20181226','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181227.log',1048585,1,59,59,'20181227','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181228.log',256,1,NULL,1,'20181228','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181228.log',259,1,NULL,6,'20181228','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181228.log',259,1,NULL,7,'20181228','201812',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20181228.log',1048585,1,56,56,'20181228','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20181228.log',1048585,1,58,58,'20181228','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20181228.log',1048585,1,78,78,'20181228','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20181228.log',1048585,1,86,86,'20181228','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20181229.log',256,1,NULL,1,'20181229','201812',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20181229.log',259,1,NULL,4,'20181229','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20181229.log',1048585,1,49,49,'20181229','201812',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20181229.log',1048585,1,53,53,'20181229','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20181230.log',256,1,NULL,1,'20181230','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181230.log',259,1,NULL,1,'20181230','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20181230.log',1048585,1,4,4,'20181230','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181230.log',1048585,1,8,8,'20181230','201812',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20181231.log',1048585,1,55,55,'20181231','201812',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190101.log',256,1,NULL,1,'20190101','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190101.log',1048585,1,57,57,'20190101','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190101.log',1048585,1,58,58,'20190101','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20190101.log',1048585,1,59,59,'20190101','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190102.log',256,1,NULL,1,'20190102','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190102.log',259,1,NULL,5,'20190102','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190102.log',1048585,1,19,19,'20190102','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190102.log',1048585,1,33,33,'20190102','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190102.log',1048585,1,56,56,'20190102','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190103.log',1048585,1,22,22,'20190103','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190103.log',1048585,1,49,49,'20190103','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190103.log',1048585,1,54,54,'20190103','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190103.log',1048585,1,58,58,'20190103','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190103.log',1048585,1,87,87,'20190103','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190104.log',256,1,NULL,1,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190104.log',259,1,NULL,6,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190104.log',1048585,1,40,40,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190104.log',1048585,1,47,47,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20190104.log',1048585,1,49,49,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190104.log',1048585,1,51,51,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20190104.log',1048585,1,59,59,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190104.log',1048585,1,78,78,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190104.log',1048585,1,83,83,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190104.log',1048585,1,91,91,'20190104','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190105.log',256,1,NULL,1,'20190105','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190105.log',1048585,1,56,56,'20190105','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190105.log',1048585,1,78,78,'20190105','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190105.log',1048585,1,87,87,'20190105','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190106.log',259,1,NULL,4,'20190106','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190106.log',1048585,1,33,33,'20190106','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190106.log',1048585,1,40,40,'20190106','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190106.log',1048585,1,49,49,'20190106','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190106.log',1048585,1,50,50,'20190106','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20190107.log',1048585,1,40,40,'20190107','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190107.log',1048585,1,46,46,'20190107','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190107.log',1048585,1,47,47,'20190107','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190107.log',1048585,1,49,49,'20190107','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190108.log',259,1,NULL,3,'20190108','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190108.log',1048585,1,14,14,'20190108','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190108.log',1048585,1,35,35,'20190108','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190108.log',1048585,1,50,50,'20190108','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190109.log',256,1,NULL,1,'20190109','201901',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190109.log',1048585,1,7,7,'20190109','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190109.log',1048585,1,34,34,'20190109','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190109.log',1048585,1,49,49,'20190109','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190109.log',1048585,1,78,78,'20190109','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190109.log',1048585,1,83,83,'20190109','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190109.log',1048585,1,91,91,'20190109','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190110.log',256,1,NULL,1,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190110.log',259,1,NULL,1,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190110.log',259,1,NULL,2,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190110.log',259,1,NULL,3,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190110.log',259,1,NULL,4,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190110.log',259,1,NULL,5,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190110.log',259,1,NULL,6,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190110.log',259,1,NULL,7,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190110.log',1048585,1,4,4,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190110.log',1048585,1,14,14,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,2,NULL),('usage_events_20190110.log',1048585,1,46,46,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190110.log',1048585,1,49,49,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190110.log',1048585,1,57,57,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190110.log',1048585,1,83,83,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190110.log',1048585,1,85,85,'20190110','201901',NULL,NULL,NULL,NULL,'ojs::counter',13,1,259,7,NULL),('usage_events_20190111.log',256,1,NULL,1,'20190111','201901',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190111.log',259,1,NULL,7,'20190111','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190111.log',1048585,1,28,28,'20190111','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190111.log',1048585,1,85,85,'20190111','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190112.log',256,1,NULL,1,'20190112','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190112.log',259,1,NULL,3,'20190112','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190112.log',1048585,1,34,34,'20190112','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,3,NULL),('usage_events_20190112.log',1048585,1,35,35,'20190112','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190112.log',1048585,1,40,40,'20190112','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20190112.log',1048585,1,46,46,'20190112','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190113.log',256,1,NULL,1,'20190113','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190113.log',259,1,NULL,7,'20190113','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190113.log',1048585,1,14,14,'20190113','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20190113.log',1048585,1,78,78,'20190113','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190113.log',1048585,1,91,91,'20190113','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190114.log',256,1,NULL,1,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190114.log',259,1,NULL,6,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190114.log',259,1,NULL,7,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190114.log',1048585,1,6,6,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190114.log',1048585,1,14,14,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190114.log',1048585,1,22,22,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190114.log',1048585,1,56,56,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190114.log',1048585,1,57,57,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190114.log',1048585,1,58,58,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190114.log',1048585,1,78,78,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190114.log',1048585,1,85,85,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20190114.log',1048585,1,91,91,'20190114','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20190115.log',256,1,NULL,1,'20190115','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190115.log',259,1,NULL,5,'20190115','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190115.log',1048585,1,56,56,'20190115','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190115.log',1048585,1,57,57,'20190115','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190115.log',1048585,1,58,58,'20190115','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190115.log',1048585,1,85,85,'20190115','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190116.log',256,1,NULL,1,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190116.log',259,1,NULL,1,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190116.log',259,1,NULL,2,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190116.log',259,1,NULL,3,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190116.log',259,1,NULL,5,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190116.log',259,1,NULL,7,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190116.log',515,1,14,51,'20190116','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20190116.log',515,1,20,53,'20190116','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190116.log',515,1,54,133,'20190116','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20190116.log',515,1,85,281,'20190116','201901',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,41),('usage_events_20190116.log',1048585,1,14,14,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,2,NULL),('usage_events_20190116.log',1048585,1,20,20,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190116.log',1048585,1,28,28,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20190116.log',1048585,1,40,40,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190116.log',1048585,1,54,54,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20190116.log',1048585,1,58,58,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190116.log',1048585,1,78,78,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190116.log',1048585,1,83,83,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190116.log',1048585,1,85,85,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,7,NULL),('usage_events_20190116.log',1048585,1,88,88,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190117.log',256,1,NULL,1,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20190117.log',259,1,NULL,1,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190117.log',259,1,NULL,2,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190117.log',259,1,NULL,3,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190117.log',259,1,NULL,4,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190117.log',259,1,NULL,5,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190117.log',259,1,NULL,6,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190117.log',259,1,NULL,7,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190117.log',515,1,4,19,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190117.log',515,1,8,33,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20190117.log',515,1,19,52,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190117.log',515,1,40,94,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20190117.log',515,1,47,115,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190117.log',515,1,51,118,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190117.log',515,1,57,136,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190117.log',515,1,85,281,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190117.log',515,1,79,282,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20190117.log',515,1,82,284,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190117.log',515,1,87,291,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190117.log',515,1,88,292,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190117.log',515,1,89,293,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190117.log',515,1,91,295,'20190117','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190117.log',1048585,1,40,40,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190117.log',1048585,1,56,56,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190117.log',1048585,1,59,59,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190117.log',1048585,1,74,74,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190117.log',1048585,1,78,78,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190117.log',1048585,1,85,85,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190118.log',256,1,NULL,1,'20190118','201901',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20190118.log',259,1,NULL,7,'20190118','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190118.log',515,1,85,281,'20190118','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20190118.log',515,1,86,290,'20190118','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190118.log',515,1,87,291,'20190118','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190118.log',515,1,88,292,'20190118','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190118.log',515,1,89,293,'20190118','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190118.log',1048585,1,56,56,'20190118','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190118.log',1048585,1,58,58,'20190118','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190118.log',1048585,1,78,78,'20190118','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190118.log',1048585,1,85,85,'20190118','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190119.log',256,1,NULL,1,'20190119','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190119.log',515,1,47,115,'20190119','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190119.log',515,1,83,285,'20190119','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190119.log',1048585,1,59,59,'20190119','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190119.log',1048585,1,77,77,'20190119','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190119.log',1048585,1,83,83,'20190119','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190120.log',256,1,NULL,1,'20190120','201901',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190120.log',259,1,NULL,5,'20190120','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190120.log',515,1,20,53,'20190120','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190120.log',515,1,47,115,'20190120','201901',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,23),('usage_events_20190120.log',515,1,59,138,'20190120','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190120.log',515,1,82,284,'20190120','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190120.log',1048585,1,20,20,'20190120','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190120.log',1048585,1,59,59,'20190120','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190120.log',1048585,1,82,82,'20190120','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190120.log',1048585,1,91,91,'20190120','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190121.log',515,1,47,115,'20190121','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190121.log',515,1,50,117,'20190121','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190121.log',1048585,1,40,40,'20190121','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190121.log',1048585,1,50,50,'20190121','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190121.log',1048585,1,58,58,'20190121','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190121.log',1048585,1,59,59,'20190121','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190121.log',1048585,1,87,87,'20190121','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190121.log',1048585,1,91,91,'20190121','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190122.log',256,1,NULL,1,'20190122','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190122.log',259,1,NULL,6,'20190122','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190122.log',259,1,NULL,7,'20190122','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190122.log',515,1,20,53,'20190122','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190122.log',515,1,31,79,'20190122','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20190122.log',515,1,78,288,'20190122','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190122.log',1048585,1,51,51,'20190122','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20190122.log',1048585,1,78,78,'20190122','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190122.log',1048585,1,85,85,'20190122','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190123.log',256,1,NULL,1,'20190123','201901',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190123.log',259,1,NULL,7,'20190123','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190123.log',515,1,6,31,'20190123','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190123.log',515,1,31,79,'20190123','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20190123.log',515,1,49,116,'20190123','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190123.log',1048585,1,57,57,'20190123','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190123.log',1048585,1,58,58,'20190123','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190124.log',256,1,NULL,1,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20190124.log',259,1,NULL,2,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190124.log',259,1,NULL,6,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190124.log',259,1,NULL,7,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190124.log',515,1,14,51,'20190124','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190124.log',515,1,56,135,'20190124','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190124.log',515,1,58,137,'20190124','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190124.log',515,1,85,281,'20190124','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190124.log',515,1,78,288,'20190124','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190124.log',515,1,88,292,'20190124','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190124.log',1048585,1,14,14,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20190124.log',1048585,1,20,20,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190124.log',1048585,1,28,28,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190124.log',1048585,1,56,56,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190124.log',1048585,1,58,58,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190124.log',1048585,1,59,59,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190124.log',1048585,1,78,78,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190124.log',1048585,1,85,85,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20190124.log',1048585,1,88,88,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190125.log',256,1,NULL,1,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190125.log',259,1,NULL,7,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190125.log',515,1,20,53,'20190125','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20190125.log',515,1,58,137,'20190125','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190125.log',515,1,89,293,'20190125','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190125.log',1048585,1,51,51,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190125.log',1048585,1,54,54,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190125.log',1048585,1,55,55,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190125.log',1048585,1,56,56,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190125.log',1048585,1,58,58,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190125.log',1048585,1,59,59,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190125.log',1048585,1,91,91,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190126.log',515,1,47,115,'20190126','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190126.log',515,1,53,120,'20190126','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190126.log',515,1,54,133,'20190126','201901',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20190126.log',515,1,78,288,'20190126','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190126.log',1048585,1,59,59,'20190126','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190126.log',1048585,1,78,78,'20190126','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190126.log',1048585,1,82,82,'20190126','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190126.log',1048585,1,87,87,'20190126','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190126.log',1048585,1,90,90,'20190126','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190127.log',259,1,NULL,7,'20190127','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190127.log',515,1,7,32,'20190127','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190127.log',515,1,57,136,'20190127','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190127.log',1048585,1,7,7,'20190127','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190127.log',1048585,1,57,57,'20190127','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190127.log',1048585,1,59,59,'20190127','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20190128.log',256,1,NULL,1,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',26,NULL,NULL,NULL,NULL),('usage_events_20190128.log',259,1,NULL,3,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190128.log',259,1,NULL,5,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190128.log',259,1,NULL,6,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190128.log',259,1,NULL,7,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190128.log',515,1,14,51,'20190128','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20190128.log',515,1,50,117,'20190128','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190128.log',515,1,82,284,'20190128','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190128.log',515,1,78,288,'20190128','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190128.log',515,1,91,295,'20190128','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190128.log',1048585,1,6,6,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190128.log',1048585,1,14,14,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190128.log',1048585,1,57,57,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190128.log',1048585,1,59,59,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190128.log',1048585,1,76,76,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190128.log',1048585,1,78,78,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190128.log',1048585,1,82,82,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190128.log',1048585,1,89,89,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190128.log',1048585,1,91,91,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190129.log',515,1,20,53,'20190129','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190129.log',515,1,50,117,'20190129','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190129.log',515,1,57,136,'20190129','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190129.log',1048585,1,20,20,'20190129','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190129.log',1048585,1,31,31,'20190129','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190129.log',1048585,1,56,56,'20190129','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190129.log',1048585,1,57,57,'20190129','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190129.log',1048585,1,59,59,'20190129','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190129.log',1048585,1,78,78,'20190129','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190130.log',256,1,NULL,1,'20190130','201901',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190130.log',259,1,NULL,7,'20190130','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190130.log',515,1,49,116,'20190130','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190130.log',515,1,51,118,'20190130','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190130.log',515,1,56,135,'20190130','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190130.log',515,1,85,281,'20190130','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190130.log',515,1,86,290,'20190130','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190130.log',515,1,88,292,'20190130','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,53),('usage_events_20190130.log',515,1,89,293,'20190130','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190130.log',1048585,1,56,56,'20190130','201901',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190131.log',256,1,NULL,1,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190131.log',259,1,NULL,1,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190131.log',259,1,NULL,3,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190131.log',259,1,NULL,6,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190131.log',259,1,NULL,7,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190131.log',515,1,5,30,'20190131','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190131.log',515,1,33,81,'20190131','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190131.log',515,1,56,135,'20190131','201901',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190131.log',515,1,58,137,'20190131','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190131.log',515,1,87,291,'20190131','201901',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190131.log',1048585,1,5,5,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190131.log',1048585,1,33,33,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190131.log',1048585,1,56,56,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190131.log',1048585,1,58,58,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190131.log',1048585,1,59,59,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190131.log',1048585,1,78,78,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190131.log',1048585,1,82,82,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190201.log',256,1,NULL,1,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190201.log',259,1,NULL,4,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190201.log',259,1,NULL,5,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190201.log',259,1,NULL,6,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190201.log',259,1,NULL,7,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190201.log',515,1,7,32,'20190201','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190201.log',515,1,33,81,'20190201','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190201.log',515,1,46,114,'20190201','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190201.log',515,1,56,135,'20190201','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190201.log',515,1,58,137,'20190201','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190201.log',515,1,78,288,'20190201','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190201.log',1048585,1,7,7,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20190201.log',1048585,1,28,28,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190201.log',1048585,1,83,83,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190202.log',515,1,19,52,'20190202','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190202.log',515,1,22,57,'20190202','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190202.log',515,1,59,138,'20190202','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190202.log',1048585,1,19,19,'20190202','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190203.log',256,1,NULL,1,'20190203','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190203.log',259,1,NULL,7,'20190203','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190203.log',515,1,50,117,'20190203','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20190203.log',515,1,58,137,'20190203','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20190203.log',1048585,1,88,88,'20190203','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190204.log',256,1,NULL,1,'20190204','201902',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190204.log',259,1,NULL,7,'20190204','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190204.log',515,1,6,31,'20190204','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190204.log',515,1,22,57,'20190204','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20190204.log',515,1,49,116,'20190204','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190204.log',515,1,90,294,'20190204','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190204.log',1048585,1,90,90,'20190204','201902',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20190204.log',1048585,1,91,91,'20190204','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20190205.log',256,1,NULL,1,'20190205','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190205.log',515,1,53,120,'20190205','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190205.log',515,1,58,137,'20190205','201902',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,33),('usage_events_20190205.log',515,1,59,138,'20190205','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190205.log',515,1,83,285,'20190205','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190205.log',515,1,89,293,'20190205','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190205.log',1048585,1,59,59,'20190205','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190205.log',1048585,1,78,78,'20190205','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190205.log',1048585,1,83,83,'20190205','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190205.log',1048585,1,89,89,'20190205','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190206.log',256,1,NULL,1,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190206.log',259,1,NULL,1,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190206.log',259,1,NULL,7,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190206.log',515,1,19,52,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190206.log',515,1,40,94,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190206.log',515,1,49,116,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190206.log',515,1,58,137,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190206.log',515,1,85,281,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190206.log',515,1,78,288,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190206.log',515,1,86,290,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190206.log',515,1,91,295,'20190206','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190206.log',1048585,1,19,19,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190206.log',1048585,1,28,28,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190206.log',1048585,1,40,40,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,1,NULL),('usage_events_20190206.log',1048585,1,50,50,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190206.log',1048585,1,78,78,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190206.log',1048585,1,86,86,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190206.log',1048585,1,91,91,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190207.log',256,1,NULL,1,'20190207','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190207.log',515,1,22,57,'20190207','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20190207.log',515,1,49,116,'20190207','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190207.log',515,1,53,120,'20190207','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190207.log',515,1,58,137,'20190207','201902',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,33),('usage_events_20190207.log',515,1,59,138,'20190207','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190207.log',1048585,1,31,31,'20190207','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190207.log',1048585,1,78,78,'20190207','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190207.log',1048585,1,91,91,'20190207','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190208.log',256,1,NULL,1,'20190208','201902',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20190208.log',259,1,NULL,7,'20190208','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190208.log',259,1,NULL,8,'20190208','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190208.log',515,1,20,53,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190208.log',515,1,22,57,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,13),('usage_events_20190208.log',515,1,31,79,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20190208.log',515,1,47,115,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190208.log',515,1,50,117,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20190208.log',515,1,51,118,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190208.log',515,1,56,135,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20190208.log',515,1,78,288,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',8,1,259,6,49),('usage_events_20190208.log',515,1,87,291,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190208.log',515,1,99,305,'20190208','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190208.log',1048585,1,51,51,'20190208','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190208.log',1048585,1,78,78,'20190208','201902',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,6,NULL),('usage_events_20190208.log',1048585,1,87,87,'20190208','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190208.log',1048585,1,91,91,'20190208','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190209.log',256,1,NULL,1,'20190209','201902',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190209.log',515,1,6,31,'20190209','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190209.log',515,1,22,57,'20190209','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20190209.log',515,1,47,115,'20190209','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190209.log',515,1,49,116,'20190209','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190209.log',515,1,54,133,'20190209','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20190209.log',515,1,58,137,'20190209','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190209.log',515,1,90,294,'20190209','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190209.log',1048585,1,54,54,'20190209','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190209.log',1048585,1,58,58,'20190209','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190209.log',1048585,1,59,59,'20190209','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190209.log',1048585,1,90,90,'20190209','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190210.log',256,1,NULL,1,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190210.log',259,1,NULL,6,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190210.log',515,1,20,53,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190210.log',515,1,22,57,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190210.log',515,1,49,116,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190210.log',515,1,50,117,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190210.log',515,1,54,133,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190210.log',515,1,59,138,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190210.log',515,1,83,285,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190210.log',515,1,78,288,'20190210','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190210.log',1048585,1,8,8,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190210.log',1048585,1,20,20,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190210.log',1048585,1,58,58,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190210.log',1048585,1,59,59,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190210.log',1048585,1,78,78,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20190210.log',1048585,1,90,90,'20190210','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190211.log',256,1,NULL,1,'20190211','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190211.log',515,1,22,57,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190211.log',515,1,47,115,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190211.log',515,1,49,116,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190211.log',515,1,50,117,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190211.log',515,1,54,133,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190211.log',515,1,58,137,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',8,1,259,5,33),('usage_events_20190211.log',515,1,59,138,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190211.log',515,1,78,288,'20190211','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190211.log',1048585,1,54,54,'20190211','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190211.log',1048585,1,58,58,'20190211','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190211.log',1048585,1,59,59,'20190211','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190211.log',1048585,1,78,78,'20190211','201902',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20190212.log',256,1,NULL,1,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',19,NULL,NULL,NULL,NULL),('usage_events_20190212.log',259,1,NULL,8,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190212.log',515,1,20,53,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20190212.log',515,1,22,57,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190212.log',515,1,28,68,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190212.log',515,1,40,94,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190212.log',515,1,51,118,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20190212.log',515,1,53,120,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190212.log',515,1,56,135,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190212.log',515,1,59,138,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190212.log',515,1,79,282,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190212.log',515,1,83,285,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190212.log',515,1,76,286,'20190212','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20190212.log',1048585,1,20,20,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190212.log',1048585,1,28,28,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,3,NULL),('usage_events_20190212.log',1048585,1,34,34,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190212.log',1048585,1,40,40,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190212.log',1048585,1,51,51,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20190212.log',1048585,1,59,59,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190212.log',1048585,1,76,76,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190212.log',1048585,1,78,78,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20190212.log',1048585,1,79,79,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190212.log',1048585,1,82,82,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190212.log',1048585,1,83,83,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190212.log',1048585,1,91,91,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190213.log',256,1,NULL,1,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190213.log',259,1,NULL,7,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190213.log',515,1,20,53,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190213.log',515,1,49,116,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190213.log',515,1,51,118,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190213.log',515,1,54,133,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20190213.log',515,1,56,135,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190213.log',515,1,57,136,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190213.log',515,1,58,137,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20190213.log',515,1,59,138,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190213.log',515,1,91,295,'20190213','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190213.log',1048585,1,20,20,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190213.log',1048585,1,59,59,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190213.log',1048585,1,78,78,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190213.log',1048585,1,82,82,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190213.log',1048585,1,89,89,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190213.log',1048585,1,91,91,'20190213','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190214.log',256,1,NULL,1,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20190214.log',259,1,NULL,3,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190214.log',259,1,NULL,4,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190214.log',259,1,NULL,5,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190214.log',259,1,NULL,6,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190214.log',259,1,NULL,7,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190214.log',259,1,NULL,8,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190214.log',515,1,19,52,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190214.log',515,1,28,68,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190214.log',515,1,34,82,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190214.log',515,1,46,114,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190214.log',515,1,47,115,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190214.log',515,1,49,116,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190214.log',515,1,50,117,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190214.log',515,1,54,133,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190214.log',515,1,58,137,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20190214.log',515,1,85,281,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190214.log',515,1,79,282,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190214.log',515,1,81,283,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190214.log',515,1,76,286,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190214.log',515,1,78,288,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190214.log',515,1,87,291,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190214.log',515,1,90,294,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190214.log',515,1,99,305,'20190214','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190214.log',1048585,1,8,8,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190214.log',1048585,1,28,28,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190214.log',1048585,1,31,31,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190214.log',1048585,1,78,78,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190214.log',1048585,1,81,81,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190214.log',1048585,1,82,82,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190214.log',1048585,1,87,87,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190214.log',1048585,1,90,90,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190215.log',256,1,NULL,1,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190215.log',259,1,NULL,2,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190215.log',515,1,19,52,'20190215','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190215.log',515,1,49,116,'20190215','201902',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,24),('usage_events_20190215.log',515,1,56,135,'20190215','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20190215.log',515,1,58,137,'20190215','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20190215.log',515,1,59,138,'20190215','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190215.log',515,1,78,288,'20190215','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190215.log',515,1,89,293,'20190215','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20190215.log',1048585,1,19,19,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190215.log',1048585,1,28,28,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190215.log',1048585,1,59,59,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190215.log',1048585,1,78,78,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20190215.log',1048585,1,91,91,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190216.log',256,1,NULL,1,'20190216','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190216.log',515,1,49,116,'20190216','201902',2,NULL,NULL,NULL,'ojs::counter',7,1,259,4,24),('usage_events_20190216.log',515,1,58,137,'20190216','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190216.log',515,1,59,138,'20190216','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190216.log',515,1,78,288,'20190216','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190216.log',515,1,89,293,'20190216','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190216.log',1048585,1,49,49,'20190216','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190216.log',1048585,1,59,59,'20190216','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190216.log',1048585,1,78,78,'20190216','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190216.log',1048585,1,82,82,'20190216','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190216.log',1048585,1,89,89,'20190216','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190217.log',256,1,NULL,1,'20190217','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190217.log',515,1,35,83,'20190217','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190217.log',515,1,49,116,'20190217','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190217.log',515,1,78,288,'20190217','201902',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20190217.log',515,1,114,308,'20190217','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190217.log',1048585,1,59,59,'20190217','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190217.log',1048585,1,78,78,'20190217','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190217.log',1048585,1,83,83,'20190217','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190217.log',1048585,1,114,114,'20190217','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190218.log',515,1,34,82,'20190218','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190218.log',515,1,35,83,'20190218','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20190218.log',515,1,49,116,'20190218','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190218.log',515,1,50,117,'20190218','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190218.log',515,1,58,137,'20190218','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20190218.log',515,1,59,138,'20190218','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190218.log',515,1,78,288,'20190218','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190218.log',1048585,1,49,49,'20190218','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190218.log',1048585,1,78,78,'20190218','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190218.log',1048585,1,85,85,'20190218','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190219.log',256,1,NULL,1,'20190219','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190219.log',259,1,NULL,6,'20190219','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190219.log',515,1,6,31,'20190219','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,5),('usage_events_20190219.log',515,1,49,116,'20190219','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190219.log',515,1,53,120,'20190219','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190219.log',515,1,57,136,'20190219','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190219.log',515,1,58,137,'20190219','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190219.log',515,1,59,138,'20190219','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190219.log',515,1,78,288,'20190219','201902',2,NULL,NULL,NULL,'ojs::counter',10,1,259,6,49),('usage_events_20190219.log',1048585,1,6,6,'20190219','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190219.log',1048585,1,57,57,'20190219','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190219.log',1048585,1,78,78,'20190219','201902',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20190219.log',1048585,1,91,91,'20190219','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190220.log',256,1,NULL,1,'20190220','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190220.log',515,1,20,53,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190220.log',515,1,40,94,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190220.log',515,1,50,117,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20190220.log',515,1,54,133,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20190220.log',515,1,57,136,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190220.log',515,1,58,137,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20190220.log',515,1,59,138,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190220.log',515,1,78,288,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190220.log',515,1,114,308,'20190220','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190220.log',1048585,1,40,40,'20190220','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190220.log',1048585,1,59,59,'20190220','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190220.log',1048585,1,78,78,'20190220','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190221.log',515,1,8,33,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190221.log',515,1,40,94,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190221.log',515,1,46,114,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190221.log',515,1,47,115,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190221.log',515,1,49,116,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190221.log',515,1,50,117,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190221.log',515,1,56,135,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190221.log',515,1,58,137,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190221.log',515,1,83,285,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20190221.log',515,1,78,288,'20190221','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190221.log',1048585,1,8,8,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190221.log',1048585,1,40,40,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190221.log',1048585,1,46,46,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190221.log',1048585,1,59,59,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190221.log',1048585,1,78,78,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190221.log',1048585,1,82,82,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190221.log',1048585,1,83,83,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190222.log',256,1,NULL,1,'20190222','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190222.log',515,1,49,116,'20190222','201902',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,24),('usage_events_20190222.log',515,1,56,135,'20190222','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190222.log',515,1,58,137,'20190222','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20190222.log',515,1,78,288,'20190222','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190222.log',1048585,1,56,56,'20190222','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190222.log',1048585,1,78,78,'20190222','201902',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20190223.log',515,1,22,57,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190223.log',515,1,49,116,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190223.log',515,1,50,117,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190223.log',515,1,53,120,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190223.log',515,1,59,138,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190223.log',515,1,78,288,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190223.log',515,1,100,306,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190223.log',515,1,125,310,'20190223','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190223.log',1048585,1,78,78,'20190223','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190223.log',1048585,1,91,91,'20190223','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190224.log',515,1,7,32,'20190224','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190224.log',515,1,8,33,'20190224','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190224.log',515,1,49,116,'20190224','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190224.log',515,1,50,117,'20190224','201902',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,25),('usage_events_20190224.log',515,1,53,120,'20190224','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190224.log',515,1,59,138,'20190224','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190224.log',515,1,86,290,'20190224','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190224.log',1048585,1,8,8,'20190224','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190224.log',1048585,1,59,59,'20190224','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190224.log',1048585,1,125,125,'20190224','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190225.log',515,1,14,51,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190225.log',515,1,22,57,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20190225.log',515,1,50,117,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,25),('usage_events_20190225.log',515,1,57,136,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190225.log',515,1,58,137,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190225.log',515,1,59,138,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190225.log',515,1,83,285,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190225.log',515,1,78,288,'20190225','201902',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20190225.log',1048585,1,4,4,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190225.log',1048585,1,14,14,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190225.log',1048585,1,22,22,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190225.log',1048585,1,50,50,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20190225.log',1048585,1,59,59,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190225.log',1048585,1,78,78,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190225.log',1048585,1,82,82,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190226.log',256,1,NULL,1,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190226.log',259,1,NULL,1,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190226.log',259,1,NULL,2,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190226.log',259,1,NULL,3,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190226.log',259,1,NULL,5,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190226.log',259,1,NULL,6,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190226.log',259,1,NULL,7,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190226.log',259,1,NULL,8,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190226.log',515,1,4,19,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190226.log',515,1,5,30,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20190226.log',515,1,6,31,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190226.log',515,1,7,32,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190226.log',515,1,8,33,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190226.log',515,1,19,52,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20190226.log',515,1,20,53,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190226.log',515,1,21,54,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190226.log',515,1,28,68,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,15),('usage_events_20190226.log',515,1,31,79,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20190226.log',515,1,33,81,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190226.log',515,1,34,82,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20190226.log',515,1,40,94,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190226.log',515,1,50,117,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20190226.log',515,1,53,120,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190226.log',515,1,55,134,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190226.log',515,1,56,135,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190226.log',515,1,57,136,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20190226.log',515,1,58,137,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190226.log',515,1,59,138,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190226.log',515,1,85,281,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20190226.log',515,1,81,283,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20190226.log',515,1,82,284,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190226.log',515,1,83,285,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190226.log',515,1,76,286,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190226.log',515,1,77,287,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20190226.log',515,1,78,288,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190226.log',515,1,86,290,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190226.log',515,1,87,291,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190226.log',515,1,88,292,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190226.log',515,1,89,293,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20190226.log',515,1,90,294,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190226.log',515,1,91,295,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20190226.log',515,1,99,305,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20190226.log',515,1,113,307,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190226.log',515,1,115,309,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190226.log',515,1,125,310,'20190226','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,62),('usage_events_20190226.log',1048585,1,1,1,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190226.log',1048585,1,4,4,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190226.log',1048585,1,6,6,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190226.log',1048585,1,7,7,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190226.log',1048585,1,14,14,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190226.log',1048585,1,19,19,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190226.log',1048585,1,20,20,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190226.log',1048585,1,21,21,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190226.log',1048585,1,22,22,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190226.log',1048585,1,28,28,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190226.log',1048585,1,31,31,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190226.log',1048585,1,32,32,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190226.log',1048585,1,33,33,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190226.log',1048585,1,34,34,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190226.log',1048585,1,35,35,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190226.log',1048585,1,40,40,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190226.log',1048585,1,54,54,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190226.log',1048585,1,55,55,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190226.log',1048585,1,56,56,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190226.log',1048585,1,57,57,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190226.log',1048585,1,58,58,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190226.log',1048585,1,59,59,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190226.log',1048585,1,74,74,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190226.log',1048585,1,76,76,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190226.log',1048585,1,77,77,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190226.log',1048585,1,78,78,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190226.log',1048585,1,79,79,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190226.log',1048585,1,81,81,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190226.log',1048585,1,82,82,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190226.log',1048585,1,83,83,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190226.log',1048585,1,84,84,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190226.log',1048585,1,85,85,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190226.log',1048585,1,86,86,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190226.log',1048585,1,87,87,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190226.log',1048585,1,88,88,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190226.log',1048585,1,89,89,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190226.log',1048585,1,90,90,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190226.log',1048585,1,91,91,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190226.log',1048585,1,99,99,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190226.log',1048585,1,100,100,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190226.log',1048585,1,113,113,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190226.log',1048585,1,115,115,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190226.log',1048585,1,125,125,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190227.log',515,1,8,33,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190227.log',515,1,20,53,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20190227.log',515,1,22,57,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20190227.log',515,1,49,116,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190227.log',515,1,50,117,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190227.log',515,1,53,120,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,28),('usage_events_20190227.log',515,1,54,133,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190227.log',515,1,59,138,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190227.log',515,1,78,288,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20190227.log',515,1,125,310,'20190227','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190227.log',1048585,1,8,8,'20190227','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190227.log',1048585,1,28,28,'20190227','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190227.log',1048585,1,59,59,'20190227','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190227.log',1048585,1,78,78,'20190227','201902',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190227.log',1048585,1,79,79,'20190227','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190227.log',1048585,1,125,125,'20190227','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190228.log',515,1,34,82,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20190228.log',515,1,49,116,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190228.log',515,1,50,117,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190228.log',515,1,58,137,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20190228.log',515,1,59,138,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190228.log',515,1,78,288,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190228.log',515,1,86,290,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190228.log',515,1,125,310,'20190228','201902',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20190228.log',1048585,1,34,34,'20190228','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190228.log',1048585,1,55,55,'20190228','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190228.log',1048585,1,78,78,'20190228','201902',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190228.log',1048585,1,83,83,'20190228','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190228.log',1048585,1,85,85,'20190228','201902',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190228.log',1048585,1,125,125,'20190228','201902',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,8,NULL),('usage_events_20190301.log',256,1,NULL,1,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190301.log',259,1,NULL,7,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190301.log',515,1,19,52,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190301.log',515,1,54,133,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20190301.log',515,1,58,137,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',9,1,259,5,33),('usage_events_20190301.log',515,1,85,281,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20190301.log',515,1,78,288,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190301.log',515,1,88,292,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190301.log',515,1,114,308,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190301.log',515,1,125,310,'20190301','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190301.log',1048585,1,78,78,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190301.log',1048585,1,85,85,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190301.log',1048585,1,88,88,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190301.log',1048585,1,91,91,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20190301.log',1048585,1,125,125,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190302.log',515,1,46,114,'20190302','201903',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,22),('usage_events_20190302.log',515,1,51,118,'20190302','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190302.log',515,1,53,120,'20190302','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190302.log',515,1,58,137,'20190302','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190302.log',515,1,59,138,'20190302','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190302.log',515,1,78,288,'20190302','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190302.log',515,1,99,305,'20190302','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190302.log',1048585,1,51,51,'20190302','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190302.log',1048585,1,59,59,'20190302','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190302.log',1048585,1,78,78,'20190302','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190302.log',1048585,1,91,91,'20190302','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190302.log',1048585,1,125,125,'20190302','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190303.log',515,1,4,19,'20190303','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190303.log',515,1,58,137,'20190303','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20190303.log',515,1,78,288,'20190303','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190303.log',515,1,99,305,'20190303','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190303.log',515,1,114,308,'20190303','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190303.log',1048585,1,4,4,'20190303','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190303.log',1048585,1,59,59,'20190303','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190303.log',1048585,1,78,78,'20190303','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190303.log',1048585,1,82,82,'20190303','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190303.log',1048585,1,84,84,'20190303','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190304.log',256,1,NULL,1,'20190304','201903',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190304.log',259,1,NULL,7,'20190304','201903',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190304.log',259,1,NULL,8,'20190304','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190304.log',515,1,22,57,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190304.log',515,1,50,117,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190304.log',515,1,53,120,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',7,1,259,4,28),('usage_events_20190304.log',515,1,57,136,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190304.log',515,1,58,137,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190304.log',515,1,79,282,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190304.log',515,1,78,288,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20190304.log',515,1,88,292,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,53),('usage_events_20190304.log',515,1,89,293,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190304.log',515,1,100,306,'20190304','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190304.log',1048585,1,78,78,'20190304','201903',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20190304.log',1048585,1,88,88,'20190304','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190304.log',1048585,1,89,89,'20190304','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190304.log',1048585,1,125,125,'20190304','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190305.log',256,1,NULL,1,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20190305.log',259,1,NULL,7,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190305.log',259,1,NULL,8,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190305.log',515,1,7,32,'20190305','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190305.log',515,1,51,118,'20190305','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190305.log',515,1,53,120,'20190305','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190305.log',515,1,58,137,'20190305','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190305.log',515,1,78,288,'20190305','201903',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20190305.log',515,1,88,292,'20190305','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190305.log',515,1,89,293,'20190305','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190305.log',1048585,1,46,46,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190305.log',1048585,1,51,51,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190305.log',1048585,1,78,78,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20190305.log',1048585,1,88,88,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190305.log',1048585,1,89,89,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190306.log',256,1,NULL,1,'20190306','201903',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190306.log',259,1,NULL,8,'20190306','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190306.log',515,1,14,51,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190306.log',515,1,34,82,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190306.log',515,1,46,114,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190306.log',515,1,47,115,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20190306.log',515,1,49,116,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190306.log',515,1,50,117,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190306.log',515,1,53,120,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190306.log',515,1,56,135,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190306.log',515,1,57,136,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20190306.log',515,1,58,137,'20190306','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190306.log',1048585,1,46,46,'20190306','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190306.log',1048585,1,56,56,'20190306','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190306.log',1048585,1,78,78,'20190306','201903',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20190306.log',1048585,1,125,125,'20190306','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190307.log',256,1,NULL,1,'20190307','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190307.log',515,1,22,57,'20190307','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190307.log',515,1,40,94,'20190307','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190307.log',515,1,46,114,'20190307','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190307.log',515,1,49,116,'20190307','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190307.log',515,1,58,137,'20190307','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20190307.log',515,1,78,288,'20190307','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190307.log',1048585,1,40,40,'20190307','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190307.log',1048585,1,46,46,'20190307','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190307.log',1048585,1,125,125,'20190307','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20190308.log',256,1,NULL,1,'20190308','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190308.log',515,1,8,33,'20190308','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20190308.log',515,1,20,53,'20190308','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190308.log',515,1,22,57,'20190308','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20190308.log',515,1,49,116,'20190308','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190308.log',515,1,50,117,'20190308','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20190308.log',515,1,58,137,'20190308','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190308.log',1048585,1,8,8,'20190308','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20190308.log',1048585,1,20,20,'20190308','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190308.log',1048585,1,58,58,'20190308','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190308.log',1048585,1,88,88,'20190308','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190309.log',256,1,NULL,1,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190309.log',259,1,NULL,8,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190309.log',515,1,20,53,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,11),('usage_events_20190309.log',515,1,22,57,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190309.log',515,1,46,114,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190309.log',515,1,50,117,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190309.log',515,1,78,288,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190309.log',515,1,99,305,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190309.log',515,1,100,306,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20190309.log',515,1,114,308,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190309.log',515,1,115,309,'20190309','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190309.log',1048585,1,8,8,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190309.log',1048585,1,47,47,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190309.log',1048585,1,59,59,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190309.log',1048585,1,79,79,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190309.log',1048585,1,99,99,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190309.log',1048585,1,100,100,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190309.log',1048585,1,113,113,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190309.log',1048585,1,114,114,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190309.log',1048585,1,125,125,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190310.log',515,1,20,53,'20190310','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190310.log',515,1,32,80,'20190310','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20190310.log',515,1,47,115,'20190310','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20190310.log',515,1,50,117,'20190310','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190310.log',515,1,78,288,'20190310','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190310.log',1048585,1,47,47,'20190310','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20190310.log',1048585,1,59,59,'20190310','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190310.log',1048585,1,77,77,'20190310','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190310.log',1048585,1,114,114,'20190310','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190311.log',256,1,NULL,1,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190311.log',259,1,NULL,5,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190311.log',259,1,NULL,8,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190311.log',515,1,6,31,'20190311','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190311.log',515,1,53,120,'20190311','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,28),('usage_events_20190311.log',515,1,78,288,'20190311','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190311.log',515,1,99,305,'20190311','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190311.log',515,1,114,308,'20190311','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20190311.log',515,1,115,309,'20190311','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190311.log',1048585,1,55,55,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190311.log',1048585,1,78,78,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190311.log',1048585,1,91,91,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190311.log',1048585,1,99,99,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190311.log',1048585,1,100,100,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190311.log',1048585,1,113,113,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190311.log',1048585,1,114,114,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190311.log',1048585,1,115,115,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190311.log',1048585,1,125,125,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190312.log',256,1,NULL,1,'20190312','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190312.log',259,1,NULL,4,'20190312','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190312.log',515,1,4,19,'20190312','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190312.log',515,1,20,53,'20190312','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190312.log',515,1,50,117,'20190312','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20190312.log',515,1,53,120,'20190312','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190312.log',515,1,57,136,'20190312','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190312.log',515,1,78,288,'20190312','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190312.log',515,1,125,310,'20190312','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190312.log',1048585,1,59,59,'20190312','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190312.log',1048585,1,78,78,'20190312','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190312.log',1048585,1,125,125,'20190312','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190313.log',256,1,NULL,1,'20190313','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190313.log',515,1,7,32,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,6),('usage_events_20190313.log',515,1,22,57,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190313.log',515,1,49,116,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190313.log',515,1,50,117,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190313.log',515,1,56,135,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190313.log',515,1,82,284,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190313.log',515,1,78,288,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190313.log',515,1,114,308,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190313.log',515,1,125,310,'20190313','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190313.log',1048585,1,7,7,'20190313','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190313.log',1048585,1,28,28,'20190313','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190313.log',1048585,1,78,78,'20190313','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190313.log',1048585,1,88,88,'20190313','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190313.log',1048585,1,125,125,'20190313','201903',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,8,NULL),('usage_events_20190314.log',256,1,NULL,1,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190314.log',259,1,NULL,6,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190314.log',259,1,NULL,8,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190314.log',515,1,49,116,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190314.log',515,1,58,137,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20190314.log',515,1,81,283,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190314.log',515,1,76,286,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190314.log',515,1,78,288,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20190314.log',515,1,86,290,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190314.log',515,1,99,305,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190314.log',515,1,114,308,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190314.log',515,1,115,309,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20190314.log',515,1,125,310,'20190314','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190314.log',1048585,1,20,20,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190314.log',1048585,1,59,59,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190314.log',1048585,1,78,78,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190314.log',1048585,1,86,86,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190314.log',1048585,1,99,99,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190314.log',1048585,1,100,100,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190314.log',1048585,1,113,113,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190314.log',1048585,1,114,114,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190314.log',1048585,1,115,115,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190314.log',1048585,1,125,125,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190315.log',256,1,NULL,1,'20190315','201903',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190315.log',515,1,32,80,'20190315','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20190315.log',515,1,49,116,'20190315','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190315.log',515,1,56,135,'20190315','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190315.log',515,1,125,310,'20190315','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,62),('usage_events_20190315.log',1048585,1,56,56,'20190315','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190315.log',1048585,1,78,78,'20190315','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190315.log',1048585,1,100,100,'20190315','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190316.log',515,1,49,116,'20190316','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190316.log',515,1,53,120,'20190316','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190316.log',515,1,78,288,'20190316','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190316.log',515,1,100,306,'20190316','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190316.log',1048585,1,7,7,'20190316','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190316.log',1048585,1,56,56,'20190316','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190316.log',1048585,1,78,78,'20190316','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190317.log',515,1,8,33,'20190317','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190317.log',515,1,22,57,'20190317','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190317.log',515,1,49,116,'20190317','201903',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,24),('usage_events_20190317.log',515,1,78,288,'20190317','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190317.log',515,1,99,305,'20190317','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190317.log',515,1,100,306,'20190317','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190317.log',1048585,1,8,8,'20190317','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190317.log',1048585,1,22,22,'20190317','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190317.log',1048585,1,59,59,'20190317','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190317.log',1048585,1,78,78,'20190317','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190318.log',256,1,NULL,1,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190318.log',259,1,NULL,8,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190318.log',515,1,4,19,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190318.log',515,1,20,53,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20190318.log',515,1,49,116,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190318.log',515,1,50,117,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20190318.log',515,1,53,120,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190318.log',515,1,58,137,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190318.log',515,1,82,284,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190318.log',515,1,99,305,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190318.log',515,1,100,306,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190318.log',515,1,114,308,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190318.log',515,1,115,309,'20190318','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190318.log',1048585,1,50,50,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190318.log',1048585,1,56,56,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190318.log',1048585,1,58,58,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190318.log',1048585,1,82,82,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190318.log',1048585,1,99,99,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190318.log',1048585,1,100,100,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190318.log',1048585,1,113,113,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190318.log',1048585,1,114,114,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190318.log',1048585,1,115,115,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190318.log',1048585,1,125,125,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190319.log',256,1,NULL,1,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,1,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,2,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,3,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,4,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,5,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,6,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,7,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190319.log',259,1,NULL,8,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190319.log',515,1,6,31,'20190319','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190319.log',515,1,50,117,'20190319','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190319.log',515,1,82,284,'20190319','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20190319.log',515,1,78,288,'20190319','201903',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20190319.log',515,1,99,305,'20190319','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20190319.log',515,1,113,307,'20190319','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190319.log',1048585,1,50,50,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190319.log',1048585,1,58,58,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190319.log',1048585,1,78,78,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20190320.log',256,1,NULL,1,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190320.log',515,1,20,53,'20190320','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190320.log',515,1,49,116,'20190320','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190320.log',515,1,53,120,'20190320','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190320.log',515,1,56,135,'20190320','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190320.log',515,1,57,136,'20190320','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190320.log',515,1,78,288,'20190320','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190320.log',515,1,99,305,'20190320','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20190320.log',1048585,1,4,4,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20190320.log',1048585,1,20,20,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190320.log',1048585,1,56,56,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190320.log',1048585,1,57,57,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190320.log',1048585,1,78,78,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190320.log',1048585,1,99,99,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190321.log',256,1,NULL,1,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190321.log',259,1,NULL,8,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190321.log',515,1,7,32,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20190321.log',515,1,20,53,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190321.log',515,1,49,116,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190321.log',515,1,54,133,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190321.log',515,1,58,137,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190321.log',515,1,78,288,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190321.log',515,1,99,305,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190321.log',515,1,125,310,'20190321','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190321.log',1048585,1,7,7,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190321.log',1048585,1,78,78,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190321.log',1048585,1,88,88,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190321.log',1048585,1,99,99,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190321.log',1048585,1,100,100,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190321.log',1048585,1,114,114,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190321.log',1048585,1,115,115,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190321.log',1048585,1,125,125,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190322.log',256,1,NULL,1,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190322.log',259,1,NULL,2,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190322.log',259,1,NULL,3,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190322.log',259,1,NULL,4,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190322.log',515,1,22,57,'20190322','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190322.log',515,1,33,81,'20190322','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190322.log',515,1,99,305,'20190322','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20190322.log',515,1,113,307,'20190322','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20190322.log',515,1,114,308,'20190322','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20190322.log',1048585,1,34,34,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190322.log',1048585,1,78,78,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190322.log',1048585,1,99,99,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190323.log',515,1,20,53,'20190323','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190323.log',515,1,35,83,'20190323','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190323.log',515,1,54,133,'20190323','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20190323.log',1048585,1,54,54,'20190323','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190323.log',1048585,1,86,86,'20190323','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190324.log',256,1,NULL,1,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190324.log',259,1,NULL,5,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190324.log',259,1,NULL,8,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190324.log',515,1,5,30,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,4),('usage_events_20190324.log',515,1,54,133,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20190324.log',515,1,58,137,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',7,1,259,5,33),('usage_events_20190324.log',515,1,99,305,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190324.log',515,1,100,306,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190324.log',515,1,113,307,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190324.log',515,1,114,308,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190324.log',515,1,115,309,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190324.log',515,1,125,310,'20190324','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190324.log',1048585,1,54,54,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190324.log',1048585,1,99,99,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190324.log',1048585,1,100,100,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190324.log',1048585,1,113,113,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190324.log',1048585,1,114,114,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190324.log',1048585,1,115,115,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190324.log',1048585,1,125,125,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190325.log',515,1,6,31,'20190325','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190325.log',515,1,20,53,'20190325','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190325.log',515,1,49,116,'20190325','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20190325.log',515,1,58,137,'20190325','201903',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,33),('usage_events_20190325.log',515,1,78,288,'20190325','201903',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190325.log',515,1,125,310,'20190325','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190325.log',1048585,1,6,6,'20190325','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190325.log',1048585,1,49,49,'20190325','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190325.log',1048585,1,58,58,'20190325','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190325.log',1048585,1,78,78,'20190325','201903',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20190325.log',1048585,1,100,100,'20190325','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190325.log',1048585,1,125,125,'20190325','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190326.log',515,1,5,30,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190326.log',515,1,20,53,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190326.log',515,1,22,57,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190326.log',515,1,54,133,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190326.log',515,1,56,135,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190326.log',515,1,58,137,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190326.log',515,1,78,288,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190326.log',515,1,91,295,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190326.log',515,1,125,310,'20190326','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190326.log',1048585,1,22,22,'20190326','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190326.log',1048585,1,59,59,'20190326','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190327.log',256,1,NULL,1,'20190327','201903',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190327.log',515,1,49,116,'20190327','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190327.log',515,1,59,138,'20190327','201903',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190327.log',515,1,78,288,'20190327','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190327.log',1048585,1,59,59,'20190327','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190327.log',1048585,1,78,78,'20190327','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190327.log',1048585,1,88,88,'20190327','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190327.log',1048585,1,89,89,'20190327','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190328.log',256,1,NULL,1,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190328.log',515,1,20,53,'20190328','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190328.log',515,1,22,57,'20190328','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190328.log',515,1,49,116,'20190328','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190328.log',515,1,56,135,'20190328','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190328.log',515,1,58,137,'20190328','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190328.log',515,1,59,138,'20190328','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190328.log',515,1,78,288,'20190328','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190328.log',1048585,1,20,20,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190328.log',1048585,1,22,22,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190328.log',1048585,1,78,78,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190328.log',1048585,1,88,88,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20190328.log',1048585,1,89,89,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20190328.log',1048585,1,91,91,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190329.log',256,1,NULL,1,'20190329','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190329.log',259,1,NULL,8,'20190329','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190329.log',515,1,49,116,'20190329','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190329.log',515,1,58,137,'20190329','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190329.log',515,1,125,310,'20190329','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190329.log',1048585,1,88,88,'20190329','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190330.log',256,1,NULL,1,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190330.log',259,1,NULL,8,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190330.log',515,1,22,57,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20190330.log',515,1,58,137,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20190330.log',515,1,78,288,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190330.log',515,1,99,305,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190330.log',515,1,100,306,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190330.log',515,1,113,307,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190330.log',515,1,114,308,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190330.log',515,1,115,309,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190330.log',515,1,125,310,'20190330','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190330.log',1048585,1,57,57,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190330.log',1048585,1,99,99,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190330.log',1048585,1,100,100,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190330.log',1048585,1,113,113,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190330.log',1048585,1,114,114,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190330.log',1048585,1,115,115,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190330.log',1048585,1,125,125,'20190330','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190331.log',515,1,20,53,'20190331','201903',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190331.log',1048585,1,20,20,'20190331','201903',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190331.log',1048585,1,78,78,'20190331','201903',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190401.log',256,1,NULL,1,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190401.log',259,1,NULL,6,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190401.log',259,1,NULL,7,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190401.log',515,1,58,137,'20190401','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190401.log',515,1,85,281,'20190401','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190401.log',515,1,78,288,'20190401','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190401.log',515,1,87,291,'20190401','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190401.log',1048585,1,54,54,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190401.log',1048585,1,58,58,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190401.log',1048585,1,78,78,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190401.log',1048585,1,85,85,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190401.log',1048585,1,87,87,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190401.log',1048585,1,89,89,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190402.log',515,1,7,32,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20190402.log',515,1,8,33,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',6,1,259,1,7),('usage_events_20190402.log',515,1,22,57,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,13),('usage_events_20190402.log',515,1,49,116,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190402.log',515,1,56,135,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190402.log',515,1,58,137,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190402.log',515,1,59,138,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190402.log',515,1,82,284,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190402.log',515,1,78,288,'20190402','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190402.log',1048585,1,7,7,'20190402','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190402.log',1048585,1,8,8,'20190402','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190402.log',1048585,1,56,56,'20190402','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190402.log',1048585,1,78,78,'20190402','201904',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20190403.log',515,1,7,32,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190403.log',515,1,8,33,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190403.log',515,1,22,57,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20190403.log',515,1,49,116,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190403.log',515,1,54,133,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190403.log',515,1,78,288,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190403.log',515,1,87,291,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190403.log',515,1,114,308,'20190403','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190403.log',1048585,1,78,78,'20190403','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190403.log',1048585,1,87,87,'20190403','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190404.log',256,1,NULL,1,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190404.log',259,1,NULL,3,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190404.log',259,1,NULL,5,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190404.log',259,1,NULL,6,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190404.log',515,1,22,57,'20190404','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190404.log',515,1,28,68,'20190404','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190404.log',515,1,47,115,'20190404','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190404.log',515,1,58,137,'20190404','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190404.log',515,1,78,288,'20190404','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190404.log',1048585,1,28,28,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190404.log',1048585,1,47,47,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190404.log',1048585,1,59,59,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190404.log',1048585,1,76,76,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190404.log',1048585,1,78,78,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190405.log',256,1,NULL,1,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,1,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,2,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,3,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,4,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,5,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,6,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,7,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190405.log',259,1,NULL,8,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190405.log',515,1,49,116,'20190405','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190405.log',515,1,59,138,'20190405','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190405.log',515,1,79,282,'20190405','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190405.log',515,1,78,288,'20190405','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190405.log',1048585,1,28,28,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20190405.log',1048585,1,57,57,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190405.log',1048585,1,59,59,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190405.log',1048585,1,78,78,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190405.log',1048585,1,79,79,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190405.log',1048585,1,113,113,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190405.log',1048585,1,114,114,'20190405','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190406.log',259,1,NULL,7,'20190406','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190406.log',515,1,22,57,'20190406','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190406.log',515,1,53,120,'20190406','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20190406.log',515,1,56,135,'20190406','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190406.log',515,1,59,138,'20190406','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190406.log',515,1,78,288,'20190406','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190406.log',515,1,86,290,'20190406','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190406.log',1048585,1,59,59,'20190406','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190406.log',1048585,1,78,78,'20190406','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190406.log',1048585,1,86,86,'20190406','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190406.log',1048585,1,91,91,'20190406','201904',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20190407.log',256,1,NULL,1,'20190407','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190407.log',515,1,8,33,'20190407','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190407.log',515,1,22,57,'20190407','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190407.log',515,1,54,133,'20190407','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190407.log',515,1,58,137,'20190407','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190407.log',1048585,1,8,8,'20190407','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190407.log',1048585,1,34,34,'20190407','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190407.log',1048585,1,59,59,'20190407','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190408.log',256,1,NULL,1,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190408.log',259,1,NULL,5,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190408.log',259,1,NULL,8,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190408.log',515,1,20,53,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190408.log',515,1,56,135,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190408.log',515,1,79,282,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190408.log',515,1,78,288,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190408.log',515,1,99,305,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190408.log',515,1,100,306,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190408.log',515,1,113,307,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190408.log',515,1,114,308,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190408.log',515,1,115,309,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190408.log',515,1,125,310,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190408.log',1048585,1,56,56,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190408.log',1048585,1,78,78,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190408.log',1048585,1,79,79,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190408.log',1048585,1,82,82,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190408.log',1048585,1,99,99,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190408.log',1048585,1,100,100,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190408.log',1048585,1,113,113,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190408.log',1048585,1,114,114,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190408.log',1048585,1,115,115,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190408.log',1048585,1,125,125,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190409.log',259,1,NULL,6,'20190409','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190409.log',515,1,19,52,'20190409','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190409.log',515,1,49,116,'20190409','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190409.log',515,1,56,135,'20190409','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190409.log',515,1,58,137,'20190409','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190409.log',515,1,59,138,'20190409','201904',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,34),('usage_events_20190409.log',515,1,78,288,'20190409','201904',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190409.log',1048585,1,56,56,'20190409','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190409.log',1048585,1,59,59,'20190409','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190409.log',1048585,1,78,78,'20190409','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190410.log',256,1,NULL,1,'20190410','201904',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190410.log',515,1,19,52,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190410.log',515,1,49,116,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190410.log',515,1,50,117,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190410.log',515,1,54,133,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190410.log',515,1,58,137,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190410.log',515,1,59,138,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190410.log',515,1,78,288,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',11,1,259,6,49),('usage_events_20190410.log',515,1,125,310,'20190410','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190410.log',1048585,1,19,19,'20190410','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190410.log',1048585,1,78,78,'20190410','201904',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20190410.log',1048585,1,115,115,'20190410','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190411.log',256,1,NULL,1,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190411.log',259,1,NULL,8,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190411.log',515,1,14,51,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190411.log',515,1,47,115,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190411.log',515,1,49,116,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190411.log',515,1,51,118,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20190411.log',515,1,54,133,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190411.log',515,1,58,137,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190411.log',515,1,78,288,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190411.log',515,1,99,305,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20190411.log',515,1,100,306,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20190411.log',515,1,113,307,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20190411.log',515,1,114,308,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20190411.log',515,1,115,309,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20190411.log',515,1,125,310,'20190411','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,62),('usage_events_20190411.log',1048585,1,20,20,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190411.log',1048585,1,78,78,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190411.log',1048585,1,99,99,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190411.log',1048585,1,100,100,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190411.log',1048585,1,113,113,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190411.log',1048585,1,114,114,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190411.log',1048585,1,115,115,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190411.log',1048585,1,125,125,'20190411','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190412.log',256,1,NULL,1,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190412.log',259,1,NULL,8,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190412.log',515,1,20,53,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20190412.log',515,1,54,133,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190412.log',515,1,57,136,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190412.log',515,1,78,288,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190412.log',515,1,99,305,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20190412.log',515,1,100,306,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190412.log',515,1,113,307,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190412.log',515,1,114,308,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190412.log',515,1,115,309,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190412.log',515,1,125,310,'20190412','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190412.log',1048585,1,20,20,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20190412.log',1048585,1,59,59,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190412.log',1048585,1,78,78,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190412.log',1048585,1,99,99,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20190412.log',1048585,1,100,100,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190412.log',1048585,1,113,113,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190412.log',1048585,1,114,114,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190412.log',1048585,1,115,115,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190412.log',1048585,1,125,125,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190413.log',515,1,7,32,'20190413','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190413.log',515,1,20,53,'20190413','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190413.log',515,1,50,117,'20190413','201904',2,NULL,NULL,NULL,'ojs::counter',8,1,259,4,25),('usage_events_20190413.log',515,1,58,137,'20190413','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190413.log',515,1,78,288,'20190413','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190413.log',1048585,1,7,7,'20190413','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190413.log',1048585,1,78,78,'20190413','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190414.log',256,1,NULL,1,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20190414.log',259,1,NULL,5,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190414.log',259,1,NULL,6,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190414.log',259,1,NULL,7,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190414.log',259,1,NULL,8,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190414.log',515,1,50,117,'20190414','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20190414.log',515,1,58,137,'20190414','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190414.log',515,1,85,281,'20190414','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20190414.log',515,1,78,288,'20190414','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190414.log',515,1,87,291,'20190414','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190414.log',515,1,99,305,'20190414','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20190414.log',1048585,1,85,85,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190414.log',1048585,1,87,87,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190414.log',1048585,1,99,99,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20190414.log',1048585,1,100,100,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190423.log',256,1,NULL,1,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190423.log',259,1,NULL,8,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190423.log',515,1,8,33,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190423.log',515,1,20,53,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190423.log',515,1,35,83,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190423.log',515,1,49,116,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190423.log',515,1,53,120,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190423.log',515,1,59,138,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190423.log',515,1,78,288,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190423.log',515,1,99,305,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20190423.log',515,1,100,306,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190423.log',515,1,113,307,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20190423.log',515,1,114,308,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20190423.log',515,1,115,309,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20190423.log',515,1,125,310,'20190423','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,62),('usage_events_20190423.log',1048585,1,8,8,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190423.log',1048585,1,35,35,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190423.log',1048585,1,51,51,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190423.log',1048585,1,54,54,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190423.log',1048585,1,78,78,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190423.log',1048585,1,99,99,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190423.log',1048585,1,100,100,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190423.log',1048585,1,113,113,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190423.log',1048585,1,114,114,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190423.log',1048585,1,115,115,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190423.log',1048585,1,125,125,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190424.log',256,1,NULL,1,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190424.log',259,1,NULL,6,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190424.log',515,1,35,83,'20190424','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190424.log',515,1,57,136,'20190424','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190424.log',515,1,59,138,'20190424','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20190424.log',515,1,78,288,'20190424','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190424.log',515,1,100,306,'20190424','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190424.log',515,1,114,308,'20190424','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190424.log',1048585,1,28,28,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190424.log',1048585,1,35,35,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190424.log',1048585,1,79,79,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190425.log',256,1,NULL,1,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190425.log',259,1,NULL,6,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190425.log',515,1,20,53,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20190425.log',515,1,22,57,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20190425.log',515,1,32,80,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20190425.log',515,1,40,94,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190425.log',515,1,49,116,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20190425.log',515,1,50,117,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190425.log',515,1,57,136,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190425.log',515,1,58,137,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20190425.log',515,1,78,288,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190425.log',515,1,113,307,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20190425.log',515,1,125,310,'20190425','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190425.log',1048585,1,20,20,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190425.log',1048585,1,78,78,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190425.log',1048585,1,83,83,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190426.log',256,1,NULL,1,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190426.log',259,1,NULL,7,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190426.log',259,1,NULL,8,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190426.log',515,1,6,31,'20190426','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190426.log',515,1,19,52,'20190426','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190426.log',515,1,22,57,'20190426','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190426.log',515,1,47,115,'20190426','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190426.log',515,1,49,116,'20190426','201904',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20190426.log',515,1,56,135,'20190426','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190426.log',515,1,125,310,'20190426','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190426.log',1048585,1,7,7,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190426.log',1048585,1,47,47,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190426.log',1048585,1,56,56,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190426.log',1048585,1,59,59,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190426.log',1048585,1,78,78,'20190426','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190427.log',256,1,NULL,1,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190427.log',259,1,NULL,7,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190427.log',259,1,NULL,8,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190427.log',515,1,6,31,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190427.log',515,1,49,116,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190427.log',515,1,50,117,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190427.log',515,1,58,137,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190427.log',515,1,85,281,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190427.log',515,1,78,288,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190427.log',515,1,99,305,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190427.log',515,1,100,306,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190427.log',515,1,113,307,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190427.log',515,1,114,308,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190427.log',515,1,115,309,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190427.log',515,1,125,310,'20190427','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190427.log',1048585,1,6,6,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190427.log',1048585,1,99,99,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190427.log',1048585,1,100,100,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190427.log',1048585,1,113,113,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190427.log',1048585,1,114,114,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190427.log',1048585,1,115,115,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190427.log',1048585,1,125,125,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190428.log',256,1,NULL,1,'20190428','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190428.log',259,1,NULL,6,'20190428','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190428.log',259,1,NULL,7,'20190428','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190428.log',515,1,78,288,'20190428','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190428.log',515,1,114,308,'20190428','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190428.log',1048585,1,78,78,'20190428','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190429.log',256,1,NULL,1,'20190429','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190429.log',515,1,49,116,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190429.log',515,1,53,120,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190429.log',515,1,58,137,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190429.log',515,1,78,288,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190429.log',515,1,100,306,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190429.log',515,1,114,308,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190429.log',515,1,115,309,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190429.log',515,1,125,310,'20190429','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190429.log',1048585,1,28,28,'20190429','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190429.log',1048585,1,78,78,'20190429','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190429.log',1048585,1,100,100,'20190429','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190429.log',1048585,1,125,125,'20190429','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190430.log',256,1,NULL,1,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190430.log',259,1,NULL,2,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190430.log',259,1,NULL,8,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190430.log',515,1,21,54,'20190430','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190430.log',515,1,51,118,'20190430','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190430.log',515,1,53,120,'20190430','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190430.log',515,1,56,135,'20190430','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190430.log',515,1,78,288,'20190430','201904',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190430.log',515,1,99,305,'20190430','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190430.log',515,1,113,307,'20190430','201904',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190430.log',1048585,1,20,20,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20190430.log',1048585,1,21,21,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190430.log',1048585,1,51,51,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190430.log',1048585,1,58,58,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190430.log',1048585,1,78,78,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190430.log',1048585,1,86,86,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190430.log',1048585,1,100,100,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190430.log',1048585,1,113,113,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190430.log',1048585,1,114,114,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190430.log',1048585,1,115,115,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190501.log',515,1,19,52,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20190501.log',515,1,20,53,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190501.log',515,1,54,133,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190501.log',515,1,82,284,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20190501.log',515,1,78,288,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190501.log',515,1,89,293,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,54),('usage_events_20190501.log',515,1,100,306,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190501.log',1048585,1,19,19,'20190501','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190501.log',1048585,1,56,56,'20190501','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190501.log',1048585,1,59,59,'20190501','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190501.log',1048585,1,89,89,'20190501','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190502.log',256,1,NULL,1,'20190502','201905',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190502.log',259,1,NULL,3,'20190502','201905',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190502.log',515,1,8,33,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190502.log',515,1,35,83,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190502.log',515,1,49,116,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190502.log',515,1,57,136,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190502.log',515,1,58,137,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190502.log',515,1,82,284,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190502.log',515,1,78,288,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190502.log',515,1,114,308,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190502.log',515,1,125,310,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190502.log',1048585,1,8,8,'20190502','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190502.log',1048585,1,35,35,'20190502','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190502.log',1048585,1,78,78,'20190502','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190503.log',256,1,NULL,1,'20190503','201905',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190503.log',259,1,NULL,2,'20190503','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190503.log',515,1,20,53,'20190503','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190503.log',515,1,49,116,'20190503','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190503.log',515,1,59,138,'20190503','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190503.log',515,1,115,309,'20190503','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190503.log',515,1,125,310,'20190503','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190503.log',1048585,1,19,19,'20190503','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190503.log',1048585,1,20,20,'20190503','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190503.log',1048585,1,59,59,'20190503','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190504.log',256,1,NULL,1,'20190504','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190504.log',515,1,5,30,'20190504','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190504.log',515,1,46,114,'20190504','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190504.log',515,1,49,116,'20190504','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190504.log',515,1,78,288,'20190504','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190504.log',515,1,88,292,'20190504','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190504.log',515,1,113,307,'20190504','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190504.log',1048585,1,78,78,'20190504','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190505.log',256,1,NULL,1,'20190505','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190505.log',515,1,59,138,'20190505','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190505.log',1048585,1,59,59,'20190505','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190506.log',256,1,NULL,1,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190506.log',259,1,NULL,8,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190506.log',515,1,53,120,'20190506','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190506.log',515,1,99,305,'20190506','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20190506.log',515,1,100,306,'20190506','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190506.log',515,1,113,307,'20190506','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20190506.log',515,1,114,308,'20190506','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190506.log',515,1,115,309,'20190506','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190506.log',515,1,125,310,'20190506','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190506.log',1048585,1,99,99,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190506.log',1048585,1,100,100,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190506.log',1048585,1,113,113,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190506.log',1048585,1,114,114,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190506.log',1048585,1,115,115,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190506.log',1048585,1,125,125,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190507.log',256,1,NULL,1,'20190507','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190507.log',515,1,49,116,'20190507','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190507.log',515,1,58,137,'20190507','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190507.log',515,1,78,288,'20190507','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190507.log',1048585,1,40,40,'20190507','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190507.log',1048585,1,78,78,'20190507','201905',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20190508.log',256,1,NULL,1,'20190508','201905',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190508.log',259,1,NULL,7,'20190508','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190508.log',515,1,28,68,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190508.log',515,1,49,116,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190508.log',515,1,56,135,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190508.log',515,1,58,137,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190508.log',515,1,79,282,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190508.log',515,1,82,284,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20190508.log',515,1,78,288,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190508.log',515,1,100,306,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190508.log',1048585,1,28,28,'20190508','201905',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,3,NULL),('usage_events_20190508.log',1048585,1,78,78,'20190508','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190508.log',1048585,1,79,79,'20190508','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190508.log',1048585,1,82,82,'20190508','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190509.log',256,1,NULL,1,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190509.log',259,1,NULL,7,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190509.log',259,1,NULL,8,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190509.log',515,1,8,33,'20190509','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20190509.log',515,1,54,133,'20190509','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190509.log',515,1,56,135,'20190509','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20190509.log',515,1,58,137,'20190509','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190509.log',515,1,59,138,'20190509','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20190509.log',515,1,78,288,'20190509','201905',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20190509.log',1048585,1,56,56,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190509.log',1048585,1,59,59,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190509.log',1048585,1,78,78,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190509.log',1048585,1,90,90,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190509.log',1048585,1,91,91,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190510.log',256,1,NULL,1,'20190510','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190510.log',515,1,20,53,'20190510','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190510.log',515,1,49,116,'20190510','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190510.log',515,1,56,135,'20190510','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190510.log',515,1,58,137,'20190510','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190510.log',515,1,78,288,'20190510','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190510.log',1048585,1,56,56,'20190510','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190510.log',1048585,1,59,59,'20190510','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190510.log',1048585,1,78,78,'20190510','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190511.log',256,1,NULL,1,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190511.log',259,1,NULL,1,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190511.log',259,1,NULL,3,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190511.log',259,1,NULL,4,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190511.log',259,1,NULL,5,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190511.log',259,1,NULL,6,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190511.log',259,1,NULL,7,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190511.log',259,1,NULL,8,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190511.log',515,1,8,33,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190511.log',515,1,35,83,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190511.log',515,1,56,135,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190511.log',515,1,58,137,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190511.log',515,1,85,281,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190511.log',515,1,79,282,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190511.log',515,1,81,283,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190511.log',515,1,82,284,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190511.log',515,1,83,285,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190511.log',515,1,76,286,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190511.log',515,1,77,287,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20190511.log',515,1,78,288,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190511.log',515,1,84,289,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20190511.log',515,1,86,290,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190511.log',515,1,87,291,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190511.log',515,1,88,292,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,53),('usage_events_20190511.log',515,1,99,305,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190511.log',515,1,100,306,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190511.log',515,1,113,307,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190511.log',515,1,114,308,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190511.log',515,1,115,309,'20190511','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190511.log',1048585,1,56,56,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190511.log',1048585,1,59,59,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190511.log',1048585,1,76,76,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190511.log',1048585,1,77,77,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190511.log',1048585,1,78,78,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190511.log',1048585,1,79,79,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190511.log',1048585,1,81,81,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190511.log',1048585,1,82,82,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190511.log',1048585,1,83,83,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190511.log',1048585,1,84,84,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190511.log',1048585,1,85,85,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190511.log',1048585,1,86,86,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190511.log',1048585,1,87,87,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190511.log',1048585,1,88,88,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190511.log',1048585,1,89,89,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190511.log',1048585,1,90,90,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190511.log',1048585,1,91,91,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190511.log',1048585,1,99,99,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190511.log',1048585,1,100,100,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190511.log',1048585,1,113,113,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190511.log',1048585,1,114,114,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190511.log',1048585,1,115,115,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190511.log',1048585,1,125,125,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190512.log',515,1,4,19,'20190512','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190512.log',515,1,34,82,'20190512','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190512.log',515,1,49,116,'20190512','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190512.log',515,1,58,137,'20190512','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190512.log',515,1,59,138,'20190512','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190512.log',515,1,78,288,'20190512','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190512.log',1048585,1,59,59,'20190512','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190512.log',1048585,1,78,78,'20190512','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190512.log',1048585,1,83,83,'20190512','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190513.log',256,1,NULL,1,'20190513','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190513.log',515,1,49,116,'20190513','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190513.log',515,1,58,137,'20190513','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20190513.log',515,1,59,138,'20190513','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190513.log',515,1,78,288,'20190513','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190513.log',515,1,125,310,'20190513','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190513.log',1048585,1,59,59,'20190513','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190513.log',1048585,1,78,78,'20190513','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190513.log',1048585,1,79,79,'20190513','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190513.log',1048585,1,87,87,'20190513','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190513.log',1048585,1,88,88,'20190513','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190513.log',1048585,1,125,125,'20190513','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190514.log',256,1,NULL,1,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,1,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,3,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,4,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,5,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,6,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,7,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,8,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190514.log',259,1,NULL,9,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190514.log',515,1,19,52,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190514.log',515,1,57,136,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,32),('usage_events_20190514.log',515,1,85,281,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190514.log',515,1,79,282,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190514.log',515,1,81,283,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190514.log',515,1,82,284,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190514.log',515,1,78,288,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190514.log',515,1,86,290,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190514.log',515,1,87,291,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190514.log',515,1,88,292,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190514.log',515,1,89,293,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190514.log',515,1,90,294,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190514.log',515,1,91,295,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190514.log',515,1,99,305,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190514.log',515,1,100,306,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190514.log',515,1,113,307,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190514.log',515,1,114,308,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20190514.log',515,1,115,309,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190514.log',515,1,125,310,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190514.log',515,1,133,318,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20190514.log',515,1,134,324,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20190514.log',515,1,135,330,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20190514.log',515,1,136,336,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20190514.log',515,1,137,343,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190514.log',515,1,139,351,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190514.log',515,1,141,361,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20190514.log',515,1,142,367,'20190514','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190514.log',1048585,1,57,57,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190514.log',1048585,1,59,59,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190514.log',1048585,1,78,78,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190514.log',1048585,1,79,79,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190514.log',1048585,1,81,81,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190514.log',1048585,1,82,82,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190514.log',1048585,1,83,83,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190514.log',1048585,1,85,85,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190514.log',1048585,1,86,86,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190514.log',1048585,1,87,87,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190514.log',1048585,1,88,88,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190514.log',1048585,1,89,89,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190514.log',1048585,1,90,90,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190514.log',1048585,1,91,91,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190514.log',1048585,1,99,99,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190514.log',1048585,1,100,100,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190514.log',1048585,1,113,113,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190514.log',1048585,1,114,114,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190514.log',1048585,1,115,115,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190514.log',1048585,1,125,125,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190514.log',1048585,1,133,133,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190514.log',1048585,1,134,134,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190514.log',1048585,1,135,135,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190514.log',1048585,1,136,136,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190514.log',1048585,1,137,137,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190514.log',1048585,1,139,139,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190514.log',1048585,1,141,141,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190514.log',1048585,1,142,142,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190515.log',256,1,NULL,1,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190515.log',259,1,NULL,3,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190515.log',515,1,20,53,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20190515.log',515,1,35,83,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20190515.log',515,1,56,135,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190515.log',515,1,82,284,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190515.log',515,1,78,288,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190515.log',515,1,91,295,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190515.log',515,1,99,305,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20190515.log',515,1,125,310,'20190515','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190515.log',1048585,1,20,20,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190515.log',1048585,1,35,35,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,3,NULL),('usage_events_20190515.log',1048585,1,56,56,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190515.log',1048585,1,78,78,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190515.log',1048585,1,125,125,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190516.log',256,1,NULL,1,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190516.log',515,1,4,19,'20190516','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190516.log',515,1,49,116,'20190516','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190516.log',515,1,56,135,'20190516','201905',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,31),('usage_events_20190516.log',515,1,58,137,'20190516','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190516.log',515,1,59,138,'20190516','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20190516.log',515,1,78,288,'20190516','201905',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20190516.log',515,1,125,310,'20190516','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190516.log',1048585,1,56,56,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190516.log',1048585,1,59,59,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190516.log',1048585,1,78,78,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190516.log',1048585,1,79,79,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190516.log',1048585,1,83,83,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190516.log',1048585,1,89,89,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190516.log',1048585,1,133,133,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',256,1,NULL,1,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190517.log',259,1,NULL,6,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190517.log',259,1,NULL,7,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190517.log',259,1,NULL,8,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190517.log',259,1,NULL,9,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190517.log',515,1,58,137,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190517.log',515,1,59,138,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,34),('usage_events_20190517.log',515,1,78,288,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190517.log',515,1,88,292,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190517.log',515,1,91,295,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190517.log',515,1,99,305,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190517.log',515,1,133,318,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190517.log',515,1,134,324,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190517.log',515,1,135,330,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190517.log',515,1,136,336,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190517.log',515,1,137,343,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190517.log',515,1,139,351,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190517.log',515,1,141,361,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190517.log',515,1,142,367,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190517.log',1048585,1,58,58,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190517.log',1048585,1,59,59,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190517.log',1048585,1,91,91,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20190517.log',1048585,1,133,133,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',1048585,1,134,134,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',1048585,1,135,135,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',1048585,1,136,136,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',1048585,1,137,137,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',1048585,1,139,139,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',1048585,1,141,141,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190517.log',1048585,1,142,142,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',256,1,NULL,1,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190519.log',259,1,NULL,4,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190519.log',259,1,NULL,9,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190519.log',515,1,6,31,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190519.log',515,1,8,33,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190519.log',515,1,20,53,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,11),('usage_events_20190519.log',515,1,51,118,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20190519.log',515,1,56,135,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190519.log',515,1,58,137,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190519.log',515,1,78,288,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190519.log',515,1,99,305,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190519.log',515,1,100,306,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190519.log',515,1,113,307,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190519.log',515,1,133,318,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190519.log',515,1,134,324,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190519.log',515,1,135,330,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190519.log',515,1,136,336,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20190519.log',515,1,137,343,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190519.log',515,1,139,351,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20190519.log',515,1,141,361,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190519.log',515,1,142,367,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190519.log',1048585,1,8,8,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190519.log',1048585,1,51,51,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190519.log',1048585,1,78,78,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190519.log',1048585,1,133,133,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',1048585,1,134,134,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',1048585,1,135,135,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',1048585,1,136,136,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',1048585,1,137,137,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',1048585,1,139,139,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',1048585,1,141,141,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190519.log',1048585,1,142,142,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190518.log',259,1,NULL,6,'20190518','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190518.log',515,1,49,116,'20190518','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190518.log',515,1,78,288,'20190518','201905',2,NULL,NULL,NULL,'ojs::counter',8,1,259,6,49),('usage_events_20190518.log',515,1,137,343,'20190518','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190518.log',515,1,139,351,'20190518','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190518.log',1048585,1,59,59,'20190518','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190518.log',1048585,1,78,78,'20190518','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190518.log',1048585,1,139,139,'20190518','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',256,1,NULL,1,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190520.log',259,1,NULL,9,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190520.log',515,1,19,52,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190520.log',515,1,49,116,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190520.log',515,1,58,137,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190520.log',515,1,78,288,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190520.log',515,1,133,318,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190520.log',515,1,134,324,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190520.log',515,1,135,330,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190520.log',515,1,136,336,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190520.log',515,1,137,343,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190520.log',515,1,139,351,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190520.log',515,1,141,361,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190520.log',515,1,142,367,'20190520','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190520.log',1048585,1,19,19,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190520.log',1048585,1,20,20,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190520.log',1048585,1,78,78,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190520.log',1048585,1,133,133,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',1048585,1,134,134,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',1048585,1,135,135,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',1048585,1,136,136,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',1048585,1,137,137,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',1048585,1,139,139,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',1048585,1,141,141,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190520.log',1048585,1,142,142,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190521.log',256,1,NULL,1,'20190521','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190521.log',515,1,20,53,'20190521','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190521.log',515,1,46,114,'20190521','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20190521.log',515,1,57,136,'20190521','201905',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,32),('usage_events_20190521.log',515,1,78,288,'20190521','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190521.log',515,1,142,367,'20190521','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190521.log',1048585,1,59,59,'20190521','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190521.log',1048585,1,142,142,'20190521','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190522.log',256,1,NULL,1,'20190522','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190522.log',515,1,28,68,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190522.log',515,1,46,114,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190522.log',515,1,54,133,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190522.log',515,1,78,288,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190522.log',515,1,139,351,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190522.log',1048585,1,78,78,'20190522','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190522.log',1048585,1,139,139,'20190522','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190523.log',256,1,NULL,1,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190523.log',515,1,6,31,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190523.log',515,1,7,32,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190523.log',515,1,8,33,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190523.log',515,1,19,52,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20190523.log',515,1,31,79,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20190523.log',515,1,32,80,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,17),('usage_events_20190523.log',515,1,34,82,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20190523.log',515,1,46,114,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20190523.log',515,1,49,116,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190523.log',515,1,50,117,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190523.log',515,1,55,134,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190523.log',515,1,79,282,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190523.log',515,1,82,284,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190523.log',515,1,78,288,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190523.log',515,1,87,291,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190523.log',515,1,99,305,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190523.log',515,1,100,306,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190523.log',515,1,113,307,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190523.log',515,1,114,308,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20190523.log',515,1,115,309,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190523.log',515,1,139,351,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190523.log',515,1,141,361,'20190523','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190523.log',1048585,1,4,4,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190523.log',1048585,1,33,33,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20190523.log',1048585,1,35,35,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190523.log',1048585,1,40,40,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190523.log',1048585,1,46,46,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190523.log',1048585,1,47,47,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190523.log',1048585,1,49,49,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190523.log',1048585,1,50,50,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190523.log',1048585,1,51,51,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190523.log',1048585,1,52,52,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190523.log',1048585,1,56,56,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190523.log',1048585,1,74,74,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190523.log',1048585,1,76,76,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190523.log',1048585,1,77,77,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190523.log',1048585,1,78,78,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190523.log',1048585,1,81,81,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190523.log',1048585,1,84,84,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190523.log',1048585,1,89,89,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190523.log',1048585,1,90,90,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190523.log',1048585,1,91,91,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190523.log',1048585,1,114,114,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190523.log',1048585,1,141,141,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190524.log',256,1,NULL,1,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190524.log',259,1,NULL,4,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190524.log',259,1,NULL,6,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190524.log',259,1,NULL,9,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190524.log',515,1,6,31,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190524.log',515,1,34,82,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190524.log',515,1,51,118,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190524.log',515,1,56,135,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190524.log',515,1,78,288,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190524.log',515,1,90,294,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190524.log',515,1,115,309,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190524.log',515,1,133,318,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190524.log',515,1,134,324,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190524.log',515,1,135,330,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190524.log',515,1,136,336,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190524.log',515,1,137,343,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190524.log',515,1,139,351,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190524.log',515,1,141,361,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190524.log',515,1,142,367,'20190524','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190524.log',1048585,1,4,4,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190524.log',1048585,1,31,31,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190524.log',1048585,1,47,47,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190524.log',1048585,1,50,50,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190524.log',1048585,1,51,51,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190524.log',1048585,1,56,56,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190524.log',1048585,1,59,59,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190524.log',1048585,1,78,78,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190524.log',1048585,1,82,82,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190524.log',1048585,1,83,83,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190524.log',1048585,1,89,89,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190524.log',1048585,1,115,115,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190524.log',1048585,1,133,133,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190524.log',1048585,1,134,134,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190524.log',1048585,1,135,135,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190524.log',1048585,1,136,136,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190524.log',1048585,1,137,137,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190524.log',1048585,1,139,139,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190524.log',1048585,1,141,141,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190524.log',1048585,1,142,142,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190525.log',256,1,NULL,1,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190525.log',259,1,NULL,5,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190525.log',515,1,4,19,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190525.log',515,1,5,30,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190525.log',515,1,31,79,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20190525.log',515,1,32,80,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20190525.log',515,1,35,83,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190525.log',515,1,46,114,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20190525.log',515,1,47,115,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190525.log',515,1,49,116,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190525.log',515,1,53,120,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190525.log',515,1,56,135,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190525.log',515,1,57,136,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190525.log',515,1,85,281,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190525.log',515,1,76,286,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190525.log',515,1,125,310,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190525.log',515,1,137,343,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190525.log',515,1,139,351,'20190525','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190525.log',1048585,1,14,14,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190525.log',1048585,1,21,21,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190525.log',1048585,1,22,22,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190525.log',1048585,1,46,46,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190525.log',1048585,1,52,52,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190525.log',1048585,1,56,56,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190525.log',1048585,1,57,57,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190525.log',1048585,1,59,59,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190525.log',1048585,1,78,78,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190525.log',1048585,1,81,81,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190525.log',1048585,1,87,87,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190526.log',256,1,NULL,1,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190526.log',259,1,NULL,9,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190526.log',515,1,4,19,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190526.log',515,1,5,30,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190526.log',515,1,6,31,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190526.log',515,1,14,51,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190526.log',515,1,46,114,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190526.log',515,1,56,135,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190526.log',515,1,58,137,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190526.log',515,1,83,285,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190526.log',515,1,76,286,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190526.log',515,1,84,289,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20190526.log',515,1,89,293,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190526.log',515,1,91,295,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190526.log',515,1,114,308,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190526.log',515,1,133,318,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20190526.log',515,1,134,324,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190526.log',515,1,135,330,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190526.log',515,1,136,336,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190526.log',515,1,137,343,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190526.log',515,1,139,351,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20190526.log',515,1,141,361,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190526.log',515,1,142,367,'20190526','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190526.log',1048585,1,5,5,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190526.log',1048585,1,7,7,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190526.log',1048585,1,14,14,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20190526.log',1048585,1,19,19,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190526.log',1048585,1,31,31,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190526.log',1048585,1,33,33,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190526.log',1048585,1,40,40,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190526.log',1048585,1,46,46,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190526.log',1048585,1,49,49,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190526.log',1048585,1,59,59,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190526.log',1048585,1,76,76,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190526.log',1048585,1,78,78,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190526.log',1048585,1,84,84,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190526.log',1048585,1,86,86,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190526.log',1048585,1,133,133,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190526.log',1048585,1,134,134,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190526.log',1048585,1,135,135,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190526.log',1048585,1,136,136,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190526.log',1048585,1,137,137,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190526.log',1048585,1,139,139,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190526.log',1048585,1,141,141,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190526.log',1048585,1,142,142,'20190526','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190527.log',256,1,NULL,1,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190527.log',259,1,NULL,9,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190527.log',515,1,7,32,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190527.log',515,1,19,52,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20190527.log',515,1,20,53,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190527.log',515,1,21,54,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190527.log',515,1,28,68,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,15),('usage_events_20190527.log',515,1,34,82,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190527.log',515,1,49,116,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190527.log',515,1,50,117,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20190527.log',515,1,53,120,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20190527.log',515,1,56,135,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190527.log',515,1,79,282,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20190527.log',515,1,81,283,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190527.log',515,1,82,284,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190527.log',515,1,83,285,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20190527.log',515,1,86,290,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190527.log',515,1,87,291,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190527.log',515,1,100,306,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190527.log',515,1,113,307,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20190527.log',515,1,133,318,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190527.log',515,1,134,324,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190527.log',515,1,135,330,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190527.log',515,1,136,336,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190527.log',515,1,137,343,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190527.log',515,1,139,351,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20190527.log',515,1,141,361,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190527.log',515,1,142,367,'20190527','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190527.log',1048585,1,4,4,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190527.log',1048585,1,6,6,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190527.log',1048585,1,7,7,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190527.log',1048585,1,21,21,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190527.log',1048585,1,28,28,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190527.log',1048585,1,46,46,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190527.log',1048585,1,47,47,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190527.log',1048585,1,49,49,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190527.log',1048585,1,57,57,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190527.log',1048585,1,59,59,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190527.log',1048585,1,76,76,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190527.log',1048585,1,88,88,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190527.log',1048585,1,89,89,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190527.log',1048585,1,90,90,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190527.log',1048585,1,91,91,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190527.log',1048585,1,100,100,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190527.log',1048585,1,125,125,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190527.log',1048585,1,133,133,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190527.log',1048585,1,134,134,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190527.log',1048585,1,135,135,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190527.log',1048585,1,136,136,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190527.log',1048585,1,137,137,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190527.log',1048585,1,139,139,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190527.log',1048585,1,141,141,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190527.log',1048585,1,142,142,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190528.log',256,1,NULL,1,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190528.log',515,1,1,3,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20190528.log',515,1,6,31,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190528.log',515,1,7,32,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190528.log',515,1,19,52,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190528.log',515,1,21,54,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190528.log',515,1,22,57,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190528.log',515,1,32,80,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20190528.log',515,1,33,81,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190528.log',515,1,46,114,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190528.log',515,1,49,116,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20190528.log',515,1,50,117,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190528.log',515,1,52,119,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20190528.log',515,1,55,134,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,30),('usage_events_20190528.log',515,1,56,135,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190528.log',515,1,89,293,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190528.log',515,1,113,307,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190528.log',515,1,125,310,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190528.log',515,1,136,336,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190528.log',515,1,137,343,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190528.log',1048585,1,5,5,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190528.log',1048585,1,7,7,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190528.log',1048585,1,8,8,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190528.log',1048585,1,14,14,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190528.log',1048585,1,20,20,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190528.log',1048585,1,31,31,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190528.log',1048585,1,34,34,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190528.log',1048585,1,40,40,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190528.log',1048585,1,49,49,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20190528.log',1048585,1,54,54,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190528.log',1048585,1,55,55,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190528.log',1048585,1,56,56,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190528.log',1048585,1,76,76,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190528.log',1048585,1,77,77,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190528.log',1048585,1,83,83,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190528.log',1048585,1,84,84,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190528.log',1048585,1,85,85,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190528.log',1048585,1,90,90,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190528.log',1048585,1,100,100,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190528.log',1048585,1,113,113,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190528.log',1048585,1,125,125,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190528.log',1048585,1,136,136,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190529.log',515,1,8,33,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,7),('usage_events_20190529.log',515,1,40,94,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190529.log',515,1,53,120,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190529.log',515,1,55,134,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190529.log',515,1,58,137,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190529.log',515,1,85,281,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20190529.log',515,1,79,282,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190529.log',515,1,81,283,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20190529.log',515,1,82,284,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190529.log',515,1,100,306,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190529.log',515,1,114,308,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190529.log',515,1,125,310,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190529.log',515,1,137,343,'20190529','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190529.log',1048585,1,4,4,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190529.log',1048585,1,7,7,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190529.log',1048585,1,20,20,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190529.log',1048585,1,28,28,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190529.log',1048585,1,34,34,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190529.log',1048585,1,49,49,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190529.log',1048585,1,50,50,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190529.log',1048585,1,55,55,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190529.log',1048585,1,56,56,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190529.log',1048585,1,58,58,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190529.log',1048585,1,59,59,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190529.log',1048585,1,74,74,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190529.log',1048585,1,77,77,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190529.log',1048585,1,78,78,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190529.log',1048585,1,79,79,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190529.log',1048585,1,82,82,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190529.log',1048585,1,84,84,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190529.log',1048585,1,85,85,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190529.log',1048585,1,86,86,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190529.log',1048585,1,114,114,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190529.log',1048585,1,125,125,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20190530.log',256,1,NULL,1,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190530.log',259,1,NULL,9,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190530.log',515,1,1,3,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20190530.log',515,1,5,30,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190530.log',515,1,8,33,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190530.log',515,1,14,51,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190530.log',515,1,20,53,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190530.log',515,1,33,81,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20190530.log',515,1,35,83,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190530.log',515,1,46,114,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190530.log',515,1,52,119,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20190530.log',515,1,55,134,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,30),('usage_events_20190530.log',515,1,59,138,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190530.log',515,1,85,281,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190530.log',515,1,83,285,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190530.log',515,1,76,286,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190530.log',515,1,89,293,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190530.log',515,1,90,294,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20190530.log',515,1,113,307,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20190530.log',515,1,133,318,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190530.log',515,1,134,324,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190530.log',515,1,135,330,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190530.log',515,1,136,336,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190530.log',515,1,137,343,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190530.log',515,1,139,351,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190530.log',515,1,141,361,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190530.log',515,1,142,367,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190530.log',1048585,1,4,4,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190530.log',1048585,1,6,6,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190530.log',1048585,1,7,7,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190530.log',1048585,1,8,8,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190530.log',1048585,1,19,19,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190530.log',1048585,1,28,28,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190530.log',1048585,1,31,31,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190530.log',1048585,1,34,34,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190530.log',1048585,1,35,35,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190530.log',1048585,1,46,46,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190530.log',1048585,1,49,49,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190530.log',1048585,1,54,54,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190530.log',1048585,1,55,55,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190530.log',1048585,1,56,56,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190530.log',1048585,1,59,59,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190530.log',1048585,1,76,76,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190530.log',1048585,1,77,77,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190530.log',1048585,1,78,78,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190530.log',1048585,1,81,81,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190530.log',1048585,1,82,82,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190530.log',1048585,1,83,83,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190530.log',1048585,1,89,89,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190530.log',1048585,1,90,90,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190530.log',1048585,1,91,91,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190530.log',1048585,1,100,100,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190530.log',1048585,1,114,114,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190530.log',1048585,1,125,125,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190530.log',1048585,1,133,133,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190530.log',1048585,1,134,134,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190530.log',1048585,1,135,135,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190530.log',1048585,1,136,136,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190530.log',1048585,1,137,137,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190530.log',1048585,1,139,139,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190530.log',1048585,1,141,141,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190530.log',1048585,1,142,142,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190531.log',256,1,NULL,1,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190531.log',515,1,6,31,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190531.log',515,1,7,32,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190531.log',515,1,28,68,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,15),('usage_events_20190531.log',515,1,35,83,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190531.log',515,1,46,114,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190531.log',515,1,49,116,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190531.log',515,1,51,118,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190531.log',515,1,52,119,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20190531.log',515,1,53,120,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190531.log',515,1,55,134,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190531.log',515,1,59,138,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190531.log',515,1,85,281,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190531.log',515,1,82,284,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190531.log',515,1,83,285,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190531.log',515,1,76,286,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190531.log',515,1,78,288,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190531.log',515,1,84,289,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190531.log',515,1,86,290,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190531.log',515,1,88,292,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190531.log',515,1,91,295,'20190531','201905',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190531.log',1048585,1,1,1,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190531.log',1048585,1,6,6,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190531.log',1048585,1,7,7,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190531.log',1048585,1,8,8,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190531.log',1048585,1,14,14,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190531.log',1048585,1,21,21,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190531.log',1048585,1,28,28,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190531.log',1048585,1,35,35,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190531.log',1048585,1,47,47,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190531.log',1048585,1,49,49,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190531.log',1048585,1,59,59,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190531.log',1048585,1,76,76,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190531.log',1048585,1,78,78,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190531.log',1048585,1,79,79,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190531.log',1048585,1,82,82,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190531.log',1048585,1,83,83,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190531.log',1048585,1,85,85,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190531.log',1048585,1,86,86,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190531.log',1048585,1,113,113,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190601.log',256,1,NULL,1,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190601.log',259,1,NULL,7,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190601.log',259,1,NULL,8,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190601.log',259,1,NULL,9,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190601.log',515,1,6,31,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190601.log',515,1,20,53,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190601.log',515,1,21,54,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190601.log',515,1,28,68,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190601.log',515,1,33,81,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190601.log',515,1,49,116,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190601.log',515,1,50,117,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190601.log',515,1,51,118,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190601.log',515,1,55,134,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190601.log',515,1,56,135,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190601.log',515,1,58,137,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190601.log',515,1,59,138,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190601.log',515,1,76,286,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190601.log',515,1,84,289,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190601.log',515,1,87,291,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190601.log',515,1,88,292,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190601.log',515,1,99,305,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190601.log',515,1,125,310,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190601.log',515,1,133,318,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20190601.log',515,1,134,324,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20190601.log',515,1,135,330,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20190601.log',515,1,136,336,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20190601.log',515,1,137,343,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190601.log',515,1,139,351,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190601.log',515,1,141,361,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20190601.log',515,1,142,367,'20190601','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190601.log',1048585,1,4,4,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20190601.log',1048585,1,6,6,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190601.log',1048585,1,7,7,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190601.log',1048585,1,14,14,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190601.log',1048585,1,20,20,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190601.log',1048585,1,31,31,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190601.log',1048585,1,33,33,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20190601.log',1048585,1,40,40,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190601.log',1048585,1,46,46,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190601.log',1048585,1,47,47,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190601.log',1048585,1,56,56,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190601.log',1048585,1,58,58,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190601.log',1048585,1,59,59,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190601.log',1048585,1,74,74,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190601.log',1048585,1,76,76,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190601.log',1048585,1,79,79,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190601.log',1048585,1,81,81,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190601.log',1048585,1,83,83,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190601.log',1048585,1,85,85,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190601.log',1048585,1,91,91,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190601.log',1048585,1,114,114,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190601.log',1048585,1,125,125,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190601.log',1048585,1,133,133,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190601.log',1048585,1,134,134,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190601.log',1048585,1,135,135,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190601.log',1048585,1,136,136,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190601.log',1048585,1,137,137,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190601.log',1048585,1,139,139,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190601.log',1048585,1,141,141,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190601.log',1048585,1,142,142,'20190601','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190602.log',256,1,NULL,1,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190602.log',259,1,NULL,2,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190602.log',259,1,NULL,3,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190602.log',259,1,NULL,4,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190602.log',259,1,NULL,5,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190602.log',259,1,NULL,7,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190602.log',515,1,1,3,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20190602.log',515,1,4,19,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190602.log',515,1,6,31,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190602.log',515,1,53,120,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190602.log',515,1,55,134,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190602.log',515,1,56,135,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190602.log',515,1,58,137,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190602.log',515,1,59,138,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190602.log',515,1,79,282,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190602.log',515,1,83,285,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190602.log',515,1,99,305,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190602.log',515,1,113,307,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190602.log',515,1,115,309,'20190602','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20190602.log',1048585,1,8,8,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190602.log',1048585,1,14,14,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190602.log',1048585,1,21,21,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190602.log',1048585,1,22,22,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190602.log',1048585,1,28,28,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190602.log',1048585,1,34,34,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190602.log',1048585,1,46,46,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190602.log',1048585,1,47,47,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190602.log',1048585,1,49,49,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190602.log',1048585,1,52,52,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190602.log',1048585,1,77,77,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190602.log',1048585,1,79,79,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190602.log',1048585,1,81,81,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190602.log',1048585,1,83,83,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190602.log',1048585,1,87,87,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190602.log',1048585,1,88,88,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190602.log',1048585,1,114,114,'20190602','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190603.log',256,1,NULL,1,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190603.log',515,1,5,30,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190603.log',515,1,6,31,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20190603.log',515,1,7,32,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190603.log',515,1,14,51,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20190603.log',515,1,22,57,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190603.log',515,1,28,68,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190603.log',515,1,33,81,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190603.log',515,1,34,82,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190603.log',515,1,47,115,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190603.log',515,1,49,116,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190603.log',515,1,54,133,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190603.log',515,1,56,135,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190603.log',515,1,57,136,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190603.log',515,1,84,289,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190603.log',515,1,89,293,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190603.log',515,1,90,294,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190603.log',515,1,91,295,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190603.log',515,1,100,306,'20190603','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20190603.log',1048585,1,8,8,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190603.log',1048585,1,21,21,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190603.log',1048585,1,28,28,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190603.log',1048585,1,33,33,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190603.log',1048585,1,34,34,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190603.log',1048585,1,51,51,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190603.log',1048585,1,56,56,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190603.log',1048585,1,57,57,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190603.log',1048585,1,74,74,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190603.log',1048585,1,76,76,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190603.log',1048585,1,78,78,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190603.log',1048585,1,79,79,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190603.log',1048585,1,84,84,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190603.log',1048585,1,86,86,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190603.log',1048585,1,89,89,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190603.log',1048585,1,113,113,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190603.log',1048585,1,114,114,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190604.log',256,1,NULL,1,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190604.log',515,1,4,19,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190604.log',515,1,5,30,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20190604.log',515,1,8,33,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190604.log',515,1,22,57,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190604.log',515,1,31,79,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20190604.log',515,1,33,81,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190604.log',515,1,50,117,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190604.log',515,1,55,134,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190604.log',515,1,58,137,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190604.log',515,1,83,285,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190604.log',515,1,86,290,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190604.log',515,1,91,295,'20190604','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20190604.log',1048585,1,20,20,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190604.log',1048585,1,22,22,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190604.log',1048585,1,31,31,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190604.log',1048585,1,33,33,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190604.log',1048585,1,51,51,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190604.log',1048585,1,83,83,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190604.log',1048585,1,84,84,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190604.log',1048585,1,88,88,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190604.log',1048585,1,100,100,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20190604.log',1048585,1,113,113,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190604.log',1048585,1,115,115,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190605.log',515,1,8,33,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190605.log',515,1,19,52,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190605.log',515,1,21,54,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190605.log',515,1,28,68,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190605.log',515,1,34,82,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20190605.log',515,1,35,83,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190605.log',515,1,55,134,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190605.log',515,1,81,283,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190605.log',515,1,78,288,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190605.log',515,1,89,293,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190605.log',515,1,113,307,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190605.log',515,1,125,310,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190605.log',1048585,1,5,5,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190605.log',1048585,1,14,14,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190605.log',1048585,1,21,21,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190605.log',1048585,1,50,50,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190605.log',1048585,1,55,55,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190605.log',1048585,1,57,57,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190605.log',1048585,1,58,58,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190605.log',1048585,1,79,79,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190605.log',1048585,1,86,86,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190605.log',1048585,1,91,91,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190606.log',256,1,NULL,1,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190606.log',259,1,NULL,7,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190606.log',259,1,NULL,8,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190606.log',259,1,NULL,9,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190606.log',515,1,1,3,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20190606.log',515,1,4,19,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190606.log',515,1,22,57,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190606.log',515,1,33,81,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190606.log',515,1,47,115,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20190606.log',515,1,49,116,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190606.log',515,1,52,119,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20190606.log',515,1,55,134,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,30),('usage_events_20190606.log',515,1,57,136,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190606.log',515,1,82,284,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190606.log',515,1,86,290,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190606.log',515,1,91,295,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20190606.log',515,1,133,318,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190606.log',515,1,134,324,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190606.log',515,1,135,330,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190606.log',515,1,136,336,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190606.log',515,1,137,343,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190606.log',515,1,139,351,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190606.log',515,1,141,361,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190606.log',515,1,142,367,'20190606','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190606.log',1048585,1,4,4,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190606.log',1048585,1,8,8,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190606.log',1048585,1,14,14,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190606.log',1048585,1,19,19,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190606.log',1048585,1,21,21,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190606.log',1048585,1,50,50,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190606.log',1048585,1,54,54,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190606.log',1048585,1,55,55,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190606.log',1048585,1,56,56,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20190606.log',1048585,1,58,58,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190606.log',1048585,1,74,74,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190606.log',1048585,1,76,76,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190606.log',1048585,1,79,79,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190606.log',1048585,1,82,82,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190606.log',1048585,1,88,88,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190606.log',1048585,1,89,89,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190606.log',1048585,1,91,91,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190606.log',1048585,1,100,100,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190606.log',1048585,1,114,114,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190606.log',1048585,1,133,133,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190606.log',1048585,1,134,134,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190606.log',1048585,1,135,135,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190606.log',1048585,1,136,136,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190606.log',1048585,1,137,137,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190606.log',1048585,1,139,139,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190606.log',1048585,1,141,141,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190606.log',1048585,1,142,142,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190607.log',515,1,4,19,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190607.log',515,1,5,30,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190607.log',515,1,8,33,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190607.log',515,1,14,51,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190607.log',515,1,19,52,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20190607.log',515,1,28,68,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190607.log',515,1,50,117,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190607.log',515,1,53,120,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190607.log',515,1,89,293,'20190607','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190607.log',1048585,1,1,1,'20190607','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190607.log',1048585,1,54,54,'20190607','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190607.log',1048585,1,55,55,'20190607','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190607.log',1048585,1,81,81,'20190607','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190607.log',1048585,1,83,83,'20190607','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190608.log',256,1,NULL,1,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190608.log',515,1,4,19,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190608.log',515,1,6,31,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190608.log',515,1,8,33,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190608.log',515,1,20,53,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190608.log',515,1,46,114,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190608.log',515,1,49,116,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190608.log',515,1,50,117,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190608.log',515,1,52,119,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20190608.log',515,1,53,120,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190608.log',515,1,56,135,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190608.log',515,1,57,136,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190608.log',515,1,59,138,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190608.log',515,1,79,282,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190608.log',515,1,81,283,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190608.log',515,1,82,284,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190608.log',515,1,78,288,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190608.log',515,1,88,292,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,53),('usage_events_20190608.log',515,1,89,293,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190608.log',515,1,139,351,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190608.log',1048585,1,4,4,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190608.log',1048585,1,7,7,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190608.log',1048585,1,19,19,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190608.log',1048585,1,20,20,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190608.log',1048585,1,31,31,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190608.log',1048585,1,33,33,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190608.log',1048585,1,35,35,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190608.log',1048585,1,47,47,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190608.log',1048585,1,50,50,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190608.log',1048585,1,52,52,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190608.log',1048585,1,57,57,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190608.log',1048585,1,58,58,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190608.log',1048585,1,76,76,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190608.log',1048585,1,82,82,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190608.log',1048585,1,85,85,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190608.log',1048585,1,86,86,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190608.log',1048585,1,113,113,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190608.log',1048585,1,115,115,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190608.log',1048585,1,139,139,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190609.log',256,1,NULL,1,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190609.log',259,1,NULL,7,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190609.log',259,1,NULL,8,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190609.log',259,1,NULL,9,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190609.log',515,1,1,3,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20190609.log',515,1,5,30,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190609.log',515,1,7,32,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190609.log',515,1,14,51,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190609.log',515,1,21,54,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190609.log',515,1,22,57,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190609.log',515,1,31,79,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20190609.log',515,1,33,81,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20190609.log',515,1,40,94,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20190609.log',515,1,51,118,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190609.log',515,1,52,119,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20190609.log',515,1,53,120,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190609.log',515,1,56,135,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190609.log',515,1,58,137,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190609.log',515,1,85,281,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20190609.log',515,1,81,283,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190609.log',515,1,76,286,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190609.log',515,1,86,290,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20190609.log',515,1,88,292,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190609.log',515,1,90,294,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20190609.log',515,1,91,295,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190609.log',515,1,100,306,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190609.log',515,1,114,308,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190609.log',515,1,125,310,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190609.log',515,1,133,318,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20190609.log',515,1,134,324,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190609.log',515,1,135,330,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190609.log',515,1,136,336,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190609.log',515,1,137,343,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190609.log',515,1,139,351,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190609.log',515,1,141,361,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190609.log',515,1,142,367,'20190609','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190609.log',1048585,1,1,1,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190609.log',1048585,1,8,8,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190609.log',1048585,1,14,14,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190609.log',1048585,1,21,21,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190609.log',1048585,1,40,40,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190609.log',1048585,1,50,50,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190609.log',1048585,1,54,54,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190609.log',1048585,1,79,79,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190609.log',1048585,1,83,83,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190609.log',1048585,1,84,84,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190609.log',1048585,1,88,88,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190609.log',1048585,1,89,89,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190609.log',1048585,1,91,91,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190609.log',1048585,1,133,133,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190609.log',1048585,1,134,134,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190609.log',1048585,1,135,135,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190609.log',1048585,1,136,136,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190609.log',1048585,1,137,137,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190609.log',1048585,1,139,139,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190609.log',1048585,1,141,141,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190609.log',1048585,1,142,142,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190610.log',256,1,NULL,1,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190610.log',515,1,21,54,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190610.log',515,1,22,57,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190610.log',515,1,28,68,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190610.log',515,1,40,94,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190610.log',515,1,55,134,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190610.log',515,1,57,136,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190610.log',515,1,79,282,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190610.log',515,1,76,286,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20190610.log',515,1,114,308,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190610.log',515,1,133,318,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190610.log',515,1,139,351,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190610.log',515,1,142,367,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190610.log',1048585,1,35,35,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190610.log',1048585,1,47,47,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190610.log',1048585,1,50,50,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190610.log',1048585,1,83,83,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190610.log',1048585,1,100,100,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190610.log',1048585,1,113,113,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190610.log',1048585,1,133,133,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190610.log',1048585,1,141,141,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190611.log',515,1,5,30,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190611.log',515,1,53,120,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190611.log',515,1,59,138,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190611.log',515,1,79,282,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190611.log',515,1,78,288,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190611.log',515,1,89,293,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190611.log',515,1,91,295,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20190611.log',515,1,99,305,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190611.log',515,1,113,307,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190611.log',515,1,115,309,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190611.log',1048585,1,4,4,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190611.log',1048585,1,8,8,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190611.log',1048585,1,31,31,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190611.log',1048585,1,35,35,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190611.log',1048585,1,49,49,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190611.log',1048585,1,59,59,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190611.log',1048585,1,84,84,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190611.log',1048585,1,85,85,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190611.log',1048585,1,86,86,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190611.log',1048585,1,89,89,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190611.log',1048585,1,113,113,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190611.log',1048585,1,125,125,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190611.log',1048585,1,133,133,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',256,1,NULL,1,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190612.log',259,1,NULL,7,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190612.log',259,1,NULL,8,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190612.log',259,1,NULL,9,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190612.log',515,1,19,52,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20190612.log',515,1,35,83,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190612.log',515,1,49,116,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190612.log',515,1,58,137,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190612.log',515,1,81,283,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20190612.log',515,1,88,292,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190612.log',515,1,89,293,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20190612.log',515,1,125,310,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20190612.log',515,1,133,318,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190612.log',515,1,134,324,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190612.log',515,1,135,330,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190612.log',515,1,136,336,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190612.log',515,1,137,343,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190612.log',515,1,139,351,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190612.log',515,1,141,361,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190612.log',515,1,142,367,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190612.log',1048585,1,4,4,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190612.log',1048585,1,7,7,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190612.log',1048585,1,8,8,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190612.log',1048585,1,19,19,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190612.log',1048585,1,46,46,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190612.log',1048585,1,51,51,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190612.log',1048585,1,58,58,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190612.log',1048585,1,85,85,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190612.log',1048585,1,88,88,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190612.log',1048585,1,90,90,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190612.log',1048585,1,100,100,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190612.log',1048585,1,133,133,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',1048585,1,134,134,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',1048585,1,135,135,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',1048585,1,136,136,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',1048585,1,137,137,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',1048585,1,139,139,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',1048585,1,141,141,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190612.log',1048585,1,142,142,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190613.log',256,1,NULL,1,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190613.log',259,1,NULL,1,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190613.log',259,1,NULL,2,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190613.log',259,1,NULL,6,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190613.log',259,1,NULL,7,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190613.log',259,1,NULL,9,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190613.log',515,1,1,3,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20190613.log',515,1,5,30,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190613.log',515,1,6,31,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190613.log',515,1,8,33,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190613.log',515,1,14,51,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190613.log',515,1,28,68,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190613.log',515,1,40,94,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20190613.log',515,1,46,114,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190613.log',515,1,79,282,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190613.log',1048585,1,5,5,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190613.log',1048585,1,8,8,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190613.log',1048585,1,14,14,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190613.log',1048585,1,49,49,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190613.log',1048585,1,59,59,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190613.log',1048585,1,74,74,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190613.log',1048585,1,137,137,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190614.log',256,1,NULL,1,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190614.log',259,1,NULL,7,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190614.log',259,1,NULL,8,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190614.log',259,1,NULL,9,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190614.log',515,1,54,133,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190614.log',515,1,56,135,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190614.log',515,1,81,283,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190614.log',515,1,82,284,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20190614.log',515,1,84,289,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190614.log',515,1,87,291,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190614.log',515,1,133,318,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20190614.log',515,1,134,324,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190614.log',515,1,135,330,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190614.log',515,1,136,336,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190614.log',515,1,137,343,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190614.log',515,1,139,351,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190614.log',515,1,141,361,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190614.log',515,1,142,367,'20190614','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190614.log',1048585,1,8,8,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190614.log',1048585,1,14,14,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190614.log',1048585,1,28,28,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20190614.log',1048585,1,59,59,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190614.log',1048585,1,79,79,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190614.log',1048585,1,83,83,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190614.log',1048585,1,89,89,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190614.log',1048585,1,133,133,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190614.log',1048585,1,134,134,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190614.log',1048585,1,135,135,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190614.log',1048585,1,136,136,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190614.log',1048585,1,137,137,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190614.log',1048585,1,139,139,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190614.log',1048585,1,141,141,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190614.log',1048585,1,142,142,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190615.log',515,1,49,116,'20190615','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190615.log',515,1,54,133,'20190615','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190615.log',515,1,58,137,'20190615','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190615.log',1048585,1,52,52,'20190615','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190615.log',1048585,1,59,59,'20190615','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190615.log',1048585,1,141,141,'20190615','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190616.log',256,1,NULL,1,'20190616','201906',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20190616.log',515,1,8,33,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190616.log',515,1,35,83,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190616.log',515,1,56,135,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190616.log',515,1,78,288,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190616.log',515,1,87,291,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20190616.log',515,1,99,305,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190616.log',515,1,114,308,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190616.log',1048585,1,20,20,'20190616','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190616.log',1048585,1,58,58,'20190616','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190616.log',1048585,1,77,77,'20190616','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190616.log',1048585,1,78,78,'20190616','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190617.log',256,1,NULL,1,'20190617','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190617.log',515,1,6,31,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20190617.log',515,1,8,33,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,7),('usage_events_20190617.log',515,1,49,116,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190617.log',515,1,50,117,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190617.log',515,1,51,118,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190617.log',515,1,56,135,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190617.log',515,1,79,282,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190617.log',515,1,84,289,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190617.log',515,1,99,305,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20190617.log',515,1,125,310,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190617.log',515,1,133,318,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190617.log',515,1,139,351,'20190617','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190617.log',1048585,1,7,7,'20190617','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190617.log',1048585,1,8,8,'20190617','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190617.log',1048585,1,90,90,'20190617','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190617.log',1048585,1,133,133,'20190617','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190618.log',256,1,NULL,1,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190618.log',259,1,NULL,9,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190618.log',515,1,49,116,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190618.log',515,1,59,138,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190618.log',515,1,81,283,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20190618.log',515,1,78,288,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190618.log',515,1,114,308,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190618.log',515,1,133,318,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190618.log',515,1,134,324,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,64),('usage_events_20190618.log',515,1,135,330,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190618.log',515,1,136,336,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190618.log',515,1,137,343,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190618.log',515,1,139,351,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190618.log',515,1,141,361,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190618.log',515,1,142,367,'20190618','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190618.log',1048585,1,49,49,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190618.log',1048585,1,59,59,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190618.log',1048585,1,78,78,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190618.log',1048585,1,133,133,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190618.log',1048585,1,134,134,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190618.log',1048585,1,135,135,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190618.log',1048585,1,136,136,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190618.log',1048585,1,137,137,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190618.log',1048585,1,139,139,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190618.log',1048585,1,141,141,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190618.log',1048585,1,142,142,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190619.log',259,1,NULL,5,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190619.log',515,1,32,80,'20190619','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20190619.log',515,1,47,115,'20190619','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190619.log',515,1,78,288,'20190619','201906',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20190619.log',515,1,133,318,'20190619','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190619.log',1048585,1,8,8,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190619.log',1048585,1,14,14,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190619.log',1048585,1,35,35,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190619.log',1048585,1,59,59,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190619.log',1048585,1,78,78,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190619.log',1048585,1,89,89,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190619.log',1048585,1,90,90,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190619.log',1048585,1,100,100,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190620.log',256,1,NULL,1,'20190620','201906',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190620.log',259,1,NULL,9,'20190620','201906',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190620.log',515,1,19,52,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190620.log',515,1,79,282,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190620.log',515,1,78,288,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20190620.log',515,1,100,306,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20190620.log',515,1,133,318,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,63),('usage_events_20190620.log',515,1,134,324,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190620.log',515,1,139,351,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190620.log',515,1,142,367,'20190620','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190620.log',1048585,1,19,19,'20190620','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190620.log',1048585,1,100,100,'20190620','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190620.log',1048585,1,133,133,'20190620','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190620.log',1048585,1,142,142,'20190620','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190621.log',256,1,NULL,1,'20190621','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190621.log',515,1,8,33,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190621.log',515,1,50,117,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190621.log',515,1,58,137,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190621.log',515,1,82,284,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190621.log',515,1,78,288,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190621.log',515,1,139,351,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190621.log',515,1,141,361,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190621.log',1048585,1,8,8,'20190621','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190621.log',1048585,1,139,139,'20190621','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190621.log',1048585,1,141,141,'20190621','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190622.log',515,1,46,114,'20190622','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20190622.log',515,1,50,117,'20190622','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190622.log',515,1,57,136,'20190622','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190622.log',515,1,78,288,'20190622','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190622.log',515,1,89,293,'20190622','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190622.log',1048585,1,4,4,'20190622','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190622.log',1048585,1,14,14,'20190622','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190622.log',1048585,1,57,57,'20190622','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190622.log',1048585,1,78,78,'20190622','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190622.log',1048585,1,79,79,'20190622','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190622.log',1048585,1,125,125,'20190622','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190623.log',256,1,NULL,1,'20190623','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190623.log',515,1,7,32,'20190623','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20190623.log',515,1,20,53,'20190623','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190623.log',515,1,81,283,'20190623','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20190623.log',515,1,78,288,'20190623','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190623.log',515,1,84,289,'20190623','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190623.log',515,1,87,291,'20190623','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20190623.log',515,1,141,361,'20190623','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190623.log',1048585,1,6,6,'20190623','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190623.log',1048585,1,14,14,'20190623','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190623.log',1048585,1,20,20,'20190623','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190623.log',1048585,1,31,31,'20190623','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190623.log',1048585,1,83,83,'20190623','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190623.log',1048585,1,141,141,'20190623','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190624.log',256,1,NULL,1,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20190624.log',259,1,NULL,9,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190624.log',515,1,4,19,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190624.log',515,1,28,68,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190624.log',515,1,32,80,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20190624.log',515,1,49,116,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190624.log',515,1,54,133,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190624.log',515,1,79,282,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190624.log',515,1,81,283,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190624.log',515,1,77,287,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20190624.log',515,1,78,288,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190624.log',515,1,88,292,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190624.log',515,1,89,293,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190624.log',515,1,125,310,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190624.log',515,1,133,318,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20190624.log',515,1,134,324,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20190624.log',515,1,135,330,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190624.log',515,1,136,336,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190624.log',515,1,137,343,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190624.log',515,1,139,351,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20190624.log',515,1,141,361,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190624.log',515,1,142,367,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190624.log',1048585,1,5,5,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190624.log',1048585,1,21,21,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190624.log',1048585,1,28,28,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190624.log',1048585,1,46,46,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190624.log',1048585,1,52,52,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190624.log',1048585,1,57,57,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190624.log',1048585,1,79,79,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20190624.log',1048585,1,89,89,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190624.log',1048585,1,113,113,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190624.log',1048585,1,133,133,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190624.log',1048585,1,134,134,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190624.log',1048585,1,135,135,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190624.log',1048585,1,136,136,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190624.log',1048585,1,137,137,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190624.log',1048585,1,139,139,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190624.log',1048585,1,141,141,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190624.log',1048585,1,142,142,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190625.log',256,1,NULL,1,'20190625','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190625.log',259,1,NULL,8,'20190625','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190625.log',259,1,NULL,9,'20190625','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190625.log',515,1,79,282,'20190625','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190625.log',515,1,81,283,'20190625','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190625.log',515,1,78,288,'20190625','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190625.log',515,1,99,305,'20190625','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190625.log',515,1,134,324,'20190625','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190625.log',515,1,139,351,'20190625','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190625.log',1048585,1,135,135,'20190625','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',256,1,NULL,1,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190626.log',259,1,NULL,8,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190626.log',259,1,NULL,9,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190626.log',515,1,58,137,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190626.log',515,1,59,138,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20190626.log',515,1,78,288,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190626.log',515,1,88,292,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190626.log',515,1,133,318,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190626.log',515,1,134,324,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190626.log',515,1,135,330,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190626.log',515,1,136,336,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190626.log',515,1,137,343,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190626.log',515,1,139,351,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190626.log',515,1,141,361,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190626.log',515,1,142,367,'20190626','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190626.log',1048585,1,28,28,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190626.log',1048585,1,58,58,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190626.log',1048585,1,78,78,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190626.log',1048585,1,125,125,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190626.log',1048585,1,133,133,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',1048585,1,134,134,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',1048585,1,135,135,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',1048585,1,136,136,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',1048585,1,137,137,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',1048585,1,139,139,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',1048585,1,141,141,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190626.log',1048585,1,142,142,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190627.log',256,1,NULL,1,'20190627','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190627.log',259,1,NULL,8,'20190627','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190627.log',259,1,NULL,9,'20190627','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190627.log',515,1,49,116,'20190627','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190627.log',515,1,78,288,'20190627','201906',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20190627.log',515,1,88,292,'20190627','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190627.log',1048585,1,78,78,'20190627','201906',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190628.log',515,1,19,52,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190628.log',515,1,22,57,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20190628.log',515,1,34,82,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190628.log',515,1,49,116,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190628.log',515,1,51,118,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20190628.log',515,1,59,138,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190628.log',515,1,78,288,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190628.log',515,1,141,361,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20190628.log',1048585,1,7,7,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190628.log',1048585,1,19,19,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190628.log',1048585,1,28,28,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190628.log',1048585,1,34,34,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20190628.log',1048585,1,51,51,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190628.log',1048585,1,57,57,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190628.log',1048585,1,76,76,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190628.log',1048585,1,78,78,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190628.log',1048585,1,114,114,'20190628','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190629.log',515,1,14,51,'20190629','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20190629.log',515,1,59,138,'20190629','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190629.log',515,1,87,291,'20190629','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190629.log',515,1,89,293,'20190629','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190629.log',515,1,90,294,'20190629','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20190629.log',1048585,1,1,1,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190629.log',1048585,1,6,6,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190629.log',1048585,1,51,51,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190629.log',1048585,1,52,52,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190629.log',1048585,1,85,85,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190629.log',1048585,1,87,87,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190629.log',1048585,1,114,114,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190629.log',1048585,1,115,115,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190630.log',515,1,20,53,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190630.log',515,1,21,54,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20190630.log',515,1,32,80,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20190630.log',515,1,47,115,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190630.log',515,1,49,116,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190630.log',515,1,52,119,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20190630.log',515,1,55,134,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20190630.log',515,1,85,281,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190630.log',515,1,84,289,'20190630','201906',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190630.log',1048585,1,5,5,'20190630','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190630.log',1048585,1,83,83,'20190630','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190630.log',1048585,1,86,86,'20190630','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190630.log',1048585,1,136,136,'20190630','201906',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190701.log',256,1,NULL,1,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190701.log',259,1,NULL,9,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190701.log',515,1,4,19,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20190701.log',515,1,34,82,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190701.log',515,1,46,114,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190701.log',515,1,54,133,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190701.log',515,1,56,135,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190701.log',515,1,59,138,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190701.log',515,1,78,288,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190701.log',515,1,87,291,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190701.log',515,1,89,293,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190701.log',515,1,99,305,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190701.log',515,1,136,336,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190701.log',515,1,137,343,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190701.log',1048585,1,34,34,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190701.log',1048585,1,49,49,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190701.log',1048585,1,55,55,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190701.log',1048585,1,81,81,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190701.log',1048585,1,84,84,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190701.log',1048585,1,87,87,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190701.log',1048585,1,89,89,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190702.log',256,1,NULL,1,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190702.log',259,1,NULL,5,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190702.log',259,1,NULL,6,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190702.log',259,1,NULL,7,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190702.log',259,1,NULL,8,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190702.log',259,1,NULL,9,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190702.log',515,1,20,53,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190702.log',515,1,28,68,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190702.log',515,1,34,82,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20190702.log',515,1,49,116,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190702.log',515,1,85,281,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190702.log',515,1,78,288,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190702.log',515,1,88,292,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190702.log',515,1,100,306,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190702.log',515,1,134,324,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190702.log',515,1,135,330,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190702.log',515,1,136,336,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190702.log',515,1,137,343,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190702.log',1048585,1,5,5,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190702.log',1048585,1,28,28,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190702.log',1048585,1,35,35,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190702.log',1048585,1,58,58,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190702.log',1048585,1,78,78,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190702.log',1048585,1,79,79,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190702.log',1048585,1,134,134,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190702.log',1048585,1,135,135,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190702.log',1048585,1,136,136,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190702.log',1048585,1,139,139,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190702.log',1048585,1,141,141,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190703.log',256,1,NULL,1,'20190703','201907',NULL,NULL,NULL,NULL,'ojs::counter',33,NULL,NULL,NULL,NULL),('usage_events_20190703.log',259,1,NULL,9,'20190703','201907',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20190703.log',515,1,8,33,'20190703','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190703.log',515,1,56,135,'20190703','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190703.log',515,1,84,289,'20190703','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20190703.log',515,1,133,318,'20190703','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190703.log',1048585,1,8,8,'20190703','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190703.log',1048585,1,83,83,'20190703','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190703.log',1048585,1,90,90,'20190703','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190703.log',1048585,1,133,133,'20190703','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190704.log',256,1,NULL,1,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190704.log',259,1,NULL,9,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190704.log',515,1,53,120,'20190704','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190704.log',515,1,87,291,'20190704','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190704.log',515,1,114,308,'20190704','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190704.log',515,1,133,318,'20190704','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190704.log',515,1,142,367,'20190704','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190704.log',1048585,1,8,8,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20190704.log',1048585,1,81,81,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190704.log',1048585,1,88,88,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190704.log',1048585,1,90,90,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190704.log',1048585,1,114,114,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190704.log',1048585,1,133,133,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190704.log',1048585,1,142,142,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190705.log',256,1,NULL,1,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190705.log',259,1,NULL,9,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190705.log',515,1,20,53,'20190705','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20190705.log',515,1,85,281,'20190705','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190705.log',515,1,78,288,'20190705','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190705.log',515,1,139,351,'20190705','201907',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20190705.log',1048585,1,4,4,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190705.log',1048585,1,14,14,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190705.log',1048585,1,54,54,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190705.log',1048585,1,78,78,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190705.log',1048585,1,79,79,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190705.log',1048585,1,91,91,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190705.log',1048585,1,115,115,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190705.log',1048585,1,139,139,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190706.log',256,1,NULL,1,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190706.log',259,1,NULL,2,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190706.log',259,1,NULL,9,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190706.log',515,1,57,136,'20190706','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20190706.log',515,1,78,288,'20190706','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190706.log',515,1,125,310,'20190706','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190706.log',515,1,134,324,'20190706','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190706.log',1048585,1,35,35,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190706.log',1048585,1,56,56,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190706.log',1048585,1,57,57,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190706.log',1048585,1,78,78,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190706.log',1048585,1,125,125,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190706.log',1048585,1,133,133,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190706.log',1048585,1,134,134,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190706.log',1048585,1,135,135,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190706.log',1048585,1,136,136,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190706.log',1048585,1,137,137,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190706.log',1048585,1,139,139,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190706.log',1048585,1,141,141,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190706.log',1048585,1,142,142,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190707.log',256,1,NULL,1,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190707.log',259,1,NULL,9,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190707.log',515,1,47,115,'20190707','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190707.log',515,1,85,281,'20190707','201907',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,41),('usage_events_20190707.log',515,1,134,324,'20190707','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190707.log',515,1,142,367,'20190707','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190707.log',1048585,1,28,28,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190707.log',1048585,1,47,47,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190707.log',1048585,1,76,76,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190707.log',1048585,1,78,78,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190707.log',1048585,1,88,88,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190707.log',1048585,1,100,100,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190707.log',1048585,1,142,142,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190708.log',256,1,NULL,1,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190708.log',259,1,NULL,9,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190708.log',515,1,51,118,'20190708','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190708.log',515,1,53,120,'20190708','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190708.log',515,1,56,135,'20190708','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190708.log',515,1,78,288,'20190708','201907',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190708.log',515,1,87,291,'20190708','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190708.log',515,1,139,351,'20190708','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190708.log',515,1,141,361,'20190708','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20190708.log',1048585,1,28,28,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,3,NULL),('usage_events_20190708.log',1048585,1,78,78,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190708.log',1048585,1,79,79,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190708.log',1048585,1,88,88,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190708.log',1048585,1,134,134,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190708.log',1048585,1,136,136,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190708.log',1048585,1,137,137,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190708.log',1048585,1,139,139,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190708.log',1048585,1,141,141,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',256,1,NULL,1,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20190709.log',259,1,NULL,9,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190709.log',515,1,20,53,'20190709','201907',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,11),('usage_events_20190709.log',515,1,49,116,'20190709','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190709.log',515,1,134,324,'20190709','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190709.log',515,1,141,361,'20190709','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190709.log',515,1,142,367,'20190709','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190709.log',1048585,1,1,1,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190709.log',1048585,1,5,5,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190709.log',1048585,1,7,7,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190709.log',1048585,1,8,8,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190709.log',1048585,1,20,20,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190709.log',1048585,1,22,22,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20190709.log',1048585,1,28,28,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190709.log',1048585,1,34,34,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190709.log',1048585,1,46,46,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190709.log',1048585,1,50,50,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190709.log',1048585,1,55,55,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190709.log',1048585,1,56,56,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190709.log',1048585,1,59,59,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190709.log',1048585,1,78,78,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190709.log',1048585,1,84,84,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190709.log',1048585,1,89,89,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190709.log',1048585,1,133,133,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',1048585,1,134,134,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',1048585,1,135,135,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',1048585,1,136,136,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',1048585,1,137,137,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',1048585,1,139,139,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',1048585,1,141,141,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190709.log',1048585,1,142,142,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190710.log',256,1,NULL,1,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20190710.log',259,1,NULL,9,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190710.log',515,1,57,136,'20190710','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190710.log',515,1,134,324,'20190710','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190710.log',515,1,136,336,'20190710','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190710.log',515,1,137,343,'20190710','201907',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20190710.log',515,1,141,361,'20190710','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190710.log',1048585,1,6,6,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190710.log',1048585,1,14,14,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190710.log',1048585,1,21,21,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190710.log',1048585,1,34,34,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190710.log',1048585,1,57,57,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190710.log',1048585,1,83,83,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190710.log',1048585,1,88,88,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190710.log',1048585,1,91,91,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190710.log',1048585,1,115,115,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190710.log',1048585,1,125,125,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190710.log',1048585,1,137,137,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190711.log',256,1,NULL,1,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,1,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,3,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,4,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,5,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,6,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,7,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,8,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190711.log',259,1,NULL,9,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190711.log',515,1,56,135,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190711.log',515,1,88,292,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190711.log',515,1,115,309,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190711.log',515,1,125,310,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190711.log',515,1,133,318,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190711.log',515,1,134,324,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190711.log',515,1,136,336,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190711.log',515,1,137,343,'20190711','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190711.log',1048585,1,56,56,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190711.log',1048585,1,79,79,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190711.log',1048585,1,81,81,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190711.log',1048585,1,82,82,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190711.log',1048585,1,83,83,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190711.log',1048585,1,85,85,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190711.log',1048585,1,86,86,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190711.log',1048585,1,87,87,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190711.log',1048585,1,88,88,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20190711.log',1048585,1,89,89,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190711.log',1048585,1,90,90,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190711.log',1048585,1,91,91,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190711.log',1048585,1,99,99,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190711.log',1048585,1,100,100,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190711.log',1048585,1,113,113,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190711.log',1048585,1,114,114,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190711.log',1048585,1,115,115,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190711.log',1048585,1,125,125,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190711.log',1048585,1,133,133,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190711.log',1048585,1,134,134,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190711.log',1048585,1,135,135,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190711.log',1048585,1,136,136,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190711.log',1048585,1,137,137,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190711.log',1048585,1,139,139,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190711.log',1048585,1,141,141,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190711.log',1048585,1,142,142,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190712.log',256,1,NULL,1,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190712.log',259,1,NULL,8,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190712.log',259,1,NULL,9,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190712.log',515,1,20,53,'20190712','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190712.log',515,1,54,133,'20190712','201907',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20190712.log',515,1,139,351,'20190712','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190712.log',1048585,1,79,79,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190712.log',1048585,1,86,86,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190712.log',1048585,1,113,113,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190712.log',1048585,1,115,115,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190712.log',1048585,1,139,139,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190713.log',256,1,NULL,1,'20190713','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190713.log',259,1,NULL,9,'20190713','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190713.log',515,1,113,307,'20190713','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20190713.log',515,1,141,361,'20190713','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190713.log',1048585,1,79,79,'20190713','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190713.log',1048585,1,82,82,'20190713','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190713.log',1048585,1,91,91,'20190713','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190713.log',1048585,1,141,141,'20190713','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190714.log',256,1,NULL,1,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190714.log',259,1,NULL,9,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190714.log',515,1,79,282,'20190714','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20190714.log',515,1,78,288,'20190714','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190714.log',515,1,87,291,'20190714','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190714.log',515,1,99,305,'20190714','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190714.log',515,1,141,361,'20190714','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190714.log',1048585,1,78,78,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190714.log',1048585,1,83,83,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190714.log',1048585,1,86,86,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190714.log',1048585,1,99,99,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190715.log',256,1,NULL,1,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,1,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,3,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,4,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,5,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,6,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,7,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,8,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190715.log',259,1,NULL,9,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190715.log',515,1,46,114,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20190715.log',515,1,49,116,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',7,1,259,4,24),('usage_events_20190715.log',515,1,78,288,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190715.log',515,1,115,309,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190715.log',515,1,125,310,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190715.log',515,1,134,324,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190715.log',515,1,136,336,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190715.log',515,1,142,367,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190715.log',1048585,1,1,1,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190715.log',1048585,1,6,6,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190715.log',1048585,1,50,50,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190715.log',1048585,1,51,51,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190715.log',1048585,1,55,55,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190715.log',1048585,1,58,58,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190715.log',1048585,1,79,79,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190715.log',1048585,1,81,81,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190715.log',1048585,1,82,82,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190715.log',1048585,1,83,83,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190715.log',1048585,1,85,85,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190715.log',1048585,1,86,86,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190715.log',1048585,1,87,87,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190715.log',1048585,1,88,88,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190715.log',1048585,1,89,89,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190715.log',1048585,1,90,90,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190715.log',1048585,1,91,91,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190715.log',1048585,1,99,99,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190715.log',1048585,1,100,100,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190715.log',1048585,1,113,113,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190715.log',1048585,1,114,114,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190715.log',1048585,1,115,115,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190715.log',1048585,1,125,125,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190715.log',1048585,1,133,133,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190715.log',1048585,1,134,134,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190715.log',1048585,1,135,135,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190715.log',1048585,1,136,136,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190715.log',1048585,1,137,137,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190715.log',1048585,1,139,139,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190715.log',1048585,1,141,141,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190715.log',1048585,1,142,142,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190813.log',259,1,NULL,9,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190813.log',256,1,NULL,1,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190716.log',1048585,1,134,134,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190716.log',1048585,1,125,125,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190716.log',1048585,1,91,91,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190716.log',1048585,1,86,86,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190716.log',1048585,1,84,84,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190716.log',1048585,1,79,79,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190716.log',1048585,1,74,74,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190716.log',1048585,1,57,57,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190716.log',1048585,1,55,55,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190716.log',1048585,1,50,50,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190716.log',1048585,1,28,28,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190716.log',1048585,1,21,21,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190716.log',1048585,1,7,7,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190716.log',1048585,1,4,4,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190716.log',515,1,142,367,'20190716','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190716.log',515,1,87,291,'20190716','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190716.log',256,1,NULL,1,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190716.log',259,1,NULL,9,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190716.log',515,1,59,138,'20190716','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20190716.log',515,1,81,283,'20190716','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190814.log',1048585,1,33,33,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190814.log',1048585,1,28,28,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190814.log',1048585,1,22,22,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190814.log',1048585,1,21,21,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190814.log',1048585,1,20,20,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190814.log',1048585,1,14,14,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190814.log',1048585,1,8,8,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20190814.log',1048585,1,6,6,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20190814.log',1048585,1,5,5,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190814.log',515,1,136,336,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190814.log',515,1,134,324,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190814.log',515,1,115,309,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190814.log',515,1,56,135,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190814.log',515,1,50,117,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20190814.log',515,1,49,116,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190814.log',515,1,35,83,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20190814.log',515,1,20,53,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20190814.log',515,1,8,33,'20190814','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190814.log',259,1,NULL,9,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190814.log',259,1,NULL,8,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190814.log',259,1,NULL,7,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190814.log',259,1,NULL,6,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190814.log',259,1,NULL,5,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190814.log',259,1,NULL,4,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190814.log',259,1,NULL,3,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190814.log',259,1,NULL,1,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190814.log',256,1,NULL,1,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',17,NULL,NULL,NULL,NULL),('usage_events_20190813.log',1048585,1,113,113,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190813.log',1048585,1,100,100,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190813.log',1048585,1,90,90,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190813.log',1048585,1,54,54,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190813.log',1048585,1,28,28,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190813.log',1048585,1,22,22,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190813.log',1048585,1,21,21,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190813.log',1048585,1,4,4,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190717.log',515,1,78,288,'20190717','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190718.log',256,1,NULL,1,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20190718.log',259,1,NULL,1,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190718.log',259,1,NULL,2,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190718.log',259,1,NULL,9,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190718.log',515,1,20,53,'20190718','201907',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,11),('usage_events_20190718.log',515,1,47,115,'20190718','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20190718.log',515,1,78,288,'20190718','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190718.log',515,1,134,324,'20190718','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190718.log',515,1,137,343,'20190718','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190718.log',515,1,141,361,'20190718','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190718.log',515,1,142,367,'20190718','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190718.log',1048585,1,1,1,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190718.log',1048585,1,20,20,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20190718.log',1048585,1,59,59,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190718.log',1048585,1,78,78,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190718.log',1048585,1,81,81,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190718.log',1048585,1,82,82,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190718.log',1048585,1,87,87,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190718.log',1048585,1,137,137,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190718.log',1048585,1,142,142,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190719.log',256,1,NULL,1,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190719.log',259,1,NULL,9,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190719.log',515,1,49,116,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190719.log',515,1,83,285,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190719.log',515,1,78,288,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190719.log',515,1,139,351,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190719.log',515,1,141,361,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190719.log',1048585,1,20,20,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190719.log',1048585,1,33,33,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190719.log',1048585,1,49,49,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190719.log',1048585,1,83,83,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190719.log',1048585,1,86,86,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190719.log',1048585,1,133,133,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190719.log',1048585,1,139,139,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190719.log',1048585,1,142,142,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190720.log',256,1,NULL,1,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190720.log',259,1,NULL,6,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190720.log',515,1,100,306,'20190720','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190720.log',515,1,114,308,'20190720','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20190720.log',1048585,1,4,4,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190720.log',1048585,1,20,20,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190720.log',1048585,1,31,31,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190720.log',1048585,1,78,78,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190720.log',1048585,1,87,87,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190720.log',1048585,1,89,89,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190721.log',256,1,NULL,1,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,1,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,3,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,4,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,5,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,6,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,7,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,8,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190721.log',259,1,NULL,9,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190721.log',515,1,56,135,'20190721','201907',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,31),('usage_events_20190721.log',515,1,115,309,'20190721','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190721.log',515,1,125,310,'20190721','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190721.log',515,1,134,324,'20190721','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190721.log',515,1,136,336,'20190721','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190721.log',1048585,1,14,14,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190721.log',1048585,1,54,54,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190721.log',1048585,1,55,55,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190721.log',1048585,1,56,56,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190721.log',1048585,1,79,79,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190721.log',1048585,1,81,81,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190721.log',1048585,1,82,82,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190721.log',1048585,1,83,83,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190721.log',1048585,1,85,85,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190721.log',1048585,1,86,86,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190721.log',1048585,1,87,87,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190721.log',1048585,1,88,88,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190721.log',1048585,1,89,89,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190721.log',1048585,1,90,90,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190721.log',1048585,1,91,91,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190721.log',1048585,1,99,99,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190721.log',1048585,1,100,100,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190721.log',1048585,1,113,113,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190721.log',1048585,1,114,114,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190721.log',1048585,1,115,115,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190721.log',1048585,1,125,125,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190721.log',1048585,1,133,133,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190721.log',1048585,1,134,134,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190721.log',1048585,1,135,135,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190721.log',1048585,1,136,136,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190721.log',1048585,1,137,137,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190721.log',1048585,1,139,139,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190721.log',1048585,1,141,141,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190721.log',1048585,1,142,142,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190722.log',256,1,NULL,1,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190722.log',259,1,NULL,9,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190722.log',515,1,20,53,'20190722','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190722.log',515,1,56,135,'20190722','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190722.log',515,1,57,136,'20190722','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20190722.log',515,1,78,288,'20190722','201907',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190722.log',515,1,142,367,'20190722','201907',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190722.log',1048585,1,51,51,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190722.log',1048585,1,57,57,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190722.log',1048585,1,74,74,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190722.log',1048585,1,76,76,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190722.log',1048585,1,77,77,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190722.log',1048585,1,78,78,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190722.log',1048585,1,88,88,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190722.log',1048585,1,91,91,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190722.log',1048585,1,114,114,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190722.log',1048585,1,133,133,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190722.log',1048585,1,142,142,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20190814.log',1048585,1,34,34,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190814.log',1048585,1,35,35,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,3,NULL),('usage_events_20190814.log',1048585,1,46,46,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190814.log',1048585,1,47,47,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190814.log',1048585,1,50,50,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190814.log',1048585,1,52,52,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190814.log',1048585,1,56,56,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190814.log',1048585,1,76,76,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190814.log',1048585,1,77,77,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190814.log',1048585,1,78,78,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190814.log',1048585,1,79,79,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190814.log',1048585,1,81,81,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190814.log',1048585,1,82,82,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190814.log',1048585,1,83,83,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190814.log',1048585,1,84,84,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190814.log',1048585,1,85,85,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190814.log',1048585,1,86,86,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190814.log',1048585,1,87,87,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190814.log',1048585,1,88,88,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190814.log',1048585,1,89,89,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190814.log',1048585,1,90,90,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190814.log',1048585,1,91,91,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190814.log',1048585,1,99,99,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190814.log',1048585,1,100,100,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190814.log',1048585,1,113,113,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190814.log',1048585,1,114,114,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20190814.log',1048585,1,115,115,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190814.log',1048585,1,125,125,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190814.log',1048585,1,133,133,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190814.log',1048585,1,134,134,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190814.log',1048585,1,135,135,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190814.log',1048585,1,136,136,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190814.log',1048585,1,137,137,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190814.log',1048585,1,139,139,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190814.log',1048585,1,141,141,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190814.log',1048585,1,142,142,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190815.log',256,1,NULL,1,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20190815.log',259,1,NULL,3,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190815.log',259,1,NULL,4,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190815.log',259,1,NULL,9,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190815.log',1048585,1,6,6,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190815.log',1048585,1,28,28,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190815.log',1048585,1,78,78,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190815.log',1048585,1,79,79,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190815.log',1048585,1,81,81,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190815.log',1048585,1,90,90,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190815.log',1048585,1,142,142,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190816.log',256,1,NULL,1,'20190816','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190816.log',259,1,NULL,1,'20190816','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190816.log',259,1,NULL,9,'20190816','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190816.log',515,1,8,33,'20190816','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190816.log',515,1,139,351,'20190816','201908',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20190816.log',1048585,1,8,8,'20190816','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20190816.log',1048585,1,28,28,'20190816','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190817.log',256,1,NULL,1,'20190817','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190817.log',259,1,NULL,9,'20190817','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190817.log',515,1,51,118,'20190817','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190817.log',515,1,82,284,'20190817','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20190817.log',515,1,139,351,'20190817','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190817.log',515,1,142,367,'20190817','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190817.log',1048585,1,82,82,'20190817','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190818.log',256,1,NULL,1,'20190818','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190818.log',259,1,NULL,3,'20190818','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190818.log',259,1,NULL,9,'20190818','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190818.log',515,1,134,324,'20190818','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190818.log',1048585,1,31,31,'20190818','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190818.log',1048585,1,134,134,'20190818','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190819.log',256,1,NULL,1,'20190819','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190819.log',259,1,NULL,9,'20190819','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190819.log',515,1,20,53,'20190819','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190819.log',515,1,77,287,'20190819','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20190819.log',515,1,139,351,'20190819','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190819.log',1048585,1,133,133,'20190819','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190820.log',256,1,NULL,1,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',16,NULL,NULL,NULL,NULL),('usage_events_20190820.log',259,1,NULL,9,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190820.log',515,1,78,288,'20190820','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190820.log',515,1,136,336,'20190820','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190820.log',515,1,142,367,'20190820','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190820.log',1048585,1,52,52,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190820.log',1048585,1,59,59,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190820.log',1048585,1,78,78,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20190820.log',1048585,1,133,133,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190821.log',256,1,NULL,1,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190821.log',259,1,NULL,9,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190821.log',515,1,54,133,'20190821','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190821.log',515,1,133,318,'20190821','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190821.log',515,1,134,324,'20190821','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190821.log',515,1,135,330,'20190821','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190821.log',515,1,136,336,'20190821','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190821.log',515,1,137,343,'20190821','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190821.log',515,1,139,351,'20190821','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190821.log',1048585,1,54,54,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190821.log',1048585,1,79,79,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190821.log',1048585,1,133,133,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190821.log',1048585,1,134,134,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190821.log',1048585,1,135,135,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190821.log',1048585,1,136,136,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190821.log',1048585,1,137,137,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190821.log',1048585,1,139,139,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190822.log',256,1,NULL,1,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190822.log',259,1,NULL,6,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190822.log',259,1,NULL,9,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190822.log',515,1,20,53,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190822.log',515,1,56,135,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190822.log',515,1,81,283,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,44),('usage_events_20190822.log',515,1,78,288,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20190822.log',515,1,84,289,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190822.log',515,1,139,351,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20190822.log',515,1,142,367,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20190822.log',1048585,1,20,20,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190822.log',1048585,1,56,56,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190822.log',1048585,1,76,76,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190822.log',1048585,1,78,78,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190822.log',1048585,1,81,81,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20190822.log',1048585,1,139,139,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190823.log',256,1,NULL,1,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190823.log',259,1,NULL,9,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190823.log',515,1,51,118,'20190823','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190823.log',515,1,87,291,'20190823','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190823.log',515,1,133,318,'20190823','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190823.log',1048585,1,51,51,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190823.log',1048585,1,78,78,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190823.log',1048585,1,87,87,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190824.log',256,1,NULL,1,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',21,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,1,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,3,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,4,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,5,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,6,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,7,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,8,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190824.log',259,1,NULL,9,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190824.log',515,1,87,291,'20190824','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190824.log',515,1,115,309,'20190824','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190824.log',515,1,133,318,'20190824','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190824.log',515,1,134,324,'20190824','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190824.log',515,1,136,336,'20190824','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190824.log',515,1,141,361,'20190824','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190824.log',515,1,142,367,'20190824','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190824.log',1048585,1,5,5,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190824.log',1048585,1,28,28,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190824.log',1048585,1,51,51,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190824.log',1048585,1,79,79,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190824.log',1048585,1,81,81,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190824.log',1048585,1,82,82,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190824.log',1048585,1,83,83,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190824.log',1048585,1,85,85,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190824.log',1048585,1,86,86,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190824.log',1048585,1,87,87,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190824.log',1048585,1,88,88,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190824.log',1048585,1,89,89,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190824.log',1048585,1,90,90,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190824.log',1048585,1,91,91,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190824.log',1048585,1,99,99,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190824.log',1048585,1,100,100,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190824.log',1048585,1,113,113,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190824.log',1048585,1,114,114,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190824.log',1048585,1,115,115,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190824.log',1048585,1,125,125,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190824.log',1048585,1,133,133,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190824.log',1048585,1,134,134,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190824.log',1048585,1,135,135,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190824.log',1048585,1,136,136,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190824.log',1048585,1,137,137,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190824.log',1048585,1,139,139,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190824.log',1048585,1,141,141,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190824.log',1048585,1,142,142,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190825.log',256,1,NULL,1,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,1,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,2,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,4,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,5,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,6,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,7,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,8,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190825.log',259,1,NULL,9,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190825.log',515,1,20,53,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20190825.log',515,1,46,114,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20190825.log',515,1,81,283,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190825.log',515,1,77,287,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20190825.log',515,1,87,291,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190825.log',515,1,137,343,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190825.log',515,1,141,361,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190825.log',515,1,142,367,'20190825','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190825.log',1048585,1,51,51,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190825.log',1048585,1,59,59,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190825.log',1048585,1,77,77,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190825.log',1048585,1,78,78,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190825.log',1048585,1,87,87,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190825.log',1048585,1,137,137,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190825.log',1048585,1,141,141,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190826.log',256,1,NULL,1,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,1,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,3,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,4,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,5,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,6,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,7,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,8,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190826.log',259,1,NULL,9,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190826.log',515,1,56,135,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190826.log',515,1,79,282,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,43),('usage_events_20190826.log',515,1,87,291,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190826.log',515,1,115,309,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20190826.log',515,1,134,324,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190826.log',515,1,136,336,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20190826.log',515,1,137,343,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190826.log',515,1,139,351,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190826.log',515,1,141,361,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190826.log',515,1,142,367,'20190826','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190826.log',1048585,1,56,56,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190826.log',1048585,1,59,59,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190826.log',1048585,1,79,79,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,6,NULL),('usage_events_20190826.log',1048585,1,81,81,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190826.log',1048585,1,82,82,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190826.log',1048585,1,83,83,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190826.log',1048585,1,85,85,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190826.log',1048585,1,86,86,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190826.log',1048585,1,87,87,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190826.log',1048585,1,88,88,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190826.log',1048585,1,89,89,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190826.log',1048585,1,90,90,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190826.log',1048585,1,91,91,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190826.log',1048585,1,99,99,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190826.log',1048585,1,100,100,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190826.log',1048585,1,113,113,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190826.log',1048585,1,114,114,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190826.log',1048585,1,115,115,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190826.log',1048585,1,125,125,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190826.log',1048585,1,133,133,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190826.log',1048585,1,134,134,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190826.log',1048585,1,135,135,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190826.log',1048585,1,136,136,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190826.log',1048585,1,137,137,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190826.log',1048585,1,139,139,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190826.log',1048585,1,141,141,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190826.log',1048585,1,142,142,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190827.log',256,1,NULL,1,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20190827.log',259,1,NULL,9,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190827.log',515,1,19,52,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190827.log',515,1,20,53,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190827.log',515,1,49,116,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190827.log',515,1,51,118,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190827.log',515,1,78,288,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190827.log',515,1,133,318,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20190827.log',515,1,139,351,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190827.log',515,1,142,367,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190827.log',1048585,1,20,20,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20190827.log',1048585,1,28,28,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190827.log',1048585,1,78,78,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190827.log',1048585,1,141,141,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190827.log',1048585,1,142,142,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190828.log',256,1,NULL,1,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190828.log',259,1,NULL,1,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190828.log',259,1,NULL,5,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190828.log',259,1,NULL,6,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190828.log',259,1,NULL,9,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190828.log',515,1,5,30,'20190828','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20190828.log',515,1,78,288,'20190828','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190828.log',515,1,139,351,'20190828','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190828.log',515,1,141,361,'20190828','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20190828.log',515,1,142,367,'20190828','201908',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20190828.log',1048585,1,4,4,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190828.log',1048585,1,6,6,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190828.log',1048585,1,7,7,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190828.log',1048585,1,14,14,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190828.log',1048585,1,54,54,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190828.log',1048585,1,56,56,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190828.log',1048585,1,59,59,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190828.log',1048585,1,74,74,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190828.log',1048585,1,78,78,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190828.log',1048585,1,81,81,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190828.log',1048585,1,99,99,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190828.log',1048585,1,141,141,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20190828.log',1048585,1,142,142,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20190829.log',256,1,NULL,1,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190829.log',259,1,NULL,1,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190829.log',259,1,NULL,4,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190829.log',259,1,NULL,7,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190829.log',259,1,NULL,8,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190829.log',259,1,NULL,9,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190829.log',515,1,49,116,'20190829','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190829.log',515,1,84,289,'20190829','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20190829.log',515,1,87,291,'20190829','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190829.log',1048585,1,8,8,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190829.log',1048585,1,28,28,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190829.log',1048585,1,40,40,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190829.log',1048585,1,52,52,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190829.log',1048585,1,81,81,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190829.log',1048585,1,84,84,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190829.log',1048585,1,89,89,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190829.log',1048585,1,100,100,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190829.log',1048585,1,113,113,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190829.log',1048585,1,125,125,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190830.log',256,1,NULL,1,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',32,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,2,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,4,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,5,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,6,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,7,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,8,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,9,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190830.log',259,1,NULL,10,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20190830.log',515,1,56,135,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,31),('usage_events_20190830.log',515,1,58,137,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190830.log',515,1,133,318,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20190830.log',515,1,134,324,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190830.log',515,1,135,330,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190830.log',515,1,139,351,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20190830.log',515,1,142,367,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190830.log',515,1,147,387,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190830.log',515,1,148,394,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20190830.log',515,1,150,407,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190830.log',515,1,151,414,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20190830.log',1048585,1,14,14,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190830.log',1048585,1,22,22,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190830.log',1048585,1,49,49,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190830.log',1048585,1,51,51,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190830.log',1048585,1,52,52,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190830.log',1048585,1,54,54,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190830.log',1048585,1,56,56,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20190830.log',1048585,1,58,58,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190830.log',1048585,1,59,59,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190830.log',1048585,1,77,77,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190830.log',1048585,1,79,79,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190830.log',1048585,1,83,83,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190830.log',1048585,1,87,87,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190830.log',1048585,1,88,88,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190830.log',1048585,1,91,91,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190830.log',1048585,1,99,99,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190830.log',1048585,1,115,115,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190830.log',1048585,1,125,125,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190830.log',1048585,1,133,133,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190830.log',1048585,1,142,142,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190830.log',1048585,1,148,148,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20190830.log',1048585,1,150,150,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190830.log',1048585,1,151,151,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190831.log',256,1,NULL,1,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190831.log',259,1,NULL,1,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190831.log',259,1,NULL,3,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190831.log',259,1,NULL,10,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190831.log',515,1,49,116,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190831.log',515,1,81,283,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20190831.log',515,1,142,367,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190831.log',515,1,148,394,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20190831.log',515,1,149,401,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20190831.log',515,1,150,407,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190831.log',515,1,151,414,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20190831.log',1048585,1,5,5,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190831.log',1048585,1,28,28,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190831.log',1048585,1,148,148,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20190831.log',1048585,1,149,149,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190831.log',1048585,1,150,150,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190831.log',1048585,1,151,151,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20190901.log',256,1,NULL,1,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20190901.log',259,1,NULL,6,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190901.log',259,1,NULL,7,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190901.log',259,1,NULL,8,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190901.log',259,1,NULL,9,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190901.log',259,1,NULL,10,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190901.log',515,1,56,135,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190901.log',515,1,125,310,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190901.log',515,1,141,361,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190901.log',515,1,147,387,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190901.log',515,1,150,407,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190901.log',1048585,1,4,4,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190901.log',1048585,1,28,28,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190901.log',1048585,1,56,56,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190901.log',1048585,1,57,57,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190901.log',1048585,1,82,82,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190901.log',1048585,1,86,86,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190901.log',1048585,1,88,88,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190901.log',1048585,1,100,100,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190901.log',1048585,1,115,115,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190901.log',1048585,1,148,148,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190901.log',1048585,1,149,149,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190901.log',1048585,1,150,150,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190902.log',256,1,NULL,1,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190902.log',515,1,49,116,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20190902.log',515,1,77,287,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20190902.log',515,1,78,288,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190902.log',515,1,137,343,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190902.log',515,1,141,361,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190902.log',515,1,148,394,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20190902.log',515,1,150,407,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190902.log',1048585,1,31,31,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190902.log',1048585,1,77,77,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190902.log',1048585,1,86,86,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190902.log',1048585,1,125,125,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190902.log',1048585,1,137,137,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190902.log',1048585,1,148,148,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190902.log',1048585,1,150,150,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190903.log',256,1,NULL,1,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',16,NULL,NULL,NULL,NULL),('usage_events_20190903.log',259,1,NULL,10,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190903.log',515,1,51,118,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190903.log',515,1,57,136,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20190903.log',515,1,78,288,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190903.log',515,1,146,379,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20190903.log',515,1,148,394,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',25,1,259,10,73),('usage_events_20190903.log',515,1,149,401,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20190903.log',515,1,150,407,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190903.log',1048585,1,31,31,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190903.log',1048585,1,34,34,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190903.log',1048585,1,57,57,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190903.log',1048585,1,148,148,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',31,1,259,10,NULL),('usage_events_20190903.log',1048585,1,149,149,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190903.log',1048585,1,150,150,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190904.log',1048585,1,4,4,'20190904','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20190917.log',515,1,8,33,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20190917.log',515,1,34,82,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190917.log',515,1,137,343,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190917.log',515,1,139,351,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190917.log',515,1,142,367,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20190917.log',515,1,147,387,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190917.log',515,1,151,414,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20190917.log',1048585,1,1,1,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190917.log',1048585,1,8,8,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20190917.log',1048585,1,34,34,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190917.log',1048585,1,91,91,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190917.log',1048585,1,141,141,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190917.log',1048585,1,142,142,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20190918.log',256,1,NULL,1,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190918.log',259,1,NULL,6,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190918.log',515,1,47,115,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20190918.log',515,1,49,116,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190918.log',515,1,51,118,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20190918.log',515,1,58,137,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190918.log',515,1,83,285,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20190918.log',515,1,78,288,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190918.log',515,1,139,351,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190918.log',515,1,142,367,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20190918.log',515,1,148,394,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20190918.log',515,1,150,407,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190918.log',1048585,1,47,47,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190918.log',1048585,1,51,51,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190918.log',1048585,1,58,58,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190918.log',1048585,1,78,78,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190918.log',1048585,1,83,83,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190918.log',1048585,1,139,139,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190918.log',1048585,1,146,146,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190918.log',1048585,1,147,147,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190918.log',1048585,1,148,148,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190918.log',1048585,1,149,149,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190918.log',1048585,1,150,150,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190918.log',1048585,1,151,151,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190918.log',1048585,1,152,152,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190919.log',256,1,NULL,1,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20190919.log',259,1,NULL,7,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190919.log',259,1,NULL,9,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190919.log',515,1,49,116,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190919.log',515,1,51,118,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20190919.log',515,1,85,281,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190919.log',515,1,78,288,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190919.log',515,1,87,291,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190919.log',515,1,139,351,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20190919.log',515,1,141,361,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190919.log',515,1,142,367,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,70),('usage_events_20190919.log',515,1,146,379,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20190919.log',515,1,149,401,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20190919.log',515,1,150,407,'20190919','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190919.log',1048585,1,49,49,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190919.log',1048585,1,58,58,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190919.log',1048585,1,78,78,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190919.log',1048585,1,85,85,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190919.log',1048585,1,87,87,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190919.log',1048585,1,91,91,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190919.log',1048585,1,141,141,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190919.log',1048585,1,142,142,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190919.log',1048585,1,146,146,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190919.log',1048585,1,149,149,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20190919.log',1048585,1,151,151,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190919.log',1048585,1,152,152,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190920.log',256,1,NULL,1,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20190920.log',259,1,NULL,6,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190920.log',259,1,NULL,7,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190920.log',259,1,NULL,8,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190920.log',259,1,NULL,9,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190920.log',259,1,NULL,10,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20190920.log',515,1,52,119,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,27),('usage_events_20190920.log',515,1,58,137,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190920.log',515,1,87,291,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20190920.log',515,1,137,343,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190920.log',515,1,139,351,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190920.log',515,1,141,361,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20190920.log',515,1,147,387,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190920.log',515,1,150,407,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20190920.log',515,1,151,414,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20190920.log',515,1,152,423,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20190920.log',1048585,1,78,78,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190920.log',1048585,1,79,79,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190920.log',1048585,1,85,85,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190920.log',1048585,1,86,86,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190920.log',1048585,1,87,87,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20190920.log',1048585,1,88,88,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190920.log',1048585,1,91,91,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20190920.log',1048585,1,100,100,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190920.log',1048585,1,115,115,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190920.log',1048585,1,139,139,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190920.log',1048585,1,141,141,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190920.log',1048585,1,146,146,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190920.log',1048585,1,148,148,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190920.log',1048585,1,149,149,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190920.log',1048585,1,150,150,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190920.log',1048585,1,151,151,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190920.log',1048585,1,152,152,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190921.log',256,1,NULL,1,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190921.log',515,1,8,33,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190921.log',515,1,85,281,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190921.log',515,1,83,285,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20190921.log',515,1,78,288,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190921.log',515,1,139,351,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190921.log',515,1,141,361,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,69),('usage_events_20190921.log',515,1,142,367,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20190921.log',515,1,146,379,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20190921.log',1048585,1,4,4,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190921.log',1048585,1,6,6,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190921.log',1048585,1,83,83,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190921.log',1048585,1,141,141,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190921.log',1048585,1,142,142,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190921.log',1048585,1,149,149,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190921.log',1048585,1,150,150,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190922.log',256,1,NULL,1,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190922.log',259,1,NULL,9,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190922.log',515,1,19,52,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20190922.log',515,1,54,133,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20190922.log',515,1,78,288,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190922.log',515,1,84,289,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20190922.log',515,1,88,292,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20190922.log',515,1,137,343,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190922.log',515,1,139,351,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20190922.log',515,1,149,401,'20190922','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20190922.log',1048585,1,35,35,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20190922.log',1048585,1,51,51,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190922.log',1048585,1,78,78,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190922.log',1048585,1,88,88,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190922.log',1048585,1,137,137,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190922.log',1048585,1,139,139,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190922.log',1048585,1,146,146,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190923.log',256,1,NULL,1,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,1,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,3,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,4,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,5,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,6,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,7,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,8,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,9,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190923.log',259,1,NULL,10,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190923.log',515,1,4,19,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20190923.log',515,1,28,68,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190923.log',515,1,87,291,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20190923.log',515,1,137,343,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20190923.log',515,1,139,351,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,68),('usage_events_20190923.log',515,1,141,361,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20190923.log',515,1,146,379,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20190923.log',515,1,147,387,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190923.log',515,1,150,407,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190923.log',515,1,151,414,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20190923.log',515,1,152,423,'20190923','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20190923.log',1048585,1,7,7,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20190923.log',1048585,1,57,57,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190923.log',1048585,1,79,79,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190923.log',1048585,1,85,85,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190923.log',1048585,1,86,86,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190923.log',1048585,1,87,87,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190923.log',1048585,1,88,88,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190923.log',1048585,1,89,89,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190923.log',1048585,1,90,90,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190923.log',1048585,1,91,91,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190923.log',1048585,1,99,99,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190923.log',1048585,1,100,100,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190923.log',1048585,1,113,113,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190923.log',1048585,1,114,114,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190923.log',1048585,1,115,115,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190923.log',1048585,1,125,125,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190923.log',1048585,1,133,133,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190923.log',1048585,1,137,137,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190923.log',1048585,1,139,139,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190923.log',1048585,1,141,141,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190923.log',1048585,1,146,146,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190923.log',1048585,1,147,147,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190923.log',1048585,1,148,148,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190923.log',1048585,1,149,149,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190923.log',1048585,1,150,150,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190923.log',1048585,1,151,151,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190923.log',1048585,1,152,152,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190924.log',256,1,NULL,1,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190924.log',515,1,77,287,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20190924.log',515,1,87,291,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190924.log',515,1,137,343,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190924.log',515,1,142,367,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20190924.log',515,1,149,401,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20190924.log',515,1,150,407,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20190924.log',515,1,151,414,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20190924.log',515,1,152,423,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20190924.log',1048585,1,58,58,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190924.log',1048585,1,77,77,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190924.log',1048585,1,86,86,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190924.log',1048585,1,87,87,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190924.log',1048585,1,134,134,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190924.log',1048585,1,137,137,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190924.log',1048585,1,139,139,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190924.log',1048585,1,142,142,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190924.log',1048585,1,150,150,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190924.log',1048585,1,152,152,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190925.log',256,1,NULL,1,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190925.log',515,1,58,137,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190925.log',515,1,85,281,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20190925.log',515,1,78,288,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190925.log',515,1,137,343,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190925.log',515,1,139,351,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,68),('usage_events_20190925.log',515,1,142,367,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20190925.log',515,1,146,379,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,71),('usage_events_20190925.log',515,1,150,407,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,75),('usage_events_20190925.log',515,1,152,423,'20190925','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20190925.log',1048585,1,51,51,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190925.log',1048585,1,78,78,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20190925.log',1048585,1,85,85,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190925.log',1048585,1,87,87,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190925.log',1048585,1,91,91,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190925.log',1048585,1,114,114,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190925.log',1048585,1,133,133,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190925.log',1048585,1,137,137,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190925.log',1048585,1,139,139,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20190925.log',1048585,1,142,142,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190925.log',1048585,1,146,146,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190925.log',1048585,1,150,150,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20190925.log',1048585,1,151,151,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190926.log',256,1,NULL,1,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,1,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,3,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,4,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,5,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,6,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,7,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,8,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,9,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190926.log',259,1,NULL,10,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190926.log',515,1,49,116,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190926.log',515,1,56,135,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20190926.log',515,1,81,283,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20190926.log',515,1,83,285,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20190926.log',515,1,87,291,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190926.log',515,1,89,293,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190926.log',515,1,100,306,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190926.log',515,1,137,343,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190926.log',515,1,146,379,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20190926.log',515,1,147,387,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190926.log',515,1,148,394,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20190926.log',515,1,149,401,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20190926.log',515,1,150,407,'20190926','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20190926.log',1048585,1,49,49,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20190926.log',1048585,1,56,56,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190926.log',1048585,1,78,78,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190926.log',1048585,1,79,79,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190926.log',1048585,1,83,83,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190926.log',1048585,1,85,85,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190926.log',1048585,1,86,86,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190926.log',1048585,1,87,87,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190926.log',1048585,1,88,88,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20190926.log',1048585,1,89,89,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190926.log',1048585,1,90,90,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190926.log',1048585,1,91,91,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190926.log',1048585,1,99,99,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190926.log',1048585,1,100,100,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190926.log',1048585,1,113,113,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190926.log',1048585,1,114,114,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190926.log',1048585,1,115,115,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190926.log',1048585,1,125,125,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190926.log',1048585,1,137,137,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190926.log',1048585,1,146,146,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190926.log',1048585,1,147,147,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190926.log',1048585,1,148,148,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190926.log',1048585,1,149,149,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20190926.log',1048585,1,150,150,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190926.log',1048585,1,151,151,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190926.log',1048585,1,152,152,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190927.log',256,1,NULL,1,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190927.log',259,1,NULL,10,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190927.log',515,1,8,33,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20190927.log',515,1,20,53,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20190927.log',515,1,28,68,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20190927.log',515,1,78,288,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20190927.log',515,1,137,343,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190927.log',515,1,147,387,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190927.log',515,1,149,401,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20190927.log',515,1,151,414,'20190927','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20190927.log',1048585,1,28,28,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190927.log',1048585,1,78,78,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190927.log',1048585,1,147,147,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190927.log',1048585,1,149,149,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190927.log',1048585,1,151,151,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20190928.log',256,1,NULL,1,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20190928.log',259,1,NULL,9,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190928.log',259,1,NULL,10,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190928.log',515,1,54,133,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20190928.log',515,1,58,137,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190928.log',515,1,78,288,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20190928.log',515,1,125,310,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20190928.log',515,1,135,330,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20190928.log',515,1,137,343,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20190928.log',515,1,139,351,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20190928.log',515,1,146,379,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20190928.log',515,1,148,394,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20190928.log',515,1,149,401,'20190928','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20190928.log',1048585,1,58,58,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20190928.log',1048585,1,78,78,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20190928.log',1048585,1,125,125,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190928.log',1048585,1,135,135,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20190928.log',1048585,1,139,139,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190928.log',1048585,1,152,152,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190929.log',256,1,NULL,1,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,1,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,3,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,4,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,5,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,6,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,7,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,8,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,9,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190929.log',259,1,NULL,10,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20190929.log',515,1,34,82,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190929.log',515,1,51,118,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20190929.log',515,1,56,135,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190929.log',515,1,58,137,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20190929.log',515,1,87,291,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20190929.log',515,1,100,306,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20190929.log',515,1,134,324,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20190929.log',515,1,137,343,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20190929.log',515,1,139,351,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20190929.log',515,1,142,367,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20190929.log',515,1,146,379,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20190929.log',515,1,147,387,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20190929.log',515,1,149,401,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20190929.log',515,1,150,407,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20190929.log',515,1,152,423,'20190929','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20190929.log',1048585,1,34,34,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190929.log',1048585,1,51,51,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190929.log',1048585,1,56,56,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190929.log',1048585,1,58,58,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190929.log',1048585,1,85,85,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190929.log',1048585,1,86,86,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190929.log',1048585,1,87,87,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190929.log',1048585,1,88,88,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190929.log',1048585,1,89,89,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190929.log',1048585,1,90,90,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190929.log',1048585,1,91,91,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190929.log',1048585,1,99,99,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190929.log',1048585,1,100,100,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190929.log',1048585,1,113,113,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190929.log',1048585,1,114,114,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190929.log',1048585,1,115,115,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190929.log',1048585,1,125,125,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20190929.log',1048585,1,134,134,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190929.log',1048585,1,137,137,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190929.log',1048585,1,139,139,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20190929.log',1048585,1,142,142,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20190929.log',1048585,1,146,146,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190929.log',1048585,1,147,147,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190929.log',1048585,1,148,148,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190929.log',1048585,1,149,149,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20190929.log',1048585,1,150,150,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190929.log',1048585,1,151,151,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190929.log',1048585,1,152,152,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20190930.log',256,1,NULL,1,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20190930.log',259,1,NULL,2,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20190930.log',259,1,NULL,9,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20190930.log',515,1,34,82,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20190930.log',515,1,49,116,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20190930.log',515,1,53,120,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20190930.log',515,1,56,135,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20190930.log',515,1,58,137,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20190930.log',515,1,89,293,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20190930.log',515,1,99,305,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20190930.log',515,1,137,343,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',7,1,259,9,67),('usage_events_20190930.log',515,1,141,361,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20190930.log',515,1,146,379,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20190930.log',515,1,147,387,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20190930.log',1048585,1,20,20,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20190930.log',1048585,1,34,34,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20190930.log',1048585,1,49,49,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190930.log',1048585,1,51,51,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20190930.log',1048585,1,58,58,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20190930.log',1048585,1,89,89,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20190930.log',1048585,1,137,137,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20190930.log',1048585,1,141,141,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20190930.log',1048585,1,147,147,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20190930.log',1048585,1,150,150,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20191001.log',256,1,NULL,1,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20191001.log',259,1,NULL,6,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191001.log',515,1,8,33,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20191001.log',515,1,49,116,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20191001.log',515,1,85,281,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20191001.log',515,1,83,285,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20191001.log',515,1,78,288,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20191001.log',515,1,87,291,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20191001.log',515,1,91,295,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20191001.log',515,1,137,343,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',13,1,259,9,67),('usage_events_20191001.log',515,1,139,351,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20191001.log',515,1,146,379,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20191001.log',515,1,148,394,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20191001.log',515,1,150,407,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20191001.log',515,1,152,423,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,77),('usage_events_20191001.log',1048585,1,8,8,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20191001.log',1048585,1,49,49,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20191001.log',1048585,1,78,78,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20191001.log',1048585,1,83,83,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20191001.log',1048585,1,87,87,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191001.log',1048585,1,91,91,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191001.log',1048585,1,137,137,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,9,NULL),('usage_events_20191001.log',1048585,1,142,142,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20191001.log',1048585,1,148,148,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20191001.log',1048585,1,150,150,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20191002.log',256,1,NULL,1,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,1,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,3,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,4,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,5,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,6,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,7,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,8,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,9,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20191002.log',259,1,NULL,10,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20191002.log',515,1,8,33,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20191002.log',515,1,47,115,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20191002.log',515,1,49,116,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20191002.log',515,1,50,117,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20191002.log',515,1,51,118,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20191002.log',515,1,58,137,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20191002.log',515,1,85,281,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20191002.log',515,1,83,285,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20191002.log',515,1,78,288,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20191002.log',515,1,137,343,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',39,1,259,9,67),('usage_events_20191002.log',515,1,141,361,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20191002.log',515,1,142,367,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20191002.log',515,1,146,379,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20191002.log',515,1,147,387,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20191002.log',515,1,148,394,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20191002.log',515,1,149,401,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20191002.log',515,1,150,407,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20191002.log',1048585,1,8,8,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20191002.log',1048585,1,28,28,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20191002.log',1048585,1,47,47,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20191002.log',1048585,1,50,50,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20191002.log',1048585,1,58,58,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20191002.log',1048585,1,76,76,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20191002.log',1048585,1,78,78,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20191002.log',1048585,1,81,81,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20191002.log',1048585,1,83,83,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20191002.log',1048585,1,85,85,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191002.log',1048585,1,86,86,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191002.log',1048585,1,87,87,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20191002.log',1048585,1,88,88,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191002.log',1048585,1,89,89,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191002.log',1048585,1,90,90,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191002.log',1048585,1,91,91,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191002.log',1048585,1,99,99,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20191002.log',1048585,1,100,100,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20191002.log',1048585,1,113,113,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20191002.log',1048585,1,114,114,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20191002.log',1048585,1,115,115,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20191002.log',1048585,1,125,125,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20191002.log',1048585,1,133,133,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20191002.log',1048585,1,137,137,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',34,1,259,9,NULL),('usage_events_20191002.log',1048585,1,142,142,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20191002.log',1048585,1,146,146,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20191002.log',1048585,1,147,147,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20191002.log',1048585,1,148,148,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20191002.log',1048585,1,149,149,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20191002.log',1048585,1,150,150,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20191002.log',1048585,1,151,151,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20191002.log',1048585,1,152,152,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20191003.log',259,1,NULL,5,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20191003.log',259,1,NULL,6,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20191003.log',515,1,47,115,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20191003.log',515,1,50,117,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20191003.log',515,1,51,118,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20191003.log',515,1,78,288,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20191003.log',515,1,137,343,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20191003.log',515,1,142,367,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,70),('usage_events_20191003.log',515,1,149,401,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20191003.log',515,1,150,407,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20191003.log',1048585,1,35,35,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20191003.log',1048585,1,47,47,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20191003.log',1048585,1,50,50,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20191003.log',1048585,1,51,51,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20191003.log',1048585,1,54,54,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20191003.log',1048585,1,56,56,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20191003.log',1048585,1,58,58,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20191003.log',1048585,1,59,59,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20191003.log',1048585,1,76,76,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20191003.log',1048585,1,77,77,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20191003.log',1048585,1,78,78,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20191003.log',1048585,1,86,86,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20191003.log',1048585,1,137,137,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20191003.log',1048585,1,141,141,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20191003.log',1048585,1,149,149,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20191003.log',1048585,1,150,150,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200116.log',256,1,NULL,1,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200116.log',259,1,NULL,9,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200116.log',515,1,14,51,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20200116.log',515,1,33,81,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200116.log',515,1,49,116,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200116.log',515,1,53,120,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200116.log',515,1,88,292,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20200116.log',515,1,139,351,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200116.log',515,1,149,401,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200116.log',515,1,152,423,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200116.log',1048585,1,14,14,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200116.log',1048585,1,20,20,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200116.log',1048585,1,89,89,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200116.log',1048585,1,133,133,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200116.log',1048585,1,149,149,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200122.log',256,1,NULL,1,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200122.log',515,1,19,52,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200122.log',515,1,49,116,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200122.log',515,1,54,133,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200122.log',515,1,58,137,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200122.log',515,1,78,288,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200122.log',515,1,113,307,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200122.log',515,1,148,394,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200122.log',515,1,150,407,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200122.log',1048585,1,55,55,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200122.log',1048585,1,58,58,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200122.log',1048585,1,148,148,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200122.log',1048585,1,150,150,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200122.log',1048585,1,152,152,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200123.log',256,1,NULL,1,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,1,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,3,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,4,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,5,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,6,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,8,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,9,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200123.log',259,1,NULL,10,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200123.log',515,1,4,19,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200123.log',515,1,5,30,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200123.log',515,1,49,116,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',7,1,259,4,24),('usage_events_20200123.log',515,1,51,118,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20200123.log',515,1,53,120,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200123.log',515,1,58,137,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200123.log',515,1,78,288,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200123.log',515,1,87,291,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200123.log',515,1,113,307,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200123.log',515,1,136,336,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200123.log',515,1,137,343,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200123.log',515,1,141,361,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200123.log',515,1,146,379,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,71),('usage_events_20200123.log',515,1,148,394,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200123.log',515,1,152,423,'20200123','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200123.log',1048585,1,5,5,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20200123.log',1048585,1,49,49,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,4,NULL),('usage_events_20200123.log',1048585,1,51,51,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200123.log',1048585,1,78,78,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20200123.log',1048585,1,87,87,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200123.log',1048585,1,114,114,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200123.log',1048585,1,133,133,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200123.log',1048585,1,137,137,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200123.log',1048585,1,146,146,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200123.log',1048585,1,148,148,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200124.log',256,1,NULL,1,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200124.log',259,1,NULL,2,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200124.log',259,1,NULL,3,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200124.log',259,1,NULL,4,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200124.log',259,1,NULL,7,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200124.log',259,1,NULL,8,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200124.log',259,1,NULL,9,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200124.log',259,1,NULL,10,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200124.log',515,1,5,30,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200124.log',515,1,34,82,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200124.log',515,1,49,116,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200124.log',515,1,86,290,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200124.log',515,1,135,330,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200124.log',515,1,137,343,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200124.log',515,1,139,351,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200124.log',515,1,141,361,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200124.log',515,1,142,367,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20200124.log',1048585,1,34,34,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200124.log',1048585,1,53,53,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200124.log',1048585,1,86,86,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200124.log',1048585,1,135,135,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200124.log',1048585,1,139,139,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,9,NULL),('usage_events_20200124.log',1048585,1,141,141,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200124.log',1048585,1,142,142,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200125.log',256,1,NULL,1,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200125.log',259,1,NULL,1,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200125.log',259,1,NULL,5,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200125.log',259,1,NULL,6,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200125.log',259,1,NULL,8,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200125.log',259,1,NULL,9,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200125.log',259,1,NULL,10,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200125.log',515,1,4,19,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200125.log',515,1,49,116,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200125.log',515,1,55,134,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20200125.log',515,1,56,135,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200125.log',515,1,81,283,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200125.log',515,1,83,285,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200125.log',515,1,76,286,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200125.log',515,1,87,291,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200125.log',515,1,133,318,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200125.log',515,1,142,367,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200125.log',515,1,147,387,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200125.log',515,1,149,401,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200125.log',515,1,150,407,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200125.log',1048585,1,49,49,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200125.log',1048585,1,56,56,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200125.log',1048585,1,81,81,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200125.log',1048585,1,139,139,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200125.log',1048585,1,142,142,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200125.log',1048585,1,147,147,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200125.log',1048585,1,149,149,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200126.log',256,1,NULL,1,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,1,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,2,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,3,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,4,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,5,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,6,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,7,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,8,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,9,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200126.log',259,1,NULL,10,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200126.log',515,1,1,3,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200126.log',515,1,33,81,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200126.log',515,1,49,116,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200126.log',515,1,50,117,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200126.log',515,1,82,284,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200126.log',515,1,78,288,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200126.log',1048585,1,1,1,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200126.log',1048585,1,4,4,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200126.log',1048585,1,5,5,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200126.log',1048585,1,6,6,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200126.log',1048585,1,7,7,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200126.log',1048585,1,8,8,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200126.log',1048585,1,14,14,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200126.log',1048585,1,19,19,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200126.log',1048585,1,20,20,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200126.log',1048585,1,21,21,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200126.log',1048585,1,22,22,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200126.log',1048585,1,40,40,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200126.log',1048585,1,59,59,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200126.log',1048585,1,82,82,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200126.log',1048585,1,83,83,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200126.log',1048585,1,85,85,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200126.log',1048585,1,139,139,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200126.log',1048585,1,146,146,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200126.log',1048585,1,147,147,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200126.log',1048585,1,148,148,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200126.log',1048585,1,149,149,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200126.log',1048585,1,150,150,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200126.log',1048585,1,151,151,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200126.log',1048585,1,152,152,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200127.log',259,1,NULL,1,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200127.log',259,1,NULL,2,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200127.log',259,1,NULL,7,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200127.log',259,1,NULL,8,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200127.log',515,1,20,53,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200127.log',515,1,33,81,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200127.log',515,1,76,286,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200127.log',515,1,78,288,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200127.log',515,1,99,305,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200127.log',515,1,137,343,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200127.log',515,1,139,351,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200127.log',515,1,142,367,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200127.log',515,1,147,387,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200127.log',515,1,150,407,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20200127.log',1048585,1,20,20,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200127.log',1048585,1,55,55,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200127.log',1048585,1,59,59,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200127.log',1048585,1,76,76,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200127.log',1048585,1,78,78,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20200127.log',1048585,1,99,99,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200127.log',1048585,1,137,137,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200127.log',1048585,1,139,139,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200127.log',1048585,1,150,150,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200128.log',256,1,NULL,1,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200128.log',259,1,NULL,7,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200128.log',259,1,NULL,10,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200128.log',515,1,8,33,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20200128.log',515,1,50,117,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200128.log',515,1,51,118,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200128.log',515,1,53,120,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200128.log',515,1,79,282,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200128.log',515,1,78,288,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200128.log',515,1,84,289,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,50),('usage_events_20200128.log',515,1,113,307,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',6,1,259,8,59),('usage_events_20200128.log',515,1,137,343,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200128.log',515,1,139,351,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200128.log',515,1,142,367,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200128.log',515,1,148,394,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200128.log',515,1,151,414,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200128.log',515,1,152,423,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200128.log',1048585,1,5,5,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200128.log',1048585,1,8,8,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200128.log',1048585,1,50,50,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200128.log',1048585,1,78,78,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200128.log',1048585,1,79,79,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200128.log',1048585,1,84,84,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200128.log',1048585,1,137,137,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200128.log',1048585,1,142,142,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200128.log',1048585,1,146,146,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200128.log',1048585,1,148,148,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200128.log',1048585,1,151,151,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200129.log',256,1,NULL,1,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,1,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,2,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,3,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,4,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,5,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,6,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,7,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,8,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,9,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200129.log',259,1,NULL,10,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200129.log',515,1,1,3,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200129.log',515,1,49,116,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200129.log',515,1,55,134,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20200129.log',515,1,58,137,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200129.log',515,1,81,283,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20200129.log',515,1,78,288,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200129.log',515,1,87,291,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200129.log',515,1,89,293,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200129.log',515,1,99,305,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200129.log',515,1,113,307,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200129.log',515,1,115,309,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200129.log',515,1,137,343,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200129.log',515,1,142,367,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200129.log',515,1,149,401,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200129.log',515,1,150,407,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200129.log',1048585,1,1,1,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200129.log',1048585,1,4,4,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200129.log',1048585,1,5,5,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200129.log',1048585,1,6,6,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200129.log',1048585,1,7,7,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200129.log',1048585,1,8,8,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200129.log',1048585,1,14,14,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200129.log',1048585,1,19,19,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200129.log',1048585,1,20,20,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200129.log',1048585,1,21,21,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200129.log',1048585,1,22,22,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200129.log',1048585,1,40,40,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200129.log',1048585,1,58,58,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200129.log',1048585,1,78,78,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200129.log',1048585,1,81,81,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200129.log',1048585,1,84,84,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200129.log',1048585,1,85,85,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200129.log',1048585,1,87,87,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200129.log',1048585,1,89,89,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200129.log',1048585,1,99,99,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200129.log',1048585,1,115,115,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200129.log',1048585,1,139,139,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200129.log',1048585,1,142,142,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20200129.log',1048585,1,146,146,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200129.log',1048585,1,147,147,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200129.log',1048585,1,148,148,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200129.log',1048585,1,149,149,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200129.log',1048585,1,150,150,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200129.log',1048585,1,151,151,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200129.log',1048585,1,152,152,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200130.log',256,1,NULL,1,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200130.log',515,1,4,19,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200130.log',515,1,6,31,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20200130.log',515,1,82,284,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200130.log',515,1,78,288,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200130.log',515,1,99,305,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200130.log',515,1,113,307,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20200130.log',515,1,147,387,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200130.log',515,1,149,401,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200130.log',515,1,151,414,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20200130.log',1048585,1,78,78,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200130.log',1048585,1,81,81,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200130.log',1048585,1,87,87,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200130.log',1048585,1,139,139,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200130.log',1048585,1,146,146,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200130.log',1048585,1,151,151,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200131.log',256,1,NULL,1,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200131.log',515,1,8,33,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200131.log',515,1,32,80,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200131.log',515,1,49,116,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200131.log',515,1,58,137,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200131.log',515,1,79,282,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,43),('usage_events_20200131.log',515,1,77,287,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200131.log',515,1,78,288,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200131.log',515,1,89,293,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200131.log',515,1,113,307,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200131.log',515,1,133,318,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200131.log',515,1,137,343,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200131.log',515,1,139,351,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200131.log',515,1,141,361,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200131.log',515,1,146,379,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200131.log',515,1,149,401,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200131.log',1048585,1,8,8,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200131.log',1048585,1,28,28,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200131.log',1048585,1,32,32,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200131.log',1048585,1,58,58,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200131.log',1048585,1,78,78,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200131.log',1048585,1,79,79,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200131.log',1048585,1,137,137,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200131.log',1048585,1,139,139,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200131.log',1048585,1,148,148,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200131.log',1048585,1,149,149,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200201.log',256,1,NULL,1,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200201.log',259,1,NULL,6,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200201.log',259,1,NULL,10,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200201.log',515,1,33,81,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200201.log',515,1,82,284,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200201.log',515,1,77,287,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200201.log',515,1,78,288,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200201.log',515,1,137,343,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200201.log',515,1,149,401,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200201.log',515,1,151,414,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200201.log',1048585,1,33,33,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200201.log',1048585,1,58,58,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200201.log',1048585,1,78,78,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200201.log',1048585,1,82,82,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200201.log',1048585,1,89,89,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200201.log',1048585,1,137,137,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200201.log',1048585,1,146,146,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200201.log',1048585,1,151,151,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200202.log',256,1,NULL,1,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200202.log',259,1,NULL,1,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200202.log',259,1,NULL,2,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200202.log',259,1,NULL,7,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200202.log',259,1,NULL,8,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200202.log',259,1,NULL,10,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200202.log',515,1,58,137,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200202.log',515,1,82,284,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200202.log',515,1,78,288,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200202.log',515,1,89,293,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20200202.log',515,1,115,309,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200202.log',515,1,133,318,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200202.log',515,1,139,351,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200202.log',515,1,146,379,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,71),('usage_events_20200202.log',515,1,148,394,'20200202','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200202.log',1048585,1,4,4,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200202.log',1048585,1,6,6,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200202.log',1048585,1,19,19,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200202.log',1048585,1,78,78,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200202.log',1048585,1,86,86,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200202.log',1048585,1,89,89,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200202.log',1048585,1,113,113,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200202.log',1048585,1,115,115,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200202.log',1048585,1,133,133,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200202.log',1048585,1,139,139,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200202.log',1048585,1,146,146,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200202.log',1048585,1,148,148,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200202.log',1048585,1,150,150,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200202.log',1048585,1,152,152,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200203.log',256,1,NULL,1,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200203.log',515,1,7,32,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200203.log',515,1,47,115,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200203.log',515,1,51,118,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200203.log',515,1,56,135,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200203.log',515,1,58,137,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200203.log',515,1,78,288,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200203.log',515,1,89,293,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200203.log',515,1,99,305,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200203.log',515,1,115,309,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20200203.log',515,1,125,310,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200203.log',515,1,137,343,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200203.log',515,1,141,361,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200203.log',515,1,148,394,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200203.log',515,1,149,401,'20200203','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200203.log',1048585,1,47,47,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200203.log',1048585,1,56,56,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200203.log',1048585,1,58,58,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200203.log',1048585,1,78,78,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200203.log',1048585,1,89,89,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200203.log',1048585,1,135,135,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200203.log',1048585,1,139,139,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200203.log',1048585,1,146,146,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200203.log',1048585,1,148,148,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200203.log',1048585,1,149,149,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200204.log',256,1,NULL,1,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200204.log',259,1,NULL,4,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200204.log',515,1,7,32,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200204.log',515,1,49,116,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200204.log',515,1,53,120,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200204.log',515,1,81,283,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200204.log',515,1,82,284,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200204.log',515,1,78,288,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',14,1,259,6,49),('usage_events_20200204.log',515,1,86,290,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200204.log',515,1,89,293,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200204.log',515,1,133,318,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200204.log',515,1,135,330,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200204.log',515,1,137,343,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200204.log',515,1,139,351,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200204.log',515,1,142,367,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200204.log',515,1,148,394,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200204.log',515,1,149,401,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200204.log',515,1,150,407,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200204.log',1048585,1,7,7,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200204.log',1048585,1,78,78,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,6,NULL),('usage_events_20200204.log',1048585,1,82,82,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200204.log',1048585,1,83,83,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200204.log',1048585,1,133,133,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200204.log',1048585,1,137,137,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200204.log',1048585,1,148,148,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200204.log',1048585,1,149,149,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200205.log',256,1,NULL,1,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,1,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,2,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,3,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,4,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,5,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,6,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,7,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,8,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,9,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200205.log',259,1,NULL,10,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200205.log',515,1,1,3,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200205.log',515,1,8,33,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200205.log',515,1,32,80,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200205.log',515,1,33,81,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200205.log',515,1,49,116,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200205.log',515,1,55,134,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20200205.log',515,1,78,288,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200205.log',515,1,84,289,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200205.log',515,1,87,291,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200205.log',515,1,100,306,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200205.log',515,1,137,343,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200205.log',515,1,142,367,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200205.log',515,1,151,414,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200205.log',1048585,1,1,1,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200205.log',1048585,1,4,4,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200205.log',1048585,1,5,5,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200205.log',1048585,1,6,6,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200205.log',1048585,1,7,7,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200205.log',1048585,1,8,8,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200205.log',1048585,1,14,14,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200205.log',1048585,1,19,19,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200205.log',1048585,1,20,20,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200205.log',1048585,1,21,21,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200205.log',1048585,1,22,22,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200205.log',1048585,1,40,40,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200205.log',1048585,1,58,58,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200205.log',1048585,1,78,78,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200205.log',1048585,1,82,82,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200205.log',1048585,1,85,85,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200205.log',1048585,1,87,87,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200205.log',1048585,1,135,135,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200205.log',1048585,1,139,139,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200205.log',1048585,1,141,141,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200205.log',1048585,1,142,142,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200205.log',1048585,1,146,146,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200205.log',1048585,1,147,147,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200205.log',1048585,1,148,148,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200205.log',1048585,1,149,149,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200205.log',1048585,1,150,150,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200205.log',1048585,1,151,151,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200205.log',1048585,1,152,152,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200206.log',256,1,NULL,1,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200206.log',259,1,NULL,4,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200206.log',259,1,NULL,5,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200206.log',259,1,NULL,7,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200206.log',259,1,NULL,9,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200206.log',259,1,NULL,10,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200206.log',515,1,4,19,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200206.log',515,1,49,116,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200206.log',515,1,56,135,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200206.log',515,1,58,137,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20200206.log',515,1,76,286,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200206.log',515,1,78,288,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',9,1,259,6,49),('usage_events_20200206.log',515,1,86,290,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200206.log',515,1,89,293,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200206.log',515,1,135,330,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200206.log',515,1,137,343,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200206.log',515,1,141,361,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200206.log',515,1,142,367,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200206.log',515,1,148,394,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200206.log',515,1,151,414,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200206.log',1048585,1,4,4,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200206.log',1048585,1,47,47,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200206.log',1048585,1,49,49,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200206.log',1048585,1,56,56,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200206.log',1048585,1,58,58,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200206.log',1048585,1,78,78,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200206.log',1048585,1,86,86,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200206.log',1048585,1,113,113,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200206.log',1048585,1,135,135,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200206.log',1048585,1,139,139,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200206.log',1048585,1,141,141,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200206.log',1048585,1,146,146,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200206.log',1048585,1,149,149,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200207.log',256,1,NULL,1,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200207.log',259,1,NULL,3,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200207.log',259,1,NULL,6,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200207.log',259,1,NULL,7,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200207.log',259,1,NULL,9,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200207.log',259,1,NULL,10,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200207.log',515,1,8,33,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200207.log',515,1,56,135,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',9,1,259,5,31),('usage_events_20200207.log',515,1,58,137,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200207.log',515,1,82,284,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20200207.log',515,1,78,288,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',10,1,259,6,49),('usage_events_20200207.log',515,1,91,295,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20200207.log',515,1,113,307,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200207.log',515,1,133,318,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200207.log',515,1,137,343,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200207.log',515,1,139,351,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200207.log',515,1,148,394,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200207.log',515,1,149,401,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200207.log',1048585,1,5,5,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200207.log',1048585,1,8,8,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200207.log',1048585,1,51,51,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200207.log',1048585,1,56,56,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,5,NULL),('usage_events_20200207.log',1048585,1,78,78,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20200207.log',1048585,1,82,82,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200207.log',1048585,1,91,91,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200207.log',1048585,1,113,113,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200207.log',1048585,1,125,125,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200207.log',1048585,1,135,135,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200207.log',1048585,1,148,148,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200208.log',256,1,NULL,1,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,1,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,2,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,3,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,4,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,5,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,6,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,7,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,8,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,9,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200208.log',259,1,NULL,10,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200208.log',515,1,1,3,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200208.log',515,1,32,80,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200208.log',515,1,51,118,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200208.log',515,1,55,134,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20200208.log',515,1,56,135,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,31),('usage_events_20200208.log',515,1,58,137,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200208.log',515,1,82,284,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200208.log',515,1,86,290,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200208.log',515,1,87,291,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200208.log',515,1,90,294,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,55),('usage_events_20200208.log',515,1,137,343,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200208.log',515,1,139,351,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200208.log',515,1,146,379,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200208.log',1048585,1,1,1,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200208.log',1048585,1,4,4,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200208.log',1048585,1,5,5,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200208.log',1048585,1,6,6,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200208.log',1048585,1,7,7,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200208.log',1048585,1,8,8,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200208.log',1048585,1,14,14,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200208.log',1048585,1,19,19,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200208.log',1048585,1,20,20,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200208.log',1048585,1,21,21,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200208.log',1048585,1,22,22,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200208.log',1048585,1,40,40,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200208.log',1048585,1,56,56,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200208.log',1048585,1,58,58,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200208.log',1048585,1,82,82,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200208.log',1048585,1,85,85,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200208.log',1048585,1,90,90,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200208.log',1048585,1,139,139,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200208.log',1048585,1,146,146,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200208.log',1048585,1,147,147,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200208.log',1048585,1,148,148,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200208.log',1048585,1,149,149,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200208.log',1048585,1,150,150,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200208.log',1048585,1,151,151,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200208.log',1048585,1,152,152,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200209.log',256,1,NULL,1,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200209.log',259,1,NULL,1,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200209.log',259,1,NULL,2,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200209.log',259,1,NULL,3,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200209.log',259,1,NULL,8,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200209.log',515,1,49,116,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200209.log',515,1,51,118,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20200209.log',515,1,58,137,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200209.log',515,1,78,288,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200209.log',515,1,89,293,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200209.log',515,1,91,295,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20200209.log',515,1,113,307,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200209.log',515,1,141,361,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200209.log',1048585,1,49,49,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200209.log',1048585,1,51,51,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200209.log',1048585,1,78,78,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200209.log',1048585,1,89,89,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200209.log',1048585,1,113,113,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200210.log',256,1,NULL,1,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200210.log',259,1,NULL,1,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200210.log',259,1,NULL,3,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200210.log',259,1,NULL,6,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200210.log',259,1,NULL,10,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200210.log',515,1,4,19,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200210.log',515,1,20,53,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200210.log',515,1,51,118,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200210.log',515,1,56,135,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200210.log',515,1,79,282,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200210.log',515,1,78,288,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20200210.log',515,1,87,291,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200210.log',515,1,89,293,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200210.log',515,1,113,307,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200210.log',515,1,137,343,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200210.log',515,1,146,379,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200210.log',1048585,1,20,20,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200210.log',1048585,1,56,56,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200210.log',1048585,1,58,58,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200210.log',1048585,1,78,78,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20200210.log',1048585,1,79,79,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200210.log',1048585,1,87,87,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200210.log',1048585,1,89,89,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200210.log',1048585,1,137,137,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200210.log',1048585,1,141,141,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200210.log',1048585,1,146,146,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200211.log',256,1,NULL,1,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20200211.log',259,1,NULL,1,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200211.log',259,1,NULL,7,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200211.log',515,1,20,53,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200211.log',515,1,49,116,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200211.log',515,1,51,118,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200211.log',515,1,58,137,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200211.log',515,1,85,281,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200211.log',515,1,78,288,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200211.log',515,1,84,289,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200211.log',515,1,86,290,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200211.log',515,1,87,291,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',14,1,259,7,52),('usage_events_20200211.log',515,1,89,293,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200211.log',515,1,100,306,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200211.log',515,1,137,343,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200211.log',515,1,139,351,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200211.log',515,1,141,361,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200211.log',515,1,142,367,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200211.log',515,1,146,379,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200211.log',515,1,147,387,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200211.log',515,1,149,401,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200211.log',515,1,150,407,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200211.log',1048585,1,6,6,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200211.log',1048585,1,51,51,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200211.log',1048585,1,58,58,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200211.log',1048585,1,59,59,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200211.log',1048585,1,78,78,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200211.log',1048585,1,84,84,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200211.log',1048585,1,85,85,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200211.log',1048585,1,86,86,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200211.log',1048585,1,87,87,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20200211.log',1048585,1,89,89,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200211.log',1048585,1,100,100,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200211.log',1048585,1,137,137,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200211.log',1048585,1,142,142,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200211.log',1048585,1,146,146,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200211.log',1048585,1,150,150,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200212.log',256,1,NULL,1,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',26,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,2,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,3,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,4,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,5,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,6,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,7,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,8,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,9,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200212.log',259,1,NULL,10,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200212.log',515,1,1,3,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200212.log',515,1,51,118,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200212.log',515,1,53,120,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200212.log',515,1,56,135,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200212.log',515,1,58,137,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200212.log',515,1,79,282,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200212.log',515,1,83,285,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200212.log',515,1,78,288,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200212.log',515,1,90,294,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,55),('usage_events_20200212.log',515,1,99,305,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200212.log',515,1,114,308,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200212.log',515,1,135,330,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200212.log',515,1,137,343,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200212.log',515,1,139,351,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200212.log',515,1,141,361,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200212.log',515,1,142,367,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200212.log',515,1,148,394,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200212.log',515,1,150,407,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200212.log',515,1,152,423,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,77),('usage_events_20200212.log',515,1,169,461,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200212.log',515,1,171,470,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200212.log',515,1,177,507,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200212.log',515,1,178,514,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200212.log',1048585,1,1,1,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200212.log',1048585,1,4,4,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200212.log',1048585,1,5,5,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200212.log',1048585,1,7,7,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200212.log',1048585,1,8,8,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200212.log',1048585,1,14,14,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200212.log',1048585,1,19,19,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200212.log',1048585,1,20,20,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200212.log',1048585,1,21,21,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200212.log',1048585,1,22,22,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200212.log',1048585,1,40,40,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200212.log',1048585,1,51,51,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200212.log',1048585,1,55,55,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200212.log',1048585,1,56,56,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200212.log',1048585,1,58,58,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200212.log',1048585,1,78,78,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200212.log',1048585,1,79,79,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200212.log',1048585,1,85,85,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200212.log',1048585,1,99,99,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200212.log',1048585,1,114,114,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200212.log',1048585,1,137,137,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200212.log',1048585,1,139,139,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200212.log',1048585,1,146,146,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200212.log',1048585,1,147,147,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200212.log',1048585,1,148,148,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200212.log',1048585,1,149,149,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200212.log',1048585,1,150,150,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200212.log',1048585,1,151,151,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200212.log',1048585,1,152,152,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200212.log',1048585,1,171,171,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200212.log',1048585,1,174,174,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200213.log',256,1,NULL,1,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,1,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,2,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,3,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,4,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,6,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,7,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,8,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,9,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200213.log',259,1,NULL,11,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200213.log',515,1,49,116,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200213.log',515,1,51,118,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200213.log',515,1,56,135,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200213.log',515,1,79,282,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200213.log',515,1,78,288,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200213.log',515,1,89,293,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200213.log',515,1,90,294,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20200213.log',515,1,99,305,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20200213.log',515,1,137,343,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200213.log',515,1,139,351,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200213.log',515,1,147,387,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200213.log',515,1,148,394,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200213.log',515,1,149,401,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200213.log',515,1,150,407,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200213.log',515,1,152,423,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200213.log',515,1,171,470,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200213.log',515,1,178,514,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200213.log',1048585,1,51,51,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200213.log',1048585,1,56,56,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200213.log',1048585,1,58,58,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200213.log',1048585,1,78,78,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200213.log',1048585,1,81,81,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200213.log',1048585,1,85,85,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200213.log',1048585,1,89,89,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200213.log',1048585,1,99,99,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200213.log',1048585,1,148,148,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200213.log',1048585,1,176,176,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',256,1,NULL,1,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,1,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,2,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,3,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,4,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,5,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,6,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,7,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,8,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,9,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,10,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200214.log',259,1,NULL,11,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200214.log',515,1,1,3,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200214.log',515,1,20,53,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200214.log',515,1,28,68,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200214.log',515,1,51,118,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200214.log',515,1,54,133,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200214.log',515,1,56,135,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200214.log',515,1,58,137,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200214.log',515,1,76,286,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200214.log',515,1,77,287,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200214.log',515,1,78,288,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200214.log',515,1,84,289,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200214.log',515,1,87,291,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200214.log',515,1,133,318,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200214.log',515,1,139,351,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,68),('usage_events_20200214.log',515,1,146,379,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200214.log',515,1,147,387,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200214.log',515,1,150,407,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200214.log',515,1,169,461,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200214.log',1048585,1,1,1,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200214.log',1048585,1,4,4,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200214.log',1048585,1,5,5,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200214.log',1048585,1,6,6,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200214.log',1048585,1,7,7,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200214.log',1048585,1,8,8,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200214.log',1048585,1,14,14,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200214.log',1048585,1,20,20,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20200214.log',1048585,1,21,21,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200214.log',1048585,1,22,22,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200214.log',1048585,1,28,28,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200214.log',1048585,1,40,40,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200214.log',1048585,1,51,51,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200214.log',1048585,1,56,56,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200214.log',1048585,1,76,76,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200214.log',1048585,1,78,78,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200214.log',1048585,1,79,79,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200214.log',1048585,1,84,84,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200214.log',1048585,1,133,133,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200214.log',1048585,1,137,137,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200214.log',1048585,1,142,142,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200214.log',1048585,1,148,148,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200214.log',1048585,1,150,150,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200214.log',1048585,1,169,169,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',1048585,1,171,171,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',1048585,1,173,173,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',1048585,1,174,174,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',1048585,1,175,175,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',1048585,1,176,176,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',1048585,1,177,177,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200214.log',1048585,1,178,178,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200215.log',256,1,NULL,1,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,1,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,2,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,3,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,4,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,5,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,6,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,7,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,8,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,9,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,10,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200215.log',259,1,NULL,11,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200215.log',515,1,1,3,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200215.log',515,1,40,94,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200215.log',515,1,55,134,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20200215.log',515,1,81,283,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200215.log',515,1,78,288,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200215.log',515,1,84,289,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200215.log',515,1,89,293,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,54),('usage_events_20200215.log',515,1,114,308,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200215.log',515,1,135,330,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200215.log',515,1,142,367,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20200215.log',515,1,148,394,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200215.log',515,1,149,401,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200215.log',515,1,150,407,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200215.log',515,1,173,479,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200215.log',515,1,175,493,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200215.log',515,1,178,514,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200215.log',1048585,1,40,40,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200215.log',1048585,1,58,58,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200215.log',1048585,1,89,89,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200215.log',1048585,1,91,91,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200215.log',1048585,1,142,142,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20200215.log',1048585,1,148,148,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200215.log',1048585,1,149,149,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200215.log',1048585,1,150,150,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200215.log',1048585,1,173,173,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200215.log',1048585,1,175,175,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200216.log',259,1,NULL,5,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200216.log',515,1,50,117,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200216.log',515,1,59,138,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200216.log',515,1,78,288,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200216.log',515,1,89,293,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200216.log',515,1,125,310,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200216.log',515,1,149,401,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200216.log',515,1,169,461,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200216.log',515,1,173,479,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200216.log',515,1,175,493,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20200216.log',515,1,176,500,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200216.log',515,1,178,514,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200216.log',1048585,1,50,50,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200216.log',1048585,1,56,56,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200216.log',1048585,1,58,58,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200216.log',1048585,1,78,78,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200216.log',1048585,1,125,125,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200216.log',1048585,1,137,137,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200216.log',1048585,1,173,173,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200216.log',1048585,1,175,175,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200216.log',1048585,1,178,178,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200217.log',256,1,NULL,1,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,1,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,2,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,3,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,4,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,5,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,6,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,7,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,8,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,9,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,10,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200217.log',259,1,NULL,11,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200217.log',515,1,1,3,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200217.log',515,1,5,30,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20200217.log',515,1,6,31,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20200217.log',515,1,46,114,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20200217.log',515,1,47,115,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200217.log',515,1,49,116,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200217.log',515,1,54,133,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200217.log',515,1,56,135,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20200217.log',515,1,58,137,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200217.log',515,1,79,282,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200217.log',515,1,78,288,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200217.log',515,1,84,289,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200217.log',515,1,91,295,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200217.log',515,1,114,308,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200217.log',515,1,134,324,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200217.log',515,1,137,343,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200217.log',515,1,139,351,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200217.log',515,1,142,367,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200217.log',515,1,149,401,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200217.log',515,1,150,407,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200217.log',515,1,152,423,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200217.log',515,1,169,461,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200217.log',515,1,171,470,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,79),('usage_events_20200217.log',515,1,173,479,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200217.log',515,1,174,486,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200217.log',515,1,175,493,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200217.log',1048585,1,1,1,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200217.log',1048585,1,4,4,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200217.log',1048585,1,5,5,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200217.log',1048585,1,6,6,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200217.log',1048585,1,7,7,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200217.log',1048585,1,8,8,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200217.log',1048585,1,14,14,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200217.log',1048585,1,20,20,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200217.log',1048585,1,21,21,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200217.log',1048585,1,22,22,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200217.log',1048585,1,40,40,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200217.log',1048585,1,58,58,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200217.log',1048585,1,78,78,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200217.log',1048585,1,79,79,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200217.log',1048585,1,134,134,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200217.log',1048585,1,137,137,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200217.log',1048585,1,142,142,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200217.log',1048585,1,152,152,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200217.log',1048585,1,169,169,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200217.log',1048585,1,171,171,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200217.log',1048585,1,173,173,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200217.log',1048585,1,174,174,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200217.log',1048585,1,175,175,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200217.log',1048585,1,176,176,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200217.log',1048585,1,177,177,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200217.log',1048585,1,178,178,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200218.log',259,1,NULL,6,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200218.log',259,1,NULL,10,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200218.log',515,1,7,32,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200218.log',515,1,49,116,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200218.log',515,1,53,120,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200218.log',515,1,76,286,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200218.log',515,1,77,287,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200218.log',515,1,78,288,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200218.log',515,1,86,290,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200218.log',515,1,89,293,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200218.log',515,1,113,307,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200218.log',515,1,139,351,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,68),('usage_events_20200218.log',515,1,146,379,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,71),('usage_events_20200218.log',515,1,169,461,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200218.log',515,1,173,479,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200218.log',515,1,174,486,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200218.log',515,1,175,493,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200218.log',515,1,176,500,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200218.log',515,1,177,507,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200218.log',1048585,1,7,7,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200218.log',1048585,1,8,8,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200218.log',1048585,1,28,28,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200218.log',1048585,1,58,58,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200218.log',1048585,1,59,59,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200218.log',1048585,1,76,76,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200218.log',1048585,1,82,82,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200218.log',1048585,1,86,86,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200218.log',1048585,1,89,89,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200218.log',1048585,1,113,113,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200218.log',1048585,1,137,137,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200218.log',1048585,1,139,139,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20200218.log',1048585,1,146,146,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20200218.log',1048585,1,148,148,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200218.log',1048585,1,174,174,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200218.log',1048585,1,175,175,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200218.log',1048585,1,177,177,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200219.log',259,1,NULL,1,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200219.log',259,1,NULL,3,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200219.log',259,1,NULL,8,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200219.log',259,1,NULL,11,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200219.log',515,1,20,53,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20200219.log',515,1,53,120,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200219.log',515,1,56,135,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200219.log',515,1,82,284,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200219.log',515,1,76,286,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200219.log',515,1,78,288,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200219.log',515,1,84,289,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200219.log',515,1,89,293,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200219.log',515,1,100,306,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200219.log',515,1,114,308,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200219.log',515,1,115,309,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,61),('usage_events_20200219.log',515,1,125,310,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200219.log',515,1,137,343,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200219.log',515,1,142,367,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200219.log',515,1,146,379,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200219.log',515,1,148,394,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200219.log',515,1,150,407,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200219.log',515,1,152,423,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200219.log',515,1,169,461,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200219.log',515,1,173,479,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20200219.log',515,1,175,493,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200219.log',515,1,177,507,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200219.log',515,1,178,514,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200219.log',1048585,1,1,1,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200219.log',1048585,1,32,32,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200219.log',1048585,1,33,33,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200219.log',1048585,1,56,56,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200219.log',1048585,1,78,78,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200219.log',1048585,1,82,82,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200219.log',1048585,1,84,84,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200219.log',1048585,1,86,86,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200219.log',1048585,1,89,89,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200219.log',1048585,1,134,134,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200219.log',1048585,1,137,137,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20200219.log',1048585,1,142,142,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200219.log',1048585,1,169,169,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200219.log',1048585,1,178,178,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200220.log',256,1,NULL,1,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,1,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,2,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,3,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,4,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,5,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,6,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,7,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,8,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,9,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,10,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200220.log',259,1,NULL,11,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200220.log',515,1,1,3,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200220.log',515,1,5,30,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200220.log',515,1,19,52,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200220.log',515,1,20,53,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200220.log',515,1,22,57,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20200220.log',515,1,49,116,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200220.log',515,1,51,118,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200220.log',515,1,53,120,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200220.log',515,1,81,283,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200220.log',515,1,77,287,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200220.log',515,1,78,288,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200220.log',515,1,100,306,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200220.log',515,1,113,307,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200220.log',515,1,135,330,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200220.log',515,1,141,361,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200220.log',515,1,142,367,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200220.log',515,1,146,379,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200220.log',515,1,148,394,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200220.log',515,1,150,407,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200220.log',515,1,152,423,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200220.log',515,1,169,461,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200220.log',515,1,173,479,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200220.log',515,1,174,486,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20200220.log',515,1,175,493,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200220.log',515,1,178,514,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200220.log',1048585,1,1,1,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200220.log',1048585,1,4,4,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200220.log',1048585,1,5,5,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200220.log',1048585,1,6,6,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200220.log',1048585,1,7,7,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200220.log',1048585,1,8,8,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200220.log',1048585,1,14,14,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200220.log',1048585,1,19,19,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200220.log',1048585,1,20,20,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200220.log',1048585,1,21,21,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200220.log',1048585,1,22,22,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200220.log',1048585,1,40,40,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200220.log',1048585,1,54,54,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200220.log',1048585,1,78,78,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200220.log',1048585,1,79,79,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200220.log',1048585,1,113,113,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200220.log',1048585,1,169,169,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200220.log',1048585,1,171,171,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200220.log',1048585,1,173,173,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200220.log',1048585,1,174,174,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200220.log',1048585,1,175,175,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200220.log',1048585,1,176,176,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200220.log',1048585,1,177,177,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200220.log',1048585,1,178,178,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200221.log',256,1,NULL,1,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200221.log',259,1,NULL,5,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200221.log',259,1,NULL,8,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200221.log',259,1,NULL,10,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200221.log',259,1,NULL,11,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200221.log',515,1,35,83,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200221.log',515,1,51,118,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200221.log',515,1,56,135,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20200221.log',515,1,58,137,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200221.log',515,1,78,288,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200221.log',515,1,87,291,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200221.log',515,1,89,293,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200221.log',515,1,113,307,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200221.log',515,1,114,308,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200221.log',515,1,137,343,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200221.log',515,1,146,379,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200221.log',515,1,147,387,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200221.log',515,1,148,394,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200221.log',515,1,151,414,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200221.log',515,1,169,461,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200221.log',515,1,171,470,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200221.log',515,1,173,479,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200221.log',515,1,174,486,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20200221.log',515,1,175,493,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200221.log',1048585,1,8,8,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200221.log',1048585,1,51,51,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200221.log',1048585,1,56,56,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200221.log',1048585,1,58,58,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200221.log',1048585,1,59,59,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200221.log',1048585,1,78,78,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200221.log',1048585,1,81,81,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200221.log',1048585,1,85,85,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200221.log',1048585,1,87,87,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200221.log',1048585,1,88,88,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200221.log',1048585,1,147,147,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200221.log',1048585,1,148,148,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200221.log',1048585,1,151,151,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200221.log',1048585,1,152,152,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200221.log',1048585,1,171,171,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200221.log',1048585,1,173,173,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200221.log',1048585,1,175,175,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200221.log',1048585,1,176,176,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200221.log',1048585,1,178,178,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200222.log',259,1,NULL,2,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200222.log',259,1,NULL,4,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200222.log',259,1,NULL,5,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200222.log',259,1,NULL,6,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200222.log',259,1,NULL,7,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200222.log',259,1,NULL,9,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200222.log',259,1,NULL,10,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200222.log',515,1,22,57,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20200222.log',515,1,33,81,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200222.log',515,1,54,133,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200222.log',515,1,56,135,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200222.log',515,1,83,285,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200222.log',515,1,78,288,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200222.log',515,1,87,291,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200222.log',515,1,89,293,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200222.log',515,1,99,305,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200222.log',515,1,115,309,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200222.log',515,1,137,343,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,67),('usage_events_20200222.log',515,1,141,361,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200222.log',515,1,146,379,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200222.log',515,1,148,394,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20200222.log',515,1,169,461,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200222.log',515,1,173,479,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200222.log',515,1,175,493,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200222.log',515,1,176,500,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200222.log',1048585,1,21,21,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200222.log',1048585,1,46,46,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200222.log',1048585,1,49,49,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200222.log',1048585,1,54,54,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200222.log',1048585,1,78,78,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200222.log',1048585,1,83,83,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200222.log',1048585,1,85,85,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200222.log',1048585,1,88,88,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200222.log',1048585,1,99,99,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200222.log',1048585,1,137,137,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200222.log',1048585,1,148,148,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200222.log',1048585,1,150,150,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200222.log',1048585,1,169,169,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200222.log',1048585,1,173,173,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200222.log',1048585,1,175,175,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200222.log',1048585,1,176,176,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200222.log',1048585,1,177,177,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200223.log',256,1,NULL,1,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,1,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,2,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,3,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,4,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,5,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,6,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,7,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,8,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,9,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,10,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200223.log',259,1,NULL,11,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200223.log',515,1,1,3,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200223.log',515,1,58,137,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200223.log',515,1,83,285,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200223.log',515,1,78,288,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200223.log',515,1,133,318,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200223.log',515,1,135,330,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200223.log',515,1,139,351,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200223.log',515,1,142,367,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200223.log',515,1,148,394,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20200223.log',515,1,152,423,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200223.log',515,1,169,461,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200223.log',515,1,174,486,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200223.log',515,1,175,493,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200223.log',515,1,176,500,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200223.log',515,1,178,514,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200223.log',1048585,1,1,1,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200223.log',1048585,1,4,4,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200223.log',1048585,1,5,5,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200223.log',1048585,1,6,6,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200223.log',1048585,1,7,7,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200223.log',1048585,1,8,8,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200223.log',1048585,1,14,14,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200223.log',1048585,1,20,20,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200223.log',1048585,1,21,21,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200223.log',1048585,1,22,22,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200223.log',1048585,1,40,40,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200223.log',1048585,1,47,47,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200223.log',1048585,1,56,56,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200223.log',1048585,1,76,76,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200223.log',1048585,1,78,78,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200223.log',1048585,1,82,82,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200223.log',1048585,1,83,83,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200223.log',1048585,1,139,139,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200223.log',1048585,1,142,142,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200223.log',1048585,1,148,148,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200223.log',1048585,1,149,149,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200223.log',1048585,1,150,150,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200223.log',1048585,1,152,152,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200223.log',1048585,1,169,169,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200223.log',1048585,1,171,171,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200223.log',1048585,1,173,173,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200223.log',1048585,1,174,174,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200223.log',1048585,1,175,175,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200223.log',1048585,1,176,176,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200223.log',1048585,1,177,177,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200223.log',1048585,1,178,178,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200224.log',256,1,NULL,1,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200224.log',259,1,NULL,3,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200224.log',259,1,NULL,6,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200224.log',259,1,NULL,9,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200224.log',259,1,NULL,11,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200224.log',515,1,5,30,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20200224.log',515,1,58,137,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200224.log',515,1,81,283,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200224.log',515,1,83,285,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200224.log',515,1,78,288,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200224.log',515,1,84,289,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200224.log',515,1,89,293,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200224.log',515,1,113,307,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200224.log',515,1,133,318,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200224.log',515,1,137,343,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200224.log',515,1,141,361,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200224.log',515,1,148,394,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200224.log',515,1,149,401,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200224.log',515,1,151,414,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200224.log',515,1,169,461,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200224.log',515,1,171,470,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200224.log',515,1,173,479,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200224.log',515,1,175,493,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200224.log',515,1,177,507,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200224.log',1048585,1,51,51,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200224.log',1048585,1,57,57,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200224.log',1048585,1,58,58,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200224.log',1048585,1,59,59,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200224.log',1048585,1,81,81,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200224.log',1048585,1,83,83,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200224.log',1048585,1,87,87,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200224.log',1048585,1,89,89,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200224.log',1048585,1,90,90,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200224.log',1048585,1,91,91,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200224.log',1048585,1,134,134,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200224.log',1048585,1,147,147,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200224.log',1048585,1,149,149,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200224.log',1048585,1,173,173,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200224.log',1048585,1,175,175,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200224.log',1048585,1,177,177,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200224.log',1048585,1,178,178,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200225.log',256,1,NULL,1,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200225.log',259,1,NULL,1,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200225.log',259,1,NULL,4,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200225.log',259,1,NULL,10,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200225.log',259,1,NULL,11,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200225.log',515,1,20,53,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200225.log',515,1,35,83,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200225.log',515,1,40,94,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200225.log',515,1,54,133,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200225.log',515,1,56,135,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200225.log',515,1,58,137,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200225.log',515,1,81,283,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200225.log',515,1,78,288,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200225.log',515,1,84,289,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200225.log',515,1,87,291,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200225.log',515,1,88,292,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20200225.log',515,1,91,295,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20200225.log',515,1,135,330,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200225.log',515,1,139,351,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200225.log',515,1,146,379,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200225.log',515,1,147,387,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200225.log',515,1,150,407,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200225.log',515,1,152,423,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200225.log',515,1,169,461,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200225.log',515,1,173,479,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200225.log',515,1,175,493,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200225.log',515,1,176,500,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200225.log',515,1,178,514,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200225.log',1048585,1,8,8,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200225.log',1048585,1,20,20,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200225.log',1048585,1,54,54,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200225.log',1048585,1,58,58,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200225.log',1048585,1,78,78,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200225.log',1048585,1,81,81,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200225.log',1048585,1,87,87,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200225.log',1048585,1,89,89,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200225.log',1048585,1,151,151,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200225.log',1048585,1,174,174,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200225.log',1048585,1,176,176,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200226.log',256,1,NULL,1,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,1,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,2,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,3,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,4,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,5,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,6,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,7,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,8,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,9,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,10,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200226.log',259,1,NULL,11,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200226.log',515,1,1,3,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200226.log',515,1,32,80,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20200226.log',515,1,54,133,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200226.log',515,1,58,137,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200226.log',515,1,78,288,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200226.log',515,1,87,291,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200226.log',515,1,100,306,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200226.log',515,1,113,307,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200226.log',515,1,137,343,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200226.log',515,1,139,351,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200226.log',515,1,142,367,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200226.log',515,1,147,387,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200226.log',515,1,148,394,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200226.log',515,1,150,407,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200226.log',515,1,152,423,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200226.log',515,1,169,461,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20200226.log',515,1,171,470,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200226.log',515,1,173,479,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200226.log',515,1,175,493,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200226.log',515,1,176,500,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200226.log',515,1,178,514,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200226.log',1048585,1,1,1,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200226.log',1048585,1,4,4,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200226.log',1048585,1,5,5,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200226.log',1048585,1,6,6,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200226.log',1048585,1,7,7,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200226.log',1048585,1,8,8,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200226.log',1048585,1,14,14,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200226.log',1048585,1,19,19,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200226.log',1048585,1,20,20,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200226.log',1048585,1,21,21,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200226.log',1048585,1,22,22,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200226.log',1048585,1,32,32,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200226.log',1048585,1,33,33,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200226.log',1048585,1,40,40,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200226.log',1048585,1,54,54,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200226.log',1048585,1,58,58,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200226.log',1048585,1,86,86,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200226.log',1048585,1,100,100,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200226.log',1048585,1,137,137,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200226.log',1048585,1,142,142,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200226.log',1048585,1,149,149,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200226.log',1048585,1,150,150,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200226.log',1048585,1,169,169,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200226.log',1048585,1,171,171,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200226.log',1048585,1,173,173,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200226.log',1048585,1,174,174,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200226.log',1048585,1,175,175,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200226.log',1048585,1,176,176,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200226.log',1048585,1,177,177,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200226.log',1048585,1,178,178,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200227.log',256,1,NULL,1,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200227.log',259,1,NULL,6,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200227.log',259,1,NULL,7,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200227.log',259,1,NULL,9,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200227.log',259,1,NULL,10,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200227.log',259,1,NULL,11,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200227.log',515,1,47,115,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200227.log',515,1,54,133,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200227.log',515,1,56,135,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200227.log',515,1,79,282,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200227.log',515,1,81,283,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200227.log',515,1,77,287,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200227.log',515,1,78,288,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200227.log',515,1,84,289,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,50),('usage_events_20200227.log',515,1,99,305,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20200227.log',515,1,133,318,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200227.log',515,1,137,343,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200227.log',515,1,139,351,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200227.log',515,1,148,394,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200227.log',515,1,150,407,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200227.log',515,1,169,461,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200227.log',515,1,173,479,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200227.log',515,1,174,486,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20200227.log',515,1,175,493,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200227.log',515,1,176,500,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200227.log',515,1,177,507,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200227.log',515,1,178,514,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200227.log',1048585,1,53,53,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200227.log',1048585,1,54,54,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200227.log',1048585,1,56,56,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200227.log',1048585,1,59,59,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200227.log',1048585,1,78,78,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200227.log',1048585,1,83,83,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200227.log',1048585,1,84,84,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200227.log',1048585,1,87,87,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200227.log',1048585,1,133,133,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200227.log',1048585,1,137,137,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200227.log',1048585,1,139,139,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200227.log',1048585,1,148,148,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200227.log',1048585,1,149,149,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200227.log',1048585,1,169,169,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200227.log',1048585,1,173,173,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200227.log',1048585,1,174,174,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200227.log',1048585,1,175,175,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200228.log',256,1,NULL,1,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200228.log',259,1,NULL,5,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200228.log',259,1,NULL,6,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200228.log',259,1,NULL,8,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200228.log',259,1,NULL,11,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200228.log',515,1,8,33,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200228.log',515,1,19,52,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200228.log',515,1,20,53,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20200228.log',515,1,31,79,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20200228.log',515,1,49,116,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200228.log',515,1,51,118,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200228.log',515,1,54,133,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200228.log',515,1,78,288,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20200228.log',515,1,86,290,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200228.log',515,1,114,308,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200228.log',515,1,146,379,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200228.log',515,1,149,401,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200228.log',515,1,152,423,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200228.log',515,1,169,461,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200228.log',515,1,173,479,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200228.log',515,1,175,493,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200228.log',515,1,178,514,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200228.log',1048585,1,14,14,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200228.log',1048585,1,19,19,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200228.log',1048585,1,20,20,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200228.log',1048585,1,51,51,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200228.log',1048585,1,53,53,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200228.log',1048585,1,54,54,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200228.log',1048585,1,58,58,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200228.log',1048585,1,78,78,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,6,NULL),('usage_events_20200228.log',1048585,1,86,86,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200228.log',1048585,1,115,115,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200228.log',1048585,1,146,146,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200228.log',1048585,1,169,169,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200228.log',1048585,1,173,173,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200229.log',256,1,NULL,1,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200229.log',259,1,NULL,1,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200229.log',259,1,NULL,2,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200229.log',259,1,NULL,7,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200229.log',259,1,NULL,9,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200229.log',259,1,NULL,11,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200229.log',515,1,53,120,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200229.log',515,1,56,135,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200229.log',515,1,78,288,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200229.log',515,1,89,293,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200229.log',515,1,99,305,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200229.log',515,1,137,343,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200229.log',515,1,139,351,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200229.log',515,1,150,407,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200229.log',515,1,169,461,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200229.log',515,1,171,470,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200229.log',515,1,175,493,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200229.log',515,1,176,500,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200229.log',515,1,178,514,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200229.log',1048585,1,4,4,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200229.log',1048585,1,6,6,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200229.log',1048585,1,7,7,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200229.log',1048585,1,78,78,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200229.log',1048585,1,89,89,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200229.log',1048585,1,137,137,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200229.log',1048585,1,139,139,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200229.log',1048585,1,142,142,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200229.log',1048585,1,148,148,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200229.log',1048585,1,152,152,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200229.log',1048585,1,169,169,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200229.log',1048585,1,173,173,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200229.log',1048585,1,174,174,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200229.log',1048585,1,175,175,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200229.log',1048585,1,176,176,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200229.log',1048585,1,178,178,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200301.log',259,1,NULL,5,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200301.log',259,1,NULL,10,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200301.log',515,1,7,32,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20200301.log',515,1,50,117,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200301.log',515,1,56,135,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200301.log',515,1,85,281,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200301.log',515,1,79,282,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200301.log',515,1,81,283,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200301.log',515,1,78,288,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200301.log',515,1,87,291,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200301.log',515,1,89,293,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200301.log',515,1,113,307,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200301.log',515,1,134,324,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200301.log',515,1,137,343,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200301.log',515,1,142,367,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200301.log',515,1,146,379,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200301.log',515,1,150,407,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200301.log',515,1,169,461,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200301.log',515,1,173,479,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200301.log',515,1,174,486,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200301.log',515,1,175,493,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200301.log',515,1,176,500,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200301.log',1048585,1,31,31,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200301.log',1048585,1,56,56,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200301.log',1048585,1,58,58,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200301.log',1048585,1,76,76,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200301.log',1048585,1,78,78,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200301.log',1048585,1,79,79,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200301.log',1048585,1,85,85,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200301.log',1048585,1,89,89,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200301.log',1048585,1,113,113,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200301.log',1048585,1,142,142,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200301.log',1048585,1,148,148,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20200301.log',1048585,1,149,149,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200301.log',1048585,1,169,169,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200301.log',1048585,1,173,173,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200301.log',1048585,1,178,178,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200302.log',256,1,NULL,1,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200302.log',259,1,NULL,6,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200302.log',259,1,NULL,9,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200302.log',259,1,NULL,10,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200302.log',259,1,NULL,11,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200302.log',515,1,8,33,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200302.log',515,1,46,114,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,22),('usage_events_20200302.log',515,1,51,118,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200302.log',515,1,54,133,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200302.log',515,1,58,137,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200302.log',515,1,82,284,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200302.log',515,1,78,288,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20200302.log',515,1,99,305,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200302.log',515,1,113,307,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,59),('usage_events_20200302.log',515,1,114,308,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200302.log',515,1,125,310,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200302.log',515,1,136,336,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200302.log',515,1,137,343,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200302.log',515,1,141,361,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200302.log',515,1,146,379,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200302.log',515,1,148,394,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200302.log',515,1,149,401,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200302.log',515,1,150,407,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200302.log',515,1,169,461,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200302.log',515,1,171,470,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200302.log',515,1,173,479,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200302.log',515,1,174,486,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20200302.log',515,1,175,493,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200302.log',515,1,176,500,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200302.log',515,1,178,514,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20200302.log',1048585,1,46,46,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200302.log',1048585,1,58,58,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200302.log',1048585,1,59,59,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200302.log',1048585,1,74,74,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200302.log',1048585,1,76,76,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200302.log',1048585,1,78,78,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,6,NULL),('usage_events_20200302.log',1048585,1,81,81,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200302.log',1048585,1,83,83,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200302.log',1048585,1,90,90,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200302.log',1048585,1,91,91,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200302.log',1048585,1,113,113,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200302.log',1048585,1,125,125,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200302.log',1048585,1,136,136,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200302.log',1048585,1,142,142,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200302.log',1048585,1,148,148,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20200302.log',1048585,1,150,150,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200302.log',1048585,1,173,173,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200302.log',1048585,1,174,174,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200302.log',1048585,1,175,175,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200302.log',1048585,1,177,177,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200302.log',1048585,1,178,178,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200303.log',256,1,NULL,1,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200303.log',259,1,NULL,1,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200303.log',259,1,NULL,2,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200303.log',259,1,NULL,6,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200303.log',259,1,NULL,8,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200303.log',259,1,NULL,9,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200303.log',259,1,NULL,10,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200303.log',259,1,NULL,11,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200303.log',515,1,4,19,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20200303.log',515,1,19,52,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200303.log',515,1,50,117,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200303.log',515,1,54,133,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200303.log',515,1,58,137,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200303.log',515,1,82,284,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200303.log',515,1,78,288,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200303.log',515,1,91,295,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20200303.log',515,1,114,308,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200303.log',515,1,125,310,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200303.log',515,1,133,318,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200303.log',515,1,134,324,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200303.log',515,1,137,343,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200303.log',515,1,139,351,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200303.log',515,1,148,394,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200303.log',515,1,149,401,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200303.log',515,1,150,407,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200303.log',515,1,169,461,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20200303.log',515,1,173,479,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200303.log',515,1,174,486,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200303.log',515,1,175,493,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200303.log',515,1,178,514,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200303.log',1048585,1,4,4,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200303.log',1048585,1,51,51,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200303.log',1048585,1,56,56,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200303.log',1048585,1,58,58,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200303.log',1048585,1,59,59,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200303.log',1048585,1,78,78,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20200303.log',1048585,1,85,85,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200303.log',1048585,1,89,89,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200303.log',1048585,1,91,91,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200303.log',1048585,1,134,134,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200303.log',1048585,1,137,137,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200303.log',1048585,1,148,148,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200303.log',1048585,1,149,149,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200303.log',1048585,1,150,150,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200303.log',1048585,1,151,151,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200303.log',1048585,1,169,169,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200303.log',1048585,1,173,173,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200303.log',1048585,1,174,174,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200303.log',1048585,1,175,175,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200303.log',1048585,1,176,176,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200303.log',1048585,1,177,177,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200303.log',1048585,1,178,178,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200304.log',256,1,NULL,1,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200304.log',259,1,NULL,1,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200304.log',259,1,NULL,3,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200304.log',259,1,NULL,4,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200304.log',259,1,NULL,10,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200304.log',259,1,NULL,11,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200304.log',515,1,4,19,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200304.log',515,1,7,32,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20200304.log',515,1,22,57,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20200304.log',515,1,28,68,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200304.log',515,1,33,81,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200304.log',515,1,49,116,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200304.log',515,1,51,118,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200304.log',515,1,56,135,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20200304.log',515,1,58,137,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20200304.log',515,1,79,282,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200304.log',515,1,81,283,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200304.log',515,1,77,287,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200304.log',515,1,78,288,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200304.log',515,1,100,306,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200304.log',515,1,113,307,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200304.log',515,1,134,324,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,64),('usage_events_20200304.log',515,1,137,343,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200304.log',515,1,139,351,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',7,1,259,9,68),('usage_events_20200304.log',515,1,147,387,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200304.log',515,1,148,394,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200304.log',515,1,173,479,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,80),('usage_events_20200304.log',515,1,175,493,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200304.log',515,1,176,500,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200304.log',515,1,178,514,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200304.log',1048585,1,7,7,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200304.log',1048585,1,22,22,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200304.log',1048585,1,28,28,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200304.log',1048585,1,49,49,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200304.log',1048585,1,51,51,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200304.log',1048585,1,56,56,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200304.log',1048585,1,58,58,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200304.log',1048585,1,59,59,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200304.log',1048585,1,77,77,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200304.log',1048585,1,78,78,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200304.log',1048585,1,79,79,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200304.log',1048585,1,82,82,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200304.log',1048585,1,86,86,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200304.log',1048585,1,100,100,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200304.log',1048585,1,115,115,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200304.log',1048585,1,137,137,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200304.log',1048585,1,139,139,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,9,NULL),('usage_events_20200304.log',1048585,1,147,147,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200304.log',1048585,1,149,149,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200304.log',1048585,1,173,173,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200304.log',1048585,1,176,176,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200305.log',256,1,NULL,1,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200305.log',259,1,NULL,1,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200305.log',259,1,NULL,2,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200305.log',259,1,NULL,5,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200305.log',259,1,NULL,7,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200305.log',259,1,NULL,8,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200305.log',259,1,NULL,11,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200305.log',515,1,20,53,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200305.log',515,1,46,114,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200305.log',515,1,51,118,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200305.log',515,1,56,135,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200305.log',515,1,85,281,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200305.log',515,1,82,284,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200305.log',515,1,83,285,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20200305.log',515,1,77,287,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200305.log',515,1,78,288,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',10,1,259,6,49),('usage_events_20200305.log',515,1,86,290,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200305.log',515,1,89,293,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200305.log',515,1,99,305,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20200305.log',515,1,100,306,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200305.log',515,1,133,318,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200305.log',515,1,137,343,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200305.log',515,1,139,351,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200305.log',515,1,148,394,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20200305.log',515,1,149,401,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200305.log',515,1,152,423,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200305.log',515,1,169,461,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20200305.log',515,1,171,470,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20200305.log',515,1,174,486,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200305.log',515,1,175,493,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200305.log',515,1,176,500,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200305.log',515,1,177,507,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200305.log',515,1,178,514,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200305.log',1048585,1,4,4,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200305.log',1048585,1,6,6,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200305.log',1048585,1,20,20,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200305.log',1048585,1,46,46,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200305.log',1048585,1,58,58,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200305.log',1048585,1,78,78,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,6,NULL),('usage_events_20200305.log',1048585,1,81,81,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200305.log',1048585,1,83,83,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200305.log',1048585,1,84,84,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200305.log',1048585,1,89,89,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200305.log',1048585,1,100,100,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200305.log',1048585,1,133,133,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200305.log',1048585,1,149,149,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200305.log',1048585,1,151,151,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200305.log',1048585,1,169,169,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200305.log',1048585,1,171,171,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200305.log',1048585,1,173,173,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200305.log',1048585,1,174,174,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200305.log',1048585,1,175,175,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200305.log',1048585,1,176,176,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200305.log',1048585,1,177,177,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200305.log',1048585,1,178,178,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200306.log',256,1,NULL,1,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200306.log',259,1,NULL,3,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200306.log',259,1,NULL,8,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200306.log',515,1,20,53,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200306.log',515,1,34,82,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200306.log',515,1,56,135,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200306.log',515,1,57,136,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20200306.log',515,1,58,137,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200306.log',515,1,83,285,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200306.log',515,1,78,288,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200306.log',515,1,99,305,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20200306.log',515,1,100,306,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20200306.log',515,1,133,318,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20200306.log',515,1,137,343,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200306.log',515,1,139,351,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200306.log',515,1,148,394,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200306.log',515,1,149,401,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200306.log',515,1,173,479,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200306.log',515,1,174,486,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200306.log',515,1,177,507,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200306.log',1048585,1,8,8,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200306.log',1048585,1,20,20,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200306.log',1048585,1,31,31,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200306.log',1048585,1,47,47,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200306.log',1048585,1,57,57,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200306.log',1048585,1,58,58,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200306.log',1048585,1,76,76,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200306.log',1048585,1,78,78,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200306.log',1048585,1,91,91,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200306.log',1048585,1,99,99,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200306.log',1048585,1,113,113,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200306.log',1048585,1,133,133,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200306.log',1048585,1,137,137,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200306.log',1048585,1,141,141,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200306.log',1048585,1,146,146,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200306.log',1048585,1,148,148,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200306.log',1048585,1,149,149,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200306.log',1048585,1,174,174,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200306.log',1048585,1,177,177,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200306.log',1048585,1,178,178,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200307.log',256,1,NULL,1,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200307.log',259,1,NULL,11,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200307.log',515,1,33,81,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200307.log',515,1,40,94,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200307.log',515,1,47,115,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20200307.log',515,1,49,116,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200307.log',515,1,53,120,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200307.log',515,1,54,133,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200307.log',515,1,58,137,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200307.log',515,1,79,282,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200307.log',515,1,81,283,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200307.log',515,1,78,288,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200307.log',515,1,84,289,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200307.log',515,1,89,293,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200307.log',515,1,137,343,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200307.log',515,1,148,394,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200307.log',515,1,149,401,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200307.log',515,1,173,479,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200307.log',515,1,175,493,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20200307.log',515,1,176,500,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20200307.log',1048585,1,7,7,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200307.log',1048585,1,47,47,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200307.log',1048585,1,54,54,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200307.log',1048585,1,58,58,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200307.log',1048585,1,59,59,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200307.log',1048585,1,78,78,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200307.log',1048585,1,79,79,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200307.log',1048585,1,89,89,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200307.log',1048585,1,142,142,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200307.log',1048585,1,149,149,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200307.log',1048585,1,174,174,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200307.log',1048585,1,175,175,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200307.log',1048585,1,176,176,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200307.log',1048585,1,178,178,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200308.log',256,1,NULL,1,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,1,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,2,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,3,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,4,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,5,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,6,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,7,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,8,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,9,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,10,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200308.log',259,1,NULL,11,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200308.log',515,1,1,3,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200308.log',515,1,6,31,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20200308.log',515,1,8,33,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200308.log',515,1,20,53,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200308.log',515,1,32,80,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200308.log',515,1,47,115,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200308.log',515,1,49,116,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200308.log',515,1,51,118,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200308.log',515,1,58,137,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200308.log',515,1,79,282,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,43),('usage_events_20200308.log',515,1,77,287,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200308.log',515,1,78,288,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200308.log',515,1,84,289,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200308.log',515,1,99,305,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20200308.log',515,1,115,309,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200308.log',515,1,137,343,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200308.log',515,1,148,394,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200308.log',515,1,150,407,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200308.log',515,1,169,461,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200308.log',515,1,173,479,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200308.log',515,1,174,486,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200308.log',515,1,176,500,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200308.log',515,1,177,507,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200308.log',1048585,1,1,1,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200308.log',1048585,1,4,4,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200308.log',1048585,1,5,5,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200308.log',1048585,1,6,6,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200308.log',1048585,1,7,7,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200308.log',1048585,1,8,8,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200308.log',1048585,1,14,14,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200308.log',1048585,1,20,20,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200308.log',1048585,1,21,21,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200308.log',1048585,1,22,22,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200308.log',1048585,1,40,40,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200308.log',1048585,1,57,57,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200308.log',1048585,1,74,74,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200308.log',1048585,1,76,76,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200308.log',1048585,1,78,78,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200308.log',1048585,1,79,79,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200308.log',1048585,1,90,90,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200308.log',1048585,1,136,136,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200308.log',1048585,1,137,137,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200308.log',1048585,1,148,148,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200308.log',1048585,1,149,149,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200308.log',1048585,1,150,150,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200308.log',1048585,1,152,152,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200308.log',1048585,1,169,169,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200308.log',1048585,1,171,171,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200308.log',1048585,1,173,173,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200308.log',1048585,1,174,174,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200308.log',1048585,1,175,175,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200308.log',1048585,1,176,176,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200308.log',1048585,1,177,177,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200308.log',1048585,1,178,178,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200309.log',256,1,NULL,1,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200309.log',259,1,NULL,4,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200309.log',259,1,NULL,5,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200309.log',259,1,NULL,11,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200309.log',515,1,8,33,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20200309.log',515,1,21,54,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20200309.log',515,1,40,94,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200309.log',515,1,50,117,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200309.log',515,1,57,136,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20200309.log',515,1,58,137,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200309.log',515,1,81,283,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200309.log',515,1,78,288,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20200309.log',515,1,87,291,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200309.log',515,1,100,306,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200309.log',515,1,113,307,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200309.log',515,1,137,343,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,67),('usage_events_20200309.log',515,1,141,361,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200309.log',515,1,148,394,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200309.log',515,1,149,401,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200309.log',515,1,173,479,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200309.log',515,1,174,486,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200309.log',515,1,175,493,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200309.log',515,1,176,500,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20200309.log',515,1,178,514,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200309.log',1048585,1,8,8,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20200309.log',1048585,1,21,21,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200309.log',1048585,1,47,47,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200309.log',1048585,1,49,49,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200309.log',1048585,1,58,58,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20200309.log',1048585,1,78,78,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200309.log',1048585,1,82,82,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200309.log',1048585,1,83,83,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200309.log',1048585,1,100,100,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200309.log',1048585,1,137,137,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20200309.log',1048585,1,139,139,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200309.log',1048585,1,147,147,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200309.log',1048585,1,148,148,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200309.log',1048585,1,149,149,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200309.log',1048585,1,151,151,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200309.log',1048585,1,173,173,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200309.log',1048585,1,175,175,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200309.log',1048585,1,176,176,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200309.log',1048585,1,178,178,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200310.log',256,1,NULL,1,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200310.log',259,1,NULL,11,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200310.log',515,1,8,33,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200310.log',515,1,20,53,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200310.log',515,1,21,54,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20200310.log',515,1,49,116,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200310.log',515,1,50,117,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200310.log',515,1,51,118,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200310.log',515,1,54,133,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200310.log',515,1,58,137,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200310.log',515,1,78,288,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20200310.log',515,1,141,361,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200310.log',515,1,148,394,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200310.log',515,1,149,401,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200310.log',515,1,150,407,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200310.log',515,1,152,423,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,77),('usage_events_20200310.log',515,1,169,461,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200310.log',515,1,173,479,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200310.log',515,1,174,486,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200310.log',515,1,175,493,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200310.log',515,1,176,500,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200310.log',515,1,177,507,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200310.log',515,1,178,514,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200310.log',1048585,1,49,49,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200310.log',1048585,1,50,50,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200310.log',1048585,1,51,51,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200310.log',1048585,1,54,54,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200310.log',1048585,1,58,58,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200310.log',1048585,1,59,59,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200310.log',1048585,1,78,78,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20200310.log',1048585,1,85,85,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200310.log',1048585,1,89,89,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200310.log',1048585,1,125,125,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200310.log',1048585,1,133,133,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200310.log',1048585,1,141,141,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200310.log',1048585,1,148,148,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200310.log',1048585,1,150,150,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200310.log',1048585,1,152,152,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20200310.log',1048585,1,169,169,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200310.log',1048585,1,173,173,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200310.log',1048585,1,174,174,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200310.log',1048585,1,175,175,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200310.log',1048585,1,176,176,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200311.log',256,1,NULL,1,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200311.log',259,1,NULL,10,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200311.log',515,1,20,53,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200311.log',515,1,56,135,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200311.log',515,1,58,137,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200311.log',515,1,83,285,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200311.log',515,1,78,288,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20200311.log',515,1,89,293,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200311.log',515,1,114,308,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200311.log',515,1,135,330,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200311.log',515,1,139,351,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,68),('usage_events_20200311.log',515,1,142,367,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200311.log',515,1,148,394,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200311.log',515,1,149,401,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200311.log',515,1,150,407,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200311.log',515,1,152,423,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20200311.log',515,1,174,486,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20200311.log',515,1,175,493,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200311.log',515,1,176,500,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200311.log',515,1,178,514,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200311.log',1048585,1,22,22,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200311.log',1048585,1,33,33,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200311.log',1048585,1,56,56,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200311.log',1048585,1,78,78,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200311.log',1048585,1,134,134,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200311.log',1048585,1,137,137,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200311.log',1048585,1,139,139,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200311.log',1048585,1,148,148,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200311.log',1048585,1,152,152,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200311.log',1048585,1,169,169,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200311.log',1048585,1,174,174,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200311.log',1048585,1,175,175,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200311.log',1048585,1,178,178,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200312.log',256,1,NULL,1,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200312.log',259,1,NULL,1,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200312.log',259,1,NULL,2,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200312.log',259,1,NULL,5,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200312.log',259,1,NULL,7,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200312.log',259,1,NULL,11,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200312.log',515,1,8,33,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,7),('usage_events_20200312.log',515,1,28,68,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200312.log',515,1,47,115,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200312.log',515,1,54,133,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,29),('usage_events_20200312.log',515,1,55,134,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,30),('usage_events_20200312.log',515,1,56,135,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20200312.log',515,1,57,136,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20200312.log',515,1,58,137,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200312.log',515,1,81,283,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200312.log',515,1,78,288,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200312.log',515,1,99,305,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200312.log',515,1,113,307,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200312.log',515,1,137,343,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200312.log',515,1,141,361,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200312.log',515,1,148,394,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200312.log',515,1,151,414,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20200312.log',515,1,152,423,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,77),('usage_events_20200312.log',515,1,169,461,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200312.log',515,1,171,470,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200312.log',515,1,173,479,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200312.log',515,1,175,493,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200312.log',515,1,176,500,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200312.log',515,1,177,507,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200312.log',515,1,178,514,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200312.log',1048585,1,4,4,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200312.log',1048585,1,5,5,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200312.log',1048585,1,6,6,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200312.log',1048585,1,47,47,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200312.log',1048585,1,53,53,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200312.log',1048585,1,54,54,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200312.log',1048585,1,55,55,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200312.log',1048585,1,56,56,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200312.log',1048585,1,58,58,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200312.log',1048585,1,59,59,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200312.log',1048585,1,78,78,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200312.log',1048585,1,81,81,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200312.log',1048585,1,83,83,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200312.log',1048585,1,87,87,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200312.log',1048585,1,91,91,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200312.log',1048585,1,100,100,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200312.log',1048585,1,114,114,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200312.log',1048585,1,115,115,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200312.log',1048585,1,137,137,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200312.log',1048585,1,141,141,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200312.log',1048585,1,146,146,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200312.log',1048585,1,148,148,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200312.log',1048585,1,152,152,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200312.log',1048585,1,171,171,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200312.log',1048585,1,173,173,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200312.log',1048585,1,174,174,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200312.log',1048585,1,175,175,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200312.log',1048585,1,176,176,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200312.log',1048585,1,178,178,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200313.log',256,1,NULL,1,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200313.log',259,1,NULL,1,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200313.log',259,1,NULL,6,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200313.log',259,1,NULL,11,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200313.log',515,1,34,82,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200313.log',515,1,49,116,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200313.log',515,1,55,134,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20200313.log',515,1,58,137,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200313.log',515,1,85,281,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200313.log',515,1,81,283,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200313.log',515,1,78,288,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200313.log',515,1,87,291,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200313.log',515,1,136,336,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200313.log',515,1,137,343,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200313.log',515,1,147,387,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200313.log',515,1,148,394,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20200313.log',515,1,150,407,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200313.log',515,1,169,461,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200313.log',515,1,171,470,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200313.log',515,1,173,479,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200313.log',515,1,175,493,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200313.log',515,1,176,500,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200313.log',515,1,178,514,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200313.log',1048585,1,4,4,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200313.log',1048585,1,7,7,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200313.log',1048585,1,35,35,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200313.log',1048585,1,54,54,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200313.log',1048585,1,57,57,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200313.log',1048585,1,58,58,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200313.log',1048585,1,59,59,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200313.log',1048585,1,78,78,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200313.log',1048585,1,83,83,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200313.log',1048585,1,84,84,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200313.log',1048585,1,135,135,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200313.log',1048585,1,147,147,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200313.log',1048585,1,148,148,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200313.log',1048585,1,150,150,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200313.log',1048585,1,152,152,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200313.log',1048585,1,169,169,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200313.log',1048585,1,175,175,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200313.log',1048585,1,178,178,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200314.log',256,1,NULL,1,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,1,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,2,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,3,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,4,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,5,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,6,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,7,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,8,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,9,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,10,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200314.log',259,1,NULL,11,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200314.log',515,1,1,3,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200314.log',515,1,49,116,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200314.log',515,1,54,133,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200314.log',515,1,58,137,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200314.log',515,1,59,138,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200314.log',515,1,78,288,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200314.log',515,1,86,290,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200314.log',515,1,89,293,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200314.log',515,1,135,330,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200314.log',515,1,137,343,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200314.log',515,1,146,379,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200314.log',515,1,148,394,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200314.log',515,1,152,423,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,77),('usage_events_20200314.log',515,1,169,461,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200314.log',515,1,173,479,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200314.log',515,1,174,486,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200314.log',515,1,175,493,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200314.log',515,1,178,514,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200314.log',1048585,1,1,1,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200314.log',1048585,1,4,4,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200314.log',1048585,1,5,5,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200314.log',1048585,1,6,6,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200314.log',1048585,1,7,7,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200314.log',1048585,1,8,8,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200314.log',1048585,1,14,14,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200314.log',1048585,1,20,20,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200314.log',1048585,1,21,21,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200314.log',1048585,1,22,22,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200314.log',1048585,1,32,32,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200314.log',1048585,1,40,40,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200314.log',1048585,1,54,54,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200314.log',1048585,1,58,58,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200314.log',1048585,1,76,76,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200314.log',1048585,1,78,78,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200314.log',1048585,1,89,89,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200314.log',1048585,1,152,152,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200314.log',1048585,1,169,169,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200314.log',1048585,1,171,171,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200314.log',1048585,1,173,173,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200314.log',1048585,1,174,174,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200314.log',1048585,1,175,175,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200314.log',1048585,1,176,176,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200314.log',1048585,1,177,177,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200314.log',1048585,1,178,178,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200315.log',256,1,NULL,1,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200315.log',259,1,NULL,6,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200315.log',259,1,NULL,11,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200315.log',515,1,20,53,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200315.log',515,1,54,133,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200315.log',515,1,58,137,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200315.log',515,1,78,288,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20200315.log',515,1,99,305,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200315.log',515,1,115,309,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200315.log',515,1,141,361,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200315.log',515,1,142,367,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200315.log',515,1,148,394,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200315.log',515,1,150,407,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200315.log',515,1,169,461,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200315.log',515,1,173,479,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200315.log',515,1,175,493,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200315.log',515,1,177,507,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200315.log',515,1,178,514,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200315.log',1048585,1,20,20,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200315.log',1048585,1,47,47,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200315.log',1048585,1,58,58,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200315.log',1048585,1,78,78,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,6,NULL),('usage_events_20200315.log',1048585,1,79,79,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200315.log',1048585,1,142,142,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200315.log',1048585,1,169,169,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200315.log',1048585,1,176,176,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200315.log',1048585,1,178,178,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200316.log',256,1,NULL,1,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200316.log',259,1,NULL,2,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200316.log',259,1,NULL,4,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200316.log',259,1,NULL,5,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200316.log',259,1,NULL,11,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200316.log',515,1,5,30,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200316.log',515,1,20,53,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20200316.log',515,1,46,114,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200316.log',515,1,51,118,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200316.log',515,1,58,137,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200316.log',515,1,83,285,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200316.log',515,1,78,288,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200316.log',515,1,134,324,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200316.log',515,1,142,367,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200316.log',515,1,148,394,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200316.log',515,1,150,407,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',9,1,259,10,75),('usage_events_20200316.log',515,1,152,423,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200316.log',515,1,169,461,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200316.log',515,1,171,470,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200316.log',515,1,173,479,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200316.log',515,1,174,486,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200316.log',515,1,175,493,'20200316','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200316.log',1048585,1,20,20,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200316.log',1048585,1,51,51,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200316.log',1048585,1,56,56,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200316.log',1048585,1,58,58,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200316.log',1048585,1,74,74,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200316.log',1048585,1,78,78,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200316.log',1048585,1,90,90,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200316.log',1048585,1,134,134,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200316.log',1048585,1,142,142,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200316.log',1048585,1,148,148,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200316.log',1048585,1,150,150,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,10,NULL),('usage_events_20200316.log',1048585,1,169,169,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200316.log',1048585,1,174,174,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200316.log',1048585,1,175,175,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200316.log',1048585,1,177,177,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200317.log',256,1,NULL,1,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,1,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,2,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,3,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,4,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,5,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,6,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,7,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,8,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,9,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,10,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200317.log',259,1,NULL,11,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200317.log',515,1,1,3,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,1),('usage_events_20200317.log',515,1,21,54,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20200317.log',515,1,32,80,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200317.log',515,1,35,83,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200317.log',515,1,46,114,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,22),('usage_events_20200317.log',515,1,49,116,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200317.log',515,1,56,135,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200317.log',515,1,85,281,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200317.log',515,1,76,286,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200317.log',515,1,78,288,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200317.log',515,1,84,289,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200317.log',515,1,87,291,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200317.log',515,1,89,293,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200317.log',515,1,136,336,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200317.log',515,1,137,343,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200317.log',515,1,139,351,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200317.log',515,1,141,361,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200317.log',515,1,148,394,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200317.log',515,1,150,407,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200317.log',515,1,151,414,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200317.log',515,1,152,423,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,77),('usage_events_20200317.log',515,1,169,461,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',18,1,259,11,78),('usage_events_20200317.log',515,1,171,470,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200317.log',515,1,173,479,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200317.log',515,1,174,486,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,81),('usage_events_20200317.log',515,1,175,493,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200317.log',515,1,176,500,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,83),('usage_events_20200317.log',515,1,177,507,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200317.log',1048585,1,1,1,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200317.log',1048585,1,4,4,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200317.log',1048585,1,5,5,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200317.log',1048585,1,6,6,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200317.log',1048585,1,7,7,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200317.log',1048585,1,8,8,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200317.log',1048585,1,14,14,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200317.log',1048585,1,20,20,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200317.log',1048585,1,21,21,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200317.log',1048585,1,22,22,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200317.log',1048585,1,33,33,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200317.log',1048585,1,40,40,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200317.log',1048585,1,46,46,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200317.log',1048585,1,78,78,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200317.log',1048585,1,85,85,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200317.log',1048585,1,87,87,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200317.log',1048585,1,91,91,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200317.log',1048585,1,134,134,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200317.log',1048585,1,136,136,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200317.log',1048585,1,137,137,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200317.log',1048585,1,139,139,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200317.log',1048585,1,141,141,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200317.log',1048585,1,147,147,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200317.log',1048585,1,150,150,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200317.log',1048585,1,151,151,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200317.log',1048585,1,152,152,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200317.log',1048585,1,169,169,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,11,NULL),('usage_events_20200317.log',1048585,1,171,171,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200317.log',1048585,1,173,173,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200317.log',1048585,1,174,174,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200317.log',1048585,1,175,175,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200317.log',1048585,1,176,176,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200317.log',1048585,1,177,177,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200317.log',1048585,1,178,178,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200318.log',256,1,NULL,1,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200318.log',259,1,NULL,6,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200318.log',259,1,NULL,9,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200318.log',515,1,28,68,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200318.log',515,1,51,118,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20200318.log',515,1,53,120,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200318.log',515,1,54,133,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,29),('usage_events_20200318.log',515,1,56,135,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200318.log',515,1,58,137,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200318.log',515,1,59,138,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20200318.log',515,1,85,281,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200318.log',515,1,81,283,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200318.log',515,1,76,286,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200318.log',515,1,77,287,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200318.log',515,1,78,288,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200318.log',515,1,86,290,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200318.log',515,1,89,293,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20200318.log',515,1,100,306,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,58),('usage_events_20200318.log',515,1,134,324,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200318.log',515,1,137,343,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200318.log',515,1,150,407,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200318.log',515,1,169,461,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200318.log',515,1,174,486,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200318.log',515,1,175,493,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200318.log',515,1,176,500,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200318.log',515,1,177,507,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200318.log',515,1,178,514,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200318.log',1048585,1,19,19,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200318.log',1048585,1,22,22,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200318.log',1048585,1,28,28,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200318.log',1048585,1,51,51,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200318.log',1048585,1,53,53,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200318.log',1048585,1,58,58,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,5,NULL),('usage_events_20200318.log',1048585,1,59,59,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200318.log',1048585,1,77,77,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200318.log',1048585,1,78,78,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200318.log',1048585,1,81,81,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200318.log',1048585,1,89,89,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200318.log',1048585,1,90,90,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200318.log',1048585,1,100,100,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200318.log',1048585,1,137,137,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200318.log',1048585,1,139,139,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200318.log',1048585,1,142,142,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200318.log',1048585,1,150,150,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200318.log',1048585,1,152,152,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200318.log',1048585,1,169,169,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200318.log',1048585,1,175,175,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200318.log',1048585,1,176,176,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200318.log',1048585,1,178,178,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200319.log',256,1,NULL,1,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200319.log',259,1,NULL,6,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200319.log',515,1,7,32,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200319.log',515,1,21,54,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20200319.log',515,1,22,57,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20200319.log',515,1,81,283,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200319.log',515,1,78,288,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200319.log',515,1,89,293,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200319.log',515,1,115,309,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20200319.log',515,1,133,318,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200319.log',515,1,137,343,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200319.log',515,1,141,361,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200319.log',515,1,142,367,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200319.log',515,1,148,394,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200319.log',515,1,149,401,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200319.log',515,1,150,407,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',9,1,259,10,75),('usage_events_20200319.log',515,1,151,414,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200319.log',515,1,152,423,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200319.log',515,1,169,461,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200319.log',515,1,171,470,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200319.log',515,1,173,479,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200319.log',515,1,176,500,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200319.log',1048585,1,28,28,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200319.log',1048585,1,54,54,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200319.log',1048585,1,58,58,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200319.log',1048585,1,81,81,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200319.log',1048585,1,83,83,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200319.log',1048585,1,87,87,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200319.log',1048585,1,89,89,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200319.log',1048585,1,113,113,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200319.log',1048585,1,142,142,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200319.log',1048585,1,147,147,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200319.log',1048585,1,149,149,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200319.log',1048585,1,150,150,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,10,NULL),('usage_events_20200319.log',1048585,1,152,152,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200319.log',1048585,1,169,169,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200319.log',1048585,1,171,171,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200319.log',1048585,1,173,173,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200320.log',256,1,NULL,1,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200320.log',259,1,NULL,2,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200320.log',259,1,NULL,8,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200320.log',259,1,NULL,9,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200320.log',259,1,NULL,11,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200320.log',515,1,51,118,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200320.log',515,1,54,133,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200320.log',515,1,58,137,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200320.log',515,1,85,281,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200320.log',515,1,78,288,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200320.log',515,1,99,305,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200320.log',515,1,113,307,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20200320.log',515,1,115,309,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200320.log',515,1,125,310,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200320.log',515,1,142,367,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200320.log',515,1,147,387,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200320.log',515,1,148,394,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200320.log',515,1,150,407,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200320.log',515,1,169,461,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200320.log',515,1,173,479,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200320.log',515,1,175,493,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200320.log',515,1,176,500,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20200320.log',515,1,178,514,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200320.log',1048585,1,7,7,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200320.log',1048585,1,51,51,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200320.log',1048585,1,58,58,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200320.log',1048585,1,78,78,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200320.log',1048585,1,81,81,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200320.log',1048585,1,82,82,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200320.log',1048585,1,88,88,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200320.log',1048585,1,99,99,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200320.log',1048585,1,113,113,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200320.log',1048585,1,115,115,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200320.log',1048585,1,125,125,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200320.log',1048585,1,147,147,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200320.log',1048585,1,150,150,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200320.log',1048585,1,169,169,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200320.log',1048585,1,173,173,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200320.log',1048585,1,174,174,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200320.log',1048585,1,175,175,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200320.log',1048585,1,176,176,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200320.log',1048585,1,178,178,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200321.log',515,1,33,81,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200321.log',515,1,49,116,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200321.log',515,1,82,284,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200321.log',515,1,76,286,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200321.log',515,1,78,288,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20200321.log',515,1,87,291,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200321.log',515,1,100,306,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200321.log',515,1,113,307,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200321.log',515,1,115,309,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20200321.log',515,1,135,330,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200321.log',515,1,139,351,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200321.log',515,1,152,423,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20200321.log',515,1,169,461,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200321.log',515,1,175,493,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200321.log',515,1,177,507,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200321.log',515,1,178,514,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200321.log',1048585,1,47,47,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200321.log',1048585,1,49,49,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200321.log',1048585,1,78,78,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20200321.log',1048585,1,82,82,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200321.log',1048585,1,86,86,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200321.log',1048585,1,90,90,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200321.log',1048585,1,100,100,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200321.log',1048585,1,115,115,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200321.log',1048585,1,151,151,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200321.log',1048585,1,152,152,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200321.log',1048585,1,175,175,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200321.log',1048585,1,177,177,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200321.log',1048585,1,178,178,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200322.log',256,1,NULL,1,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200322.log',259,1,NULL,5,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200322.log',259,1,NULL,6,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200322.log',515,1,32,80,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200322.log',515,1,49,116,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200322.log',515,1,50,117,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200322.log',515,1,53,120,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200322.log',515,1,54,133,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200322.log',515,1,58,137,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20200322.log',515,1,79,282,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200322.log',515,1,81,283,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200322.log',515,1,78,288,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200322.log',515,1,115,309,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200322.log',515,1,135,330,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200322.log',515,1,141,361,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20200322.log',515,1,142,367,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200322.log',515,1,151,414,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200322.log',515,1,169,461,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200322.log',515,1,174,486,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200322.log',515,1,175,493,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200322.log',1048585,1,50,50,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200322.log',1048585,1,53,53,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200322.log',1048585,1,56,56,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200322.log',1048585,1,57,57,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200322.log',1048585,1,58,58,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200322.log',1048585,1,78,78,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200322.log',1048585,1,79,79,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200322.log',1048585,1,81,81,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200322.log',1048585,1,83,83,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200322.log',1048585,1,89,89,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200322.log',1048585,1,139,139,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200322.log',1048585,1,141,141,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200322.log',1048585,1,142,142,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20200322.log',1048585,1,146,146,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200322.log',1048585,1,148,148,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200322.log',1048585,1,169,169,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200322.log',1048585,1,174,174,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200322.log',1048585,1,175,175,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200322.log',1048585,1,178,178,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200323.log',259,1,NULL,6,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200323.log',259,1,NULL,10,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200323.log',515,1,4,19,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200323.log',515,1,35,83,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200323.log',515,1,49,116,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200323.log',515,1,54,133,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20200323.log',515,1,58,137,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200323.log',515,1,79,282,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200323.log',515,1,81,283,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200323.log',515,1,77,287,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200323.log',515,1,78,288,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200323.log',515,1,86,290,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200323.log',515,1,114,308,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200323.log',515,1,135,330,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200323.log',515,1,139,351,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200323.log',515,1,148,394,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200323.log',515,1,149,401,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200323.log',515,1,169,461,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20200323.log',515,1,173,479,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200323.log',515,1,175,493,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200323.log',515,1,176,500,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200323.log',515,1,178,514,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200323.log',1048585,1,1,1,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200323.log',1048585,1,4,4,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200323.log',1048585,1,28,28,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200323.log',1048585,1,33,33,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200323.log',1048585,1,49,49,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200323.log',1048585,1,58,58,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20200323.log',1048585,1,79,79,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200323.log',1048585,1,81,81,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200323.log',1048585,1,82,82,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200323.log',1048585,1,86,86,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200323.log',1048585,1,89,89,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200323.log',1048585,1,100,100,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200323.log',1048585,1,114,114,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200323.log',1048585,1,134,134,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200323.log',1048585,1,136,136,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200323.log',1048585,1,139,139,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200323.log',1048585,1,148,148,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200323.log',1048585,1,150,150,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200323.log',1048585,1,169,169,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200323.log',1048585,1,173,173,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200323.log',1048585,1,175,175,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200323.log',1048585,1,176,176,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200323.log',1048585,1,178,178,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200324.log',256,1,NULL,1,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200324.log',259,1,NULL,1,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200324.log',259,1,NULL,2,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200324.log',259,1,NULL,6,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200324.log',259,1,NULL,7,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200324.log',259,1,NULL,11,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200324.log',515,1,4,19,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200324.log',515,1,7,32,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20200324.log',515,1,8,33,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200324.log',515,1,19,52,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200324.log',515,1,46,114,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200324.log',515,1,51,118,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200324.log',515,1,58,137,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200324.log',515,1,79,282,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200324.log',515,1,78,288,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20200324.log',515,1,86,290,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,51),('usage_events_20200324.log',515,1,87,291,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200324.log',515,1,89,293,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200324.log',515,1,90,294,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20200324.log',515,1,91,295,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20200324.log',515,1,115,309,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,61),('usage_events_20200324.log',515,1,125,310,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200324.log',515,1,139,351,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200324.log',515,1,148,394,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200324.log',515,1,149,401,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200324.log',515,1,169,461,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200324.log',515,1,173,479,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200324.log',515,1,175,493,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200324.log',515,1,176,500,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200324.log',515,1,177,507,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,84),('usage_events_20200324.log',1048585,1,4,4,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200324.log',1048585,1,6,6,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200324.log',1048585,1,7,7,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200324.log',1048585,1,8,8,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200324.log',1048585,1,78,78,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200324.log',1048585,1,85,85,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200324.log',1048585,1,86,86,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200324.log',1048585,1,87,87,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200324.log',1048585,1,91,91,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200324.log',1048585,1,133,133,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200324.log',1048585,1,135,135,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200324.log',1048585,1,139,139,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200324.log',1048585,1,148,148,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200324.log',1048585,1,149,149,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200324.log',1048585,1,169,169,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200324.log',1048585,1,173,173,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200324.log',1048585,1,174,174,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200324.log',1048585,1,175,175,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200324.log',1048585,1,176,176,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200324.log',1048585,1,177,177,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200325.log',259,1,NULL,1,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200325.log',259,1,NULL,3,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200325.log',515,1,20,53,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200325.log',515,1,46,114,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200325.log',515,1,47,115,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200325.log',515,1,50,117,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200325.log',515,1,52,119,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20200325.log',515,1,58,137,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200325.log',515,1,79,282,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200325.log',515,1,83,285,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200325.log',515,1,76,286,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200325.log',515,1,78,288,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200325.log',515,1,87,291,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200325.log',515,1,89,293,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200325.log',515,1,100,306,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200325.log',515,1,113,307,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200325.log',515,1,137,343,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200325.log',515,1,147,387,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200325.log',515,1,148,394,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200325.log',515,1,173,479,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200325.log',515,1,175,493,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200325.log',515,1,177,507,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200325.log',515,1,178,514,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200325.log',1048585,1,4,4,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200325.log',1048585,1,7,7,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200325.log',1048585,1,19,19,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200325.log',1048585,1,20,20,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200325.log',1048585,1,46,46,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200325.log',1048585,1,47,47,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200325.log',1048585,1,52,52,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200325.log',1048585,1,56,56,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200325.log',1048585,1,58,58,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200325.log',1048585,1,76,76,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200325.log',1048585,1,78,78,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200325.log',1048585,1,82,82,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200325.log',1048585,1,83,83,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200325.log',1048585,1,137,137,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200325.log',1048585,1,147,147,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200325.log',1048585,1,148,148,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200325.log',1048585,1,173,173,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200325.log',1048585,1,178,178,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200326.log',256,1,NULL,1,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,1,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,2,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,3,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,4,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,5,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,6,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,7,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,8,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,9,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,10,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200326.log',259,1,NULL,11,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200326.log',515,1,1,3,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200326.log',515,1,49,116,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200326.log',515,1,53,120,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200326.log',515,1,79,282,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200326.log',515,1,78,288,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200326.log',515,1,87,291,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200326.log',515,1,100,306,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200326.log',515,1,137,343,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200326.log',515,1,139,351,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200326.log',515,1,141,361,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200326.log',515,1,148,394,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200326.log',515,1,152,423,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200326.log',515,1,169,461,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200326.log',515,1,173,479,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200326.log',515,1,175,493,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200326.log',515,1,177,507,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200326.log',515,1,178,514,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200326.log',1048585,1,1,1,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200326.log',1048585,1,4,4,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200326.log',1048585,1,5,5,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200326.log',1048585,1,6,6,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200326.log',1048585,1,7,7,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200326.log',1048585,1,8,8,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200326.log',1048585,1,14,14,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200326.log',1048585,1,20,20,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200326.log',1048585,1,21,21,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200326.log',1048585,1,22,22,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200326.log',1048585,1,40,40,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200326.log',1048585,1,53,53,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20200326.log',1048585,1,59,59,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200326.log',1048585,1,81,81,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200326.log',1048585,1,84,84,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200326.log',1048585,1,87,87,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200326.log',1048585,1,91,91,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200326.log',1048585,1,115,115,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200326.log',1048585,1,146,146,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200326.log',1048585,1,147,147,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200326.log',1048585,1,148,148,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200326.log',1048585,1,152,152,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200326.log',1048585,1,169,169,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200326.log',1048585,1,171,171,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200326.log',1048585,1,173,173,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200326.log',1048585,1,174,174,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200326.log',1048585,1,175,175,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200326.log',1048585,1,176,176,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200326.log',1048585,1,177,177,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200326.log',1048585,1,178,178,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200328.log',256,1,NULL,1,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200328.log',259,1,NULL,2,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200328.log',259,1,NULL,6,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200328.log',259,1,NULL,9,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200328.log',515,1,20,53,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20200328.log',515,1,49,116,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200328.log',515,1,53,120,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200328.log',515,1,78,288,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200328.log',515,1,86,290,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200328.log',515,1,87,291,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200328.log',515,1,88,292,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20200328.log',515,1,114,308,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200328.log',515,1,115,309,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200328.log',515,1,125,310,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20200328.log',515,1,135,330,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,65),('usage_events_20200328.log',515,1,137,343,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20200328.log',515,1,139,351,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200328.log',515,1,149,401,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200328.log',515,1,150,407,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200328.log',515,1,152,423,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200328.log',515,1,169,461,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200328.log',515,1,173,479,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,80),('usage_events_20200328.log',515,1,175,493,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200328.log',515,1,177,507,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200328.log',1048585,1,19,19,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200328.log',1048585,1,49,49,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200328.log',1048585,1,54,54,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200328.log',1048585,1,58,58,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200328.log',1048585,1,78,78,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200328.log',1048585,1,82,82,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200328.log',1048585,1,85,85,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200328.log',1048585,1,87,87,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200328.log',1048585,1,88,88,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200328.log',1048585,1,135,135,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200328.log',1048585,1,137,137,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200328.log',1048585,1,142,142,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200328.log',1048585,1,150,150,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200328.log',1048585,1,152,152,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200328.log',1048585,1,169,169,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200328.log',1048585,1,173,173,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200327.log',256,1,NULL,1,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200327.log',259,1,NULL,2,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200327.log',259,1,NULL,4,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200327.log',259,1,NULL,8,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200327.log',259,1,NULL,11,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200327.log',515,1,49,116,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200327.log',515,1,51,118,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,26),('usage_events_20200327.log',515,1,54,133,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200327.log',515,1,81,283,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200327.log',515,1,82,284,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200327.log',515,1,78,288,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200327.log',515,1,84,289,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200327.log',515,1,87,291,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200327.log',515,1,99,305,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20200327.log',515,1,113,307,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200327.log',515,1,134,324,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200327.log',515,1,136,336,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200327.log',515,1,139,351,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200327.log',515,1,150,407,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200327.log',515,1,174,486,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200327.log',515,1,175,493,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200327.log',515,1,176,500,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200327.log',515,1,178,514,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200327.log',1048585,1,31,31,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200327.log',1048585,1,35,35,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200327.log',1048585,1,51,51,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,4,NULL),('usage_events_20200327.log',1048585,1,54,54,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200327.log',1048585,1,57,57,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200327.log',1048585,1,59,59,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200327.log',1048585,1,78,78,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200327.log',1048585,1,81,81,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200327.log',1048585,1,82,82,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200327.log',1048585,1,87,87,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200327.log',1048585,1,99,99,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200327.log',1048585,1,115,115,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200327.log',1048585,1,125,125,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200327.log',1048585,1,136,136,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200327.log',1048585,1,150,150,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200327.log',1048585,1,174,174,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200327.log',1048585,1,175,175,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200329.log',256,1,NULL,1,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,1,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,2,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,3,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,4,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,5,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,6,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,7,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,8,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,9,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,10,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200329.log',259,1,NULL,11,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200329.log',515,1,1,3,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,1),('usage_events_20200329.log',515,1,4,19,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20200329.log',515,1,5,30,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20200329.log',515,1,6,31,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20200329.log',515,1,7,32,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20200329.log',515,1,8,33,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20200329.log',515,1,14,51,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20200329.log',515,1,19,52,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20200329.log',515,1,20,53,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200329.log',515,1,21,54,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,12),('usage_events_20200329.log',515,1,22,57,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20200329.log',515,1,28,68,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,15),('usage_events_20200329.log',515,1,31,79,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20200329.log',515,1,32,80,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20200329.log',515,1,33,81,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20200329.log',515,1,34,82,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20200329.log',515,1,35,83,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20200329.log',515,1,40,94,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20200329.log',515,1,46,114,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20200329.log',515,1,47,115,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20200329.log',515,1,49,116,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,24),('usage_events_20200329.log',515,1,50,117,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20200329.log',515,1,51,118,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200329.log',515,1,52,119,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20200329.log',515,1,53,120,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200329.log',515,1,54,133,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200329.log',515,1,55,134,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,30),('usage_events_20200329.log',515,1,56,135,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200329.log',515,1,57,136,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,32),('usage_events_20200329.log',515,1,58,137,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200329.log',515,1,59,138,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20200329.log',515,1,85,281,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200329.log',515,1,79,282,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200329.log',515,1,81,283,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200329.log',515,1,82,284,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20200329.log',515,1,83,285,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,46),('usage_events_20200329.log',515,1,76,286,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200329.log',515,1,77,287,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20200329.log',515,1,78,288,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200329.log',515,1,84,289,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200329.log',515,1,86,290,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200329.log',515,1,87,291,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200329.log',515,1,88,292,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,53),('usage_events_20200329.log',515,1,89,293,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200329.log',515,1,90,294,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20200329.log',515,1,91,295,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20200329.log',515,1,99,305,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20200329.log',515,1,100,306,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200329.log',515,1,113,307,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20200329.log',515,1,114,308,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20200329.log',515,1,115,309,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,61),('usage_events_20200329.log',515,1,125,310,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20200329.log',515,1,133,318,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200329.log',515,1,134,324,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20200329.log',515,1,135,330,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200329.log',515,1,136,336,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20200329.log',515,1,137,343,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200329.log',515,1,139,351,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200329.log',515,1,141,361,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20200329.log',515,1,142,367,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70);
INSERT INTO `metrics` VALUES ('usage_events_20200329.log',515,1,146,379,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,71),('usage_events_20200329.log',515,1,147,387,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200329.log',515,1,148,394,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200329.log',515,1,149,401,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200329.log',515,1,150,407,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200329.log',515,1,151,414,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200329.log',515,1,152,423,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200329.log',515,1,169,461,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200329.log',515,1,171,470,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20200329.log',515,1,173,479,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200329.log',515,1,174,486,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200329.log',515,1,175,493,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200329.log',515,1,176,500,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200329.log',515,1,177,507,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200329.log',515,1,178,514,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200329.log',1048585,1,1,1,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200329.log',1048585,1,4,4,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200329.log',1048585,1,5,5,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200329.log',1048585,1,6,6,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200329.log',1048585,1,7,7,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200329.log',1048585,1,8,8,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200329.log',1048585,1,14,14,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200329.log',1048585,1,19,19,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200329.log',1048585,1,20,20,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20200329.log',1048585,1,21,21,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20200329.log',1048585,1,22,22,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20200329.log',1048585,1,28,28,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200329.log',1048585,1,31,31,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200329.log',1048585,1,32,32,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200329.log',1048585,1,33,33,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200329.log',1048585,1,34,34,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200329.log',1048585,1,35,35,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200329.log',1048585,1,40,40,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200329.log',1048585,1,46,46,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200329.log',1048585,1,47,47,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200329.log',1048585,1,49,49,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200329.log',1048585,1,50,50,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200329.log',1048585,1,51,51,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200329.log',1048585,1,53,53,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200329.log',1048585,1,54,54,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200329.log',1048585,1,55,55,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200329.log',1048585,1,56,56,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200329.log',1048585,1,57,57,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200329.log',1048585,1,58,58,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200329.log',1048585,1,59,59,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200329.log',1048585,1,74,74,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200329.log',1048585,1,76,76,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200329.log',1048585,1,77,77,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200329.log',1048585,1,78,78,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200329.log',1048585,1,79,79,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200329.log',1048585,1,81,81,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200329.log',1048585,1,82,82,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200329.log',1048585,1,83,83,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200329.log',1048585,1,84,84,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200329.log',1048585,1,85,85,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200329.log',1048585,1,86,86,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200329.log',1048585,1,87,87,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200329.log',1048585,1,88,88,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200329.log',1048585,1,89,89,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200329.log',1048585,1,90,90,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200329.log',1048585,1,91,91,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200329.log',1048585,1,99,99,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200329.log',1048585,1,100,100,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200329.log',1048585,1,113,113,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200329.log',1048585,1,114,114,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200329.log',1048585,1,115,115,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200329.log',1048585,1,125,125,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200329.log',1048585,1,133,133,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200329.log',1048585,1,134,134,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200329.log',1048585,1,135,135,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200329.log',1048585,1,136,136,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200329.log',1048585,1,137,137,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200329.log',1048585,1,139,139,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200329.log',1048585,1,141,141,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200329.log',1048585,1,142,142,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200329.log',1048585,1,146,146,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200329.log',1048585,1,147,147,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200329.log',1048585,1,148,148,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200329.log',1048585,1,149,149,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200329.log',1048585,1,150,150,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200329.log',1048585,1,151,151,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200329.log',1048585,1,152,152,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200329.log',1048585,1,169,169,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200329.log',1048585,1,171,171,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200329.log',1048585,1,173,173,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200329.log',1048585,1,174,174,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200329.log',1048585,1,175,175,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200329.log',1048585,1,176,176,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200329.log',1048585,1,177,177,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200329.log',1048585,1,178,178,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200330.log',259,1,NULL,7,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200330.log',515,1,20,53,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200330.log',515,1,47,115,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200330.log',515,1,49,116,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200330.log',515,1,81,283,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200330.log',515,1,78,288,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200330.log',515,1,87,291,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200330.log',515,1,125,310,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200330.log',515,1,136,336,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200330.log',515,1,137,343,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200330.log',515,1,139,351,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200330.log',515,1,147,387,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200330.log',515,1,148,394,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200330.log',515,1,152,423,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200330.log',515,1,173,479,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200330.log',515,1,175,493,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200330.log',515,1,178,514,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200330.log',1048585,1,1,1,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200330.log',1048585,1,22,22,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200330.log',1048585,1,47,47,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200330.log',1048585,1,50,50,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200330.log',1048585,1,51,51,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200330.log',1048585,1,57,57,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200330.log',1048585,1,58,58,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200330.log',1048585,1,78,78,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200330.log',1048585,1,81,81,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200330.log',1048585,1,87,87,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200330.log',1048585,1,125,125,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200330.log',1048585,1,136,136,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200330.log',1048585,1,137,137,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200330.log',1048585,1,139,139,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200330.log',1048585,1,147,147,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200330.log',1048585,1,148,148,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200330.log',1048585,1,152,152,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200330.log',1048585,1,173,173,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200330.log',1048585,1,177,177,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200330.log',1048585,1,178,178,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200331.log',256,1,NULL,1,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,1,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,2,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,3,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,4,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,5,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,6,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,7,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,8,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,9,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,10,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',259,1,NULL,11,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200331.log',515,1,1,3,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200331.log',515,1,4,19,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200331.log',515,1,5,30,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200331.log',515,1,7,32,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200331.log',515,1,8,33,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200331.log',515,1,14,51,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20200331.log',515,1,19,52,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200331.log',515,1,20,53,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200331.log',515,1,21,54,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20200331.log',515,1,22,57,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20200331.log',515,1,28,68,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200331.log',515,1,31,79,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20200331.log',515,1,32,80,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200331.log',515,1,33,81,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200331.log',515,1,34,82,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200331.log',515,1,35,83,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20200331.log',515,1,40,94,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200331.log',515,1,46,114,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200331.log',515,1,47,115,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200331.log',515,1,49,116,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200331.log',515,1,50,117,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20200331.log',515,1,51,118,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20200331.log',515,1,52,119,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20200331.log',515,1,53,120,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200331.log',515,1,54,133,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200331.log',515,1,55,134,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,30),('usage_events_20200331.log',515,1,56,135,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200331.log',515,1,58,137,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200331.log',515,1,59,138,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200331.log',515,1,85,281,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200331.log',515,1,79,282,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200331.log',515,1,81,283,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200331.log',515,1,82,284,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20200331.log',515,1,76,286,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200331.log',515,1,77,287,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200331.log',515,1,78,288,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200331.log',515,1,87,291,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200331.log',515,1,88,292,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20200331.log',515,1,89,293,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200331.log',515,1,90,294,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20200331.log',515,1,99,305,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20200331.log',515,1,100,306,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200331.log',515,1,113,307,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200331.log',515,1,114,308,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200331.log',515,1,115,309,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200331.log',515,1,125,310,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200331.log',515,1,133,318,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200331.log',515,1,136,336,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200331.log',515,1,137,343,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200331.log',515,1,141,361,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20200331.log',515,1,142,367,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20200331.log',515,1,146,379,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,71),('usage_events_20200331.log',515,1,147,387,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200331.log',515,1,148,394,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200331.log',515,1,149,401,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200331.log',515,1,150,407,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200331.log',515,1,151,414,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200331.log',515,1,152,423,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200331.log',515,1,169,461,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200331.log',515,1,171,470,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200331.log',515,1,173,479,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200331.log',515,1,175,493,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200331.log',515,1,177,507,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200331.log',515,1,178,514,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200331.log',1048585,1,1,1,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200331.log',1048585,1,4,4,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200331.log',1048585,1,5,5,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200331.log',1048585,1,6,6,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200331.log',1048585,1,8,8,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200331.log',1048585,1,19,19,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200331.log',1048585,1,20,20,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200331.log',1048585,1,21,21,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200331.log',1048585,1,22,22,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200331.log',1048585,1,28,28,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200331.log',1048585,1,31,31,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200331.log',1048585,1,32,32,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200331.log',1048585,1,33,33,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200331.log',1048585,1,34,34,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200331.log',1048585,1,40,40,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200331.log',1048585,1,47,47,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200331.log',1048585,1,49,49,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200331.log',1048585,1,50,50,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200331.log',1048585,1,51,51,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200331.log',1048585,1,52,52,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200331.log',1048585,1,53,53,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200331.log',1048585,1,54,54,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200331.log',1048585,1,55,55,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200331.log',1048585,1,56,56,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200331.log',1048585,1,58,58,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200331.log',1048585,1,76,76,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200331.log',1048585,1,77,77,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200331.log',1048585,1,78,78,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200331.log',1048585,1,79,79,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200331.log',1048585,1,85,85,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200331.log',1048585,1,87,87,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200331.log',1048585,1,88,88,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200331.log',1048585,1,89,89,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200331.log',1048585,1,100,100,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200331.log',1048585,1,113,113,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200331.log',1048585,1,115,115,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200331.log',1048585,1,125,125,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200331.log',1048585,1,133,133,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200331.log',1048585,1,136,136,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200331.log',1048585,1,137,137,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200331.log',1048585,1,141,141,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200331.log',1048585,1,142,142,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200331.log',1048585,1,146,146,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200331.log',1048585,1,147,147,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200331.log',1048585,1,149,149,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200331.log',1048585,1,150,150,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200331.log',1048585,1,152,152,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200331.log',1048585,1,169,169,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200331.log',1048585,1,171,171,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200331.log',1048585,1,174,174,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200331.log',1048585,1,175,175,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200331.log',1048585,1,176,176,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200331.log',1048585,1,177,177,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200331.log',1048585,1,178,178,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200401.log',256,1,NULL,1,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,1,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,2,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,3,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,4,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,5,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,6,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,7,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,8,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,9,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,10,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200401.log',259,1,NULL,11,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200401.log',515,1,1,3,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200401.log',515,1,33,81,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200401.log',515,1,46,114,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200401.log',515,1,54,133,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200401.log',515,1,58,137,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200401.log',515,1,83,285,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200401.log',515,1,76,286,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200401.log',515,1,78,288,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200401.log',515,1,87,291,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200401.log',515,1,89,293,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20200401.log',515,1,113,307,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20200401.log',515,1,114,308,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200401.log',515,1,135,330,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200401.log',515,1,136,336,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200401.log',515,1,137,343,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200401.log',515,1,139,351,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200401.log',515,1,148,394,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200401.log',515,1,149,401,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200401.log',515,1,151,414,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200401.log',515,1,169,461,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',14,1,259,11,78),('usage_events_20200401.log',515,1,173,479,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200401.log',515,1,175,493,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200401.log',515,1,177,507,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200401.log',515,1,178,514,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200401.log',1048585,1,1,1,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200401.log',1048585,1,4,4,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200401.log',1048585,1,5,5,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200401.log',1048585,1,6,6,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200401.log',1048585,1,7,7,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200401.log',1048585,1,8,8,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200401.log',1048585,1,14,14,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200401.log',1048585,1,20,20,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200401.log',1048585,1,21,21,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200401.log',1048585,1,22,22,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200401.log',1048585,1,40,40,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200401.log',1048585,1,54,54,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200401.log',1048585,1,58,58,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200401.log',1048585,1,59,59,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200401.log',1048585,1,76,76,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200401.log',1048585,1,78,78,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200401.log',1048585,1,83,83,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200401.log',1048585,1,87,87,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200401.log',1048585,1,113,113,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200401.log',1048585,1,137,137,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200401.log',1048585,1,139,139,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200401.log',1048585,1,149,149,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200401.log',1048585,1,169,169,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20200401.log',1048585,1,171,171,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200401.log',1048585,1,173,173,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200401.log',1048585,1,174,174,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200401.log',1048585,1,175,175,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200401.log',1048585,1,176,176,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200401.log',1048585,1,177,177,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200401.log',1048585,1,178,178,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200403.log',256,1,NULL,1,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200403.log',259,1,NULL,2,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200403.log',515,1,20,53,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200403.log',515,1,49,116,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20200403.log',515,1,51,118,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200403.log',515,1,58,137,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20200403.log',515,1,81,283,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200403.log',515,1,78,288,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200403.log',515,1,84,289,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200403.log',515,1,87,291,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,52),('usage_events_20200403.log',515,1,99,305,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200403.log',515,1,113,307,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200403.log',515,1,137,343,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200403.log',515,1,148,394,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200403.log',515,1,169,461,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200403.log',515,1,173,479,'20200403','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200403.log',1048585,1,20,20,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20200403.log',1048585,1,49,49,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200403.log',1048585,1,51,51,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200403.log',1048585,1,58,58,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200403.log',1048585,1,59,59,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200403.log',1048585,1,78,78,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200403.log',1048585,1,84,84,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200403.log',1048585,1,87,87,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200403.log',1048585,1,114,114,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200403.log',1048585,1,133,133,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200403.log',1048585,1,137,137,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200403.log',1048585,1,148,148,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200403.log',1048585,1,149,149,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200403.log',1048585,1,169,169,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200403.log',1048585,1,173,173,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200402.log',256,1,NULL,1,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20200402.log',259,1,NULL,1,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200402.log',259,1,NULL,7,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200402.log',515,1,4,19,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,1,3),('usage_events_20200402.log',515,1,20,53,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200402.log',515,1,47,115,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200402.log',515,1,49,116,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200402.log',515,1,53,120,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200402.log',515,1,58,137,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200402.log',515,1,79,282,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,43),('usage_events_20200402.log',515,1,78,288,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200402.log',515,1,87,291,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200402.log',515,1,90,294,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20200402.log',515,1,113,307,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200402.log',515,1,137,343,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200402.log',515,1,141,361,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200402.log',515,1,148,394,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200402.log',515,1,149,401,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200402.log',515,1,150,407,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200402.log',515,1,151,414,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,76),('usage_events_20200402.log',515,1,169,461,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200402.log',515,1,173,479,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200402.log',515,1,177,507,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200402.log',515,1,178,514,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200402.log',1048585,1,4,4,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20200402.log',1048585,1,49,49,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200402.log',1048585,1,51,51,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200402.log',1048585,1,53,53,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200402.log',1048585,1,78,78,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200402.log',1048585,1,79,79,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200402.log',1048585,1,91,91,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200402.log',1048585,1,137,137,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20200402.log',1048585,1,149,149,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200402.log',1048585,1,150,150,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200402.log',1048585,1,151,151,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200402.log',1048585,1,173,173,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200404.log',256,1,NULL,1,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,1,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,2,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,3,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,4,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,5,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,6,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,7,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200404.log',259,1,NULL,8,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200404.log',515,1,20,53,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200404.log',515,1,49,116,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200404.log',515,1,56,135,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200404.log',515,1,79,282,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200404.log',515,1,76,286,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200404.log',515,1,78,288,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20200404.log',515,1,86,290,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200404.log',515,1,87,291,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200404.log',515,1,141,361,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200404.log',515,1,146,379,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200404.log',515,1,149,401,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200404.log',515,1,169,461,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200404.log',515,1,173,479,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200404.log',515,1,175,493,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200404.log',515,1,177,507,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200404.log',515,1,178,514,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200404.log',1048585,1,5,5,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200404.log',1048585,1,14,14,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200404.log',1048585,1,19,19,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200404.log',1048585,1,49,49,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200404.log',1048585,1,76,76,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200404.log',1048585,1,79,79,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200404.log',1048585,1,81,81,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200404.log',1048585,1,82,82,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200404.log',1048585,1,86,86,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200404.log',1048585,1,87,87,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200404.log',1048585,1,135,135,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200404.log',1048585,1,149,149,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200404.log',1048585,1,169,169,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200404.log',1048585,1,176,176,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200404.log',1048585,1,177,177,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200404.log',1048585,1,178,178,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200405.log',256,1,NULL,1,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,1,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,2,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,3,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,4,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,5,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,6,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,7,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,8,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,9,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,10,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200405.log',259,1,NULL,11,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200405.log',515,1,1,3,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200405.log',515,1,49,116,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200405.log',515,1,58,137,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200405.log',515,1,79,282,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200405.log',515,1,81,283,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200405.log',515,1,82,284,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200405.log',515,1,76,286,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200405.log',515,1,78,288,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200405.log',515,1,87,291,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200405.log',515,1,89,293,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200405.log',515,1,114,308,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20200405.log',515,1,137,343,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200405.log',515,1,147,387,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200405.log',515,1,148,394,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200405.log',515,1,149,401,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200405.log',515,1,151,414,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200405.log',515,1,152,423,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200405.log',515,1,169,461,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200405.log',515,1,173,479,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200405.log',515,1,175,493,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200405.log',515,1,176,500,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200405.log',515,1,177,507,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200405.log',515,1,178,514,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200405.log',1048585,1,1,1,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200405.log',1048585,1,4,4,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200405.log',1048585,1,5,5,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200405.log',1048585,1,6,6,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200405.log',1048585,1,7,7,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200405.log',1048585,1,8,8,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200405.log',1048585,1,14,14,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200405.log',1048585,1,20,20,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200405.log',1048585,1,21,21,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200405.log',1048585,1,22,22,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200405.log',1048585,1,40,40,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200405.log',1048585,1,58,58,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200405.log',1048585,1,76,76,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200405.log',1048585,1,78,78,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200405.log',1048585,1,79,79,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,6,NULL),('usage_events_20200405.log',1048585,1,81,81,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200405.log',1048585,1,89,89,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200405.log',1048585,1,133,133,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200405.log',1048585,1,137,137,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200405.log',1048585,1,169,169,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200405.log',1048585,1,171,171,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200405.log',1048585,1,173,173,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200405.log',1048585,1,174,174,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200405.log',1048585,1,175,175,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200405.log',1048585,1,176,176,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200405.log',1048585,1,177,177,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200405.log',1048585,1,178,178,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200406.log',256,1,NULL,1,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20200406.log',259,1,NULL,2,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200406.log',259,1,NULL,7,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200406.log',259,1,NULL,8,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200406.log',515,1,19,52,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,2,10),('usage_events_20200406.log',515,1,20,53,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200406.log',515,1,49,116,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200406.log',515,1,50,117,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200406.log',515,1,51,118,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200406.log',515,1,59,138,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20200406.log',515,1,78,288,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200406.log',515,1,84,289,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200406.log',515,1,87,291,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200406.log',515,1,88,292,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20200406.log',515,1,99,305,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200406.log',515,1,113,307,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200406.log',515,1,114,308,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',8,1,259,8,60),('usage_events_20200406.log',515,1,135,330,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200406.log',515,1,146,379,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200406.log',515,1,148,394,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200406.log',515,1,149,401,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200406.log',515,1,150,407,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200406.log',515,1,152,423,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200406.log',515,1,169,461,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200406.log',515,1,173,479,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200406.log',515,1,176,500,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20200406.log',515,1,178,514,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200406.log',1048585,1,19,19,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200406.log',1048585,1,20,20,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200406.log',1048585,1,49,49,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200406.log',1048585,1,51,51,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200406.log',1048585,1,59,59,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200406.log',1048585,1,78,78,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200406.log',1048585,1,84,84,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200406.log',1048585,1,85,85,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200406.log',1048585,1,87,87,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200406.log',1048585,1,114,114,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200406.log',1048585,1,135,135,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200406.log',1048585,1,148,148,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200406.log',1048585,1,149,149,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200406.log',1048585,1,169,169,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200406.log',1048585,1,176,176,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200407.log',256,1,NULL,1,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200407.log',259,1,NULL,1,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200407.log',259,1,NULL,11,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200407.log',515,1,6,31,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20200407.log',515,1,20,53,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200407.log',515,1,31,79,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20200407.log',515,1,51,118,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200407.log',515,1,53,120,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200407.log',515,1,58,137,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200407.log',515,1,59,138,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200407.log',515,1,85,281,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200407.log',515,1,81,283,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200407.log',515,1,82,284,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200407.log',515,1,83,285,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200407.log',515,1,77,287,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200407.log',515,1,78,288,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200407.log',515,1,87,291,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200407.log',515,1,89,293,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200407.log',515,1,99,305,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200407.log',515,1,113,307,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200407.log',515,1,136,336,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200407.log',515,1,137,343,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200407.log',515,1,142,367,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200407.log',515,1,148,394,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200407.log',515,1,150,407,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200407.log',515,1,169,461,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200407.log',515,1,171,470,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200407.log',515,1,173,479,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200407.log',515,1,175,493,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200407.log',515,1,176,500,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200407.log',515,1,178,514,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200407.log',1048585,1,6,6,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200407.log',1048585,1,31,31,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200407.log',1048585,1,53,53,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200407.log',1048585,1,58,58,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200407.log',1048585,1,59,59,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200407.log',1048585,1,77,77,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200407.log',1048585,1,81,81,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200407.log',1048585,1,82,82,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200407.log',1048585,1,83,83,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200407.log',1048585,1,85,85,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200407.log',1048585,1,87,87,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200407.log',1048585,1,89,89,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200407.log',1048585,1,99,99,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200407.log',1048585,1,136,136,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200407.log',1048585,1,137,137,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200407.log',1048585,1,141,141,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200407.log',1048585,1,148,148,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200407.log',1048585,1,152,152,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200407.log',1048585,1,171,171,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200407.log',1048585,1,173,173,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200407.log',1048585,1,176,176,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200408.log',256,1,NULL,1,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,1,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,2,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,3,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,4,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,5,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,6,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,7,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,8,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,9,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,10,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200408.log',259,1,NULL,11,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200408.log',515,1,1,3,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200408.log',515,1,19,52,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200408.log',515,1,33,81,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20200408.log',515,1,49,116,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200408.log',515,1,51,118,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200408.log',515,1,58,137,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,5,33),('usage_events_20200408.log',515,1,81,283,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200408.log',515,1,78,288,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200408.log',515,1,87,291,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200408.log',515,1,89,293,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200408.log',515,1,100,306,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200408.log',515,1,113,307,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200408.log',515,1,137,343,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200408.log',515,1,141,361,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200408.log',515,1,148,394,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200408.log',515,1,149,401,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200408.log',515,1,151,414,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200408.log',515,1,152,423,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200408.log',515,1,169,461,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200408.log',515,1,173,479,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200408.log',515,1,175,493,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200408.log',515,1,176,500,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200408.log',515,1,177,507,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200408.log',515,1,178,514,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200408.log',1048585,1,1,1,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200408.log',1048585,1,4,4,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200408.log',1048585,1,5,5,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200408.log',1048585,1,6,6,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200408.log',1048585,1,7,7,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200408.log',1048585,1,8,8,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200408.log',1048585,1,14,14,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200408.log',1048585,1,19,19,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200408.log',1048585,1,20,20,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200408.log',1048585,1,21,21,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200408.log',1048585,1,22,22,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200408.log',1048585,1,33,33,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200408.log',1048585,1,40,40,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200408.log',1048585,1,47,47,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200408.log',1048585,1,58,58,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200408.log',1048585,1,81,81,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200408.log',1048585,1,87,87,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200408.log',1048585,1,89,89,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200408.log',1048585,1,100,100,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200408.log',1048585,1,141,141,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200408.log',1048585,1,169,169,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200408.log',1048585,1,171,171,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200408.log',1048585,1,173,173,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200408.log',1048585,1,174,174,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200408.log',1048585,1,175,175,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200408.log',1048585,1,176,176,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200408.log',1048585,1,177,177,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200408.log',1048585,1,178,178,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200409.log',256,1,NULL,1,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200409.log',259,1,NULL,1,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200409.log',515,1,8,33,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200409.log',515,1,49,116,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200409.log',515,1,51,118,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,26),('usage_events_20200409.log',515,1,58,137,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20200409.log',515,1,81,283,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200409.log',515,1,77,287,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20200409.log',515,1,78,288,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200409.log',515,1,137,343,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200409.log',515,1,142,367,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200409.log',515,1,148,394,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200409.log',515,1,149,401,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200409.log',515,1,150,407,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200409.log',515,1,173,479,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200409.log',515,1,174,486,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20200409.log',515,1,176,500,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200409.log',515,1,178,514,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200409.log',1048585,1,8,8,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200409.log',1048585,1,49,49,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200409.log',1048585,1,51,51,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200409.log',1048585,1,58,58,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200409.log',1048585,1,77,77,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200409.log',1048585,1,78,78,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200409.log',1048585,1,82,82,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200409.log',1048585,1,91,91,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200409.log',1048585,1,142,142,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200409.log',1048585,1,148,148,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200409.log',1048585,1,173,173,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200409.log',1048585,1,176,176,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200410.log',256,1,NULL,1,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200410.log',515,1,34,82,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200410.log',515,1,47,115,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200410.log',515,1,49,116,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200410.log',515,1,53,120,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200410.log',515,1,58,137,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200410.log',515,1,85,281,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200410.log',515,1,78,288,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',11,1,259,6,49),('usage_events_20200410.log',515,1,99,305,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200410.log',515,1,114,308,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200410.log',515,1,136,336,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200410.log',515,1,148,394,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200410.log',515,1,169,461,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200410.log',515,1,173,479,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200410.log',515,1,175,493,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200410.log',515,1,176,500,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200410.log',515,1,177,507,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200410.log',1048585,1,34,34,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200410.log',1048585,1,47,47,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200410.log',1048585,1,49,49,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200410.log',1048585,1,53,53,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200410.log',1048585,1,58,58,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200410.log',1048585,1,78,78,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200410.log',1048585,1,85,85,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200410.log',1048585,1,89,89,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200410.log',1048585,1,114,114,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200410.log',1048585,1,169,169,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200410.log',1048585,1,175,175,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200410.log',1048585,1,176,176,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200411.log',256,1,NULL,1,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,1,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,2,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,3,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,4,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,5,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,6,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,7,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,8,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,9,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,10,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200411.log',259,1,NULL,11,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200411.log',515,1,1,3,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200411.log',515,1,8,33,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200411.log',515,1,47,115,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200411.log',515,1,49,116,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20200411.log',515,1,51,118,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,26),('usage_events_20200411.log',515,1,53,120,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200411.log',515,1,54,133,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200411.log',515,1,58,137,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200411.log',515,1,85,281,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200411.log',515,1,76,286,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,47),('usage_events_20200411.log',515,1,77,287,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200411.log',515,1,78,288,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',12,1,259,6,49),('usage_events_20200411.log',515,1,86,290,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200411.log',515,1,113,307,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200411.log',515,1,139,351,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200411.log',515,1,146,379,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200411.log',515,1,148,394,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200411.log',515,1,151,414,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200411.log',515,1,152,423,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200411.log',515,1,169,461,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200411.log',515,1,175,493,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200411.log',515,1,176,500,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20200411.log',515,1,178,514,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200411.log',1048585,1,1,1,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200411.log',1048585,1,4,4,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200411.log',1048585,1,5,5,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200411.log',1048585,1,6,6,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200411.log',1048585,1,7,7,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200411.log',1048585,1,8,8,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200411.log',1048585,1,14,14,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200411.log',1048585,1,20,20,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200411.log',1048585,1,21,21,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200411.log',1048585,1,22,22,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200411.log',1048585,1,40,40,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200411.log',1048585,1,47,47,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200411.log',1048585,1,49,49,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200411.log',1048585,1,51,51,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200411.log',1048585,1,54,54,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200411.log',1048585,1,58,58,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200411.log',1048585,1,77,77,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200411.log',1048585,1,78,78,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,6,NULL),('usage_events_20200411.log',1048585,1,86,86,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200411.log',1048585,1,148,148,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200411.log',1048585,1,169,169,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200411.log',1048585,1,171,171,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200411.log',1048585,1,173,173,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200411.log',1048585,1,174,174,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200411.log',1048585,1,175,175,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200411.log',1048585,1,176,176,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200411.log',1048585,1,177,177,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200411.log',1048585,1,178,178,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200412.log',256,1,NULL,1,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200412.log',515,1,51,118,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200412.log',515,1,54,133,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200412.log',515,1,58,137,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200412.log',515,1,85,281,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200412.log',515,1,79,282,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200412.log',515,1,83,285,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200412.log',515,1,76,286,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200412.log',515,1,78,288,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200412.log',515,1,86,290,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200412.log',515,1,87,291,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200412.log',515,1,100,306,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200412.log',515,1,135,330,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200412.log',515,1,139,351,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200412.log',515,1,148,394,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200412.log',515,1,150,407,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200412.log',515,1,169,461,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200412.log',515,1,171,470,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200412.log',515,1,175,493,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200412.log',1048585,1,78,78,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200412.log',1048585,1,79,79,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200412.log',1048585,1,82,82,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200412.log',1048585,1,86,86,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200412.log',1048585,1,87,87,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200412.log',1048585,1,100,100,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200412.log',1048585,1,148,148,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200412.log',1048585,1,150,150,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200412.log',1048585,1,169,169,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200412.log',1048585,1,171,171,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200412.log',1048585,1,176,176,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200413.log',256,1,NULL,1,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200413.log',259,1,NULL,4,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200413.log',259,1,NULL,6,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200413.log',515,1,4,19,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200413.log',515,1,19,52,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200413.log',515,1,33,81,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200413.log',515,1,46,114,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200413.log',515,1,49,116,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200413.log',515,1,50,117,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200413.log',515,1,51,118,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200413.log',515,1,53,120,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20200413.log',515,1,78,288,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200413.log',515,1,87,291,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200413.log',515,1,91,295,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200413.log',515,1,99,305,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200413.log',515,1,100,306,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200413.log',515,1,114,308,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200413.log',515,1,115,309,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200413.log',515,1,133,318,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200413.log',515,1,137,343,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200413.log',515,1,139,351,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200413.log',515,1,142,367,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200413.log',515,1,149,401,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,74),('usage_events_20200413.log',515,1,169,461,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200413.log',515,1,173,479,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200413.log',515,1,175,493,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200413.log',515,1,176,500,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200413.log',1048585,1,8,8,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200413.log',1048585,1,33,33,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200413.log',1048585,1,53,53,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200413.log',1048585,1,78,78,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200413.log',1048585,1,87,87,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200413.log',1048585,1,91,91,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200413.log',1048585,1,99,99,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200413.log',1048585,1,114,114,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200413.log',1048585,1,115,115,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200413.log',1048585,1,133,133,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200413.log',1048585,1,137,137,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200413.log',1048585,1,139,139,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200413.log',1048585,1,142,142,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200413.log',1048585,1,149,149,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200413.log',1048585,1,178,178,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200414.log',256,1,NULL,1,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,1,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,2,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,3,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,4,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,5,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,6,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,7,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,8,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,9,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,10,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200414.log',259,1,NULL,11,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200414.log',515,1,1,3,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200414.log',515,1,4,19,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200414.log',515,1,19,52,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,10),('usage_events_20200414.log',515,1,33,81,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200414.log',515,1,47,115,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200414.log',515,1,49,116,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200414.log',515,1,50,117,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20200414.log',515,1,53,120,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200414.log',515,1,58,137,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20200414.log',515,1,85,281,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200414.log',515,1,81,283,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200414.log',515,1,78,288,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200414.log',515,1,87,291,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200414.log',515,1,89,293,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200414.log',515,1,100,306,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,58),('usage_events_20200414.log',515,1,113,307,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200414.log',515,1,139,351,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200414.log',515,1,142,367,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200414.log',515,1,148,394,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200414.log',515,1,149,401,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200414.log',515,1,169,461,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200414.log',515,1,171,470,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200414.log',515,1,173,479,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200414.log',515,1,175,493,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200414.log',515,1,176,500,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200414.log',1048585,1,1,1,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200414.log',1048585,1,4,4,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200414.log',1048585,1,5,5,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200414.log',1048585,1,6,6,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200414.log',1048585,1,7,7,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200414.log',1048585,1,8,8,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200414.log',1048585,1,14,14,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200414.log',1048585,1,19,19,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200414.log',1048585,1,20,20,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200414.log',1048585,1,21,21,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200414.log',1048585,1,22,22,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200414.log',1048585,1,40,40,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200414.log',1048585,1,47,47,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200414.log',1048585,1,50,50,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200414.log',1048585,1,54,54,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200414.log',1048585,1,58,58,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200414.log',1048585,1,78,78,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200414.log',1048585,1,82,82,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200414.log',1048585,1,89,89,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200414.log',1048585,1,100,100,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200414.log',1048585,1,139,139,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200414.log',1048585,1,142,142,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200414.log',1048585,1,148,148,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200414.log',1048585,1,169,169,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200414.log',1048585,1,171,171,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200414.log',1048585,1,173,173,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200414.log',1048585,1,174,174,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200414.log',1048585,1,175,175,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200414.log',1048585,1,176,176,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200414.log',1048585,1,177,177,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200414.log',1048585,1,178,178,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200415.log',515,1,83,285,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200415.log',515,1,77,287,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200415.log',515,1,78,288,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200415.log',515,1,87,291,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200415.log',515,1,148,394,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200415.log',515,1,149,401,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200415.log',515,1,152,423,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200415.log',515,1,173,479,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200415.log',515,1,174,486,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200415.log',515,1,175,493,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200415.log',515,1,176,500,'20200415','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20200415.log',1048585,1,20,20,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200415.log',1048585,1,77,77,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200415.log',1048585,1,78,78,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200415.log',1048585,1,83,83,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200415.log',1048585,1,85,85,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200415.log',1048585,1,87,87,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200415.log',1048585,1,148,148,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200415.log',1048585,1,149,149,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20200415.log',1048585,1,173,173,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200415.log',1048585,1,176,176,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200416.log',256,1,NULL,1,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200416.log',259,1,NULL,6,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200416.log',259,1,NULL,9,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200416.log',515,1,50,117,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20200416.log',515,1,51,118,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200416.log',515,1,54,133,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200416.log',515,1,58,137,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200416.log',515,1,59,138,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200416.log',515,1,78,288,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200416.log',515,1,87,291,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20200416.log',515,1,133,318,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200416.log',515,1,136,336,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200416.log',515,1,139,351,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200416.log',515,1,142,367,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20200416.log',515,1,148,394,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200416.log',515,1,149,401,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200416.log',515,1,150,407,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200416.log',515,1,151,414,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200416.log',515,1,152,423,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200416.log',515,1,173,479,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200416.log',515,1,175,493,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200416.log',515,1,176,500,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200416.log',515,1,178,514,'20200416','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200416.log',1048585,1,20,20,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200416.log',1048585,1,54,54,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200416.log',1048585,1,58,58,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200416.log',1048585,1,59,59,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200416.log',1048585,1,78,78,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200416.log',1048585,1,87,87,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20200416.log',1048585,1,91,91,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200416.log',1048585,1,100,100,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200416.log',1048585,1,136,136,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200416.log',1048585,1,139,139,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200416.log',1048585,1,142,142,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200416.log',1048585,1,152,152,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200416.log',1048585,1,173,173,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200416.log',1048585,1,175,175,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200417.log',256,1,NULL,1,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,1,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,2,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,3,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,4,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,5,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,6,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,7,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,8,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,9,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,10,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200417.log',259,1,NULL,11,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200417.log',515,1,1,3,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200417.log',515,1,49,116,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200417.log',515,1,51,118,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200417.log',515,1,58,137,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200417.log',515,1,59,138,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200417.log',515,1,82,284,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200417.log',515,1,83,285,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200417.log',515,1,78,288,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200417.log',515,1,89,293,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200417.log',515,1,100,306,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200417.log',515,1,134,324,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200417.log',515,1,137,343,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200417.log',515,1,139,351,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200417.log',515,1,142,367,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200417.log',515,1,147,387,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200417.log',515,1,148,394,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20200417.log',515,1,150,407,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200417.log',515,1,151,414,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200417.log',515,1,152,423,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200417.log',515,1,169,461,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200417.log',515,1,171,470,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200417.log',515,1,173,479,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200417.log',515,1,175,493,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20200417.log',515,1,178,514,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200417.log',1048585,1,1,1,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200417.log',1048585,1,4,4,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200417.log',1048585,1,5,5,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200417.log',1048585,1,6,6,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200417.log',1048585,1,7,7,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200417.log',1048585,1,8,8,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200417.log',1048585,1,14,14,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200417.log',1048585,1,20,20,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200417.log',1048585,1,21,21,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200417.log',1048585,1,22,22,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200417.log',1048585,1,40,40,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200417.log',1048585,1,47,47,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200417.log',1048585,1,51,51,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200417.log',1048585,1,59,59,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200417.log',1048585,1,78,78,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200417.log',1048585,1,83,83,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200417.log',1048585,1,89,89,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200417.log',1048585,1,134,134,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200417.log',1048585,1,137,137,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200417.log',1048585,1,141,141,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200417.log',1048585,1,142,142,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200417.log',1048585,1,147,147,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200417.log',1048585,1,148,148,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200417.log',1048585,1,150,150,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200417.log',1048585,1,151,151,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200417.log',1048585,1,152,152,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200417.log',1048585,1,169,169,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200417.log',1048585,1,171,171,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200417.log',1048585,1,173,173,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200417.log',1048585,1,174,174,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200417.log',1048585,1,175,175,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200417.log',1048585,1,176,176,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200417.log',1048585,1,177,177,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200417.log',1048585,1,178,178,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200418.log',259,1,NULL,3,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200418.log',259,1,NULL,6,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200418.log',515,1,7,32,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200418.log',515,1,28,68,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200418.log',515,1,51,118,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200418.log',515,1,54,133,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200418.log',515,1,58,137,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200418.log',515,1,85,281,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200418.log',515,1,82,284,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200418.log',515,1,78,288,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200418.log',515,1,87,291,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20200418.log',515,1,89,293,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200418.log',515,1,137,343,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200418.log',515,1,142,367,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200418.log',515,1,147,387,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200418.log',515,1,148,394,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200418.log',515,1,150,407,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200418.log',515,1,152,423,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200418.log',515,1,169,461,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200418.log',515,1,175,493,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200418.log',515,1,178,514,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200418.log',1048585,1,7,7,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200418.log',1048585,1,28,28,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200418.log',1048585,1,58,58,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200418.log',1048585,1,77,77,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200418.log',1048585,1,78,78,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200418.log',1048585,1,85,85,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200418.log',1048585,1,86,86,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200418.log',1048585,1,87,87,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200418.log',1048585,1,142,142,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200418.log',1048585,1,147,147,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200418.log',1048585,1,148,148,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200418.log',1048585,1,152,152,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200418.log',1048585,1,169,169,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200418.log',1048585,1,175,175,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200418.log',1048585,1,177,177,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200418.log',1048585,1,178,178,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200419.log',256,1,NULL,1,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200419.log',259,1,NULL,9,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200419.log',259,1,NULL,11,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200419.log',515,1,6,31,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20200419.log',515,1,51,118,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200419.log',515,1,54,133,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200419.log',515,1,58,137,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200419.log',515,1,82,284,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200419.log',515,1,83,285,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200419.log',515,1,77,287,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200419.log',515,1,78,288,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',8,1,259,6,49),('usage_events_20200419.log',515,1,87,291,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200419.log',515,1,89,293,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200419.log',515,1,91,295,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200419.log',515,1,100,306,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200419.log',515,1,139,351,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200419.log',515,1,152,423,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200419.log',515,1,173,479,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200419.log',515,1,176,500,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200419.log',515,1,178,514,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200419.log',1048585,1,51,51,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200419.log',1048585,1,78,78,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200419.log',1048585,1,82,82,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200419.log',1048585,1,83,83,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200419.log',1048585,1,91,91,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200419.log',1048585,1,99,99,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200419.log',1048585,1,100,100,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200419.log',1048585,1,133,133,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200419.log',1048585,1,139,139,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20200419.log',1048585,1,169,169,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200419.log',1048585,1,173,173,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200419.log',1048585,1,176,176,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200420.log',256,1,NULL,1,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,1,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,2,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,3,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,4,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,5,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,6,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,7,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,8,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,9,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,10,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200420.log',259,1,NULL,11,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200420.log',515,1,1,3,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200420.log',515,1,32,80,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200420.log',515,1,35,83,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200420.log',515,1,47,115,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20200420.log',515,1,49,116,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,24),('usage_events_20200420.log',515,1,51,118,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200420.log',515,1,53,120,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200420.log',515,1,58,137,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200420.log',515,1,85,281,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200420.log',515,1,83,285,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200420.log',515,1,77,287,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200420.log',515,1,78,288,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200420.log',515,1,86,290,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200420.log',515,1,87,291,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200420.log',515,1,100,306,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200420.log',515,1,137,343,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200420.log',515,1,139,351,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200420.log',515,1,142,367,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200420.log',515,1,148,394,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200420.log',515,1,150,407,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200420.log',515,1,151,414,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200420.log',515,1,152,423,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200420.log',515,1,169,461,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20200420.log',515,1,173,479,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200420.log',515,1,175,493,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200420.log',515,1,176,500,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200420.log',515,1,177,507,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200420.log',1048585,1,1,1,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200420.log',1048585,1,4,4,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200420.log',1048585,1,5,5,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200420.log',1048585,1,6,6,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200420.log',1048585,1,7,7,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200420.log',1048585,1,8,8,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200420.log',1048585,1,14,14,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200420.log',1048585,1,20,20,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200420.log',1048585,1,21,21,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200420.log',1048585,1,22,22,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200420.log',1048585,1,35,35,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200420.log',1048585,1,40,40,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200420.log',1048585,1,47,47,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200420.log',1048585,1,49,49,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200420.log',1048585,1,51,51,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200420.log',1048585,1,77,77,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200420.log',1048585,1,83,83,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200420.log',1048585,1,85,85,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200420.log',1048585,1,86,86,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200420.log',1048585,1,87,87,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20200420.log',1048585,1,137,137,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200420.log',1048585,1,139,139,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200420.log',1048585,1,148,148,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200420.log',1048585,1,150,150,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200420.log',1048585,1,151,151,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200420.log',1048585,1,152,152,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200420.log',1048585,1,169,169,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200420.log',1048585,1,171,171,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200420.log',1048585,1,173,173,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200420.log',1048585,1,174,174,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200420.log',1048585,1,175,175,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200420.log',1048585,1,176,176,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200420.log',1048585,1,177,177,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200420.log',1048585,1,178,178,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200421.log',256,1,NULL,1,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200421.log',259,1,NULL,11,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200421.log',515,1,7,32,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200421.log',515,1,32,80,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200421.log',515,1,34,82,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200421.log',515,1,49,116,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200421.log',515,1,78,288,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200421.log',515,1,87,291,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200421.log',515,1,89,293,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200421.log',515,1,99,305,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20200421.log',515,1,137,343,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200421.log',515,1,142,367,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200421.log',515,1,150,407,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200421.log',515,1,169,461,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20200421.log',515,1,174,486,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200421.log',515,1,175,493,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200421.log',515,1,176,500,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,83),('usage_events_20200421.log',515,1,177,507,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200421.log',515,1,178,514,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200421.log',1048585,1,7,7,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200421.log',1048585,1,14,14,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200421.log',1048585,1,34,34,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200421.log',1048585,1,51,51,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200421.log',1048585,1,58,58,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200421.log',1048585,1,78,78,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200421.log',1048585,1,87,87,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200421.log',1048585,1,89,89,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200421.log',1048585,1,99,99,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200421.log',1048585,1,136,136,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200421.log',1048585,1,169,169,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200421.log',1048585,1,176,176,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200421.log',1048585,1,177,177,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200422.log',259,1,NULL,7,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200422.log',515,1,7,32,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20200422.log',515,1,51,118,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200422.log',515,1,58,137,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200422.log',515,1,78,288,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200422.log',515,1,87,291,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200422.log',515,1,136,336,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200422.log',515,1,148,394,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200422.log',515,1,171,470,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200422.log',515,1,173,479,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200422.log',1048585,1,7,7,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200422.log',1048585,1,51,51,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200422.log',1048585,1,58,58,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200422.log',1048585,1,85,85,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200422.log',1048585,1,87,87,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200422.log',1048585,1,148,148,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200422.log',1048585,1,171,171,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200423.log',256,1,NULL,1,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,1,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,2,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,3,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,4,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,5,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,6,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,7,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,8,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,9,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,10,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200423.log',259,1,NULL,11,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200423.log',515,1,1,3,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200423.log',515,1,46,114,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200423.log',515,1,51,118,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200423.log',515,1,56,135,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200423.log',515,1,58,137,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200423.log',515,1,79,282,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200423.log',515,1,76,286,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200423.log',515,1,78,288,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200423.log',515,1,86,290,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200423.log',515,1,87,291,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200423.log',515,1,113,307,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200423.log',515,1,147,387,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200423.log',515,1,148,394,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200423.log',515,1,169,461,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200423.log',515,1,175,493,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200423.log',515,1,176,500,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200423.log',515,1,177,507,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200423.log',1048585,1,1,1,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200423.log',1048585,1,4,4,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200423.log',1048585,1,5,5,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200423.log',1048585,1,6,6,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200423.log',1048585,1,7,7,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200423.log',1048585,1,8,8,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200423.log',1048585,1,14,14,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200423.log',1048585,1,20,20,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200423.log',1048585,1,21,21,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200423.log',1048585,1,22,22,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200423.log',1048585,1,40,40,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200423.log',1048585,1,56,56,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200423.log',1048585,1,76,76,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200423.log',1048585,1,78,78,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20200423.log',1048585,1,79,79,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200423.log',1048585,1,135,135,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200423.log',1048585,1,148,148,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200423.log',1048585,1,169,169,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200423.log',1048585,1,171,171,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200423.log',1048585,1,173,173,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200423.log',1048585,1,174,174,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200423.log',1048585,1,175,175,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200423.log',1048585,1,176,176,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200423.log',1048585,1,177,177,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200423.log',1048585,1,178,178,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200424.log',515,1,4,19,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200424.log',515,1,47,115,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200424.log',515,1,51,118,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200424.log',515,1,82,284,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200424.log',515,1,76,286,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,47),('usage_events_20200424.log',515,1,78,288,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200424.log',515,1,87,291,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200424.log',515,1,135,330,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200424.log',515,1,136,336,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200424.log',515,1,137,343,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200424.log',515,1,142,367,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200424.log',515,1,148,394,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200424.log',515,1,150,407,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,75),('usage_events_20200424.log',515,1,151,414,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200424.log',515,1,169,461,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200424.log',515,1,174,486,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200424.log',515,1,175,493,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200424.log',515,1,178,514,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200424.log',1048585,1,51,51,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200424.log',1048585,1,76,76,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200424.log',1048585,1,78,78,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200424.log',1048585,1,86,86,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200424.log',1048585,1,87,87,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200424.log',1048585,1,135,135,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200424.log',1048585,1,150,150,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200424.log',1048585,1,151,151,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200424.log',1048585,1,169,169,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200424.log',1048585,1,175,175,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200424.log',1048585,1,177,177,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200425.log',256,1,NULL,1,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200425.log',259,1,NULL,10,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200425.log',515,1,19,52,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200425.log',515,1,20,53,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200425.log',515,1,47,115,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20200425.log',515,1,54,133,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200425.log',515,1,78,288,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,49),('usage_events_20200425.log',515,1,84,289,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200425.log',515,1,87,291,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200425.log',515,1,115,309,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200425.log',515,1,137,343,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200425.log',515,1,139,351,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200425.log',515,1,142,367,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200425.log',515,1,147,387,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200425.log',515,1,169,461,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200425.log',515,1,177,507,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200425.log',1048585,1,4,4,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200425.log',1048585,1,78,78,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20200425.log',1048585,1,87,87,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200425.log',1048585,1,115,115,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200425.log',1048585,1,139,139,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200425.log',1048585,1,142,142,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200425.log',1048585,1,146,146,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200425.log',1048585,1,147,147,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200425.log',1048585,1,176,176,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200425.log',1048585,1,177,177,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200426.log',256,1,NULL,1,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,1,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,2,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,3,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,4,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,5,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,6,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,7,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,8,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,9,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,10,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200426.log',259,1,NULL,11,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200426.log',515,1,1,3,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200426.log',515,1,8,33,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200426.log',515,1,46,114,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200426.log',515,1,47,115,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200426.log',515,1,49,116,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200426.log',515,1,58,137,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200426.log',515,1,81,283,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200426.log',515,1,83,285,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200426.log',515,1,78,288,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20200426.log',515,1,87,291,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200426.log',515,1,100,306,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200426.log',515,1,141,361,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200426.log',515,1,142,367,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200426.log',515,1,146,379,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200426.log',515,1,148,394,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200426.log',515,1,150,407,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200426.log',515,1,169,461,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200426.log',515,1,171,470,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200426.log',515,1,174,486,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',11,1,259,11,81),('usage_events_20200426.log',515,1,175,493,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200426.log',515,1,178,514,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200426.log',1048585,1,1,1,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200426.log',1048585,1,4,4,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200426.log',1048585,1,5,5,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200426.log',1048585,1,6,6,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200426.log',1048585,1,7,7,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200426.log',1048585,1,8,8,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200426.log',1048585,1,14,14,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200426.log',1048585,1,20,20,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200426.log',1048585,1,21,21,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200426.log',1048585,1,22,22,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200426.log',1048585,1,40,40,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200426.log',1048585,1,78,78,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200426.log',1048585,1,87,87,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200426.log',1048585,1,100,100,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200426.log',1048585,1,139,139,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200426.log',1048585,1,148,148,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200426.log',1048585,1,150,150,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200426.log',1048585,1,169,169,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200426.log',1048585,1,171,171,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200426.log',1048585,1,173,173,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200426.log',1048585,1,174,174,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200426.log',1048585,1,175,175,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200426.log',1048585,1,176,176,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200426.log',1048585,1,177,177,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200426.log',1048585,1,178,178,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200427.log',256,1,NULL,1,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200427.log',515,1,31,79,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20200427.log',515,1,47,115,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200427.log',515,1,49,116,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200427.log',515,1,53,120,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200427.log',515,1,82,284,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200427.log',515,1,83,285,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200427.log',515,1,78,288,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',9,1,259,6,49),('usage_events_20200427.log',515,1,86,290,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200427.log',515,1,87,291,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200427.log',515,1,91,295,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200427.log',515,1,113,307,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200427.log',515,1,135,330,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200427.log',515,1,137,343,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200427.log',515,1,150,407,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200427.log',515,1,169,461,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200427.log',515,1,174,486,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200427.log',515,1,175,493,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200427.log',515,1,176,500,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200427.log',1048585,1,78,78,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200427.log',1048585,1,82,82,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200427.log',1048585,1,83,83,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200427.log',1048585,1,142,142,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200427.log',1048585,1,150,150,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200427.log',1048585,1,169,169,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200427.log',1048585,1,175,175,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200427.log',1048585,1,176,176,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200428.log',259,1,NULL,4,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200428.log',259,1,NULL,11,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200428.log',515,1,4,19,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200428.log',515,1,28,68,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200428.log',515,1,33,81,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200428.log',515,1,47,115,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200428.log',515,1,49,116,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200428.log',515,1,58,137,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200428.log',515,1,81,283,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200428.log',515,1,78,288,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,49),('usage_events_20200428.log',515,1,87,291,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200428.log',515,1,113,307,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200428.log',515,1,125,310,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200428.log',515,1,141,361,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200428.log',515,1,142,367,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200428.log',515,1,149,401,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200428.log',515,1,150,407,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200428.log',515,1,152,423,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200428.log',515,1,169,461,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20200428.log',515,1,171,470,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200428.log',515,1,173,479,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200428.log',515,1,174,486,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200428.log',515,1,175,493,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200428.log',515,1,177,507,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200428.log',515,1,178,514,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20200428.log',1048585,1,4,4,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200428.log',1048585,1,28,28,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200428.log',1048585,1,49,49,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200428.log',1048585,1,58,58,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200428.log',1048585,1,77,77,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200428.log',1048585,1,78,78,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200428.log',1048585,1,81,81,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200428.log',1048585,1,89,89,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200428.log',1048585,1,125,125,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200428.log',1048585,1,142,142,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200428.log',1048585,1,149,149,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200428.log',1048585,1,169,169,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200428.log',1048585,1,173,173,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200428.log',1048585,1,175,175,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200428.log',1048585,1,176,176,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200428.log',1048585,1,178,178,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200429.log',256,1,NULL,1,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,1,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,2,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,3,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,4,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,5,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,6,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,7,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,8,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,9,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,10,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200429.log',259,1,NULL,11,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200429.log',515,1,1,3,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200429.log',515,1,20,53,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200429.log',515,1,49,116,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200429.log',515,1,51,118,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200429.log',515,1,58,137,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200429.log',515,1,85,281,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200429.log',515,1,79,282,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200429.log',515,1,81,283,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200429.log',515,1,78,288,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200429.log',515,1,86,290,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200429.log',515,1,87,291,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,52),('usage_events_20200429.log',515,1,113,307,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200429.log',515,1,133,318,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200429.log',515,1,139,351,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200429.log',515,1,142,367,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,70),('usage_events_20200429.log',515,1,150,407,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200429.log',515,1,151,414,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200429.log',515,1,169,461,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200429.log',515,1,174,486,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200429.log',515,1,175,493,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200429.log',515,1,178,514,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200429.log',1048585,1,1,1,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200429.log',1048585,1,4,4,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200429.log',1048585,1,5,5,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200429.log',1048585,1,6,6,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200429.log',1048585,1,7,7,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200429.log',1048585,1,8,8,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200429.log',1048585,1,14,14,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200429.log',1048585,1,20,20,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200429.log',1048585,1,21,21,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200429.log',1048585,1,22,22,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200429.log',1048585,1,40,40,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200429.log',1048585,1,49,49,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200429.log',1048585,1,58,58,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200429.log',1048585,1,78,78,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200429.log',1048585,1,81,81,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200429.log',1048585,1,85,85,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200429.log',1048585,1,86,86,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200429.log',1048585,1,87,87,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,7,NULL),('usage_events_20200429.log',1048585,1,133,133,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200429.log',1048585,1,139,139,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20200429.log',1048585,1,142,142,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,9,NULL),('usage_events_20200429.log',1048585,1,150,150,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200429.log',1048585,1,169,169,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200429.log',1048585,1,171,171,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200429.log',1048585,1,173,173,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200429.log',1048585,1,174,174,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200429.log',1048585,1,175,175,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200429.log',1048585,1,176,176,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200429.log',1048585,1,177,177,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200429.log',1048585,1,178,178,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200430.log',256,1,NULL,1,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200430.log',259,1,NULL,6,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200430.log',259,1,NULL,8,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200430.log',259,1,NULL,10,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200430.log',515,1,7,32,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200430.log',515,1,20,53,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200430.log',515,1,58,137,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200430.log',515,1,59,138,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200430.log',515,1,78,288,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200430.log',515,1,87,291,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,52),('usage_events_20200430.log',515,1,100,306,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200430.log',515,1,113,307,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200430.log',515,1,137,343,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200430.log',515,1,139,351,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200430.log',515,1,142,367,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,70),('usage_events_20200430.log',515,1,148,394,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20200430.log',515,1,150,407,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20200430.log',515,1,152,423,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200430.log',515,1,169,461,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200430.log',515,1,173,479,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200430.log',515,1,175,493,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200430.log',515,1,176,500,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200430.log',515,1,178,514,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200430.log',1048585,1,58,58,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200430.log',1048585,1,59,59,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200430.log',1048585,1,78,78,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200430.log',1048585,1,81,81,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200430.log',1048585,1,83,83,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200430.log',1048585,1,86,86,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200430.log',1048585,1,87,87,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200430.log',1048585,1,125,125,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200430.log',1048585,1,137,137,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200430.log',1048585,1,142,142,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200430.log',1048585,1,148,148,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200430.log',1048585,1,150,150,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200430.log',1048585,1,169,169,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200430.log',1048585,1,173,173,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200430.log',1048585,1,175,175,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200501.log',256,1,NULL,1,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200501.log',259,1,NULL,4,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200501.log',515,1,20,53,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200501.log',515,1,51,118,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,26),('usage_events_20200501.log',515,1,54,133,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200501.log',515,1,81,283,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200501.log',515,1,78,288,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200501.log',515,1,86,290,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200501.log',515,1,87,291,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200501.log',515,1,125,310,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200501.log',515,1,133,318,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200501.log',515,1,148,394,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200501.log',515,1,169,461,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200501.log',515,1,175,493,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200501.log',515,1,176,500,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200501.log',515,1,178,514,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200501.log',1048585,1,20,20,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200501.log',1048585,1,51,51,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200501.log',1048585,1,59,59,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200501.log',1048585,1,77,77,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200501.log',1048585,1,81,81,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200501.log',1048585,1,142,142,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200501.log',1048585,1,148,148,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200501.log',1048585,1,169,169,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200501.log',1048585,1,175,175,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200501.log',1048585,1,176,176,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200501.log',1048585,1,178,178,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200502.log',515,1,35,83,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,20),('usage_events_20200502.log',515,1,51,118,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200502.log',515,1,58,137,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200502.log',515,1,77,287,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200502.log',515,1,78,288,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200502.log',515,1,86,290,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200502.log',515,1,87,291,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20200502.log',515,1,89,293,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200502.log',515,1,125,310,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200502.log',515,1,139,351,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200502.log',515,1,142,367,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200502.log',515,1,151,414,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200502.log',515,1,173,479,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200502.log',515,1,175,493,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200502.log',515,1,176,500,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20200502.log',515,1,178,514,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20200502.log',1048585,1,20,20,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,2,NULL),('usage_events_20200502.log',1048585,1,35,35,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,3,NULL),('usage_events_20200502.log',1048585,1,51,51,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200502.log',1048585,1,58,58,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200502.log',1048585,1,83,83,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200502.log',1048585,1,87,87,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200502.log',1048585,1,89,89,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200502.log',1048585,1,139,139,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200502.log',1048585,1,142,142,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200502.log',1048585,1,175,175,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200502.log',1048585,1,178,178,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200503.log',256,1,NULL,1,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,1,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,2,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,3,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,4,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,5,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,6,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,7,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,8,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,9,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,10,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200503.log',259,1,NULL,11,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200503.log',515,1,1,3,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200503.log',515,1,49,116,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200503.log',515,1,56,135,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200503.log',515,1,58,137,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200503.log',515,1,78,288,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200503.log',515,1,87,291,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20200503.log',515,1,89,293,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200503.log',515,1,139,351,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200503.log',515,1,142,367,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200503.log',515,1,148,394,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200503.log',515,1,149,401,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200503.log',515,1,150,407,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200503.log',515,1,151,414,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200503.log',515,1,169,461,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200503.log',515,1,173,479,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200503.log',515,1,174,486,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200503.log',515,1,175,493,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200503.log',515,1,176,500,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200503.log',515,1,178,514,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200503.log',1048585,1,1,1,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200503.log',1048585,1,4,4,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200503.log',1048585,1,5,5,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200503.log',1048585,1,6,6,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200503.log',1048585,1,7,7,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200503.log',1048585,1,8,8,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200503.log',1048585,1,14,14,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200503.log',1048585,1,20,20,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200503.log',1048585,1,21,21,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200503.log',1048585,1,22,22,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200503.log',1048585,1,40,40,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200503.log',1048585,1,49,49,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200503.log',1048585,1,51,51,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200503.log',1048585,1,58,58,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200503.log',1048585,1,78,78,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200503.log',1048585,1,87,87,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200503.log',1048585,1,89,89,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200503.log',1048585,1,134,134,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200503.log',1048585,1,142,142,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200503.log',1048585,1,147,147,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200503.log',1048585,1,149,149,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200503.log',1048585,1,150,150,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200503.log',1048585,1,169,169,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200503.log',1048585,1,171,171,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200503.log',1048585,1,173,173,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200503.log',1048585,1,174,174,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200503.log',1048585,1,175,175,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200503.log',1048585,1,176,176,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200503.log',1048585,1,177,177,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200503.log',1048585,1,178,178,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200504.log',256,1,NULL,1,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200504.log',259,1,NULL,10,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200504.log',515,1,31,79,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20200504.log',515,1,33,81,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200504.log',515,1,49,116,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200504.log',515,1,58,137,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200504.log',515,1,81,283,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200504.log',515,1,82,284,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200504.log',515,1,78,288,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200504.log',515,1,84,289,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,50),('usage_events_20200504.log',515,1,87,291,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200504.log',515,1,90,294,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20200504.log',515,1,113,307,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20200504.log',515,1,115,309,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200504.log',515,1,136,336,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200504.log',515,1,142,367,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200504.log',515,1,147,387,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200504.log',515,1,149,401,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200504.log',515,1,151,414,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,76),('usage_events_20200504.log',515,1,152,423,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200504.log',515,1,169,461,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200504.log',515,1,173,479,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200504.log',515,1,175,493,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200504.log',515,1,176,500,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200504.log',1048585,1,49,49,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200504.log',1048585,1,50,50,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200504.log',1048585,1,59,59,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200504.log',1048585,1,78,78,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200504.log',1048585,1,81,81,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200504.log',1048585,1,82,82,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200504.log',1048585,1,90,90,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200504.log',1048585,1,115,115,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200504.log',1048585,1,147,147,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200504.log',1048585,1,149,149,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200504.log',1048585,1,151,151,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200504.log',1048585,1,175,175,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200504.log',1048585,1,176,176,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200505.log',256,1,NULL,1,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,1,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,2,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,3,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,4,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,5,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,6,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,7,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,8,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,9,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,10,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200505.log',259,1,NULL,11,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200505.log',515,1,1,3,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200505.log',515,1,51,118,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200505.log',515,1,58,137,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20200505.log',515,1,79,282,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200505.log',515,1,81,283,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200505.log',515,1,78,288,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200505.log',515,1,87,291,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200505.log',515,1,89,293,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200505.log',515,1,99,305,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20200505.log',515,1,115,309,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200505.log',515,1,137,343,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200505.log',515,1,139,351,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200505.log',515,1,141,361,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200505.log',515,1,147,387,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200505.log',515,1,148,394,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',9,1,259,10,73),('usage_events_20200505.log',515,1,149,401,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200505.log',515,1,169,461,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200505.log',515,1,171,470,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20200505.log',515,1,173,479,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200505.log',515,1,175,493,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200505.log',515,1,178,514,'20200505','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200505.log',1048585,1,1,1,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200505.log',1048585,1,4,4,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200505.log',1048585,1,5,5,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200505.log',1048585,1,6,6,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200505.log',1048585,1,7,7,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200505.log',1048585,1,8,8,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200505.log',1048585,1,14,14,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200505.log',1048585,1,20,20,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200505.log',1048585,1,21,21,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200505.log',1048585,1,22,22,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200505.log',1048585,1,40,40,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200505.log',1048585,1,51,51,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200505.log',1048585,1,58,58,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200505.log',1048585,1,59,59,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200505.log',1048585,1,78,78,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200505.log',1048585,1,79,79,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200505.log',1048585,1,81,81,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200505.log',1048585,1,87,87,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200505.log',1048585,1,89,89,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200505.log',1048585,1,137,137,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200505.log',1048585,1,141,141,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200505.log',1048585,1,147,147,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200505.log',1048585,1,148,148,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,10,NULL),('usage_events_20200505.log',1048585,1,169,169,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200505.log',1048585,1,171,171,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200505.log',1048585,1,173,173,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200505.log',1048585,1,174,174,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200505.log',1048585,1,175,175,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200505.log',1048585,1,176,176,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200505.log',1048585,1,177,177,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200505.log',1048585,1,178,178,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200506.log',515,1,20,53,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200506.log',515,1,33,81,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200506.log',515,1,49,116,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200506.log',515,1,53,120,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200506.log',515,1,58,137,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200506.log',515,1,78,288,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,49),('usage_events_20200506.log',515,1,87,291,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200506.log',515,1,89,293,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200506.log',515,1,113,307,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200506.log',515,1,115,309,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200506.log',515,1,137,343,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',8,1,259,9,67),('usage_events_20200506.log',515,1,141,361,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200506.log',515,1,148,394,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200506.log',515,1,149,401,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200506.log',515,1,150,407,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200506.log',515,1,169,461,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20200506.log',515,1,173,479,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200506.log',515,1,175,493,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200506.log',515,1,176,500,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200506.log',515,1,177,507,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200506.log',515,1,178,514,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20200506.log',1048585,1,8,8,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200506.log',1048585,1,53,53,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200506.log',1048585,1,58,58,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200506.log',1048585,1,78,78,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,6,NULL),('usage_events_20200506.log',1048585,1,82,82,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200506.log',1048585,1,87,87,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200506.log',1048585,1,115,115,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200506.log',1048585,1,137,137,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200506.log',1048585,1,150,150,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200506.log',1048585,1,169,169,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200506.log',1048585,1,173,173,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200506.log',1048585,1,177,177,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200507.log',259,1,NULL,11,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200507.log',515,1,31,79,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20200507.log',515,1,33,81,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20200507.log',515,1,49,116,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200507.log',515,1,51,118,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200507.log',515,1,56,135,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200507.log',515,1,78,288,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,49),('usage_events_20200507.log',515,1,87,291,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,52),('usage_events_20200507.log',515,1,141,361,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200507.log',515,1,142,367,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200507.log',515,1,148,394,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200507.log',515,1,149,401,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200507.log',515,1,173,479,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200507.log',515,1,175,493,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200507.log',515,1,177,507,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200507.log',515,1,178,514,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200507.log',1048585,1,33,33,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200507.log',1048585,1,56,56,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200507.log',1048585,1,78,78,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200507.log',1048585,1,87,87,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200507.log',1048585,1,141,141,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200507.log',1048585,1,149,149,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200507.log',1048585,1,169,169,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200507.log',1048585,1,175,175,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200507.log',1048585,1,176,176,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200507.log',1048585,1,177,177,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200507.log',1048585,1,178,178,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200508.log',256,1,NULL,1,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',21,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,1,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,2,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,3,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,4,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,5,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,6,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,7,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,8,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,9,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,10,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200508.log',259,1,NULL,11,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200508.log',515,1,1,3,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200508.log',515,1,19,52,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200508.log',515,1,20,53,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200508.log',515,1,51,118,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200508.log',515,1,56,135,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20200508.log',515,1,78,288,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,49),('usage_events_20200508.log',515,1,87,291,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200508.log',515,1,115,309,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200508.log',515,1,139,351,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200508.log',515,1,141,361,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200508.log',515,1,142,367,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200508.log',515,1,149,401,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200508.log',515,1,150,407,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200508.log',515,1,169,461,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200508.log',515,1,171,470,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200508.log',515,1,174,486,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200508.log',515,1,175,493,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200508.log',1048585,1,1,1,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200508.log',1048585,1,4,4,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200508.log',1048585,1,5,5,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200508.log',1048585,1,6,6,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200508.log',1048585,1,7,7,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200508.log',1048585,1,8,8,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200508.log',1048585,1,14,14,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200508.log',1048585,1,20,20,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200508.log',1048585,1,21,21,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200508.log',1048585,1,22,22,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200508.log',1048585,1,40,40,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200508.log',1048585,1,47,47,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200508.log',1048585,1,56,56,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200508.log',1048585,1,87,87,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200508.log',1048585,1,89,89,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200508.log',1048585,1,139,139,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200508.log',1048585,1,169,169,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200508.log',1048585,1,171,171,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200508.log',1048585,1,173,173,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200508.log',1048585,1,174,174,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200508.log',1048585,1,175,175,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200508.log',1048585,1,176,176,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200508.log',1048585,1,177,177,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200508.log',1048585,1,178,178,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200509.log',256,1,NULL,1,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200509.log',259,1,NULL,3,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200509.log',259,1,NULL,4,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200509.log',259,1,NULL,7,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200509.log',515,1,4,19,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20200509.log',515,1,5,30,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200509.log',515,1,33,81,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20200509.log',515,1,49,116,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200509.log',515,1,51,118,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200509.log',515,1,58,137,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200509.log',515,1,78,288,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,49),('usage_events_20200509.log',515,1,84,289,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200509.log',515,1,87,291,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200509.log',515,1,89,293,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200509.log',515,1,135,330,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200509.log',515,1,139,351,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200509.log',515,1,141,361,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200509.log',515,1,150,407,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200509.log',515,1,152,423,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200509.log',515,1,169,461,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200509.log',515,1,173,479,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200509.log',515,1,174,486,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,81),('usage_events_20200509.log',515,1,175,493,'20200509','202005',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,82),('usage_events_20200509.log',1048585,1,5,5,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200509.log',1048585,1,33,33,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200509.log',1048585,1,49,49,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200509.log',1048585,1,53,53,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200509.log',1048585,1,58,58,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200509.log',1048585,1,78,78,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200509.log',1048585,1,81,81,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200509.log',1048585,1,84,84,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200509.log',1048585,1,87,87,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200509.log',1048585,1,89,89,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200509.log',1048585,1,139,139,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200509.log',1048585,1,169,169,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200509.log',1048585,1,173,173,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200509.log',1048585,1,174,174,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200509.log',1048585,1,175,175,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200510.log',256,1,NULL,1,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200510.log',515,1,32,80,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200510.log',515,1,47,115,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200510.log',515,1,56,135,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200510.log',515,1,58,137,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200510.log',515,1,81,283,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200510.log',515,1,78,288,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,49),('usage_events_20200510.log',515,1,87,291,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200510.log',515,1,89,293,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200510.log',515,1,99,305,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200510.log',515,1,134,324,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200510.log',515,1,137,343,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200510.log',515,1,139,351,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200510.log',515,1,150,407,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200510.log',515,1,152,423,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200510.log',515,1,171,470,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200510.log',515,1,173,479,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200510.log',515,1,174,486,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200510.log',515,1,175,493,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200510.log',515,1,177,507,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200510.log',515,1,178,514,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200510.log',1048585,1,8,8,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200510.log',1048585,1,32,32,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200510.log',1048585,1,56,56,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200510.log',1048585,1,78,78,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20200510.log',1048585,1,81,81,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200510.log',1048585,1,87,87,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200510.log',1048585,1,137,137,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200510.log',1048585,1,171,171,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200510.log',1048585,1,173,173,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200510.log',1048585,1,174,174,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200510.log',1048585,1,178,178,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200511.log',256,1,NULL,1,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,1,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,2,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,3,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,4,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,5,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,6,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,7,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,8,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,9,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,10,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200511.log',259,1,NULL,11,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200511.log',515,1,1,3,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200511.log',515,1,51,118,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200511.log',515,1,54,133,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200511.log',515,1,58,137,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200511.log',515,1,85,281,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200511.log',515,1,77,287,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200511.log',515,1,78,288,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200511.log',515,1,87,291,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200511.log',515,1,89,293,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200511.log',515,1,99,305,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20200511.log',515,1,113,307,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200511.log',515,1,114,308,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200511.log',515,1,133,318,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200511.log',515,1,142,367,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200511.log',515,1,146,379,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200511.log',515,1,150,407,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200511.log',515,1,169,461,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200511.log',515,1,173,479,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200511.log',515,1,176,500,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200511.log',1048585,1,1,1,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200511.log',1048585,1,4,4,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200511.log',1048585,1,5,5,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200511.log',1048585,1,6,6,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200511.log',1048585,1,7,7,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200511.log',1048585,1,8,8,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200511.log',1048585,1,14,14,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200511.log',1048585,1,20,20,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200511.log',1048585,1,21,21,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200511.log',1048585,1,22,22,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200511.log',1048585,1,40,40,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200511.log',1048585,1,51,51,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200511.log',1048585,1,54,54,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200511.log',1048585,1,77,77,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200511.log',1048585,1,78,78,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200511.log',1048585,1,84,84,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200511.log',1048585,1,85,85,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200511.log',1048585,1,87,87,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200511.log',1048585,1,89,89,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200511.log',1048585,1,91,91,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200511.log',1048585,1,99,99,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200511.log',1048585,1,114,114,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200511.log',1048585,1,137,137,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200511.log',1048585,1,146,146,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200511.log',1048585,1,169,169,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200511.log',1048585,1,171,171,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200511.log',1048585,1,173,173,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200511.log',1048585,1,174,174,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200511.log',1048585,1,175,175,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200511.log',1048585,1,176,176,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200511.log',1048585,1,177,177,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200511.log',1048585,1,178,178,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200512.log',256,1,NULL,1,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20200512.log',259,1,NULL,7,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200512.log',515,1,19,52,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200512.log',515,1,47,115,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200512.log',515,1,49,116,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200512.log',515,1,58,137,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200512.log',515,1,78,288,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20200512.log',515,1,84,289,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200512.log',515,1,87,291,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200512.log',515,1,137,343,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200512.log',515,1,142,367,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200512.log',515,1,147,387,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200512.log',515,1,148,394,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20200512.log',515,1,149,401,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200512.log',515,1,152,423,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200512.log',515,1,171,470,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20200512.log',515,1,173,479,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200512.log',515,1,175,493,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200512.log',515,1,176,500,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200512.log',515,1,177,507,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200512.log',515,1,178,514,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200512.log',1048585,1,19,19,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200512.log',1048585,1,49,49,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200512.log',1048585,1,51,51,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200512.log',1048585,1,78,78,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20200512.log',1048585,1,86,86,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200512.log',1048585,1,87,87,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200512.log',1048585,1,88,88,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200512.log',1048585,1,137,137,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200512.log',1048585,1,148,148,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200512.log',1048585,1,171,171,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200512.log',1048585,1,173,173,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200512.log',1048585,1,175,175,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200512.log',1048585,1,176,176,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200512.log',1048585,1,178,178,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200513.log',256,1,NULL,1,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200513.log',259,1,NULL,11,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200513.log',515,1,5,30,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20200513.log',515,1,19,52,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200513.log',515,1,20,53,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200513.log',515,1,28,68,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20200513.log',515,1,51,118,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200513.log',515,1,58,137,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200513.log',515,1,76,286,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200513.log',515,1,78,288,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200513.log',515,1,87,291,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200513.log',515,1,89,293,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200513.log',515,1,135,330,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200513.log',515,1,137,343,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200513.log',515,1,139,351,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200513.log',515,1,146,379,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200513.log',515,1,148,394,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200513.log',515,1,149,401,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200513.log',515,1,169,461,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200513.log',515,1,171,470,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200513.log',515,1,173,479,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200513.log',515,1,176,500,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200513.log',515,1,177,507,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200513.log',515,1,178,514,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200513.log',1048585,1,5,5,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200513.log',1048585,1,20,20,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200513.log',1048585,1,32,32,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200513.log',1048585,1,50,50,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200513.log',1048585,1,58,58,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200513.log',1048585,1,76,76,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200513.log',1048585,1,78,78,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200513.log',1048585,1,87,87,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200513.log',1048585,1,146,146,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200513.log',1048585,1,149,149,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200513.log',1048585,1,169,169,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200513.log',1048585,1,175,175,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200513.log',1048585,1,176,176,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200513.log',1048585,1,177,177,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200514.log',256,1,NULL,1,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,1,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,2,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,3,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,4,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,5,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,6,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,7,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,8,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,9,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,10,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200514.log',259,1,NULL,11,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200514.log',515,1,1,3,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200514.log',515,1,14,51,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20200514.log',515,1,20,53,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200514.log',515,1,32,80,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200514.log',515,1,33,81,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200514.log',515,1,47,115,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200514.log',515,1,51,118,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200514.log',515,1,54,133,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200514.log',515,1,58,137,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200514.log',515,1,81,283,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200514.log',515,1,78,288,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200514.log',515,1,137,343,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200514.log',515,1,142,367,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200514.log',515,1,146,379,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200514.log',515,1,148,394,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200514.log',515,1,150,407,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200514.log',515,1,151,414,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200514.log',515,1,169,461,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200514.log',515,1,173,479,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200514.log',515,1,175,493,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200514.log',515,1,176,500,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200514.log',1048585,1,1,1,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200514.log',1048585,1,4,4,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200514.log',1048585,1,5,5,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200514.log',1048585,1,6,6,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200514.log',1048585,1,7,7,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200514.log',1048585,1,8,8,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200514.log',1048585,1,14,14,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200514.log',1048585,1,20,20,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200514.log',1048585,1,21,21,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200514.log',1048585,1,22,22,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200514.log',1048585,1,33,33,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20200514.log',1048585,1,40,40,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200514.log',1048585,1,47,47,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200514.log',1048585,1,54,54,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200514.log',1048585,1,58,58,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200514.log',1048585,1,78,78,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200514.log',1048585,1,81,81,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200514.log',1048585,1,137,137,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200514.log',1048585,1,142,142,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200514.log',1048585,1,146,146,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200514.log',1048585,1,147,147,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200514.log',1048585,1,150,150,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200514.log',1048585,1,151,151,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200514.log',1048585,1,169,169,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200514.log',1048585,1,171,171,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200514.log',1048585,1,173,173,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200514.log',1048585,1,174,174,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200514.log',1048585,1,175,175,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200514.log',1048585,1,176,176,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200514.log',1048585,1,177,177,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200514.log',1048585,1,178,178,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200515.log',259,1,NULL,11,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200515.log',515,1,7,32,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200515.log',515,1,19,52,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200515.log',515,1,20,53,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200515.log',515,1,47,115,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200515.log',515,1,85,281,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200515.log',515,1,78,288,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20200515.log',515,1,84,289,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200515.log',515,1,86,290,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200515.log',515,1,87,291,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,52),('usage_events_20200515.log',515,1,135,330,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200515.log',515,1,137,343,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200515.log',515,1,148,394,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200515.log',515,1,150,407,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200515.log',515,1,152,423,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200515.log',515,1,169,461,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200515.log',515,1,173,479,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200515.log',515,1,174,486,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200515.log',515,1,175,493,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200515.log',515,1,176,500,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200515.log',515,1,177,507,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200515.log',1048585,1,47,47,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200515.log',1048585,1,78,78,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200515.log',1048585,1,86,86,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200515.log',1048585,1,87,87,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200515.log',1048585,1,135,135,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200515.log',1048585,1,147,147,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200515.log',1048585,1,148,148,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200515.log',1048585,1,152,152,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200515.log',1048585,1,169,169,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200515.log',1048585,1,173,173,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200515.log',1048585,1,175,175,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200515.log',1048585,1,176,176,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200515.log',1048585,1,177,177,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200515.log',1048585,1,178,178,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200516.log',256,1,NULL,1,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200516.log',259,1,NULL,11,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200516.log',515,1,5,30,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200516.log',515,1,20,53,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200516.log',515,1,47,115,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200516.log',515,1,50,117,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200516.log',515,1,53,120,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200516.log',515,1,58,137,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200516.log',515,1,79,282,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200516.log',515,1,78,288,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200516.log',515,1,87,291,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20200516.log',515,1,99,305,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20200516.log',515,1,134,324,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200516.log',515,1,137,343,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200516.log',515,1,148,394,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200516.log',515,1,150,407,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200516.log',515,1,151,414,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200516.log',515,1,169,461,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200516.log',515,1,171,470,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200516.log',515,1,175,493,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200516.log',515,1,176,500,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200516.log',1048585,1,5,5,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200516.log',1048585,1,47,47,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200516.log',1048585,1,51,51,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200516.log',1048585,1,58,58,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200516.log',1048585,1,78,78,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200516.log',1048585,1,87,87,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200516.log',1048585,1,134,134,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200516.log',1048585,1,137,137,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200516.log',1048585,1,142,142,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20200516.log',1048585,1,146,146,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200516.log',1048585,1,148,148,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200516.log',1048585,1,150,150,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200516.log',1048585,1,151,151,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200516.log',1048585,1,169,169,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200516.log',1048585,1,171,171,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200516.log',1048585,1,176,176,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200518.log',256,1,NULL,1,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200518.log',259,1,NULL,5,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200518.log',515,1,50,117,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20200518.log',515,1,56,135,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200518.log',515,1,58,137,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200518.log',515,1,82,284,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200518.log',515,1,77,287,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200518.log',515,1,134,324,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200518.log',515,1,142,367,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200518.log',515,1,146,379,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200518.log',515,1,149,401,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200518.log',515,1,169,461,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200518.log',515,1,175,493,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200518.log',1048585,1,49,49,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200518.log',1048585,1,50,50,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200518.log',1048585,1,58,58,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200518.log',1048585,1,82,82,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200518.log',1048585,1,134,134,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200518.log',1048585,1,142,142,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200518.log',1048585,1,146,146,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200518.log',1048585,1,175,175,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200517.log',256,1,NULL,1,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,1,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,2,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,3,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,4,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,5,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,6,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,7,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,8,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,9,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,10,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200517.log',259,1,NULL,11,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200517.log',515,1,1,3,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200517.log',515,1,46,114,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20200517.log',515,1,49,116,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200517.log',515,1,56,135,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200517.log',515,1,58,137,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200517.log',515,1,81,283,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20200517.log',515,1,78,288,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200517.log',515,1,135,330,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200517.log',515,1,141,361,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200517.log',515,1,146,379,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200517.log',515,1,150,407,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200517.log',515,1,169,461,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200517.log',1048585,1,1,1,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200517.log',1048585,1,4,4,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200517.log',1048585,1,5,5,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200517.log',1048585,1,6,6,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200517.log',1048585,1,7,7,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200517.log',1048585,1,8,8,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200517.log',1048585,1,14,14,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200517.log',1048585,1,20,20,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200517.log',1048585,1,21,21,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200517.log',1048585,1,22,22,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200517.log',1048585,1,40,40,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200517.log',1048585,1,49,49,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200517.log',1048585,1,56,56,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200517.log',1048585,1,58,58,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200517.log',1048585,1,78,78,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200517.log',1048585,1,79,79,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200517.log',1048585,1,81,81,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200517.log',1048585,1,87,87,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200517.log',1048585,1,135,135,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200517.log',1048585,1,141,141,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200517.log',1048585,1,150,150,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200517.log',1048585,1,169,169,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200517.log',1048585,1,171,171,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200517.log',1048585,1,173,173,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200517.log',1048585,1,174,174,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200517.log',1048585,1,175,175,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200517.log',1048585,1,176,176,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200517.log',1048585,1,177,177,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200517.log',1048585,1,178,178,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200519.log',515,1,47,115,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200519.log',515,1,49,116,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200519.log',515,1,58,137,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200519.log',515,1,79,282,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200519.log',515,1,76,286,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200519.log',515,1,77,287,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200519.log',515,1,78,288,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200519.log',515,1,87,291,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200519.log',515,1,139,351,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200519.log',515,1,149,401,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200519.log',515,1,150,407,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200519.log',515,1,151,414,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200519.log',515,1,152,423,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200519.log',515,1,173,479,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200519.log',515,1,174,486,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200519.log',515,1,175,493,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200519.log',1048585,1,5,5,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200519.log',1048585,1,14,14,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200519.log',1048585,1,78,78,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200519.log',1048585,1,79,79,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200519.log',1048585,1,81,81,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200519.log',1048585,1,87,87,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200519.log',1048585,1,149,149,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200519.log',1048585,1,150,150,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200519.log',1048585,1,173,173,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200519.log',1048585,1,176,176,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200519.log',1048585,1,178,178,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200520.log',256,1,NULL,1,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,1,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,2,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,3,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,4,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,5,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,6,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,7,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,8,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,9,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,10,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200520.log',259,1,NULL,11,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200520.log',515,1,1,3,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200520.log',515,1,19,52,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200520.log',515,1,33,81,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200520.log',515,1,50,117,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200520.log',515,1,58,137,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200520.log',515,1,83,285,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200520.log',515,1,78,288,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200520.log',515,1,84,289,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200520.log',515,1,139,351,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200520.log',515,1,146,379,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200520.log',515,1,169,461,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200520.log',515,1,173,479,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200520.log',515,1,174,486,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200520.log',515,1,175,493,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200520.log',1048585,1,1,1,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200520.log',1048585,1,4,4,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200520.log',1048585,1,5,5,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200520.log',1048585,1,6,6,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200520.log',1048585,1,7,7,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200520.log',1048585,1,8,8,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200520.log',1048585,1,14,14,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200520.log',1048585,1,19,19,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200520.log',1048585,1,20,20,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200520.log',1048585,1,21,21,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200520.log',1048585,1,22,22,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200520.log',1048585,1,40,40,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200520.log',1048585,1,50,50,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200520.log',1048585,1,78,78,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200520.log',1048585,1,79,79,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200520.log',1048585,1,81,81,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200520.log',1048585,1,83,83,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200520.log',1048585,1,139,139,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200520.log',1048585,1,169,169,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200520.log',1048585,1,171,171,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200520.log',1048585,1,173,173,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200520.log',1048585,1,174,174,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200520.log',1048585,1,175,175,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200520.log',1048585,1,177,177,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200520.log',1048585,1,178,178,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200521.log',256,1,NULL,1,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200521.log',515,1,4,19,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200521.log',515,1,46,114,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200521.log',515,1,58,137,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200521.log',515,1,85,281,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200521.log',515,1,81,283,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200521.log',515,1,77,287,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200521.log',515,1,78,288,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200521.log',515,1,99,305,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200521.log',515,1,100,306,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200521.log',515,1,150,407,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200521.log',515,1,173,479,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200521.log',515,1,174,486,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200521.log',515,1,175,493,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200521.log',1048585,1,6,6,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200521.log',1048585,1,20,20,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200521.log',1048585,1,46,46,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200521.log',1048585,1,78,78,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200521.log',1048585,1,81,81,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200521.log',1048585,1,85,85,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200521.log',1048585,1,87,87,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200521.log',1048585,1,99,99,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200521.log',1048585,1,100,100,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200521.log',1048585,1,150,150,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200521.log',1048585,1,173,173,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200522.log',256,1,NULL,1,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200522.log',515,1,59,138,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20200522.log',515,1,76,286,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200522.log',515,1,78,288,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200522.log',515,1,171,470,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200522.log',515,1,173,479,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200522.log',515,1,176,500,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200522.log',1048585,1,51,51,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200522.log',1048585,1,78,78,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200522.log',1048585,1,139,139,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200522.log',1048585,1,171,171,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200522.log',1048585,1,176,176,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200523.log',256,1,NULL,1,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,1,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,2,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,3,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,4,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,5,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,6,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,7,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,8,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,9,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,10,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200523.log',259,1,NULL,11,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200523.log',515,1,1,3,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200523.log',515,1,56,135,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,31),('usage_events_20200523.log',515,1,58,137,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200523.log',515,1,78,288,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200523.log',515,1,87,291,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200523.log',515,1,146,379,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200523.log',515,1,150,407,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200523.log',515,1,169,461,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200523.log',515,1,175,493,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200523.log',515,1,177,507,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200523.log',515,1,178,514,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200523.log',1048585,1,1,1,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200523.log',1048585,1,4,4,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200523.log',1048585,1,5,5,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200523.log',1048585,1,6,6,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200523.log',1048585,1,7,7,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200523.log',1048585,1,8,8,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200523.log',1048585,1,14,14,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200523.log',1048585,1,20,20,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200523.log',1048585,1,21,21,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200523.log',1048585,1,22,22,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200523.log',1048585,1,40,40,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200523.log',1048585,1,56,56,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200523.log',1048585,1,87,87,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200523.log',1048585,1,146,146,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200523.log',1048585,1,148,148,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200523.log',1048585,1,150,150,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200523.log',1048585,1,169,169,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200523.log',1048585,1,171,171,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200523.log',1048585,1,173,173,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200523.log',1048585,1,174,174,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200523.log',1048585,1,175,175,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200523.log',1048585,1,176,176,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200523.log',1048585,1,177,177,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200523.log',1048585,1,178,178,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200524.log',256,1,NULL,1,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200524.log',259,1,NULL,10,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200524.log',515,1,19,52,'20200524','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200524.log',515,1,54,133,'20200524','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200524.log',515,1,78,288,'20200524','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200524.log',515,1,87,291,'20200524','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200524.log',515,1,146,379,'20200524','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200524.log',515,1,178,514,'20200524','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200524.log',1048585,1,19,19,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200524.log',1048585,1,78,78,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200524.log',1048585,1,87,87,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200524.log',1048585,1,148,148,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200524.log',1048585,1,178,178,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200525.log',256,1,NULL,1,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200525.log',515,1,85,281,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200525.log',515,1,100,306,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200525.log',515,1,137,343,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200525.log',515,1,148,394,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200525.log',1048585,1,59,59,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200525.log',1048585,1,100,100,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200525.log',1048585,1,173,173,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200526.log',256,1,NULL,1,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,1,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,2,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,3,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,4,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,5,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,6,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,7,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,8,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,9,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,10,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200526.log',259,1,NULL,11,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200526.log',515,1,1,3,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200526.log',515,1,81,283,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200526.log',515,1,78,288,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200526.log',515,1,86,290,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200526.log',515,1,169,461,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200526.log',515,1,173,479,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200526.log',515,1,176,500,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200526.log',515,1,177,507,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200526.log',515,1,178,514,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200526.log',1048585,1,1,1,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200526.log',1048585,1,4,4,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200526.log',1048585,1,5,5,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200526.log',1048585,1,6,6,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200526.log',1048585,1,7,7,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200526.log',1048585,1,8,8,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200526.log',1048585,1,14,14,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200526.log',1048585,1,20,20,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200526.log',1048585,1,21,21,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200526.log',1048585,1,22,22,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200526.log',1048585,1,40,40,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200526.log',1048585,1,56,56,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200526.log',1048585,1,78,78,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200526.log',1048585,1,79,79,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200526.log',1048585,1,81,81,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200526.log',1048585,1,86,86,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200526.log',1048585,1,137,137,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200526.log',1048585,1,169,169,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200526.log',1048585,1,171,171,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200526.log',1048585,1,173,173,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20200526.log',1048585,1,174,174,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200526.log',1048585,1,175,175,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200526.log',1048585,1,176,176,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200526.log',1048585,1,177,177,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200526.log',1048585,1,178,178,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200527.log',256,1,NULL,1,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20200527.log',259,1,NULL,5,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200527.log',259,1,NULL,7,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200527.log',259,1,NULL,8,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200527.log',259,1,NULL,9,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200527.log',259,1,NULL,10,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200527.log',259,1,NULL,11,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200527.log',515,1,32,80,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200527.log',515,1,81,283,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200527.log',515,1,76,286,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200527.log',515,1,87,291,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200527.log',515,1,152,423,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200527.log',515,1,169,461,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20200527.log',515,1,175,493,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200527.log',515,1,177,507,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200527.log',1048585,1,32,32,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200527.log',1048585,1,76,76,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200527.log',1048585,1,81,81,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200527.log',1048585,1,85,85,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200527.log',1048585,1,87,87,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200527.log',1048585,1,152,152,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200527.log',1048585,1,169,169,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200527.log',1048585,1,171,171,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200527.log',1048585,1,173,173,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200527.log',1048585,1,174,174,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200527.log',1048585,1,175,175,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200527.log',1048585,1,176,176,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200527.log',1048585,1,177,177,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200527.log',1048585,1,178,178,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200528.log',256,1,NULL,1,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200528.log',259,1,NULL,7,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200528.log',515,1,49,116,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200528.log',515,1,81,283,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200528.log',515,1,78,288,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200528.log',515,1,87,291,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200528.log',515,1,99,305,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200528.log',515,1,113,307,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200528.log',515,1,137,343,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200528.log',515,1,146,379,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200528.log',515,1,150,407,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200528.log',515,1,169,461,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200528.log',515,1,173,479,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200528.log',515,1,175,493,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200528.log',515,1,178,514,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200528.log',1048585,1,49,49,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200528.log',1048585,1,87,87,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200528.log',1048585,1,137,137,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200528.log',1048585,1,142,142,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200528.log',1048585,1,151,151,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200528.log',1048585,1,169,169,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200528.log',1048585,1,173,173,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200528.log',1048585,1,175,175,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200528.log',1048585,1,178,178,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200529.log',256,1,NULL,1,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200529.log',259,1,NULL,4,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200529.log',259,1,NULL,7,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200529.log',259,1,NULL,10,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200529.log',259,1,NULL,11,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200529.log',515,1,35,83,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200529.log',515,1,46,114,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200529.log',515,1,49,116,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200529.log',515,1,58,137,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200529.log',515,1,79,282,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200529.log',515,1,89,293,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200529.log',515,1,137,343,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200529.log',515,1,146,379,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,71),('usage_events_20200529.log',515,1,173,479,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200529.log',515,1,175,493,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200529.log',515,1,176,500,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20200529.log',1048585,1,49,49,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200529.log',1048585,1,51,51,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200529.log',1048585,1,79,79,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200529.log',1048585,1,146,146,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,10,NULL),('usage_events_20200529.log',1048585,1,176,176,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200530.log',256,1,NULL,1,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200530.log',259,1,NULL,1,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200530.log',259,1,NULL,2,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200530.log',259,1,NULL,7,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200530.log',259,1,NULL,11,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200530.log',515,1,20,53,'20200530','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200530.log',515,1,58,137,'20200530','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200530.log',515,1,82,284,'20200530','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200530.log',515,1,135,330,'20200530','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200530.log',515,1,169,461,'20200530','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200530.log',515,1,174,486,'20200530','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200530.log',1048585,1,4,4,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200530.log',1048585,1,6,6,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200530.log',1048585,1,84,84,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200530.log',1048585,1,150,150,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200530.log',1048585,1,173,173,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200530.log',1048585,1,174,174,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200530.log',1048585,1,175,175,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200530.log',1048585,1,178,178,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200531.log',256,1,NULL,1,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200531.log',259,1,NULL,4,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200531.log',259,1,NULL,7,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200531.log',259,1,NULL,9,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200531.log',259,1,NULL,10,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200531.log',259,1,NULL,11,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200531.log',515,1,49,116,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200531.log',515,1,54,133,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200531.log',515,1,86,290,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200531.log',515,1,115,309,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200531.log',515,1,152,423,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,77),('usage_events_20200531.log',515,1,169,461,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200531.log',515,1,171,470,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200531.log',515,1,178,514,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200531.log',1048585,1,49,49,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200531.log',1048585,1,54,54,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200531.log',1048585,1,115,115,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200531.log',1048585,1,152,152,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200531.log',1048585,1,169,169,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200531.log',1048585,1,178,178,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200601.log',256,1,NULL,1,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,1,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,2,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,3,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,4,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,5,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,6,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,7,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,8,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,9,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,10,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200601.log',259,1,NULL,11,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200601.log',515,1,1,3,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200601.log',515,1,49,116,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200601.log',515,1,53,120,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200601.log',515,1,58,137,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200601.log',515,1,59,138,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200601.log',515,1,78,288,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200601.log',515,1,115,309,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200601.log',515,1,169,461,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200601.log',515,1,176,500,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200601.log',1048585,1,1,1,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200601.log',1048585,1,4,4,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200601.log',1048585,1,5,5,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200601.log',1048585,1,6,6,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200601.log',1048585,1,7,7,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200601.log',1048585,1,8,8,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200601.log',1048585,1,14,14,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200601.log',1048585,1,20,20,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200601.log',1048585,1,21,21,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200601.log',1048585,1,22,22,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200601.log',1048585,1,40,40,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200601.log',1048585,1,53,53,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200601.log',1048585,1,58,58,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200601.log',1048585,1,115,115,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200601.log',1048585,1,152,152,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200601.log',1048585,1,169,169,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200601.log',1048585,1,171,171,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200601.log',1048585,1,173,173,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200601.log',1048585,1,174,174,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200601.log',1048585,1,175,175,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200601.log',1048585,1,176,176,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200601.log',1048585,1,177,177,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200601.log',1048585,1,178,178,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200602.log',256,1,NULL,1,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200602.log',259,1,NULL,1,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200602.log',259,1,NULL,2,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200602.log',515,1,1,3,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,1),('usage_events_20200602.log',515,1,22,57,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20200602.log',515,1,35,83,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200602.log',515,1,53,120,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200602.log',515,1,56,135,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200602.log',515,1,81,283,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200602.log',515,1,78,288,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200602.log',515,1,86,290,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200602.log',515,1,152,423,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200602.log',515,1,169,461,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200602.log',515,1,171,470,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20200602.log',515,1,173,479,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200602.log',515,1,174,486,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200602.log',515,1,175,493,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200602.log',515,1,176,500,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200602.log',515,1,177,507,'20200602','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200602.log',1048585,1,1,1,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200602.log',1048585,1,6,6,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200602.log',1048585,1,22,22,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200602.log',1048585,1,56,56,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200602.log',1048585,1,76,76,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200602.log',1048585,1,81,81,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200602.log',1048585,1,86,86,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200602.log',1048585,1,142,142,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200602.log',1048585,1,150,150,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200602.log',1048585,1,152,152,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200602.log',1048585,1,169,169,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200602.log',1048585,1,173,173,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200602.log',1048585,1,174,174,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200602.log',1048585,1,176,176,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200603.log',256,1,NULL,1,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200603.log',259,1,NULL,5,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200603.log',515,1,50,117,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200603.log',515,1,58,137,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200603.log',515,1,78,288,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200603.log',515,1,87,291,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200603.log',515,1,113,307,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200603.log',515,1,148,394,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200603.log',515,1,149,401,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200603.log',515,1,152,423,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200603.log',515,1,169,461,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200603.log',515,1,171,470,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200603.log',515,1,173,479,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200603.log',515,1,175,493,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200603.log',515,1,176,500,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200603.log',515,1,177,507,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200603.log',1048585,1,58,58,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200603.log',1048585,1,148,148,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200603.log',1048585,1,149,149,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200603.log',1048585,1,152,152,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200603.log',1048585,1,173,173,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200603.log',1048585,1,175,175,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200604.log',256,1,NULL,1,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200604.log',259,1,NULL,1,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200604.log',259,1,NULL,7,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200604.log',515,1,52,119,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20200604.log',515,1,78,288,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20200604.log',515,1,84,289,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200604.log',515,1,86,290,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200604.log',515,1,87,291,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200604.log',515,1,99,305,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200604.log',515,1,137,343,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200604.log',515,1,146,379,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200604.log',515,1,148,394,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200604.log',515,1,149,401,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200604.log',515,1,150,407,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200604.log',515,1,152,423,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20200604.log',515,1,171,470,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20200604.log',515,1,173,479,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200604.log',515,1,176,500,'20200604','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200604.log',1048585,1,5,5,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200604.log',1048585,1,8,8,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200604.log',1048585,1,32,32,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200604.log',1048585,1,78,78,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200604.log',1048585,1,84,84,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200604.log',1048585,1,142,142,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200604.log',1048585,1,148,148,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200604.log',1048585,1,150,150,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200604.log',1048585,1,171,171,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200604.log',1048585,1,173,173,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200604.log',1048585,1,174,174,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200604.log',1048585,1,176,176,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200605.log',256,1,NULL,1,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,1,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,2,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,3,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,4,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,5,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,6,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,7,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,8,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,9,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,10,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200605.log',259,1,NULL,11,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200605.log',515,1,1,3,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200605.log',515,1,49,116,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200605.log',515,1,58,137,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200605.log',515,1,79,282,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200605.log',515,1,81,283,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200605.log',515,1,78,288,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200605.log',515,1,89,293,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,54),('usage_events_20200605.log',515,1,139,351,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200605.log',515,1,152,423,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200605.log',515,1,169,461,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200605.log',515,1,171,470,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20200605.log',515,1,173,479,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200605.log',515,1,175,493,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200605.log',1048585,1,1,1,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200605.log',1048585,1,4,4,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200605.log',1048585,1,5,5,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200605.log',1048585,1,6,6,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200605.log',1048585,1,7,7,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200605.log',1048585,1,8,8,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200605.log',1048585,1,14,14,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200605.log',1048585,1,19,19,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200605.log',1048585,1,20,20,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200605.log',1048585,1,21,21,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200605.log',1048585,1,22,22,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200605.log',1048585,1,40,40,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200605.log',1048585,1,49,49,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200605.log',1048585,1,58,58,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200605.log',1048585,1,79,79,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200605.log',1048585,1,81,81,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200605.log',1048585,1,139,139,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200605.log',1048585,1,169,169,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200605.log',1048585,1,171,171,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200605.log',1048585,1,173,173,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200605.log',1048585,1,174,174,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200605.log',1048585,1,175,175,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200605.log',1048585,1,176,176,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200605.log',1048585,1,177,177,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200605.log',1048585,1,178,178,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200606.log',256,1,NULL,1,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200606.log',515,1,20,53,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200606.log',515,1,34,82,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20200606.log',515,1,47,115,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200606.log',515,1,51,118,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200606.log',515,1,78,288,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200606.log',515,1,89,293,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200606.log',515,1,99,305,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200606.log',515,1,100,306,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200606.log',515,1,137,343,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200606.log',515,1,139,351,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200606.log',515,1,146,379,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200606.log',515,1,149,401,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200606.log',515,1,169,461,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200606.log',515,1,173,479,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200606.log',515,1,174,486,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200606.log',515,1,175,493,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200606.log',515,1,177,507,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200606.log',515,1,178,514,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200606.log',1048585,1,34,34,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200606.log',1048585,1,47,47,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200606.log',1048585,1,78,78,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200606.log',1048585,1,100,100,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200606.log',1048585,1,139,139,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200606.log',1048585,1,149,149,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200606.log',1048585,1,151,151,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200606.log',1048585,1,175,175,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200607.log',515,1,19,52,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20200607.log',515,1,49,116,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200607.log',515,1,56,135,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200607.log',515,1,84,289,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200607.log',515,1,89,293,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200607.log',515,1,99,305,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200607.log',515,1,133,318,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200607.log',515,1,137,343,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,67),('usage_events_20200607.log',515,1,147,387,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200607.log',515,1,149,401,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200607.log',515,1,152,423,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200607.log',515,1,169,461,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200607.log',515,1,173,479,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200607.log',515,1,175,493,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200607.log',515,1,178,514,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200607.log',1048585,1,19,19,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200607.log',1048585,1,49,49,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200607.log',1048585,1,56,56,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200607.log',1048585,1,84,84,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200607.log',1048585,1,89,89,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200607.log',1048585,1,125,125,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200607.log',1048585,1,133,133,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200607.log',1048585,1,137,137,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200607.log',1048585,1,147,147,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200607.log',1048585,1,149,149,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200607.log',1048585,1,169,169,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200607.log',1048585,1,173,173,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200608.log',256,1,NULL,1,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,1,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,2,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,3,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,4,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,5,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,6,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,7,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,8,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,9,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,10,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200608.log',259,1,NULL,11,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200608.log',515,1,1,3,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200608.log',515,1,5,30,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20200608.log',515,1,8,33,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200608.log',515,1,19,52,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200608.log',515,1,51,118,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200608.log',515,1,58,137,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200608.log',515,1,78,288,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200608.log',515,1,114,308,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200608.log',515,1,137,343,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200608.log',515,1,139,351,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200608.log',515,1,142,367,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200608.log',515,1,148,394,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200608.log',515,1,150,407,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200608.log',515,1,151,414,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200608.log',515,1,152,423,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200608.log',515,1,169,461,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200608.log',515,1,174,486,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200608.log',515,1,175,493,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200608.log',1048585,1,1,1,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200608.log',1048585,1,4,4,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200608.log',1048585,1,5,5,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200608.log',1048585,1,6,6,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200608.log',1048585,1,7,7,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200608.log',1048585,1,8,8,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200608.log',1048585,1,14,14,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200608.log',1048585,1,20,20,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200608.log',1048585,1,21,21,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200608.log',1048585,1,22,22,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200608.log',1048585,1,40,40,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200608.log',1048585,1,51,51,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200608.log',1048585,1,58,58,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200608.log',1048585,1,134,134,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200608.log',1048585,1,137,137,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200608.log',1048585,1,139,139,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200608.log',1048585,1,142,142,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200608.log',1048585,1,148,148,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200608.log',1048585,1,150,150,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200608.log',1048585,1,151,151,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200608.log',1048585,1,169,169,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200608.log',1048585,1,171,171,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200608.log',1048585,1,173,173,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200608.log',1048585,1,174,174,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200608.log',1048585,1,175,175,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200608.log',1048585,1,176,176,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200608.log',1048585,1,177,177,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200608.log',1048585,1,178,178,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200609.log',515,1,4,19,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200609.log',515,1,5,30,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200609.log',515,1,7,32,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200609.log',515,1,34,82,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200609.log',515,1,49,116,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200609.log',515,1,51,118,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200609.log',515,1,58,137,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200609.log',515,1,78,288,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200609.log',515,1,86,290,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200609.log',515,1,135,330,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200609.log',515,1,137,343,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200609.log',515,1,147,387,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200609.log',515,1,149,401,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200609.log',515,1,150,407,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200609.log',515,1,169,461,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20200609.log',515,1,174,486,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200609.log',515,1,175,493,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200609.log',515,1,176,500,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200609.log',515,1,177,507,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200609.log',1048585,1,4,4,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200609.log',1048585,1,49,49,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200609.log',1048585,1,51,51,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200609.log',1048585,1,58,58,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200609.log',1048585,1,86,86,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200609.log',1048585,1,135,135,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200609.log',1048585,1,152,152,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200609.log',1048585,1,169,169,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200609.log',1048585,1,173,173,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200609.log',1048585,1,175,175,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200610.log',515,1,5,30,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200610.log',515,1,6,31,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20200610.log',515,1,54,133,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200610.log',515,1,87,291,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20200610.log',515,1,89,293,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200610.log',515,1,137,343,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200610.log',515,1,142,367,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200610.log',515,1,149,401,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200610.log',515,1,152,423,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200610.log',515,1,169,461,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200610.log',515,1,175,493,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200610.log',515,1,176,500,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200610.log',1048585,1,5,5,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200610.log',1048585,1,34,34,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200610.log',1048585,1,54,54,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200610.log',1048585,1,58,58,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200610.log',1048585,1,77,77,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200610.log',1048585,1,87,87,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200610.log',1048585,1,89,89,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200610.log',1048585,1,135,135,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200610.log',1048585,1,152,152,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200610.log',1048585,1,169,169,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200610.log',1048585,1,173,173,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200610.log',1048585,1,175,175,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200610.log',1048585,1,176,176,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200611.log',256,1,NULL,1,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,1,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,2,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,4,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,5,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,7,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,9,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,10,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200611.log',259,1,NULL,11,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200611.log',515,1,53,120,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200611.log',515,1,54,133,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20200611.log',515,1,78,288,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20200611.log',515,1,87,291,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200611.log',515,1,99,305,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200611.log',515,1,134,324,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200611.log',515,1,135,330,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,65),('usage_events_20200611.log',515,1,141,361,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200611.log',515,1,142,367,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200611.log',515,1,148,394,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200611.log',515,1,152,423,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200611.log',515,1,169,461,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200611.log',515,1,173,479,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200611.log',515,1,175,493,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200611.log',515,1,178,514,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200611.log',1048585,1,4,4,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200611.log',1048585,1,6,6,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200611.log',1048585,1,8,8,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200611.log',1048585,1,14,14,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200611.log',1048585,1,20,20,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200611.log',1048585,1,50,50,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200611.log',1048585,1,53,53,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200611.log',1048585,1,78,78,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200611.log',1048585,1,87,87,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200611.log',1048585,1,134,134,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200611.log',1048585,1,135,135,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20200611.log',1048585,1,139,139,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20200611.log',1048585,1,141,141,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200611.log',1048585,1,148,148,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200611.log',1048585,1,169,169,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200611.log',1048585,1,173,173,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200611.log',1048585,1,174,174,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200611.log',1048585,1,175,175,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200611.log',1048585,1,176,176,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200611.log',1048585,1,177,177,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200611.log',1048585,1,178,178,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200612.log',515,1,5,30,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,4),('usage_events_20200612.log',515,1,40,94,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200612.log',515,1,51,118,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200612.log',515,1,59,138,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20200612.log',515,1,82,284,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200612.log',515,1,78,288,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20200612.log',515,1,86,290,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200612.log',515,1,89,293,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200612.log',515,1,137,343,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,67),('usage_events_20200612.log',515,1,142,367,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200612.log',515,1,150,407,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200612.log',515,1,169,461,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200612.log',515,1,173,479,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200612.log',515,1,174,486,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200612.log',515,1,175,493,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200612.log',515,1,176,500,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200612.log',1048585,1,51,51,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200612.log',1048585,1,78,78,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200612.log',1048585,1,137,137,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200612.log',1048585,1,148,148,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200612.log',1048585,1,150,150,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200612.log',1048585,1,169,169,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200612.log',1048585,1,173,173,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200612.log',1048585,1,178,178,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200613.log',256,1,NULL,1,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200613.log',259,1,NULL,4,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200613.log',259,1,NULL,10,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200613.log',259,1,NULL,11,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200613.log',515,1,20,53,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200613.log',515,1,49,116,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200613.log',515,1,51,118,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200613.log',515,1,85,281,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200613.log',515,1,81,283,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200613.log',515,1,78,288,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200613.log',515,1,87,291,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200613.log',515,1,91,295,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200613.log',515,1,169,461,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200613.log',515,1,173,479,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200613.log',515,1,176,500,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200613.log',515,1,177,507,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200613.log',515,1,178,514,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200613.log',1048585,1,49,49,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200613.log',1048585,1,51,51,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200613.log',1048585,1,78,78,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200613.log',1048585,1,87,87,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200613.log',1048585,1,148,148,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200613.log',1048585,1,151,151,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200613.log',1048585,1,169,169,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200613.log',1048585,1,171,171,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200613.log',1048585,1,173,173,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200613.log',1048585,1,175,175,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200614.log',256,1,NULL,1,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,1,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,2,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,3,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,4,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,5,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,6,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,7,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,8,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,9,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,10,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200614.log',259,1,NULL,11,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200614.log',515,1,1,3,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200614.log',515,1,19,52,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200614.log',515,1,49,116,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200614.log',515,1,51,118,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200614.log',515,1,58,137,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200614.log',515,1,78,288,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200614.log',515,1,91,295,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200614.log',515,1,137,343,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200614.log',515,1,148,394,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200614.log',515,1,149,401,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200614.log',515,1,150,407,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200614.log',515,1,152,423,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200614.log',515,1,169,461,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200614.log',515,1,173,479,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200614.log',515,1,175,493,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200614.log',515,1,176,500,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200614.log',1048585,1,1,1,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200614.log',1048585,1,4,4,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200614.log',1048585,1,5,5,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200614.log',1048585,1,6,6,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200614.log',1048585,1,7,7,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200614.log',1048585,1,8,8,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200614.log',1048585,1,14,14,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200614.log',1048585,1,19,19,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200614.log',1048585,1,20,20,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200614.log',1048585,1,21,21,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200614.log',1048585,1,22,22,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200614.log',1048585,1,40,40,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200614.log',1048585,1,46,46,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200614.log',1048585,1,49,49,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200614.log',1048585,1,58,58,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200614.log',1048585,1,78,78,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200614.log',1048585,1,137,137,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200614.log',1048585,1,148,148,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200614.log',1048585,1,169,169,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200614.log',1048585,1,171,171,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200614.log',1048585,1,173,173,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200614.log',1048585,1,174,174,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200614.log',1048585,1,175,175,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200614.log',1048585,1,176,176,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200614.log',1048585,1,177,177,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200614.log',1048585,1,178,178,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200615.log',256,1,NULL,1,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200615.log',259,1,NULL,6,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200615.log',259,1,NULL,7,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200615.log',259,1,NULL,8,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200615.log',515,1,4,19,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200615.log',515,1,20,53,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200615.log',515,1,53,120,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200615.log',515,1,56,135,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200615.log',515,1,79,282,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200615.log',515,1,81,283,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200615.log',515,1,82,284,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20200615.log',515,1,78,288,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20200615.log',515,1,99,305,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200615.log',515,1,113,307,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200615.log',515,1,135,330,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200615.log',515,1,139,351,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200615.log',515,1,142,367,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200615.log',515,1,149,401,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200615.log',515,1,150,407,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200615.log',515,1,169,461,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200615.log',515,1,173,479,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200615.log',515,1,175,493,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200615.log',515,1,176,500,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200615.log',515,1,177,507,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200615.log',1048585,1,4,4,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200615.log',1048585,1,20,20,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200615.log',1048585,1,53,53,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200615.log',1048585,1,78,78,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20200615.log',1048585,1,81,81,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200615.log',1048585,1,82,82,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200615.log',1048585,1,87,87,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200615.log',1048585,1,135,135,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200615.log',1048585,1,137,137,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200615.log',1048585,1,142,142,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200615.log',1048585,1,148,148,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200615.log',1048585,1,149,149,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200615.log',1048585,1,150,150,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200615.log',1048585,1,169,169,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200615.log',1048585,1,175,175,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200615.log',1048585,1,176,176,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200615.log',1048585,1,177,177,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200616.log',256,1,NULL,1,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200616.log',259,1,NULL,7,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200616.log',515,1,32,80,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200616.log',515,1,53,120,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200616.log',515,1,58,137,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200616.log',515,1,81,283,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200616.log',515,1,78,288,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200616.log',515,1,146,379,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200616.log',515,1,149,401,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200616.log',515,1,169,461,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200616.log',515,1,175,493,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200616.log',515,1,176,500,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200616.log',515,1,177,507,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20200616.log',515,1,178,514,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200616.log',1048585,1,32,32,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200616.log',1048585,1,47,47,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200616.log',1048585,1,51,51,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200616.log',1048585,1,78,78,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200616.log',1048585,1,81,81,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200616.log',1048585,1,169,169,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200616.log',1048585,1,173,173,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200616.log',1048585,1,177,177,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,11,NULL),('usage_events_20200616.log',1048585,1,178,178,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200617.log',256,1,NULL,1,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,1,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,2,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,3,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,4,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,5,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,6,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,7,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,8,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,9,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,10,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200617.log',259,1,NULL,11,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200617.log',515,1,1,3,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200617.log',515,1,47,115,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20200617.log',515,1,49,116,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20200617.log',515,1,51,118,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200617.log',515,1,81,283,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200617.log',515,1,89,293,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200617.log',515,1,100,306,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200617.log',515,1,137,343,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200617.log',515,1,139,351,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200617.log',515,1,151,414,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200617.log',515,1,169,461,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200617.log',515,1,173,479,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200617.log',515,1,175,493,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200617.log',515,1,176,500,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200617.log',515,1,177,507,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,84),('usage_events_20200617.log',515,1,178,514,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200617.log',1048585,1,1,1,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200617.log',1048585,1,4,4,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200617.log',1048585,1,5,5,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200617.log',1048585,1,6,6,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200617.log',1048585,1,7,7,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200617.log',1048585,1,8,8,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200617.log',1048585,1,14,14,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200617.log',1048585,1,20,20,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200617.log',1048585,1,21,21,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200617.log',1048585,1,22,22,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200617.log',1048585,1,40,40,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200617.log',1048585,1,47,47,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200617.log',1048585,1,78,78,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200617.log',1048585,1,81,81,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200617.log',1048585,1,87,87,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200617.log',1048585,1,137,137,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200617.log',1048585,1,151,151,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200617.log',1048585,1,169,169,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200617.log',1048585,1,171,171,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200617.log',1048585,1,173,173,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200617.log',1048585,1,174,174,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200617.log',1048585,1,175,175,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200617.log',1048585,1,176,176,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200617.log',1048585,1,177,177,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20200617.log',1048585,1,178,178,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200618.log',259,1,NULL,6,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200618.log',259,1,NULL,7,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200618.log',515,1,33,81,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200618.log',515,1,49,116,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200618.log',515,1,77,287,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200618.log',515,1,78,288,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200618.log',515,1,115,309,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200618.log',515,1,151,414,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200618.log',515,1,169,461,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200618.log',515,1,175,493,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200618.log',515,1,176,500,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200618.log',515,1,177,507,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200618.log',1048585,1,58,58,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200618.log',1048585,1,77,77,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200618.log',1048585,1,78,78,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20200618.log',1048585,1,169,169,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200618.log',1048585,1,175,175,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200618.log',1048585,1,176,176,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200618.log',1048585,1,177,177,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200619.log',256,1,NULL,1,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200619.log',259,1,NULL,10,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200619.log',259,1,NULL,11,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200619.log',515,1,4,19,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20200619.log',515,1,52,119,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,27),('usage_events_20200619.log',515,1,53,120,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200619.log',515,1,85,281,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200619.log',515,1,77,287,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200619.log',515,1,78,288,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20200619.log',515,1,86,290,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200619.log',515,1,89,293,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20200619.log',515,1,90,294,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20200619.log',515,1,139,351,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,68),('usage_events_20200619.log',515,1,142,367,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200619.log',515,1,148,394,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200619.log',515,1,152,423,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200619.log',515,1,169,461,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200619.log',515,1,173,479,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200619.log',515,1,175,493,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200619.log',515,1,177,507,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200619.log',515,1,178,514,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200619.log',1048585,1,4,4,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200619.log',1048585,1,34,34,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200619.log',1048585,1,52,52,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200619.log',1048585,1,59,59,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200619.log',1048585,1,78,78,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20200619.log',1048585,1,85,85,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200619.log',1048585,1,86,86,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200619.log',1048585,1,89,89,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200619.log',1048585,1,90,90,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200619.log',1048585,1,139,139,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200619.log',1048585,1,152,152,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200619.log',1048585,1,169,169,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200619.log',1048585,1,173,173,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20200619.log',1048585,1,175,175,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200619.log',1048585,1,176,176,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200619.log',1048585,1,177,177,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200620.log',256,1,NULL,1,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,1,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,2,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,3,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,4,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,5,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,6,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,7,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,8,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,9,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,10,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200620.log',259,1,NULL,11,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200620.log',515,1,1,3,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200620.log',515,1,4,19,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20200620.log',515,1,58,137,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200620.log',515,1,59,138,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200620.log',515,1,77,287,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200620.log',515,1,78,288,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20200620.log',515,1,89,293,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20200620.log',515,1,114,308,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200620.log',515,1,135,330,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200620.log',515,1,139,351,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200620.log',515,1,141,361,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200620.log',515,1,149,401,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200620.log',515,1,150,407,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200620.log',515,1,151,414,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200620.log',515,1,169,461,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200620.log',515,1,173,479,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200620.log',515,1,175,493,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200620.log',1048585,1,1,1,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200620.log',1048585,1,4,4,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200620.log',1048585,1,5,5,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200620.log',1048585,1,6,6,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200620.log',1048585,1,7,7,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200620.log',1048585,1,8,8,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200620.log',1048585,1,14,14,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200620.log',1048585,1,20,20,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200620.log',1048585,1,21,21,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200620.log',1048585,1,22,22,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200620.log',1048585,1,40,40,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200620.log',1048585,1,78,78,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200620.log',1048585,1,81,81,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200620.log',1048585,1,114,114,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200620.log',1048585,1,135,135,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200620.log',1048585,1,149,149,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200620.log',1048585,1,150,150,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200620.log',1048585,1,151,151,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200620.log',1048585,1,169,169,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200620.log',1048585,1,171,171,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200620.log',1048585,1,173,173,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200620.log',1048585,1,174,174,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200620.log',1048585,1,175,175,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200620.log',1048585,1,176,176,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200620.log',1048585,1,177,177,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200620.log',1048585,1,178,178,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200621.log',256,1,NULL,1,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200621.log',515,1,47,115,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200621.log',515,1,55,134,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20200621.log',515,1,85,281,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200621.log',515,1,81,283,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200621.log',515,1,76,286,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200621.log',515,1,78,288,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200621.log',515,1,86,290,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200621.log',515,1,89,293,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200621.log',515,1,133,318,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200621.log',515,1,148,394,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200621.log',515,1,149,401,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200621.log',515,1,169,461,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200621.log',515,1,173,479,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200621.log',515,1,176,500,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200621.log',1048585,1,55,55,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200621.log',1048585,1,76,76,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200621.log',1048585,1,78,78,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200621.log',1048585,1,81,81,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200621.log',1048585,1,85,85,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200621.log',1048585,1,89,89,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200621.log',1048585,1,173,173,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200621.log',1048585,1,176,176,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200622.log',515,1,51,118,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200622.log',515,1,59,138,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200622.log',515,1,81,283,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,44),('usage_events_20200622.log',515,1,78,288,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20200622.log',515,1,87,291,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200622.log',515,1,89,293,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200622.log',515,1,99,305,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200622.log',515,1,113,307,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200622.log',515,1,133,318,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200622.log',515,1,141,361,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200622.log',515,1,147,387,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200622.log',515,1,152,423,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200622.log',515,1,169,461,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200622.log',515,1,175,493,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200622.log',1048585,1,51,51,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200622.log',1048585,1,59,59,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200622.log',1048585,1,78,78,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20200622.log',1048585,1,81,81,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200622.log',1048585,1,82,82,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200622.log',1048585,1,87,87,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200622.log',1048585,1,89,89,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200622.log',1048585,1,99,99,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200622.log',1048585,1,133,133,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20200622.log',1048585,1,137,137,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200622.log',1048585,1,147,147,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200622.log',1048585,1,149,149,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200622.log',1048585,1,152,152,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200622.log',1048585,1,169,169,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200622.log',1048585,1,175,175,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200623.log',256,1,NULL,1,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,1,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,2,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,3,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,4,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,5,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,6,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,7,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,8,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,9,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,10,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200623.log',259,1,NULL,11,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200623.log',515,1,1,3,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200623.log',515,1,5,30,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200623.log',515,1,47,115,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20200623.log',515,1,51,118,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200623.log',515,1,53,120,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200623.log',515,1,56,135,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200623.log',515,1,58,137,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200623.log',515,1,85,281,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200623.log',515,1,83,285,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200623.log',515,1,78,288,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20200623.log',515,1,87,291,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200623.log',515,1,91,295,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200623.log',515,1,113,307,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200623.log',515,1,125,310,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20200623.log',515,1,137,343,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200623.log',515,1,141,361,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200623.log',515,1,142,367,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20200623.log',515,1,149,401,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200623.log',515,1,169,461,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200623.log',515,1,173,479,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200623.log',515,1,175,493,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200623.log',515,1,176,500,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200623.log',1048585,1,1,1,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200623.log',1048585,1,4,4,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200623.log',1048585,1,5,5,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200623.log',1048585,1,6,6,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200623.log',1048585,1,7,7,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200623.log',1048585,1,8,8,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200623.log',1048585,1,14,14,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200623.log',1048585,1,20,20,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200623.log',1048585,1,21,21,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200623.log',1048585,1,22,22,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200623.log',1048585,1,40,40,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200623.log',1048585,1,51,51,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200623.log',1048585,1,56,56,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200623.log',1048585,1,78,78,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200623.log',1048585,1,84,84,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200623.log',1048585,1,87,87,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200623.log',1048585,1,91,91,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200623.log',1048585,1,113,113,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200623.log',1048585,1,125,125,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200623.log',1048585,1,137,137,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200623.log',1048585,1,142,142,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200623.log',1048585,1,169,169,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200623.log',1048585,1,171,171,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200623.log',1048585,1,173,173,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200623.log',1048585,1,174,174,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200623.log',1048585,1,175,175,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200623.log',1048585,1,176,176,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200623.log',1048585,1,177,177,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200623.log',1048585,1,178,178,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200624.log',256,1,NULL,1,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200624.log',259,1,NULL,5,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200624.log',515,1,33,81,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200624.log',515,1,47,115,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20200624.log',515,1,49,116,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200624.log',515,1,58,137,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200624.log',515,1,81,283,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200624.log',515,1,78,288,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20200624.log',515,1,88,292,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,53),('usage_events_20200624.log',515,1,135,330,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200624.log',515,1,137,343,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200624.log',515,1,141,361,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200624.log',515,1,151,414,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20200624.log',515,1,171,470,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200624.log',515,1,173,479,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200624.log',515,1,174,486,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20200624.log',515,1,175,493,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200624.log',515,1,176,500,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200624.log',1048585,1,33,33,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200624.log',1048585,1,40,40,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200624.log',1048585,1,47,47,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200624.log',1048585,1,49,49,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200624.log',1048585,1,58,58,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200624.log',1048585,1,78,78,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20200624.log',1048585,1,84,84,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200624.log',1048585,1,88,88,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200624.log',1048585,1,113,113,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200624.log',1048585,1,139,139,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200624.log',1048585,1,150,150,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200624.log',1048585,1,151,151,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200624.log',1048585,1,169,169,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200624.log',1048585,1,171,171,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200624.log',1048585,1,173,173,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200624.log',1048585,1,175,175,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200624.log',1048585,1,176,176,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200625.log',256,1,NULL,1,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200625.log',259,1,NULL,9,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200625.log',259,1,NULL,10,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200625.log',515,1,20,53,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200625.log',515,1,56,135,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200625.log',515,1,81,283,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,44),('usage_events_20200625.log',515,1,78,288,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200625.log',515,1,87,291,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200625.log',515,1,89,293,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200625.log',515,1,133,318,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200625.log',515,1,134,324,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200625.log',515,1,136,336,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200625.log',515,1,137,343,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200625.log',515,1,139,351,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200625.log',515,1,146,379,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200625.log',515,1,149,401,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,74),('usage_events_20200625.log',515,1,152,423,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200625.log',515,1,169,461,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200625.log',515,1,173,479,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,80),('usage_events_20200625.log',1048585,1,32,32,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200625.log',1048585,1,56,56,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200625.log',1048585,1,58,58,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200625.log',1048585,1,81,81,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200625.log',1048585,1,87,87,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200625.log',1048585,1,100,100,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200625.log',1048585,1,133,133,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200625.log',1048585,1,134,134,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200625.log',1048585,1,136,136,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200625.log',1048585,1,137,137,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200625.log',1048585,1,141,141,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200625.log',1048585,1,146,146,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200625.log',1048585,1,147,147,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200625.log',1048585,1,149,149,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200625.log',1048585,1,173,173,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200625.log',1048585,1,176,176,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200626.log',256,1,NULL,1,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,1,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,2,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,3,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,4,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,5,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,6,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,7,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,8,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,9,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,10,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200626.log',259,1,NULL,11,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200626.log',515,1,1,3,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200626.log',515,1,49,116,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200626.log',515,1,56,135,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200626.log',515,1,58,137,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200626.log',515,1,81,283,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200626.log',515,1,82,284,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200626.log',515,1,77,287,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200626.log',515,1,78,288,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',16,1,259,7,49),('usage_events_20200626.log',515,1,86,290,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200626.log',515,1,87,291,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200626.log',515,1,135,330,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200626.log',515,1,151,414,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200626.log',515,1,169,461,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200626.log',515,1,173,479,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200626.log',515,1,174,486,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200626.log',1048585,1,1,1,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200626.log',1048585,1,4,4,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200626.log',1048585,1,5,5,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200626.log',1048585,1,6,6,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200626.log',1048585,1,7,7,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200626.log',1048585,1,8,8,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200626.log',1048585,1,14,14,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200626.log',1048585,1,20,20,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200626.log',1048585,1,21,21,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200626.log',1048585,1,22,22,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200626.log',1048585,1,40,40,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200626.log',1048585,1,58,58,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200626.log',1048585,1,78,78,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20200626.log',1048585,1,82,82,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200626.log',1048585,1,86,86,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200626.log',1048585,1,169,169,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200626.log',1048585,1,171,171,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200626.log',1048585,1,173,173,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200626.log',1048585,1,174,174,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200626.log',1048585,1,175,175,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200626.log',1048585,1,176,176,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200626.log',1048585,1,177,177,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200626.log',1048585,1,178,178,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200627.log',256,1,NULL,1,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200627.log',259,1,NULL,4,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200627.log',515,1,20,53,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200627.log',515,1,49,116,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200627.log',515,1,51,118,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200627.log',515,1,53,120,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200627.log',515,1,76,286,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200627.log',515,1,100,306,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200627.log',515,1,115,309,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200627.log',515,1,133,318,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200627.log',515,1,137,343,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200627.log',515,1,141,361,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200627.log',515,1,149,401,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200627.log',515,1,169,461,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200627.log',515,1,175,493,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200627.log',515,1,176,500,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200627.log',515,1,178,514,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200627.log',1048585,1,49,49,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200627.log',1048585,1,51,51,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200627.log',1048585,1,58,58,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200627.log',1048585,1,78,78,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200627.log',1048585,1,84,84,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200627.log',1048585,1,89,89,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200627.log',1048585,1,100,100,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200627.log',1048585,1,133,133,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200627.log',1048585,1,149,149,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200627.log',1048585,1,169,169,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200627.log',1048585,1,175,175,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200627.log',1048585,1,176,176,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200627.log',1048585,1,178,178,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200628.log',256,1,NULL,1,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200628.log',259,1,NULL,9,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200628.log',515,1,53,120,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200628.log',515,1,58,137,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200628.log',515,1,81,283,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200628.log',515,1,78,288,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200628.log',515,1,87,291,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200628.log',515,1,89,293,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200628.log',515,1,100,306,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200628.log',515,1,134,324,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200628.log',515,1,137,343,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200628.log',515,1,139,351,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200628.log',515,1,141,361,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200628.log',515,1,146,379,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,71),('usage_events_20200628.log',515,1,169,461,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200628.log',515,1,171,470,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200628.log',1048585,1,53,53,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200628.log',1048585,1,58,58,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200628.log',1048585,1,78,78,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200628.log',1048585,1,87,87,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200628.log',1048585,1,134,134,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200628.log',1048585,1,139,139,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200628.log',1048585,1,150,150,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200628.log',1048585,1,171,171,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200629.log',256,1,NULL,1,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,1,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,2,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,3,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,4,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,5,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,6,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,7,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,8,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,9,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,10,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200629.log',259,1,NULL,11,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200629.log',515,1,1,3,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200629.log',515,1,53,120,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200629.log',515,1,78,288,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200629.log',515,1,89,293,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200629.log',515,1,99,305,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200629.log',515,1,137,343,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200629.log',515,1,149,401,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200629.log',515,1,169,461,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200629.log',515,1,173,479,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200629.log',515,1,175,493,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200629.log',515,1,176,500,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200629.log',1048585,1,1,1,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200629.log',1048585,1,4,4,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200629.log',1048585,1,5,5,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200629.log',1048585,1,6,6,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200629.log',1048585,1,7,7,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200629.log',1048585,1,8,8,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200629.log',1048585,1,14,14,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200629.log',1048585,1,20,20,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200629.log',1048585,1,21,21,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200629.log',1048585,1,22,22,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200629.log',1048585,1,40,40,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200629.log',1048585,1,53,53,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200629.log',1048585,1,78,78,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200629.log',1048585,1,89,89,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200629.log',1048585,1,137,137,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200629.log',1048585,1,169,169,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200629.log',1048585,1,171,171,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200629.log',1048585,1,173,173,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200629.log',1048585,1,174,174,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200629.log',1048585,1,175,175,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200629.log',1048585,1,176,176,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200629.log',1048585,1,177,177,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200629.log',1048585,1,178,178,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200630.log',256,1,NULL,1,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200630.log',259,1,NULL,9,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200630.log',515,1,52,119,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20200630.log',515,1,54,133,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200630.log',515,1,81,283,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200630.log',515,1,78,288,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200630.log',515,1,87,291,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200630.log',515,1,115,309,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200630.log',515,1,139,351,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200630.log',515,1,146,379,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200630.log',515,1,169,461,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200630.log',515,1,171,470,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200630.log',515,1,173,479,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200630.log',515,1,175,493,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200630.log',515,1,176,500,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200630.log',515,1,177,507,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200630.log',515,1,178,514,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200630.log',1048585,1,8,8,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200630.log',1048585,1,54,54,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200630.log',1048585,1,78,78,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200630.log',1048585,1,81,81,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200630.log',1048585,1,87,87,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200630.log',1048585,1,115,115,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200630.log',1048585,1,139,139,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200630.log',1048585,1,148,148,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200630.log',1048585,1,169,169,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200630.log',1048585,1,173,173,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200630.log',1048585,1,175,175,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200630.log',1048585,1,176,176,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200630.log',1048585,1,177,177,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200630.log',1048585,1,178,178,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200701.log',256,1,NULL,1,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200701.log',259,1,NULL,11,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200701.log',515,1,5,30,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200701.log',515,1,81,283,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200701.log',515,1,83,285,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200701.log',515,1,78,288,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200701.log',515,1,89,293,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200701.log',515,1,141,361,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200701.log',515,1,142,367,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20200701.log',515,1,148,394,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200701.log',515,1,171,470,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200701.log',515,1,173,479,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200701.log',515,1,175,493,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200701.log',515,1,176,500,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20200701.log',515,1,177,507,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200701.log',1048585,1,58,58,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200701.log',1048585,1,78,78,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200701.log',1048585,1,82,82,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200701.log',1048585,1,148,148,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200701.log',1048585,1,171,171,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200701.log',1048585,1,173,173,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200701.log',1048585,1,176,176,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200702.log',256,1,NULL,1,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,1,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,2,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,3,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,4,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,5,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,6,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,7,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,8,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,9,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,10,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',259,1,NULL,11,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200702.log',515,1,1,3,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200702.log',515,1,49,116,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200702.log',515,1,53,120,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200702.log',515,1,56,135,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200702.log',515,1,81,283,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200702.log',515,1,78,288,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20200702.log',515,1,114,308,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200702.log',515,1,137,343,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200702.log',515,1,147,387,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,72),('usage_events_20200702.log',515,1,149,401,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,74),('usage_events_20200702.log',515,1,150,407,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200702.log',515,1,151,414,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200702.log',515,1,169,461,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200702.log',515,1,173,479,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200702.log',515,1,175,493,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200702.log',515,1,176,500,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200702.log',515,1,177,507,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200702.log',1048585,1,1,1,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200702.log',1048585,1,4,4,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200702.log',1048585,1,5,5,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200702.log',1048585,1,6,6,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200702.log',1048585,1,7,7,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200702.log',1048585,1,8,8,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200702.log',1048585,1,14,14,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200702.log',1048585,1,20,20,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200702.log',1048585,1,21,21,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200702.log',1048585,1,22,22,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200702.log',1048585,1,40,40,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200702.log',1048585,1,56,56,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200702.log',1048585,1,78,78,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20200702.log',1048585,1,81,81,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200702.log',1048585,1,147,147,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200702.log',1048585,1,149,149,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200702.log',1048585,1,169,169,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200702.log',1048585,1,171,171,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200702.log',1048585,1,173,173,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200702.log',1048585,1,174,174,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200702.log',1048585,1,175,175,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200702.log',1048585,1,176,176,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200702.log',1048585,1,177,177,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200702.log',1048585,1,178,178,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200703.log',256,1,NULL,1,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200703.log',259,1,NULL,9,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200703.log',259,1,NULL,11,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200703.log',515,1,78,288,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200703.log',515,1,87,291,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200703.log',515,1,100,306,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200703.log',515,1,136,336,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20200703.log',515,1,137,343,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200703.log',515,1,148,394,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200703.log',515,1,151,414,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200703.log',515,1,169,461,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200703.log',515,1,173,479,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200703.log',515,1,175,493,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200703.log',515,1,177,507,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200703.log',515,1,178,514,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200703.log',1048585,1,53,53,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200703.log',1048585,1,59,59,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200703.log',1048585,1,78,78,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200703.log',1048585,1,87,87,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200703.log',1048585,1,89,89,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200703.log',1048585,1,136,136,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200703.log',1048585,1,137,137,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200703.log',1048585,1,173,173,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200703.log',1048585,1,175,175,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200703.log',1048585,1,177,177,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200703.log',1048585,1,178,178,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200704.log',256,1,NULL,1,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200704.log',259,1,NULL,10,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200704.log',515,1,49,116,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200704.log',515,1,50,117,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200704.log',515,1,53,120,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200704.log',515,1,54,133,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200704.log',515,1,58,137,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200704.log',515,1,78,288,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200704.log',515,1,87,291,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200704.log',515,1,137,343,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20200704.log',515,1,151,414,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20200704.log',515,1,169,461,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200704.log',515,1,173,479,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200704.log',1048585,1,54,54,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200704.log',1048585,1,58,58,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200704.log',1048585,1,85,85,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200704.log',1048585,1,87,87,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200704.log',1048585,1,137,137,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200704.log',1048585,1,173,173,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200705.log',256,1,NULL,1,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,1,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,2,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,3,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,4,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,5,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,6,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,7,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,8,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,9,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,10,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200705.log',259,1,NULL,11,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200705.log',515,1,1,3,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200705.log',515,1,5,30,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200705.log',515,1,47,115,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200705.log',515,1,76,286,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200705.log',515,1,87,291,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200705.log',515,1,147,387,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200705.log',515,1,148,394,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200705.log',515,1,149,401,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200705.log',515,1,150,407,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200705.log',515,1,151,414,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200705.log',515,1,169,461,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200705.log',515,1,171,470,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200705.log',515,1,173,479,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200705.log',515,1,175,493,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200705.log',1048585,1,1,1,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200705.log',1048585,1,4,4,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200705.log',1048585,1,5,5,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200705.log',1048585,1,6,6,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200705.log',1048585,1,7,7,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200705.log',1048585,1,8,8,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200705.log',1048585,1,14,14,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200705.log',1048585,1,20,20,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200705.log',1048585,1,21,21,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200705.log',1048585,1,22,22,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200705.log',1048585,1,40,40,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200705.log',1048585,1,47,47,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200705.log',1048585,1,76,76,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200705.log',1048585,1,78,78,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200705.log',1048585,1,87,87,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200705.log',1048585,1,147,147,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200705.log',1048585,1,148,148,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200705.log',1048585,1,149,149,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200705.log',1048585,1,150,150,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200705.log',1048585,1,169,169,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200705.log',1048585,1,171,171,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200705.log',1048585,1,173,173,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200705.log',1048585,1,174,174,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200705.log',1048585,1,175,175,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200705.log',1048585,1,176,176,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200705.log',1048585,1,177,177,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200705.log',1048585,1,178,178,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200706.log',515,1,8,33,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20200706.log',515,1,32,80,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20200706.log',515,1,53,120,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200706.log',515,1,85,281,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200706.log',515,1,82,284,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200706.log',515,1,76,286,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,47),('usage_events_20200706.log',515,1,78,288,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200706.log',515,1,87,291,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200706.log',515,1,89,293,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200706.log',515,1,99,305,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200706.log',515,1,133,318,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200706.log',515,1,137,343,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200706.log',515,1,139,351,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200706.log',515,1,142,367,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200706.log',515,1,149,401,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200706.log',515,1,169,461,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,78),('usage_events_20200706.log',515,1,173,479,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200706.log',515,1,178,514,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200706.log',1048585,1,8,8,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200706.log',1048585,1,20,20,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200706.log',1048585,1,76,76,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200706.log',1048585,1,82,82,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200706.log',1048585,1,87,87,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200706.log',1048585,1,89,89,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200706.log',1048585,1,133,133,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200706.log',1048585,1,169,169,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200706.log',1048585,1,173,173,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200706.log',1048585,1,175,175,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200706.log',1048585,1,178,178,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200707.log',256,1,NULL,1,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200707.log',259,1,NULL,5,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200707.log',259,1,NULL,6,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200707.log',515,1,5,30,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200707.log',515,1,51,118,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200707.log',515,1,53,120,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200707.log',515,1,58,137,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',8,1,259,5,33),('usage_events_20200707.log',515,1,79,282,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200707.log',515,1,81,283,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200707.log',515,1,82,284,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200707.log',515,1,83,285,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200707.log',515,1,78,288,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200707.log',515,1,87,291,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200707.log',515,1,89,293,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200707.log',515,1,134,324,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200707.log',515,1,135,330,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200707.log',515,1,142,367,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200707.log',515,1,148,394,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200707.log',515,1,149,401,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,74),('usage_events_20200707.log',515,1,169,461,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200707.log',515,1,171,470,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200707.log',515,1,175,493,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200707.log',515,1,176,500,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200707.log',1048585,1,51,51,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200707.log',1048585,1,53,53,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200707.log',1048585,1,58,58,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,5,NULL),('usage_events_20200707.log',1048585,1,78,78,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200707.log',1048585,1,79,79,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200707.log',1048585,1,82,82,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200707.log',1048585,1,89,89,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200707.log',1048585,1,134,134,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200707.log',1048585,1,137,137,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200707.log',1048585,1,142,142,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200707.log',1048585,1,147,147,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200707.log',1048585,1,149,149,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200707.log',1048585,1,169,169,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200707.log',1048585,1,171,171,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200707.log',1048585,1,176,176,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200708.log',256,1,NULL,1,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,1,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,2,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,3,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,4,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,5,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,6,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,7,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,8,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,9,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,10,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200708.log',259,1,NULL,11,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200708.log',515,1,1,3,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200708.log',515,1,5,30,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200708.log',515,1,79,282,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200708.log',515,1,82,284,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200708.log',515,1,76,286,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200708.log',515,1,78,288,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200708.log',515,1,89,293,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20200708.log',515,1,99,305,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200708.log',515,1,134,324,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200708.log',515,1,137,343,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200708.log',515,1,149,401,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200708.log',515,1,151,414,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200708.log',515,1,169,461,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200708.log',515,1,173,479,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200708.log',515,1,175,493,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200708.log',515,1,177,507,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200708.log',1048585,1,1,1,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200708.log',1048585,1,4,4,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200708.log',1048585,1,5,5,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200708.log',1048585,1,6,6,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200708.log',1048585,1,7,7,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200708.log',1048585,1,8,8,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200708.log',1048585,1,14,14,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200708.log',1048585,1,20,20,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200708.log',1048585,1,21,21,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200708.log',1048585,1,22,22,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200708.log',1048585,1,40,40,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200708.log',1048585,1,78,78,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200708.log',1048585,1,81,81,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200708.log',1048585,1,82,82,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200708.log',1048585,1,134,134,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200708.log',1048585,1,137,137,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200708.log',1048585,1,149,149,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200708.log',1048585,1,151,151,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200708.log',1048585,1,169,169,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200708.log',1048585,1,171,171,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200708.log',1048585,1,173,173,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200708.log',1048585,1,174,174,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200708.log',1048585,1,175,175,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200708.log',1048585,1,176,176,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200708.log',1048585,1,177,177,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200708.log',1048585,1,178,178,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200709.log',256,1,NULL,1,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200709.log',259,1,NULL,4,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200709.log',515,1,19,52,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200709.log',515,1,35,83,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200709.log',515,1,49,116,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200709.log',515,1,51,118,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200709.log',515,1,53,120,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,28),('usage_events_20200709.log',515,1,56,135,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200709.log',515,1,58,137,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200709.log',515,1,79,282,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200709.log',515,1,78,288,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200709.log',515,1,86,290,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200709.log',515,1,87,291,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200709.log',515,1,89,293,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200709.log',515,1,113,307,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200709.log',515,1,125,310,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20200709.log',515,1,137,343,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200709.log',515,1,148,394,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20200709.log',515,1,169,461,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20200709.log',515,1,175,493,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200709.log',1048585,1,19,19,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200709.log',1048585,1,35,35,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200709.log',1048585,1,49,49,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200709.log',1048585,1,53,53,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200709.log',1048585,1,78,78,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200709.log',1048585,1,84,84,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200709.log',1048585,1,87,87,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200709.log',1048585,1,115,115,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200709.log',1048585,1,125,125,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200709.log',1048585,1,137,137,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200709.log',1048585,1,148,148,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200709.log',1048585,1,169,169,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200709.log',1048585,1,175,175,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200709.log',1048585,1,176,176,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200710.log',256,1,NULL,1,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200710.log',259,1,NULL,9,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200710.log',259,1,NULL,10,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200710.log',259,1,NULL,11,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200710.log',515,1,5,30,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200710.log',515,1,58,137,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200710.log',515,1,82,284,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200710.log',515,1,89,293,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200710.log',515,1,137,343,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200710.log',515,1,139,351,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200710.log',515,1,141,361,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200710.log',515,1,148,394,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200710.log',515,1,149,401,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200710.log',515,1,151,414,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200710.log',515,1,173,479,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200710.log',515,1,177,507,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200710.log',1048585,1,5,5,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200710.log',1048585,1,49,49,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200710.log',1048585,1,58,58,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20200710.log',1048585,1,82,82,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200710.log',1048585,1,89,89,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200710.log',1048585,1,91,91,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200710.log',1048585,1,139,139,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200710.log',1048585,1,141,141,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200710.log',1048585,1,169,169,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200710.log',1048585,1,171,171,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200710.log',1048585,1,173,173,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200710.log',1048585,1,174,174,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200710.log',1048585,1,175,175,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200710.log',1048585,1,176,176,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200710.log',1048585,1,177,177,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200710.log',1048585,1,178,178,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200711.log',256,1,NULL,1,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,1,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,2,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,3,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,4,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,5,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,6,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,7,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,8,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,9,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,10,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200711.log',259,1,NULL,11,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200711.log',515,1,1,3,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200711.log',515,1,47,115,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200711.log',515,1,49,116,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200711.log',515,1,56,135,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200711.log',515,1,78,288,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200711.log',515,1,134,324,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200711.log',515,1,137,343,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200711.log',515,1,146,379,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200711.log',515,1,150,407,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200711.log',515,1,169,461,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200711.log',515,1,173,479,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200711.log',515,1,175,493,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200711.log',515,1,178,514,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200711.log',1048585,1,1,1,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200711.log',1048585,1,4,4,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200711.log',1048585,1,5,5,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200711.log',1048585,1,6,6,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200711.log',1048585,1,7,7,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200711.log',1048585,1,8,8,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200711.log',1048585,1,14,14,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200711.log',1048585,1,20,20,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200711.log',1048585,1,21,21,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200711.log',1048585,1,22,22,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200711.log',1048585,1,40,40,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200711.log',1048585,1,47,47,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200711.log',1048585,1,56,56,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200711.log',1048585,1,58,58,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200711.log',1048585,1,78,78,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200711.log',1048585,1,137,137,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200711.log',1048585,1,146,146,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200711.log',1048585,1,169,169,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200711.log',1048585,1,171,171,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200711.log',1048585,1,173,173,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200711.log',1048585,1,174,174,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200711.log',1048585,1,175,175,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200711.log',1048585,1,176,176,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200711.log',1048585,1,177,177,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200711.log',1048585,1,178,178,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200712.log',256,1,NULL,1,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200712.log',259,1,NULL,10,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200712.log',515,1,40,94,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20200712.log',515,1,52,119,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20200712.log',515,1,56,135,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20200712.log',515,1,58,137,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200712.log',515,1,78,288,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200712.log',515,1,134,324,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200712.log',515,1,136,336,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200712.log',515,1,146,379,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,71),('usage_events_20200712.log',515,1,148,394,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200712.log',515,1,149,401,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200712.log',515,1,173,479,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200712.log',515,1,175,493,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200712.log',1048585,1,40,40,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200712.log',1048585,1,52,52,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200712.log',1048585,1,56,56,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200712.log',1048585,1,58,58,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20200712.log',1048585,1,78,78,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200712.log',1048585,1,134,134,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200712.log',1048585,1,146,146,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200712.log',1048585,1,148,148,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200712.log',1048585,1,173,173,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200713.log',256,1,NULL,1,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200713.log',259,1,NULL,10,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200713.log',259,1,NULL,11,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200713.log',515,1,52,119,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20200713.log',515,1,53,120,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200713.log',515,1,56,135,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200713.log',515,1,85,281,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200713.log',515,1,81,283,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200713.log',515,1,78,288,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200713.log',515,1,89,293,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200713.log',515,1,133,318,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200713.log',515,1,134,324,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200713.log',515,1,142,367,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200713.log',515,1,146,379,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200713.log',515,1,147,387,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200713.log',515,1,149,401,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200713.log',515,1,150,407,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200713.log',515,1,169,461,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200713.log',515,1,171,470,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200713.log',515,1,173,479,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200713.log',515,1,176,500,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200713.log',1048585,1,78,78,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200713.log',1048585,1,85,85,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200713.log',1048585,1,89,89,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200713.log',1048585,1,134,134,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200713.log',1048585,1,137,137,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200713.log',1048585,1,147,147,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200713.log',1048585,1,150,150,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20200713.log',1048585,1,171,171,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200713.log',1048585,1,173,173,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20200714.log',256,1,NULL,1,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,1,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,2,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,3,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,4,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,5,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,6,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,7,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,8,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,9,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,10,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200714.log',259,1,NULL,11,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200714.log',515,1,1,3,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200714.log',515,1,19,52,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200714.log',515,1,58,137,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200714.log',515,1,78,288,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200714.log',515,1,84,289,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200714.log',515,1,86,290,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200714.log',515,1,100,306,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200714.log',515,1,133,318,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200714.log',515,1,142,367,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200714.log',515,1,148,394,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200714.log',515,1,169,461,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200714.log',515,1,171,470,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200714.log',515,1,173,479,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200714.log',515,1,175,493,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200714.log',515,1,177,507,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200714.log',515,1,178,514,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200714.log',1048585,1,1,1,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200714.log',1048585,1,4,4,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200714.log',1048585,1,5,5,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200714.log',1048585,1,6,6,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200714.log',1048585,1,7,7,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200714.log',1048585,1,8,8,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200714.log',1048585,1,14,14,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200714.log',1048585,1,20,20,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200714.log',1048585,1,21,21,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200714.log',1048585,1,22,22,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200714.log',1048585,1,40,40,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200714.log',1048585,1,58,58,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200714.log',1048585,1,59,59,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200714.log',1048585,1,78,78,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200714.log',1048585,1,133,133,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200714.log',1048585,1,137,137,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200714.log',1048585,1,142,142,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200714.log',1048585,1,148,148,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200714.log',1048585,1,150,150,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200714.log',1048585,1,169,169,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200714.log',1048585,1,171,171,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200714.log',1048585,1,173,173,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200714.log',1048585,1,174,174,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200714.log',1048585,1,175,175,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200714.log',1048585,1,176,176,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200714.log',1048585,1,177,177,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200714.log',1048585,1,178,178,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200715.log',259,1,NULL,1,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200715.log',259,1,NULL,11,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200715.log',515,1,53,120,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200715.log',515,1,81,283,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200715.log',515,1,78,288,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20200715.log',515,1,84,289,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200715.log',515,1,99,305,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200715.log',515,1,113,307,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200715.log',515,1,133,318,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200715.log',515,1,137,343,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200715.log',515,1,139,351,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200715.log',515,1,149,401,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200715.log',515,1,169,461,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20200715.log',515,1,173,479,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20200715.log',515,1,175,493,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200715.log',515,1,176,500,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200715.log',515,1,178,514,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200715.log',1048585,1,53,53,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200715.log',1048585,1,78,78,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200715.log',1048585,1,81,81,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200715.log',1048585,1,84,84,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200715.log',1048585,1,113,113,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200715.log',1048585,1,137,137,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200715.log',1048585,1,139,139,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200715.log',1048585,1,147,147,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200715.log',1048585,1,149,149,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200715.log',1048585,1,169,169,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200715.log',1048585,1,173,173,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200715.log',1048585,1,175,175,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200716.log',515,1,53,120,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200716.log',515,1,85,281,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200716.log',515,1,82,284,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200716.log',515,1,78,288,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200716.log',515,1,87,291,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200716.log',515,1,89,293,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20200716.log',515,1,125,310,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20200716.log',515,1,133,318,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200716.log',515,1,137,343,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200716.log',515,1,141,361,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200716.log',515,1,147,387,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200716.log',515,1,150,407,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,75),('usage_events_20200716.log',515,1,169,461,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,78),('usage_events_20200716.log',515,1,171,470,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200716.log',515,1,175,493,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,82),('usage_events_20200716.log',1048585,1,57,57,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200716.log',1048585,1,78,78,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200716.log',1048585,1,82,82,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200716.log',1048585,1,87,87,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200716.log',1048585,1,89,89,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200716.log',1048585,1,133,133,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200716.log',1048585,1,150,150,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200716.log',1048585,1,169,169,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200716.log',1048585,1,171,171,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200716.log',1048585,1,175,175,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200717.log',256,1,NULL,1,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200717.log',259,1,NULL,1,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200717.log',259,1,NULL,2,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200717.log',259,1,NULL,7,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200717.log',259,1,NULL,11,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200717.log',515,1,7,32,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200717.log',515,1,35,83,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20200717.log',515,1,49,116,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200717.log',515,1,50,117,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20200717.log',515,1,78,288,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200717.log',515,1,87,291,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200717.log',515,1,115,309,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200717.log',515,1,139,351,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200717.log',515,1,148,394,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200717.log',515,1,149,401,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200717.log',515,1,150,407,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200717.log',515,1,169,461,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200717.log',515,1,171,470,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200717.log',515,1,173,479,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200717.log',515,1,175,493,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200717.log',1048585,1,4,4,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200717.log',1048585,1,6,6,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200717.log',1048585,1,50,50,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200717.log',1048585,1,87,87,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200717.log',1048585,1,99,99,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200717.log',1048585,1,115,115,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200717.log',1048585,1,139,139,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200717.log',1048585,1,149,149,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200717.log',1048585,1,173,173,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200717.log',1048585,1,174,174,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200717.log',1048585,1,175,175,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20200717.log',1048585,1,176,176,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200718.log',515,1,50,117,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200718.log',515,1,53,120,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200718.log',515,1,79,282,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,43),('usage_events_20200718.log',515,1,83,285,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20200718.log',515,1,78,288,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20200718.log',515,1,133,318,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200718.log',515,1,137,343,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200718.log',515,1,150,407,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200718.log',515,1,152,423,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200718.log',515,1,169,461,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200718.log',515,1,173,479,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200718.log',515,1,177,507,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200718.log',1048585,1,50,50,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200718.log',1048585,1,78,78,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200718.log',1048585,1,79,79,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200718.log',1048585,1,82,82,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200718.log',1048585,1,83,83,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200718.log',1048585,1,89,89,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200718.log',1048585,1,137,137,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200718.log',1048585,1,173,173,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200719.log',256,1,NULL,1,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200719.log',515,1,50,117,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200719.log',515,1,56,135,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200719.log',515,1,58,137,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200719.log',515,1,78,288,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20200719.log',515,1,87,291,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200719.log',515,1,171,470,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200719.log',515,1,173,479,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200719.log',515,1,175,493,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200719.log',515,1,176,500,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200719.log',1048585,1,58,58,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200719.log',1048585,1,83,83,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200719.log',1048585,1,85,85,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200719.log',1048585,1,142,142,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200719.log',1048585,1,171,171,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200719.log',1048585,1,173,173,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200719.log',1048585,1,175,175,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200720.log',256,1,NULL,1,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,1,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,2,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,3,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,4,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,5,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,6,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,7,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,8,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,9,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,10,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200720.log',259,1,NULL,11,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200720.log',515,1,1,3,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200720.log',515,1,53,120,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200720.log',515,1,79,282,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,43),('usage_events_20200720.log',515,1,78,288,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200720.log',515,1,86,290,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200720.log',515,1,87,291,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200720.log',515,1,100,306,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200720.log',515,1,133,318,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200720.log',515,1,137,343,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200720.log',515,1,149,401,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200720.log',515,1,150,407,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200720.log',515,1,169,461,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200720.log',515,1,171,470,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200720.log',515,1,173,479,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200720.log',515,1,175,493,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200720.log',515,1,177,507,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200720.log',515,1,178,514,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200720.log',1048585,1,1,1,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200720.log',1048585,1,4,4,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200720.log',1048585,1,5,5,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200720.log',1048585,1,6,6,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200720.log',1048585,1,7,7,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200720.log',1048585,1,8,8,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200720.log',1048585,1,14,14,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200720.log',1048585,1,20,20,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200720.log',1048585,1,21,21,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200720.log',1048585,1,22,22,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200720.log',1048585,1,40,40,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200720.log',1048585,1,78,78,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200720.log',1048585,1,86,86,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200720.log',1048585,1,87,87,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200720.log',1048585,1,100,100,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20200720.log',1048585,1,150,150,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200720.log',1048585,1,169,169,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200720.log',1048585,1,171,171,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200720.log',1048585,1,173,173,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200720.log',1048585,1,174,174,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200720.log',1048585,1,175,175,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200720.log',1048585,1,176,176,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200720.log',1048585,1,177,177,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200720.log',1048585,1,178,178,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200721.log',256,1,NULL,1,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200721.log',259,1,NULL,6,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200721.log',515,1,53,120,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,28),('usage_events_20200721.log',515,1,79,282,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200721.log',515,1,81,283,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20200721.log',515,1,78,288,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200721.log',515,1,87,291,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200721.log',515,1,89,293,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200721.log',515,1,139,351,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200721.log',515,1,142,367,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200721.log',515,1,148,394,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200721.log',515,1,169,461,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200721.log',515,1,173,479,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200721.log',515,1,174,486,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200721.log',515,1,175,493,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200721.log',515,1,178,514,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200721.log',1048585,1,53,53,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20200721.log',1048585,1,79,79,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200721.log',1048585,1,81,81,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200721.log',1048585,1,89,89,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200721.log',1048585,1,142,142,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200721.log',1048585,1,148,148,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200721.log',1048585,1,169,169,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200721.log',1048585,1,173,173,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200721.log',1048585,1,174,174,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200721.log',1048585,1,175,175,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200721.log',1048585,1,177,177,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200722.log',256,1,NULL,1,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200722.log',515,1,5,30,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200722.log',515,1,49,116,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200722.log',515,1,58,137,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200722.log',515,1,76,286,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200722.log',515,1,78,288,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200722.log',515,1,87,291,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200722.log',515,1,89,293,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200722.log',515,1,91,295,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200722.log',515,1,125,310,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200722.log',515,1,137,343,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200722.log',515,1,141,361,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200722.log',515,1,142,367,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200722.log',515,1,169,461,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200722.log',515,1,171,470,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200722.log',515,1,173,479,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200722.log',515,1,176,500,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200722.log',515,1,177,507,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200722.log',1048585,1,53,53,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200722.log',1048585,1,58,58,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200722.log',1048585,1,78,78,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200722.log',1048585,1,81,81,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200722.log',1048585,1,87,87,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200722.log',1048585,1,89,89,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200722.log',1048585,1,115,115,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200722.log',1048585,1,137,137,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200722.log',1048585,1,169,169,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200722.log',1048585,1,171,171,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200722.log',1048585,1,173,173,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200722.log',1048585,1,176,176,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200723.log',515,1,58,137,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200723.log',515,1,76,286,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200723.log',515,1,78,288,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200723.log',515,1,89,293,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200723.log',515,1,91,295,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200723.log',515,1,137,343,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200723.log',515,1,150,407,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200723.log',515,1,169,461,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200723.log',515,1,171,470,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20200723.log',515,1,173,479,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200723.log',515,1,175,493,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200723.log',515,1,176,500,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200723.log',1048585,1,58,58,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200723.log',1048585,1,78,78,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200723.log',1048585,1,151,151,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200723.log',1048585,1,173,173,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200724.log',256,1,NULL,1,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200724.log',259,1,NULL,1,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200724.log',259,1,NULL,2,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200724.log',259,1,NULL,7,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200724.log',259,1,NULL,11,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200724.log',515,1,8,33,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200724.log',515,1,20,53,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200724.log',515,1,40,94,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200724.log',515,1,78,288,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200724.log',515,1,89,293,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200724.log',515,1,115,309,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200724.log',515,1,137,343,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200724.log',515,1,146,379,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,71),('usage_events_20200724.log',515,1,169,461,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200724.log',515,1,175,493,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200724.log',515,1,176,500,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20200724.log',515,1,177,507,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200724.log',515,1,178,514,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200724.log',1048585,1,4,4,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200724.log',1048585,1,6,6,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200724.log',1048585,1,8,8,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200724.log',1048585,1,20,20,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200724.log',1048585,1,78,78,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200724.log',1048585,1,89,89,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200724.log',1048585,1,115,115,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200724.log',1048585,1,137,137,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200724.log',1048585,1,146,146,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200724.log',1048585,1,173,173,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200724.log',1048585,1,174,174,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200724.log',1048585,1,175,175,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200724.log',1048585,1,178,178,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200725.log',256,1,NULL,1,'20200725','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200725.log',515,1,6,31,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20200725.log',515,1,78,288,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200725.log',515,1,113,307,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200725.log',515,1,137,343,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200725.log',515,1,151,414,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20200725.log',515,1,173,479,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200725.log',515,1,175,493,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200725.log',1048585,1,142,142,'20200725','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200725.log',1048585,1,152,152,'20200725','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200725.log',1048585,1,173,173,'20200725','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200726.log',256,1,NULL,1,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,1,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,2,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,3,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,4,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,5,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,6,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,7,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,8,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,9,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,10,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200726.log',259,1,NULL,11,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200726.log',515,1,1,3,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200726.log',515,1,58,137,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200726.log',515,1,78,288,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200726.log',515,1,87,291,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200726.log',515,1,114,308,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20200726.log',515,1,149,401,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,74),('usage_events_20200726.log',515,1,150,407,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200726.log',515,1,169,461,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200726.log',515,1,171,470,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200726.log',515,1,173,479,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200726.log',1048585,1,1,1,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200726.log',1048585,1,4,4,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200726.log',1048585,1,5,5,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200726.log',1048585,1,6,6,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200726.log',1048585,1,7,7,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200726.log',1048585,1,8,8,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200726.log',1048585,1,14,14,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200726.log',1048585,1,20,20,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200726.log',1048585,1,21,21,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200726.log',1048585,1,22,22,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200726.log',1048585,1,33,33,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200726.log',1048585,1,40,40,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200726.log',1048585,1,58,58,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200726.log',1048585,1,78,78,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200726.log',1048585,1,87,87,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200726.log',1048585,1,149,149,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200726.log',1048585,1,150,150,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200726.log',1048585,1,169,169,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200726.log',1048585,1,171,171,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200726.log',1048585,1,173,173,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200726.log',1048585,1,174,174,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200726.log',1048585,1,175,175,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200726.log',1048585,1,176,176,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200726.log',1048585,1,177,177,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200726.log',1048585,1,178,178,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200727.log',256,1,NULL,1,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200727.log',515,1,20,53,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200727.log',515,1,81,283,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200727.log',515,1,78,288,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200727.log',515,1,84,289,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200727.log',515,1,91,295,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200727.log',515,1,137,343,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200727.log',515,1,141,361,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200727.log',515,1,142,367,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200727.log',515,1,149,401,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200727.log',515,1,169,461,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200727.log',515,1,171,470,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200727.log',515,1,173,479,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200727.log',515,1,175,493,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200727.log',515,1,176,500,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200727.log',1048585,1,20,20,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200727.log',1048585,1,81,81,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200727.log',1048585,1,142,142,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200727.log',1048585,1,171,171,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200727.log',1048585,1,173,173,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200728.log',256,1,NULL,1,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200728.log',515,1,51,118,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200728.log',515,1,58,137,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200728.log',515,1,77,287,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20200728.log',515,1,78,288,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200728.log',515,1,133,318,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20200728.log',515,1,141,361,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200728.log',515,1,149,401,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200728.log',515,1,151,414,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200728.log',515,1,169,461,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200728.log',515,1,173,479,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200728.log',515,1,175,493,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200728.log',515,1,178,514,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200728.log',1048585,1,57,57,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200728.log',1048585,1,58,58,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200728.log',1048585,1,77,77,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200728.log',1048585,1,78,78,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200728.log',1048585,1,83,83,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200728.log',1048585,1,84,84,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200728.log',1048585,1,175,175,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200729.log',256,1,NULL,1,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',26,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,1,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,2,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,3,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,4,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,5,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,6,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,7,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,8,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,9,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,10,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,11,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200729.log',259,1,NULL,12,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20200729.log',515,1,1,3,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200729.log',515,1,33,81,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200729.log',515,1,51,118,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200729.log',515,1,85,281,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200729.log',515,1,81,283,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200729.log',515,1,78,288,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20200729.log',515,1,89,293,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200729.log',515,1,141,361,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200729.log',515,1,142,367,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200729.log',515,1,147,387,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200729.log',515,1,148,394,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200729.log',515,1,169,461,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200729.log',515,1,173,479,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200729.log',515,1,176,500,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200729.log',515,1,185,527,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,86),('usage_events_20200729.log',515,1,188,545,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,89),('usage_events_20200729.log',515,1,193,569,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20200729.log',1048585,1,1,1,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200729.log',1048585,1,4,4,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200729.log',1048585,1,5,5,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200729.log',1048585,1,6,6,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200729.log',1048585,1,7,7,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200729.log',1048585,1,8,8,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200729.log',1048585,1,14,14,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200729.log',1048585,1,20,20,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200729.log',1048585,1,21,21,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200729.log',1048585,1,22,22,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200729.log',1048585,1,40,40,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200729.log',1048585,1,51,51,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200729.log',1048585,1,54,54,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200729.log',1048585,1,78,78,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200729.log',1048585,1,82,82,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200729.log',1048585,1,91,91,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200729.log',1048585,1,136,136,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200729.log',1048585,1,142,142,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200729.log',1048585,1,173,173,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200729.log',1048585,1,176,176,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200729.log',1048585,1,185,185,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200729.log',1048585,1,186,186,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200729.log',1048585,1,187,187,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200729.log',1048585,1,188,188,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200729.log',1048585,1,189,189,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200729.log',1048585,1,190,190,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200729.log',1048585,1,191,191,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200729.log',1048585,1,193,193,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200730.log',256,1,NULL,1,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20200730.log',259,1,NULL,12,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200730.log',515,1,46,114,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200730.log',515,1,49,116,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200730.log',515,1,50,117,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20200730.log',515,1,85,281,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200730.log',515,1,81,283,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200730.log',515,1,78,288,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200730.log',515,1,89,293,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200730.log',515,1,99,305,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200730.log',515,1,141,361,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,69),('usage_events_20200730.log',515,1,177,507,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200730.log',515,1,185,527,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200730.log',515,1,186,533,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200730.log',515,1,190,556,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200730.log',1048585,1,46,46,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200730.log',1048585,1,49,49,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200730.log',1048585,1,58,58,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200730.log',1048585,1,82,82,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200730.log',1048585,1,89,89,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200730.log',1048585,1,151,151,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200730.log',1048585,1,177,177,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200730.log',1048585,1,185,185,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200730.log',1048585,1,186,186,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200730.log',1048585,1,190,190,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200731.log',515,1,46,114,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200731.log',515,1,99,305,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200731.log',515,1,114,308,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200731.log',515,1,173,479,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200731.log',515,1,175,493,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200731.log',515,1,177,507,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200731.log',515,1,178,514,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200731.log',1048585,1,87,87,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200731.log',1048585,1,114,114,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200731.log',1048585,1,173,173,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200731.log',1048585,1,175,175,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200731.log',1048585,1,177,177,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200731.log',1048585,1,178,178,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200801.log',256,1,NULL,1,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,1,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,2,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,3,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,4,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,5,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,6,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,7,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,8,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,9,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,10,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,11,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200801.log',259,1,NULL,12,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200801.log',515,1,1,3,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200801.log',515,1,40,94,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200801.log',515,1,76,286,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200801.log',515,1,78,288,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20200801.log',515,1,100,306,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200801.log',515,1,137,343,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200801.log',515,1,142,367,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,70),('usage_events_20200801.log',515,1,150,407,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200801.log',515,1,151,414,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200801.log',515,1,175,493,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200801.log',515,1,177,507,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200801.log',515,1,178,514,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,85),('usage_events_20200801.log',515,1,190,556,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200801.log',515,1,193,569,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200801.log',1048585,1,1,1,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200801.log',1048585,1,4,4,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200801.log',1048585,1,5,5,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200801.log',1048585,1,6,6,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200801.log',1048585,1,7,7,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200801.log',1048585,1,8,8,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200801.log',1048585,1,14,14,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200801.log',1048585,1,20,20,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200801.log',1048585,1,21,21,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200801.log',1048585,1,22,22,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200801.log',1048585,1,40,40,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200801.log',1048585,1,78,78,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200801.log',1048585,1,100,100,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200801.log',1048585,1,137,137,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200801.log',1048585,1,142,142,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20200801.log',1048585,1,150,150,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200801.log',1048585,1,175,175,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200801.log',1048585,1,178,178,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200801.log',1048585,1,185,185,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200801.log',1048585,1,186,186,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200801.log',1048585,1,187,187,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200801.log',1048585,1,188,188,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200801.log',1048585,1,189,189,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200801.log',1048585,1,190,190,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200801.log',1048585,1,191,191,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200801.log',1048585,1,193,193,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,12,NULL),('usage_events_20200802.log',515,1,32,80,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200802.log',515,1,51,118,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200802.log',515,1,58,137,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200802.log',515,1,78,288,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200802.log',515,1,86,290,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200802.log',515,1,141,361,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200802.log',515,1,142,367,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200802.log',515,1,149,401,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200802.log',515,1,169,461,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200802.log',515,1,176,500,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200802.log',515,1,177,507,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200802.log',515,1,190,556,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200802.log',1048585,1,32,32,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200802.log',1048585,1,51,51,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200802.log',1048585,1,58,58,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200802.log',1048585,1,78,78,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200802.log',1048585,1,86,86,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200802.log',1048585,1,142,142,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200802.log',1048585,1,149,149,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200802.log',1048585,1,169,169,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200802.log',1048585,1,190,190,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200803.log',515,1,49,116,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200803.log',515,1,53,120,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200803.log',515,1,78,288,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200803.log',515,1,100,306,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200803.log',515,1,139,351,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200803.log',515,1,149,401,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200803.log',515,1,150,407,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200803.log',515,1,151,414,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200803.log',515,1,169,461,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200803.log',515,1,175,493,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200803.log',515,1,176,500,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200803.log',515,1,186,533,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200803.log',515,1,190,556,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200803.log',1048585,1,100,100,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200803.log',1048585,1,137,137,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200803.log',1048585,1,139,139,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200803.log',1048585,1,142,142,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200803.log',1048585,1,149,149,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200803.log',1048585,1,173,173,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200803.log',1048585,1,175,175,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200803.log',1048585,1,186,186,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200804.log',256,1,NULL,1,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200804.log',515,1,49,116,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200804.log',515,1,51,118,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200804.log',515,1,53,120,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200804.log',515,1,56,135,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200804.log',515,1,78,288,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200804.log',515,1,89,293,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200804.log',515,1,133,318,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200804.log',515,1,134,324,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200804.log',515,1,135,330,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200804.log',515,1,137,343,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200804.log',515,1,146,379,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200804.log',515,1,149,401,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200804.log',515,1,169,461,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200804.log',515,1,173,479,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200804.log',515,1,185,527,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200804.log',515,1,186,533,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,87),('usage_events_20200804.log',515,1,190,556,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20200804.log',1048585,1,56,56,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200804.log',1048585,1,78,78,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200804.log',1048585,1,87,87,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200804.log',1048585,1,89,89,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200804.log',1048585,1,134,134,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200804.log',1048585,1,137,137,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200804.log',1048585,1,146,146,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200804.log',1048585,1,190,190,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200805.log',256,1,NULL,1,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,1,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,2,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,3,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,4,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,5,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,6,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,7,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,8,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,9,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,10,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,11,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200805.log',259,1,NULL,12,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200805.log',515,1,1,3,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200805.log',515,1,49,116,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200805.log',515,1,53,120,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200805.log',515,1,78,288,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200805.log',515,1,87,291,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200805.log',515,1,137,343,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200805.log',515,1,139,351,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',8,1,259,9,68),('usage_events_20200805.log',515,1,149,401,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,74),('usage_events_20200805.log',515,1,169,461,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200805.log',515,1,171,470,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200805.log',515,1,178,514,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200805.log',515,1,186,533,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200805.log',515,1,187,539,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200805.log',515,1,190,556,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20200805.log',515,1,191,563,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20200805.log',515,1,193,569,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200805.log',1048585,1,1,1,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200805.log',1048585,1,4,4,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200805.log',1048585,1,5,5,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200805.log',1048585,1,6,6,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200805.log',1048585,1,7,7,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200805.log',1048585,1,8,8,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200805.log',1048585,1,14,14,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200805.log',1048585,1,20,20,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200805.log',1048585,1,21,21,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200805.log',1048585,1,22,22,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200805.log',1048585,1,40,40,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200805.log',1048585,1,58,58,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200805.log',1048585,1,76,76,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200805.log',1048585,1,86,86,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200805.log',1048585,1,87,87,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200805.log',1048585,1,100,100,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200805.log',1048585,1,137,137,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200805.log',1048585,1,139,139,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,9,NULL),('usage_events_20200805.log',1048585,1,142,142,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200805.log',1048585,1,169,169,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200805.log',1048585,1,171,171,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200805.log',1048585,1,185,185,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200805.log',1048585,1,186,186,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200805.log',1048585,1,187,187,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200805.log',1048585,1,188,188,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200805.log',1048585,1,189,189,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200805.log',1048585,1,190,190,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200805.log',1048585,1,191,191,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20200805.log',1048585,1,193,193,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200806.log',256,1,NULL,1,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200806.log',515,1,19,52,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,10),('usage_events_20200806.log',515,1,32,80,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200806.log',515,1,83,285,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200806.log',515,1,78,288,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200806.log',515,1,137,343,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200806.log',515,1,139,351,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200806.log',515,1,141,361,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200806.log',515,1,149,401,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200806.log',515,1,171,470,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200806.log',515,1,173,479,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200806.log',515,1,178,514,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200806.log',515,1,186,533,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200806.log',515,1,187,539,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200806.log',515,1,190,556,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20200806.log',515,1,193,569,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200806.log',1048585,1,19,19,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200806.log',1048585,1,28,28,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200806.log',1048585,1,32,32,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200806.log',1048585,1,58,58,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200806.log',1048585,1,83,83,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200806.log',1048585,1,137,137,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200806.log',1048585,1,148,148,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200806.log',1048585,1,149,149,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200806.log',1048585,1,171,171,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200806.log',1048585,1,173,173,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200806.log',1048585,1,186,186,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200806.log',1048585,1,187,187,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200806.log',1048585,1,188,188,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200806.log',1048585,1,190,190,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200807.log',256,1,NULL,1,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200807.log',259,1,NULL,12,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200807.log',515,1,19,52,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200807.log',515,1,54,133,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200807.log',515,1,78,288,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200807.log',515,1,91,295,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200807.log',515,1,134,324,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200807.log',515,1,137,343,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200807.log',515,1,147,387,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200807.log',515,1,171,470,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200807.log',515,1,175,493,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200807.log',515,1,176,500,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200807.log',515,1,185,527,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20200807.log',515,1,186,533,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,87),('usage_events_20200807.log',515,1,190,556,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',9,1,259,12,91),('usage_events_20200807.log',515,1,193,569,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20200807.log',1048585,1,28,28,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200807.log',1048585,1,40,40,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200807.log',1048585,1,54,54,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20200807.log',1048585,1,78,78,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200807.log',1048585,1,83,83,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200807.log',1048585,1,89,89,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200807.log',1048585,1,91,91,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200807.log',1048585,1,171,171,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200807.log',1048585,1,173,173,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200807.log',1048585,1,185,185,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200807.log',1048585,1,186,186,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200807.log',1048585,1,187,187,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200807.log',1048585,1,190,190,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,12,NULL),('usage_events_20200808.log',256,1,NULL,1,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,1,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,2,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,3,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,4,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,5,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,6,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,7,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,8,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,9,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,10,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,11,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200808.log',259,1,NULL,12,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20200808.log',515,1,1,3,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200808.log',515,1,49,116,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200808.log',515,1,83,285,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,46),('usage_events_20200808.log',515,1,78,288,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200808.log',515,1,125,310,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200808.log',515,1,139,351,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200808.log',515,1,148,394,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200808.log',515,1,150,407,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200808.log',515,1,178,514,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200808.log',515,1,186,533,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200808.log',515,1,193,569,'20200808','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20200808.log',1048585,1,1,1,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200808.log',1048585,1,4,4,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200808.log',1048585,1,5,5,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200808.log',1048585,1,6,6,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200808.log',1048585,1,7,7,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200808.log',1048585,1,8,8,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200808.log',1048585,1,14,14,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200808.log',1048585,1,20,20,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200808.log',1048585,1,21,21,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200808.log',1048585,1,22,22,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200808.log',1048585,1,40,40,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200808.log',1048585,1,49,49,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200808.log',1048585,1,57,57,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200808.log',1048585,1,78,78,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200808.log',1048585,1,83,83,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20200808.log',1048585,1,134,134,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200808.log',1048585,1,174,174,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200808.log',1048585,1,177,177,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200808.log',1048585,1,178,178,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200808.log',1048585,1,185,185,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200808.log',1048585,1,186,186,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200808.log',1048585,1,187,187,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200808.log',1048585,1,188,188,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200808.log',1048585,1,189,189,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200808.log',1048585,1,190,190,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200808.log',1048585,1,191,191,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200808.log',1048585,1,193,193,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20200809.log',256,1,NULL,1,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200809.log',259,1,NULL,12,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200809.log',515,1,51,118,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20200809.log',515,1,56,135,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200809.log',515,1,78,288,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200809.log',515,1,86,290,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200809.log',515,1,137,343,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200809.log',515,1,150,407,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200809.log',515,1,169,461,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200809.log',515,1,175,493,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200809.log',515,1,185,527,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200809.log',515,1,187,539,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200809.log',1048585,1,51,51,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200809.log',1048585,1,56,56,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200809.log',1048585,1,137,137,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200809.log',1048585,1,150,150,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200809.log',1048585,1,169,169,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200809.log',1048585,1,175,175,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200809.log',1048585,1,178,178,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200809.log',1048585,1,185,185,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200809.log',1048585,1,191,191,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200810.log',256,1,NULL,1,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200810.log',259,1,NULL,12,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200810.log',515,1,19,52,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200810.log',515,1,53,120,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200810.log',515,1,83,285,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200810.log',515,1,78,288,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20200810.log',515,1,139,351,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200810.log',515,1,149,401,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200810.log',515,1,150,407,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200810.log',515,1,152,423,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,77),('usage_events_20200810.log',515,1,175,493,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200810.log',515,1,178,514,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200810.log',515,1,193,569,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200810.log',1048585,1,19,19,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200810.log',1048585,1,53,53,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200810.log',1048585,1,78,78,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200810.log',1048585,1,83,83,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200810.log',1048585,1,173,173,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200810.log',1048585,1,175,175,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200810.log',1048585,1,178,178,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200810.log',1048585,1,185,185,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200811.log',256,1,NULL,1,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,1,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,2,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,3,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,4,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,5,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,6,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,7,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,8,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,9,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,10,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,11,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200811.log',259,1,NULL,12,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200811.log',515,1,1,3,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200811.log',515,1,33,81,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20200811.log',515,1,58,137,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20200811.log',515,1,76,286,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,47),('usage_events_20200811.log',515,1,78,288,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200811.log',515,1,86,290,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200811.log',515,1,89,293,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200811.log',515,1,99,305,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200811.log',515,1,135,330,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200811.log',515,1,139,351,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200811.log',515,1,141,361,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200811.log',515,1,151,414,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200811.log',515,1,171,470,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200811.log',515,1,173,479,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200811.log',515,1,175,493,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20200811.log',515,1,177,507,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200811.log',515,1,186,533,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200811.log',515,1,187,539,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20200811.log',515,1,193,569,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20200811.log',1048585,1,1,1,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200811.log',1048585,1,4,4,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200811.log',1048585,1,5,5,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200811.log',1048585,1,6,6,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200811.log',1048585,1,7,7,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200811.log',1048585,1,8,8,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200811.log',1048585,1,14,14,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200811.log',1048585,1,20,20,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200811.log',1048585,1,21,21,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200811.log',1048585,1,22,22,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200811.log',1048585,1,33,33,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200811.log',1048585,1,40,40,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200811.log',1048585,1,76,76,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200811.log',1048585,1,78,78,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200811.log',1048585,1,86,86,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200811.log',1048585,1,89,89,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200811.log',1048585,1,135,135,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200811.log',1048585,1,137,137,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200811.log',1048585,1,139,139,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200811.log',1048585,1,175,175,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200811.log',1048585,1,185,185,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200811.log',1048585,1,186,186,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200811.log',1048585,1,187,187,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200811.log',1048585,1,188,188,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200811.log',1048585,1,189,189,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200811.log',1048585,1,190,190,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200811.log',1048585,1,191,191,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200811.log',1048585,1,193,193,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200812.log',256,1,NULL,1,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200812.log',515,1,49,116,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200812.log',515,1,58,137,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200812.log',515,1,85,281,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20200812.log',515,1,114,308,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200812.log',515,1,133,318,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20200812.log',515,1,135,330,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20200812.log',515,1,139,351,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200812.log',515,1,147,387,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20200812.log',515,1,171,470,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200812.log',515,1,173,479,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200812.log',515,1,175,493,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200812.log',515,1,186,533,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200812.log',515,1,190,556,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20200812.log',515,1,193,569,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200812.log',1048585,1,49,49,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200812.log',1048585,1,58,58,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200812.log',1048585,1,78,78,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200812.log',1048585,1,79,79,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200812.log',1048585,1,85,85,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200812.log',1048585,1,86,86,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200812.log',1048585,1,135,135,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200812.log',1048585,1,136,136,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200812.log',1048585,1,139,139,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200812.log',1048585,1,175,175,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200812.log',1048585,1,176,176,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200812.log',1048585,1,187,187,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200812.log',1048585,1,191,191,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200813.log',256,1,NULL,1,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20200813.log',259,1,NULL,11,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200813.log',259,1,NULL,12,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20200813.log',515,1,33,81,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200813.log',515,1,58,137,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200813.log',515,1,76,286,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200813.log',515,1,78,288,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200813.log',515,1,114,308,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20200813.log',515,1,142,367,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200813.log',515,1,146,379,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200813.log',515,1,148,394,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200813.log',515,1,149,401,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200813.log',515,1,171,470,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200813.log',515,1,173,479,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200813.log',515,1,176,500,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200813.log',515,1,191,563,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200813.log',515,1,193,569,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20200813.log',1048585,1,8,8,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200813.log',1048585,1,33,33,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200813.log',1048585,1,56,56,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200813.log',1048585,1,59,59,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200813.log',1048585,1,81,81,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200813.log',1048585,1,85,85,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200813.log',1048585,1,137,137,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200813.log',1048585,1,146,146,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200813.log',1048585,1,148,148,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200813.log',1048585,1,149,149,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200813.log',1048585,1,173,173,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200813.log',1048585,1,176,176,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200813.log',1048585,1,185,185,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200813.log',1048585,1,186,186,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200813.log',1048585,1,187,187,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200813.log',1048585,1,188,188,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200813.log',1048585,1,189,189,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200813.log',1048585,1,190,190,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200813.log',1048585,1,191,191,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200813.log',1048585,1,193,193,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200814.log',256,1,NULL,1,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,1,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,2,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,3,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,4,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,5,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,6,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,7,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,8,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,9,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,10,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,11,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200814.log',259,1,NULL,12,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200814.log',515,1,1,3,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200814.log',515,1,14,51,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20200814.log',515,1,20,53,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200814.log',515,1,40,94,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20200814.log',515,1,49,116,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200814.log',515,1,50,117,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200814.log',515,1,58,137,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200814.log',515,1,81,283,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200814.log',515,1,78,288,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200814.log',515,1,89,293,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200814.log',515,1,142,367,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200814.log',515,1,147,387,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200814.log',515,1,148,394,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200814.log',515,1,151,414,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200814.log',515,1,169,461,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200814.log',515,1,175,493,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200814.log',515,1,176,500,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200814.log',515,1,190,556,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200814.log',1048585,1,1,1,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200814.log',1048585,1,4,4,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200814.log',1048585,1,5,5,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200814.log',1048585,1,6,6,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200814.log',1048585,1,7,7,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200814.log',1048585,1,8,8,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200814.log',1048585,1,14,14,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200814.log',1048585,1,20,20,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200814.log',1048585,1,21,21,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200814.log',1048585,1,22,22,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200814.log',1048585,1,40,40,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200814.log',1048585,1,49,49,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200814.log',1048585,1,58,58,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200814.log',1048585,1,78,78,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200814.log',1048585,1,89,89,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200814.log',1048585,1,142,142,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200814.log',1048585,1,169,169,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200814.log',1048585,1,176,176,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200814.log',1048585,1,185,185,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200814.log',1048585,1,186,186,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200814.log',1048585,1,187,187,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20200814.log',1048585,1,188,188,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200814.log',1048585,1,189,189,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200814.log',1048585,1,190,190,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200814.log',1048585,1,191,191,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200814.log',1048585,1,193,193,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200815.log',256,1,NULL,1,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200815.log',515,1,7,32,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200815.log',515,1,20,53,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200815.log',515,1,78,288,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200815.log',515,1,84,289,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200815.log',515,1,89,293,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200815.log',515,1,147,387,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200815.log',515,1,151,414,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200815.log',515,1,176,500,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200815.log',515,1,187,539,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20200815.log',515,1,190,556,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200815.log',515,1,191,563,'20200815','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200815.log',1048585,1,7,7,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200815.log',1048585,1,20,20,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200815.log',1048585,1,78,78,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200815.log',1048585,1,84,84,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200815.log',1048585,1,147,147,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200815.log',1048585,1,151,151,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200815.log',1048585,1,176,176,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200815.log',1048585,1,187,187,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200815.log',1048585,1,191,191,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200815.log',1048585,1,193,193,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200816.log',515,1,51,118,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200816.log',515,1,81,283,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20200816.log',515,1,78,288,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200816.log',515,1,84,289,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200816.log',515,1,87,291,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200816.log',515,1,89,293,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200816.log',515,1,146,379,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200816.log',515,1,150,407,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200816.log',515,1,151,414,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200816.log',515,1,169,461,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200816.log',515,1,173,479,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200816.log',515,1,176,500,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200816.log',515,1,190,556,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200816.log',1048585,1,51,51,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200816.log',1048585,1,78,78,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200816.log',1048585,1,84,84,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200816.log',1048585,1,87,87,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200816.log',1048585,1,89,89,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200816.log',1048585,1,115,115,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200816.log',1048585,1,146,146,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200816.log',1048585,1,151,151,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200816.log',1048585,1,173,173,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200816.log',1048585,1,176,176,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200816.log',1048585,1,190,190,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200817.log',256,1,NULL,1,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,1,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,2,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,3,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,4,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,5,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,6,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,7,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,8,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,9,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,10,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,11,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200817.log',259,1,NULL,12,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200817.log',515,1,1,3,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200817.log',515,1,56,135,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200817.log',515,1,58,137,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200817.log',515,1,81,283,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200817.log',515,1,84,289,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200817.log',515,1,86,290,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200817.log',515,1,89,293,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200817.log',515,1,114,308,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200817.log',515,1,134,324,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200817.log',515,1,148,394,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20200817.log',515,1,151,414,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200817.log',515,1,175,493,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200817.log',515,1,176,500,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200817.log',515,1,193,569,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20200817.log',1048585,1,1,1,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200817.log',1048585,1,4,4,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200817.log',1048585,1,5,5,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200817.log',1048585,1,6,6,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200817.log',1048585,1,7,7,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200817.log',1048585,1,8,8,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200817.log',1048585,1,14,14,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200817.log',1048585,1,20,20,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200817.log',1048585,1,21,21,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200817.log',1048585,1,22,22,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200817.log',1048585,1,40,40,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200817.log',1048585,1,56,56,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200817.log',1048585,1,58,58,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200817.log',1048585,1,84,84,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200817.log',1048585,1,86,86,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200817.log',1048585,1,113,113,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200817.log',1048585,1,133,133,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200817.log',1048585,1,134,134,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200817.log',1048585,1,146,146,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200817.log',1048585,1,148,148,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20200817.log',1048585,1,176,176,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200817.log',1048585,1,185,185,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200817.log',1048585,1,186,186,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200817.log',1048585,1,187,187,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200817.log',1048585,1,188,188,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200817.log',1048585,1,189,189,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200817.log',1048585,1,190,190,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200817.log',1048585,1,191,191,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200817.log',1048585,1,193,193,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200818.log',256,1,NULL,1,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200818.log',259,1,NULL,9,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200818.log',259,1,NULL,10,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200818.log',259,1,NULL,12,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200818.log',515,1,8,33,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200818.log',515,1,32,80,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200818.log',515,1,51,118,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200818.log',515,1,58,137,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200818.log',515,1,59,138,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200818.log',515,1,113,307,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200818.log',515,1,142,367,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200818.log',515,1,149,401,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200818.log',515,1,150,407,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200818.log',515,1,152,423,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200818.log',515,1,175,493,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200818.log',515,1,185,527,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200818.log',515,1,187,539,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200818.log',515,1,190,556,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200818.log',515,1,191,563,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200818.log',515,1,193,569,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200818.log',1048585,1,32,32,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200818.log',1048585,1,58,58,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200818.log',1048585,1,86,86,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200818.log',1048585,1,100,100,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200818.log',1048585,1,113,113,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200818.log',1048585,1,133,133,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200818.log',1048585,1,139,139,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200818.log',1048585,1,142,142,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200818.log',1048585,1,149,149,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200818.log',1048585,1,152,152,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200818.log',1048585,1,185,185,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200818.log',1048585,1,191,191,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200818.log',1048585,1,193,193,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200819.log',256,1,NULL,1,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200819.log',259,1,NULL,12,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200819.log',515,1,85,281,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200819.log',515,1,76,286,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200819.log',515,1,84,289,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200819.log',515,1,133,318,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,63),('usage_events_20200819.log',515,1,141,361,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200819.log',515,1,148,394,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200819.log',515,1,169,461,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200819.log',515,1,175,493,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200819.log',515,1,178,514,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200819.log',515,1,187,539,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200819.log',515,1,191,563,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200819.log',1048585,1,78,78,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200819.log',1048585,1,84,84,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200819.log',1048585,1,87,87,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200819.log',1048585,1,133,133,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20200819.log',1048585,1,136,136,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200819.log',1048585,1,137,137,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200819.log',1048585,1,150,150,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200819.log',1048585,1,169,169,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200819.log',1048585,1,175,175,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200819.log',1048585,1,178,178,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200820.log',256,1,NULL,1,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200820.log',259,1,NULL,1,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200820.log',259,1,NULL,2,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200820.log',259,1,NULL,4,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200820.log',259,1,NULL,7,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200820.log',259,1,NULL,11,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200820.log',259,1,NULL,12,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200820.log',515,1,46,114,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200820.log',515,1,47,115,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200820.log',515,1,49,116,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200820.log',515,1,50,117,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200820.log',515,1,81,283,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200820.log',515,1,83,285,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200820.log',515,1,100,306,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200820.log',515,1,133,318,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200820.log',515,1,141,361,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20200820.log',515,1,146,379,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200820.log',515,1,148,394,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200820.log',515,1,152,423,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200820.log',515,1,171,470,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200820.log',515,1,175,493,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200820.log',515,1,176,500,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200820.log',515,1,186,533,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200820.log',515,1,187,539,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200820.log',1048585,1,4,4,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200820.log',1048585,1,6,6,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200820.log',1048585,1,46,46,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200820.log',1048585,1,49,49,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200820.log',1048585,1,50,50,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20200820.log',1048585,1,58,58,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200820.log',1048585,1,83,83,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200820.log',1048585,1,100,100,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200820.log',1048585,1,133,133,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200820.log',1048585,1,142,142,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200820.log',1048585,1,146,146,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200820.log',1048585,1,148,148,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200820.log',1048585,1,171,171,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200820.log',1048585,1,175,175,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200820.log',1048585,1,176,176,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200820.log',1048585,1,186,186,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200820.log',1048585,1,187,187,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200820.log',1048585,1,191,191,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200820.log',1048585,1,193,193,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200821.log',256,1,NULL,1,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200821.log',259,1,NULL,9,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200821.log',259,1,NULL,12,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200821.log',515,1,8,33,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200821.log',515,1,53,120,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20200821.log',515,1,76,286,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20200821.log',515,1,78,288,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200821.log',515,1,84,289,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200821.log',515,1,87,291,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200821.log',515,1,115,309,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200821.log',515,1,134,324,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200821.log',515,1,139,351,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200821.log',515,1,148,394,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200821.log',515,1,169,461,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200821.log',515,1,171,470,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200821.log',515,1,175,493,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200821.log',515,1,187,539,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200821.log',515,1,190,556,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200821.log',515,1,191,563,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200821.log',1048585,1,8,8,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200821.log',1048585,1,58,58,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200821.log',1048585,1,76,76,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200821.log',1048585,1,84,84,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200821.log',1048585,1,87,87,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200821.log',1048585,1,115,115,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200821.log',1048585,1,139,139,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200821.log',1048585,1,169,169,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200821.log',1048585,1,171,171,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200821.log',1048585,1,191,191,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200822.log',256,1,NULL,1,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200822.log',259,1,NULL,12,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200822.log',515,1,139,351,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200822.log',515,1,149,401,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200822.log',515,1,173,479,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200822.log',515,1,175,493,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200822.log',515,1,191,563,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200822.log',515,1,193,569,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20200822.log',1048585,1,137,137,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200822.log',1048585,1,139,139,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200822.log',1048585,1,147,147,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200822.log',1048585,1,149,149,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200822.log',1048585,1,191,191,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200822.log',1048585,1,193,193,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200823.log',515,1,20,53,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200823.log',515,1,85,281,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200823.log',515,1,86,290,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200823.log',515,1,90,294,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,55),('usage_events_20200823.log',515,1,91,295,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200823.log',515,1,147,387,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20200823.log',515,1,148,394,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200823.log',515,1,151,414,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200823.log',515,1,169,461,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200823.log',515,1,175,493,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200823.log',515,1,191,563,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200823.log',1048585,1,20,20,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200823.log',1048585,1,87,87,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200823.log',1048585,1,90,90,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200823.log',1048585,1,91,91,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200823.log',1048585,1,148,148,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200823.log',1048585,1,151,151,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200823.log',1048585,1,175,175,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200823.log',1048585,1,193,193,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200824.log',256,1,NULL,1,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200824.log',259,1,NULL,1,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200824.log',259,1,NULL,2,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200824.log',259,1,NULL,4,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200824.log',259,1,NULL,7,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200824.log',259,1,NULL,11,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200824.log',259,1,NULL,12,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200824.log',515,1,34,82,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200824.log',515,1,49,116,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200824.log',515,1,50,117,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200824.log',515,1,86,290,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200824.log',515,1,87,291,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200824.log',515,1,89,293,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200824.log',515,1,139,351,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200824.log',515,1,169,461,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200824.log',515,1,173,479,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200824.log',515,1,175,493,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200824.log',515,1,191,563,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200824.log',1048585,1,4,4,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200824.log',1048585,1,6,6,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200824.log',1048585,1,78,78,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200824.log',1048585,1,86,86,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200824.log',1048585,1,87,87,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200824.log',1048585,1,169,169,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200824.log',1048585,1,173,173,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200824.log',1048585,1,175,175,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200824.log',1048585,1,176,176,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200824.log',1048585,1,187,187,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200824.log',1048585,1,190,190,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20200824.log',1048585,1,191,191,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20200824.log',1048585,1,193,193,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200825.log',256,1,NULL,1,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200825.log',259,1,NULL,12,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200825.log',515,1,8,33,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200825.log',515,1,58,137,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200825.log',515,1,78,288,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200825.log',515,1,89,293,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200825.log',515,1,99,305,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200825.log',515,1,125,310,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200825.log',515,1,133,318,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200825.log',515,1,147,387,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200825.log',515,1,148,394,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200825.log',515,1,150,407,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200825.log',515,1,169,461,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200825.log',515,1,173,479,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200825.log',515,1,175,493,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200825.log',515,1,176,500,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200825.log',515,1,187,539,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20200825.log',515,1,190,556,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20200825.log',515,1,191,563,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,92),('usage_events_20200825.log',515,1,193,569,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20200825.log',1048585,1,8,8,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200825.log',1048585,1,58,58,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200825.log',1048585,1,85,85,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200825.log',1048585,1,89,89,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200825.log',1048585,1,99,99,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200825.log',1048585,1,150,150,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200825.log',1048585,1,173,173,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200825.log',1048585,1,176,176,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200825.log',1048585,1,191,191,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200826.log',256,1,NULL,1,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,1,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,2,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,3,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,4,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,5,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,6,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,7,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,8,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,9,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,10,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,11,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200826.log',259,1,NULL,12,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200826.log',515,1,1,3,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200826.log',515,1,4,19,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200826.log',515,1,58,137,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200826.log',515,1,79,282,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200826.log',515,1,83,285,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200826.log',515,1,78,288,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200826.log',515,1,115,309,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20200826.log',515,1,137,343,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200826.log',515,1,141,361,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200826.log',515,1,146,379,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200826.log',515,1,147,387,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200826.log',515,1,148,394,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200826.log',515,1,169,461,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200826.log',515,1,173,479,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200826.log',515,1,175,493,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200826.log',515,1,185,527,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200826.log',515,1,187,539,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20200826.log',515,1,191,563,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200826.log',515,1,193,569,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200826.log',1048585,1,1,1,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200826.log',1048585,1,4,4,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200826.log',1048585,1,6,6,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200826.log',1048585,1,8,8,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200826.log',1048585,1,14,14,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200826.log',1048585,1,20,20,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200826.log',1048585,1,40,40,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200826.log',1048585,1,58,58,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200826.log',1048585,1,78,78,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200826.log',1048585,1,83,83,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200826.log',1048585,1,89,89,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200826.log',1048585,1,146,146,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200826.log',1048585,1,147,147,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200826.log',1048585,1,148,148,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200826.log',1048585,1,169,169,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200826.log',1048585,1,173,173,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200826.log',1048585,1,176,176,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200826.log',1048585,1,185,185,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200826.log',1048585,1,186,186,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200826.log',1048585,1,187,187,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200826.log',1048585,1,188,188,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200826.log',1048585,1,189,189,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200826.log',1048585,1,190,190,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200826.log',1048585,1,191,191,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200826.log',1048585,1,193,193,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200827.log',515,1,58,137,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200827.log',515,1,59,138,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200827.log',515,1,78,288,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200827.log',515,1,87,291,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200827.log',515,1,137,343,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200827.log',515,1,146,379,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200827.log',515,1,148,394,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200827.log',515,1,149,401,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200827.log',515,1,173,479,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200827.log',515,1,186,533,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200827.log',515,1,187,539,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200827.log',515,1,193,569,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200827.log',1048585,1,4,4,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200827.log',1048585,1,58,58,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200827.log',1048585,1,136,136,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200827.log',1048585,1,149,149,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200827.log',1048585,1,193,193,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200828.log',256,1,NULL,1,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200828.log',515,1,49,116,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200828.log',515,1,54,133,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200828.log',515,1,58,137,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200828.log',515,1,79,282,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20200828.log',515,1,81,283,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200828.log',515,1,84,289,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200828.log',515,1,87,291,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200828.log',515,1,89,293,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200828.log',515,1,113,307,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200828.log',515,1,139,351,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200828.log',515,1,146,379,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200828.log',515,1,148,394,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20200828.log',515,1,149,401,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200828.log',515,1,169,461,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200828.log',515,1,171,470,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200828.log',515,1,186,533,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200828.log',1048585,1,33,33,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200828.log',1048585,1,58,58,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200828.log',1048585,1,79,79,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200828.log',1048585,1,84,84,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200828.log',1048585,1,87,87,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200828.log',1048585,1,146,146,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200828.log',1048585,1,148,148,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200828.log',1048585,1,173,173,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200828.log',1048585,1,175,175,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200829.log',256,1,NULL,1,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,1,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,2,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,3,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,4,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,5,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,6,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,7,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,8,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,9,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,10,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,11,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200829.log',259,1,NULL,12,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20200829.log',515,1,1,3,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200829.log',515,1,82,284,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200829.log',515,1,78,288,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200829.log',515,1,137,343,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200829.log',515,1,139,351,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200829.log',515,1,141,361,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200829.log',515,1,147,387,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200829.log',515,1,148,394,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200829.log',515,1,169,461,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200829.log',515,1,173,479,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200829.log',515,1,176,500,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200829.log',515,1,178,514,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200829.log',515,1,186,533,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200829.log',515,1,190,556,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200829.log',515,1,193,569,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200829.log',1048585,1,1,1,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200829.log',1048585,1,4,4,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200829.log',1048585,1,5,5,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200829.log',1048585,1,6,6,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200829.log',1048585,1,7,7,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200829.log',1048585,1,8,8,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200829.log',1048585,1,14,14,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200829.log',1048585,1,20,20,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200829.log',1048585,1,21,21,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200829.log',1048585,1,22,22,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200829.log',1048585,1,40,40,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200829.log',1048585,1,59,59,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200829.log',1048585,1,78,78,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200829.log',1048585,1,137,137,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200829.log',1048585,1,148,148,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200829.log',1048585,1,175,175,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200829.log',1048585,1,176,176,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200829.log',1048585,1,185,185,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200829.log',1048585,1,186,186,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200829.log',1048585,1,187,187,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200829.log',1048585,1,188,188,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200829.log',1048585,1,189,189,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200829.log',1048585,1,190,190,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200829.log',1048585,1,191,191,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200829.log',1048585,1,193,193,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200830.log',259,1,NULL,5,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200830.log',259,1,NULL,9,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200830.log',515,1,34,82,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200830.log',515,1,53,120,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200830.log',515,1,56,135,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200830.log',515,1,58,137,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200830.log',515,1,87,291,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200830.log',515,1,100,306,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200830.log',515,1,134,324,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,64),('usage_events_20200830.log',515,1,139,351,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200830.log',515,1,146,379,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,71),('usage_events_20200830.log',515,1,147,387,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200830.log',515,1,148,394,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200830.log',515,1,169,461,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200830.log',515,1,173,479,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200830.log',515,1,175,493,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200830.log',515,1,176,500,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20200830.log',1048585,1,56,56,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200830.log',1048585,1,58,58,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20200830.log',1048585,1,78,78,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200830.log',1048585,1,87,87,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200830.log',1048585,1,134,134,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200830.log',1048585,1,146,146,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200830.log',1048585,1,147,147,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200830.log',1048585,1,173,173,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200830.log',1048585,1,176,176,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200831.log',256,1,NULL,1,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200831.log',259,1,NULL,7,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200831.log',259,1,NULL,9,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200831.log',515,1,49,116,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200831.log',515,1,51,118,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200831.log',515,1,58,137,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200831.log',515,1,83,285,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200831.log',515,1,78,288,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200831.log',515,1,84,289,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200831.log',515,1,86,290,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200831.log',515,1,87,291,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200831.log',515,1,89,293,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200831.log',515,1,147,387,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,72),('usage_events_20200831.log',515,1,148,394,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200831.log',515,1,149,401,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200831.log',515,1,169,461,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200831.log',515,1,173,479,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200831.log',515,1,177,507,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200831.log',515,1,191,563,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200831.log',1048585,1,49,49,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200831.log',1048585,1,58,58,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200831.log',1048585,1,82,82,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200831.log',1048585,1,84,84,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200831.log',1048585,1,87,87,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200831.log',1048585,1,137,137,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200831.log',1048585,1,147,147,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200831.log',1048585,1,149,149,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200831.log',1048585,1,176,176,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200901.log',256,1,NULL,1,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,1,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,2,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,3,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,4,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,5,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,6,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,7,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,8,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,9,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,10,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,11,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200901.log',259,1,NULL,12,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200901.log',515,1,1,3,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200901.log',515,1,49,116,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200901.log',515,1,78,288,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200901.log',515,1,84,289,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200901.log',515,1,87,291,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200901.log',515,1,114,308,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200901.log',515,1,136,336,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20200901.log',515,1,137,343,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200901.log',515,1,139,351,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200901.log',515,1,146,379,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200901.log',515,1,147,387,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20200901.log',515,1,148,394,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200901.log',515,1,150,407,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200901.log',515,1,169,461,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200901.log',515,1,171,470,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200901.log',515,1,175,493,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,82),('usage_events_20200901.log',515,1,193,569,'20200901','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200901.log',1048585,1,1,1,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200901.log',1048585,1,4,4,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200901.log',1048585,1,5,5,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200901.log',1048585,1,6,6,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200901.log',1048585,1,7,7,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200901.log',1048585,1,8,8,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200901.log',1048585,1,14,14,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200901.log',1048585,1,20,20,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200901.log',1048585,1,21,21,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200901.log',1048585,1,22,22,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200901.log',1048585,1,40,40,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200901.log',1048585,1,49,49,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200901.log',1048585,1,58,58,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200901.log',1048585,1,78,78,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200901.log',1048585,1,84,84,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200901.log',1048585,1,87,87,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200901.log',1048585,1,114,114,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200901.log',1048585,1,137,137,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200901.log',1048585,1,139,139,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200901.log',1048585,1,176,176,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200901.log',1048585,1,185,185,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200901.log',1048585,1,186,186,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200901.log',1048585,1,187,187,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200901.log',1048585,1,188,188,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200901.log',1048585,1,189,189,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200901.log',1048585,1,190,190,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200901.log',1048585,1,191,191,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200901.log',1048585,1,193,193,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200902.log',256,1,NULL,1,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200902.log',259,1,NULL,5,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200902.log',515,1,8,33,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200902.log',515,1,46,114,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20200902.log',515,1,54,133,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200902.log',515,1,58,137,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200902.log',515,1,83,285,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200902.log',515,1,78,288,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200902.log',515,1,86,290,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20200902.log',515,1,87,291,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20200902.log',515,1,89,293,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200902.log',515,1,99,305,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200902.log',515,1,150,407,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200902.log',515,1,175,493,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200902.log',515,1,176,500,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200902.log',515,1,187,539,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20200902.log',515,1,190,556,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200902.log',1048585,1,8,8,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200902.log',1048585,1,54,54,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200902.log',1048585,1,58,58,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20200902.log',1048585,1,87,87,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200902.log',1048585,1,99,99,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200902.log',1048585,1,114,114,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200902.log',1048585,1,149,149,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200902.log',1048585,1,150,150,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200902.log',1048585,1,173,173,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200902.log',1048585,1,175,175,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200902.log',1048585,1,187,187,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200902.log',1048585,1,190,190,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200902.log',1048585,1,191,191,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200903.log',515,1,53,120,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200903.log',515,1,85,281,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,41),('usage_events_20200903.log',515,1,78,288,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200903.log',515,1,89,293,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200903.log',515,1,113,307,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200903.log',515,1,137,343,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200903.log',515,1,139,351,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200903.log',515,1,148,394,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20200903.log',515,1,149,401,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20200903.log',515,1,169,461,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200903.log',515,1,171,470,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200903.log',515,1,173,479,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200903.log',515,1,175,493,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200903.log',515,1,176,500,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200903.log',515,1,178,514,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200903.log',515,1,185,527,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200903.log',515,1,193,569,'20200903','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200903.log',1048585,1,53,53,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200903.log',1048585,1,58,58,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200903.log',1048585,1,78,78,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200903.log',1048585,1,84,84,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200903.log',1048585,1,85,85,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200903.log',1048585,1,89,89,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200903.log',1048585,1,113,113,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200903.log',1048585,1,137,137,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200903.log',1048585,1,139,139,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200903.log',1048585,1,148,148,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,10,NULL),('usage_events_20200903.log',1048585,1,149,149,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20200903.log',1048585,1,171,171,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200903.log',1048585,1,178,178,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200903.log',1048585,1,193,193,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200904.log',256,1,NULL,1,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20200904.log',259,1,NULL,12,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200904.log',515,1,8,33,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200904.log',515,1,50,117,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20200904.log',515,1,58,137,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200904.log',515,1,82,284,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200904.log',515,1,76,286,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,47),('usage_events_20200904.log',515,1,78,288,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20200904.log',515,1,89,293,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20200904.log',515,1,113,307,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200904.log',515,1,149,401,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200904.log',515,1,173,479,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200904.log',515,1,175,493,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200904.log',515,1,176,500,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200904.log',515,1,186,533,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200904.log',515,1,190,556,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200904.log',515,1,191,563,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200904.log',1048585,1,50,50,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200904.log',1048585,1,59,59,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200904.log',1048585,1,76,76,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200904.log',1048585,1,78,78,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200904.log',1048585,1,113,113,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200904.log',1048585,1,142,142,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200904.log',1048585,1,148,148,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200904.log',1048585,1,149,149,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200904.log',1048585,1,173,173,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200904.log',1048585,1,174,174,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200904.log',1048585,1,190,190,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200904.log',1048585,1,191,191,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200905.log',256,1,NULL,1,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',33,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,1,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,2,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,3,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,4,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,5,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,6,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,7,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,8,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,9,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,10,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,11,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200905.log',259,1,NULL,12,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200905.log',515,1,1,3,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200905.log',515,1,89,293,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200905.log',515,1,134,324,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200905.log',515,1,148,394,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200905.log',515,1,149,401,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200905.log',515,1,171,470,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200905.log',515,1,175,493,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200905.log',515,1,190,556,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200905.log',1048585,1,1,1,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200905.log',1048585,1,4,4,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200905.log',1048585,1,5,5,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200905.log',1048585,1,6,6,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200905.log',1048585,1,7,7,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200905.log',1048585,1,8,8,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200905.log',1048585,1,14,14,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200905.log',1048585,1,20,20,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200905.log',1048585,1,21,21,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200905.log',1048585,1,22,22,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200905.log',1048585,1,40,40,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200905.log',1048585,1,89,89,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200905.log',1048585,1,148,148,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200905.log',1048585,1,149,149,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200905.log',1048585,1,171,171,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200905.log',1048585,1,175,175,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20200905.log',1048585,1,185,185,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200905.log',1048585,1,186,186,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200905.log',1048585,1,187,187,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200905.log',1048585,1,188,188,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200905.log',1048585,1,189,189,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200905.log',1048585,1,190,190,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200905.log',1048585,1,191,191,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200905.log',1048585,1,193,193,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200906.log',256,1,NULL,1,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',25,NULL,NULL,NULL,NULL),('usage_events_20200906.log',515,1,35,83,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20200906.log',515,1,51,118,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200906.log',515,1,83,285,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200906.log',515,1,78,288,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200906.log',515,1,136,336,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,66),('usage_events_20200906.log',515,1,146,379,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200906.log',515,1,148,394,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200906.log',515,1,151,414,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20200906.log',515,1,175,493,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200906.log',515,1,177,507,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200906.log',515,1,178,514,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200906.log',515,1,188,545,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20200906.log',1048585,1,8,8,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200906.log',1048585,1,51,51,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200906.log',1048585,1,78,78,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200906.log',1048585,1,136,136,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200906.log',1048585,1,146,146,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200906.log',1048585,1,148,148,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200906.log',1048585,1,150,150,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200906.log',1048585,1,173,173,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200906.log',1048585,1,174,174,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200906.log',1048585,1,177,177,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200906.log',1048585,1,178,178,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200906.log',1048585,1,186,186,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200907.log',256,1,NULL,1,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20200907.log',515,1,32,80,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200907.log',515,1,34,82,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20200907.log',515,1,137,343,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200907.log',515,1,141,361,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200907.log',515,1,142,367,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200907.log',515,1,147,387,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200907.log',515,1,148,394,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200907.log',515,1,149,401,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20200907.log',515,1,173,479,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200907.log',515,1,175,493,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20200907.log',515,1,176,500,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200907.log',515,1,178,514,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200907.log',515,1,186,533,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200907.log',515,1,190,556,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200907.log',1048585,1,34,34,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200907.log',1048585,1,59,59,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200907.log',1048585,1,85,85,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200907.log',1048585,1,133,133,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200907.log',1048585,1,146,146,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200907.log',1048585,1,149,149,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200907.log',1048585,1,150,150,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200907.log',1048585,1,175,175,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200907.log',1048585,1,176,176,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200907.log',1048585,1,190,190,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200908.log',256,1,NULL,1,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',16,NULL,NULL,NULL,NULL),('usage_events_20200908.log',259,1,NULL,1,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200908.log',259,1,NULL,2,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200908.log',259,1,NULL,7,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200908.log',259,1,NULL,11,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200908.log',259,1,NULL,12,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200908.log',515,1,7,32,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20200908.log',515,1,8,33,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20200908.log',515,1,47,115,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200908.log',515,1,85,281,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200908.log',515,1,81,283,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200908.log',515,1,77,287,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200908.log',515,1,78,288,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200908.log',515,1,91,295,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200908.log',515,1,137,343,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200908.log',515,1,142,367,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200908.log',515,1,148,394,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200908.log',515,1,149,401,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20200908.log',515,1,173,479,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20200908.log',515,1,178,514,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200908.log',1048585,1,4,4,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200908.log',1048585,1,6,6,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200908.log',1048585,1,7,7,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200908.log',1048585,1,8,8,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200908.log',1048585,1,47,47,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200908.log',1048585,1,81,81,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200908.log',1048585,1,84,84,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200908.log',1048585,1,134,134,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200908.log',1048585,1,148,148,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200908.log',1048585,1,149,149,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200908.log',1048585,1,175,175,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200908.log',1048585,1,187,187,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200908.log',1048585,1,190,190,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200908.log',1048585,1,191,191,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200909.log',256,1,NULL,1,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',18,NULL,NULL,NULL,NULL),('usage_events_20200909.log',515,1,7,32,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20200909.log',515,1,54,133,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200909.log',515,1,58,137,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200909.log',515,1,78,288,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200909.log',515,1,148,394,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200909.log',515,1,150,407,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20200909.log',515,1,169,461,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,78),('usage_events_20200909.log',515,1,173,479,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200909.log',515,1,175,493,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200909.log',515,1,178,514,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200909.log',515,1,186,533,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200909.log',515,1,190,556,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',8,1,259,12,91),('usage_events_20200909.log',1048585,1,7,7,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200909.log',1048585,1,54,54,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200909.log',1048585,1,58,58,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200909.log',1048585,1,78,78,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200909.log',1048585,1,150,150,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200909.log',1048585,1,169,169,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200909.log',1048585,1,173,173,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200909.log',1048585,1,175,175,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200909.log',1048585,1,178,178,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200909.log',1048585,1,190,190,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200909.log',1048585,1,193,193,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200910.log',256,1,NULL,1,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20200910.log',259,1,NULL,12,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200910.log',515,1,7,32,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200910.log',515,1,19,52,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200910.log',515,1,47,115,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20200910.log',515,1,58,137,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200910.log',515,1,85,281,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200910.log',515,1,82,284,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200910.log',515,1,78,288,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200910.log',515,1,114,308,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200910.log',515,1,137,343,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200910.log',515,1,148,394,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20200910.log',515,1,150,407,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200910.log',515,1,169,461,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200910.log',515,1,173,479,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200910.log',515,1,186,533,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,87),('usage_events_20200910.log',515,1,187,539,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200910.log',515,1,190,556,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',10,1,259,12,91),('usage_events_20200910.log',1048585,1,47,47,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200910.log',1048585,1,58,58,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200910.log',1048585,1,78,78,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200910.log',1048585,1,82,82,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200910.log',1048585,1,137,137,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200910.log',1048585,1,150,150,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200910.log',1048585,1,169,169,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200910.log',1048585,1,173,173,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200910.log',1048585,1,175,175,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200910.log',1048585,1,187,187,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200910.log',1048585,1,190,190,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200911.log',256,1,NULL,1,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,1,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,2,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,3,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,4,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,5,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,6,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,7,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,8,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,9,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,10,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,11,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200911.log',259,1,NULL,12,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200911.log',515,1,1,3,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200911.log',515,1,54,133,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200911.log',515,1,58,137,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200911.log',515,1,82,284,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200911.log',515,1,83,285,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200911.log',515,1,91,295,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200911.log',515,1,136,336,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200911.log',515,1,137,343,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200911.log',515,1,141,361,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20200911.log',515,1,148,394,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200911.log',515,1,151,414,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200911.log',515,1,171,470,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200911.log',515,1,175,493,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200911.log',515,1,190,556,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200911.log',1048585,1,1,1,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200911.log',1048585,1,4,4,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200911.log',1048585,1,5,5,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200911.log',1048585,1,6,6,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200911.log',1048585,1,7,7,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200911.log',1048585,1,8,8,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200911.log',1048585,1,14,14,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200911.log',1048585,1,20,20,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200911.log',1048585,1,21,21,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200911.log',1048585,1,22,22,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200911.log',1048585,1,40,40,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200911.log',1048585,1,82,82,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200911.log',1048585,1,83,83,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200911.log',1048585,1,150,150,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200911.log',1048585,1,151,151,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200911.log',1048585,1,173,173,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200911.log',1048585,1,176,176,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200911.log',1048585,1,178,178,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200911.log',1048585,1,185,185,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200911.log',1048585,1,186,186,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200911.log',1048585,1,187,187,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200911.log',1048585,1,188,188,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200911.log',1048585,1,189,189,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200911.log',1048585,1,190,190,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200911.log',1048585,1,191,191,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200911.log',1048585,1,193,193,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200912.log',256,1,NULL,1,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200912.log',515,1,58,137,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200912.log',515,1,83,285,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200912.log',515,1,78,288,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200912.log',515,1,141,361,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200912.log',515,1,147,387,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200912.log',515,1,149,401,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200912.log',515,1,169,461,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200912.log',515,1,175,493,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200912.log',515,1,177,507,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20200912.log',515,1,178,514,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20200912.log',515,1,187,539,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200912.log',515,1,190,556,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200912.log',1048585,1,58,58,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200912.log',1048585,1,78,78,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200912.log',1048585,1,82,82,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20200912.log',1048585,1,83,83,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200912.log',1048585,1,87,87,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200912.log',1048585,1,147,147,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200912.log',1048585,1,177,177,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200912.log',1048585,1,178,178,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200912.log',1048585,1,188,188,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200913.log',256,1,NULL,1,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200913.log',515,1,33,81,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200913.log',515,1,50,117,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200913.log',515,1,88,292,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20200913.log',515,1,91,295,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200913.log',515,1,141,361,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200913.log',515,1,147,387,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,72),('usage_events_20200913.log',515,1,150,407,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20200913.log',515,1,171,470,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20200913.log',515,1,178,514,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20200913.log',515,1,188,545,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,89),('usage_events_20200913.log',515,1,190,556,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200913.log',515,1,193,569,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200913.log',1048585,1,4,4,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200913.log',1048585,1,33,33,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20200913.log',1048585,1,46,46,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200913.log',1048585,1,91,91,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200913.log',1048585,1,142,142,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200913.log',1048585,1,147,147,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20200913.log',1048585,1,171,171,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200913.log',1048585,1,173,173,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200913.log',1048585,1,178,178,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200913.log',1048585,1,188,188,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200913.log',1048585,1,190,190,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200913.log',1048585,1,191,191,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200913.log',1048585,1,193,193,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200914.log',256,1,NULL,1,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,1,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,2,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,3,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,4,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,5,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,6,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,7,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,8,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,9,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,10,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,11,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200914.log',259,1,NULL,12,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200914.log',515,1,1,3,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200914.log',515,1,20,53,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200914.log',515,1,51,118,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200914.log',515,1,54,133,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20200914.log',515,1,58,137,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200914.log',515,1,76,286,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200914.log',515,1,78,288,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200914.log',515,1,84,289,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200914.log',515,1,86,290,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200914.log',515,1,100,306,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200914.log',515,1,113,307,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200914.log',515,1,136,336,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20200914.log',515,1,142,367,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200914.log',515,1,148,394,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200914.log',515,1,171,470,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200914.log',515,1,173,479,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200914.log',515,1,175,493,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200914.log',515,1,176,500,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200914.log',515,1,178,514,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200914.log',515,1,185,527,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200914.log',515,1,186,533,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200914.log',515,1,193,569,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200914.log',1048585,1,1,1,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200914.log',1048585,1,4,4,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200914.log',1048585,1,5,5,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200914.log',1048585,1,6,6,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200914.log',1048585,1,7,7,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200914.log',1048585,1,8,8,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200914.log',1048585,1,14,14,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200914.log',1048585,1,20,20,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20200914.log',1048585,1,21,21,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200914.log',1048585,1,22,22,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200914.log',1048585,1,40,40,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200914.log',1048585,1,51,51,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200914.log',1048585,1,58,58,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200914.log',1048585,1,84,84,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200914.log',1048585,1,86,86,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200914.log',1048585,1,100,100,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200914.log',1048585,1,136,136,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200914.log',1048585,1,142,142,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200914.log',1048585,1,148,148,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200914.log',1048585,1,149,149,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200914.log',1048585,1,171,171,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200914.log',1048585,1,173,173,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200914.log',1048585,1,176,176,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200914.log',1048585,1,177,177,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200914.log',1048585,1,185,185,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200914.log',1048585,1,186,186,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200914.log',1048585,1,187,187,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200914.log',1048585,1,188,188,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200914.log',1048585,1,189,189,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200914.log',1048585,1,190,190,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200914.log',1048585,1,191,191,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200914.log',1048585,1,193,193,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200915.log',256,1,NULL,1,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200915.log',259,1,NULL,12,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200915.log',515,1,14,51,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,9),('usage_events_20200915.log',515,1,20,53,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200915.log',515,1,32,80,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200915.log',515,1,49,116,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20200915.log',515,1,58,137,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20200915.log',515,1,85,281,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20200915.log',515,1,82,284,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20200915.log',515,1,84,289,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200915.log',515,1,91,295,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200915.log',515,1,113,307,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200915.log',515,1,134,324,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20200915.log',515,1,135,330,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200915.log',515,1,137,343,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200915.log',515,1,148,394,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200915.log',515,1,150,407,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200915.log',515,1,152,423,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200915.log',515,1,169,461,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200915.log',515,1,171,470,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200915.log',515,1,175,493,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200915.log',515,1,176,500,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20200915.log',515,1,178,514,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20200915.log',515,1,185,527,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20200915.log',515,1,186,533,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200915.log',515,1,190,556,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200915.log',515,1,191,563,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200915.log',1048585,1,20,20,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20200915.log',1048585,1,49,49,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200915.log',1048585,1,58,58,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200915.log',1048585,1,76,76,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200915.log',1048585,1,85,85,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200915.log',1048585,1,91,91,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200915.log',1048585,1,134,134,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200915.log',1048585,1,135,135,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200915.log',1048585,1,147,147,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200915.log',1048585,1,148,148,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200915.log',1048585,1,150,150,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200915.log',1048585,1,171,171,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200915.log',1048585,1,176,176,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200915.log',1048585,1,185,185,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200915.log',1048585,1,186,186,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200915.log',1048585,1,190,190,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200915.log',1048585,1,191,191,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200916.log',256,1,NULL,1,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200916.log',515,1,6,31,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20200916.log',515,1,20,53,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20200916.log',515,1,32,80,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200916.log',515,1,51,118,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200916.log',515,1,81,283,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200916.log',515,1,78,288,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200916.log',515,1,84,289,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200916.log',515,1,134,324,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20200916.log',515,1,137,343,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200916.log',515,1,139,351,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20200916.log',515,1,148,394,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200916.log',515,1,151,414,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200916.log',515,1,169,461,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200916.log',515,1,171,470,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20200916.log',515,1,173,479,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200916.log',515,1,174,486,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200916.log',515,1,175,493,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200916.log',515,1,176,500,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200916.log',515,1,177,507,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200916.log',515,1,185,527,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200916.log',515,1,186,533,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200916.log',1048585,1,20,20,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200916.log',1048585,1,54,54,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200916.log',1048585,1,58,58,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200916.log',1048585,1,78,78,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200916.log',1048585,1,81,81,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200916.log',1048585,1,84,84,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200916.log',1048585,1,133,133,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200916.log',1048585,1,137,137,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200916.log',1048585,1,169,169,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200916.log',1048585,1,171,171,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200916.log',1048585,1,173,173,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200916.log',1048585,1,175,175,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200916.log',1048585,1,176,176,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200916.log',1048585,1,177,177,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200916.log',1048585,1,178,178,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200916.log',1048585,1,186,186,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200916.log',1048585,1,191,191,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200917.log',256,1,NULL,1,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,1,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,2,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,3,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,4,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,5,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,6,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,7,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,8,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,9,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,10,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,11,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200917.log',259,1,NULL,12,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200917.log',515,1,1,3,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200917.log',515,1,49,116,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200917.log',515,1,53,120,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20200917.log',515,1,56,135,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200917.log',515,1,58,137,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20200917.log',515,1,78,288,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200917.log',515,1,113,307,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200917.log',515,1,135,330,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20200917.log',515,1,142,367,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200917.log',515,1,146,379,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200917.log',515,1,149,401,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200917.log',515,1,169,461,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20200917.log',515,1,173,479,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200917.log',515,1,175,493,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200917.log',515,1,176,500,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200917.log',515,1,186,533,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200917.log',515,1,190,556,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200917.log',515,1,191,563,'20200917','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200917.log',1048585,1,1,1,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200917.log',1048585,1,4,4,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200917.log',1048585,1,5,5,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200917.log',1048585,1,6,6,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200917.log',1048585,1,7,7,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200917.log',1048585,1,8,8,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200917.log',1048585,1,14,14,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200917.log',1048585,1,20,20,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200917.log',1048585,1,21,21,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200917.log',1048585,1,22,22,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200917.log',1048585,1,40,40,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200917.log',1048585,1,49,49,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200917.log',1048585,1,53,53,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20200917.log',1048585,1,56,56,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200917.log',1048585,1,58,58,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200917.log',1048585,1,78,78,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200917.log',1048585,1,89,89,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200917.log',1048585,1,134,134,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200917.log',1048585,1,135,135,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200917.log',1048585,1,149,149,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200917.log',1048585,1,173,173,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200917.log',1048585,1,175,175,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200917.log',1048585,1,176,176,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200917.log',1048585,1,185,185,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200917.log',1048585,1,186,186,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200917.log',1048585,1,187,187,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200917.log',1048585,1,188,188,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200917.log',1048585,1,189,189,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200917.log',1048585,1,190,190,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200917.log',1048585,1,191,191,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200917.log',1048585,1,193,193,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200918.log',256,1,NULL,1,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200918.log',259,1,NULL,6,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200918.log',515,1,1,3,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200918.log',515,1,77,287,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200918.log',515,1,78,288,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200918.log',515,1,84,289,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200918.log',515,1,90,294,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20200918.log',515,1,113,307,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200918.log',515,1,137,343,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20200918.log',515,1,146,379,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200918.log',515,1,149,401,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200918.log',515,1,151,414,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20200918.log',515,1,169,461,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200918.log',515,1,176,500,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200918.log',515,1,178,514,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20200918.log',515,1,191,563,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200918.log',515,1,193,569,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200918.log',1048585,1,77,77,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200918.log',1048585,1,78,78,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20200918.log',1048585,1,81,81,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200918.log',1048585,1,84,84,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200918.log',1048585,1,137,137,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200918.log',1048585,1,149,149,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200918.log',1048585,1,151,151,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20200918.log',1048585,1,175,175,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200918.log',1048585,1,176,176,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200918.log',1048585,1,178,178,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200918.log',1048585,1,191,191,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200919.log',515,1,50,117,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20200919.log',515,1,78,288,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200919.log',515,1,113,307,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200919.log',515,1,114,308,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20200919.log',515,1,125,310,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20200919.log',515,1,137,343,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200919.log',515,1,146,379,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200919.log',515,1,169,461,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200919.log',515,1,173,479,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200919.log',515,1,175,493,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200919.log',1048585,1,91,91,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200919.log',1048585,1,114,114,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200919.log',1048585,1,125,125,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200919.log',1048585,1,149,149,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200919.log',1048585,1,173,173,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200919.log',1048585,1,175,175,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200919.log',1048585,1,190,190,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200919.log',1048585,1,191,191,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',256,1,NULL,1,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,1,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,2,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,3,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,4,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,5,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,6,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,7,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,8,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,9,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,10,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,11,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200920.log',259,1,NULL,12,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200920.log',515,1,1,3,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200920.log',515,1,8,33,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20200920.log',515,1,53,120,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200920.log',515,1,81,283,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200920.log',515,1,78,288,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200920.log',515,1,89,293,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200920.log',515,1,141,361,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20200920.log',515,1,169,461,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20200920.log',515,1,173,479,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20200920.log',515,1,176,500,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200920.log',1048585,1,1,1,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200920.log',1048585,1,4,4,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200920.log',1048585,1,5,5,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200920.log',1048585,1,6,6,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200920.log',1048585,1,7,7,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200920.log',1048585,1,8,8,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20200920.log',1048585,1,14,14,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200920.log',1048585,1,20,20,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200920.log',1048585,1,21,21,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200920.log',1048585,1,22,22,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200920.log',1048585,1,40,40,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200920.log',1048585,1,78,78,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200920.log',1048585,1,89,89,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200920.log',1048585,1,173,173,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200920.log',1048585,1,178,178,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200920.log',1048585,1,185,185,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',1048585,1,186,186,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',1048585,1,187,187,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',1048585,1,188,188,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',1048585,1,189,189,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',1048585,1,190,190,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',1048585,1,191,191,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200920.log',1048585,1,193,193,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200921.log',256,1,NULL,1,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200921.log',259,1,NULL,7,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200921.log',259,1,NULL,12,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200921.log',515,1,19,52,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20200921.log',515,1,51,118,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20200921.log',515,1,56,135,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200921.log',515,1,76,286,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,47),('usage_events_20200921.log',515,1,78,288,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200921.log',515,1,84,289,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200921.log',515,1,87,291,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200921.log',515,1,89,293,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,54),('usage_events_20200921.log',515,1,113,307,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200921.log',515,1,139,351,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200921.log',515,1,142,367,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20200921.log',515,1,169,461,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200921.log',515,1,173,479,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200921.log',515,1,187,539,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20200921.log',515,1,193,569,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20200921.log',1048585,1,32,32,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20200921.log',1048585,1,51,51,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200921.log',1048585,1,56,56,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200921.log',1048585,1,58,58,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200921.log',1048585,1,76,76,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20200921.log',1048585,1,78,78,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200921.log',1048585,1,87,87,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200921.log',1048585,1,89,89,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200921.log',1048585,1,100,100,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200921.log',1048585,1,113,113,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200921.log',1048585,1,137,137,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200921.log',1048585,1,139,139,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200921.log',1048585,1,142,142,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200921.log',1048585,1,169,169,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200921.log',1048585,1,171,171,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200921.log',1048585,1,173,173,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200921.log',1048585,1,193,193,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200922.log',256,1,NULL,1,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200922.log',259,1,NULL,1,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200922.log',259,1,NULL,11,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200922.log',259,1,NULL,12,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200922.log',515,1,4,19,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200922.log',515,1,7,32,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200922.log',515,1,8,33,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20200922.log',515,1,51,118,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200922.log',515,1,58,137,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200922.log',515,1,81,283,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20200922.log',515,1,77,287,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20200922.log',515,1,78,288,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200922.log',515,1,84,289,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20200922.log',515,1,99,305,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20200922.log',515,1,113,307,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20200922.log',515,1,133,318,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20200922.log',515,1,137,343,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200922.log',515,1,142,367,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20200922.log',515,1,148,394,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20200922.log',515,1,169,461,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20200922.log',515,1,171,470,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200922.log',515,1,173,479,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20200922.log',515,1,175,493,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200922.log',515,1,176,500,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200922.log',515,1,185,527,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200922.log',515,1,186,533,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200922.log',515,1,190,556,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200922.log',515,1,191,563,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200922.log',515,1,193,569,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20200922.log',1048585,1,8,8,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20200922.log',1048585,1,33,33,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200922.log',1048585,1,56,56,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200922.log',1048585,1,58,58,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200922.log',1048585,1,78,78,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200922.log',1048585,1,81,81,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200922.log',1048585,1,113,113,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200922.log',1048585,1,133,133,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200922.log',1048585,1,137,137,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200922.log',1048585,1,142,142,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20200922.log',1048585,1,149,149,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200922.log',1048585,1,173,173,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200922.log',1048585,1,175,175,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200922.log',1048585,1,185,185,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200922.log',1048585,1,191,191,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,12,NULL),('usage_events_20200922.log',1048585,1,193,193,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200923.log',256,1,NULL,1,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200923.log',515,1,33,81,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200923.log',515,1,51,118,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200923.log',515,1,56,135,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200923.log',515,1,77,287,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20200923.log',515,1,78,288,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200923.log',515,1,87,291,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20200923.log',515,1,100,306,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20200923.log',515,1,113,307,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200923.log',515,1,137,343,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20200923.log',515,1,139,351,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200923.log',515,1,142,367,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20200923.log',515,1,146,379,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20200923.log',515,1,148,394,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200923.log',515,1,151,414,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20200923.log',515,1,169,461,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20200923.log',515,1,173,479,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20200923.log',515,1,174,486,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200923.log',515,1,175,493,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200923.log',515,1,190,556,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200923.log',515,1,193,569,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20200923.log',1048585,1,32,32,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200923.log',1048585,1,33,33,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200923.log',1048585,1,51,51,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200923.log',1048585,1,58,58,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20200923.log',1048585,1,78,78,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200923.log',1048585,1,87,87,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200923.log',1048585,1,89,89,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200923.log',1048585,1,100,100,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200923.log',1048585,1,113,113,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200923.log',1048585,1,139,139,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200923.log',1048585,1,146,146,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200923.log',1048585,1,151,151,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200923.log',1048585,1,169,169,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200923.log',1048585,1,173,173,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200923.log',1048585,1,175,175,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200923.log',1048585,1,186,186,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200923.log',1048585,1,191,191,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200923.log',1048585,1,193,193,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200924.log',256,1,NULL,1,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200924.log',259,1,NULL,3,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200924.log',259,1,NULL,4,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200924.log',259,1,NULL,6,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200924.log',259,1,NULL,7,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200924.log',259,1,NULL,8,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200924.log',515,1,33,81,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20200924.log',515,1,53,120,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200924.log',515,1,83,285,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20200924.log',515,1,78,288,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200924.log',515,1,87,291,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20200924.log',515,1,90,294,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,55),('usage_events_20200924.log',515,1,137,343,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20200924.log',515,1,139,351,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20200924.log',515,1,146,379,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200924.log',515,1,148,394,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20200924.log',515,1,150,407,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200924.log',515,1,169,461,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200924.log',515,1,171,470,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200924.log',515,1,173,479,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200924.log',515,1,175,493,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20200924.log',515,1,177,507,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200924.log',515,1,185,527,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20200924.log',515,1,186,533,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200924.log',515,1,187,539,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20200924.log',515,1,188,545,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20200924.log',515,1,190,556,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200924.log',515,1,191,563,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200924.log',515,1,193,569,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20200924.log',1048585,1,53,53,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200924.log',1048585,1,77,77,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200924.log',1048585,1,87,87,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200924.log',1048585,1,137,137,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20200924.log',1048585,1,139,139,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200924.log',1048585,1,148,148,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200924.log',1048585,1,150,150,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200924.log',1048585,1,169,169,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200924.log',1048585,1,175,175,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200924.log',1048585,1,185,185,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200924.log',1048585,1,186,186,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200924.log',1048585,1,188,188,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200924.log',1048585,1,191,191,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20200924.log',1048585,1,193,193,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200925.log',256,1,NULL,1,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200925.log',259,1,NULL,12,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200925.log',515,1,4,19,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20200925.log',515,1,7,32,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20200925.log',515,1,82,284,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200925.log',515,1,76,286,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20200925.log',515,1,78,288,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20200925.log',515,1,86,290,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20200925.log',515,1,133,318,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,63),('usage_events_20200925.log',515,1,137,343,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200925.log',515,1,139,351,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,68),('usage_events_20200925.log',515,1,146,379,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200925.log',515,1,147,387,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200925.log',515,1,152,423,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200925.log',515,1,171,470,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200925.log',515,1,176,500,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200925.log',515,1,185,527,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20200925.log',515,1,190,556,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200925.log',515,1,191,563,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200925.log',515,1,193,569,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,93),('usage_events_20200925.log',1048585,1,4,4,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200925.log',1048585,1,55,55,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200925.log',1048585,1,76,76,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200925.log',1048585,1,78,78,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200925.log',1048585,1,133,133,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20200925.log',1048585,1,137,137,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200925.log',1048585,1,139,139,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200925.log',1048585,1,146,146,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200925.log',1048585,1,152,152,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200925.log',1048585,1,171,171,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200925.log',1048585,1,176,176,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200925.log',1048585,1,191,191,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200925.log',1048585,1,193,193,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,12,NULL),('usage_events_20200926.log',256,1,NULL,1,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,1,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,2,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,3,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,4,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,5,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,6,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,7,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,8,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,9,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,10,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,11,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200926.log',259,1,NULL,12,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20200926.log',515,1,1,3,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200926.log',515,1,8,33,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200926.log',515,1,32,80,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200926.log',515,1,83,285,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20200926.log',515,1,78,288,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200926.log',515,1,91,295,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20200926.log',515,1,113,307,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20200926.log',515,1,125,310,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20200926.log',515,1,139,351,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20200926.log',515,1,147,387,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20200926.log',515,1,152,423,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20200926.log',515,1,169,461,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200926.log',515,1,171,470,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200926.log',515,1,175,493,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200926.log',515,1,185,527,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20200926.log',515,1,186,533,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20200926.log',515,1,190,556,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20200926.log',515,1,191,563,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200926.log',515,1,193,569,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200926.log',1048585,1,1,1,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200926.log',1048585,1,4,4,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200926.log',1048585,1,5,5,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200926.log',1048585,1,6,6,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200926.log',1048585,1,7,7,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200926.log',1048585,1,8,8,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200926.log',1048585,1,14,14,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200926.log',1048585,1,20,20,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200926.log',1048585,1,21,21,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200926.log',1048585,1,22,22,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200926.log',1048585,1,40,40,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200926.log',1048585,1,78,78,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200926.log',1048585,1,89,89,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200926.log',1048585,1,90,90,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200926.log',1048585,1,91,91,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200926.log',1048585,1,113,113,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20200926.log',1048585,1,135,135,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200926.log',1048585,1,139,139,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20200926.log',1048585,1,169,169,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200926.log',1048585,1,171,171,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20200926.log',1048585,1,185,185,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200926.log',1048585,1,186,186,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200926.log',1048585,1,187,187,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200926.log',1048585,1,188,188,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200926.log',1048585,1,189,189,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200926.log',1048585,1,190,190,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200926.log',1048585,1,191,191,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20200926.log',1048585,1,193,193,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200927.log',256,1,NULL,1,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200927.log',259,1,NULL,2,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200927.log',515,1,8,33,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20200927.log',515,1,51,118,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200927.log',515,1,59,138,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20200927.log',515,1,78,288,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20200927.log',515,1,87,291,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20200927.log',515,1,137,343,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20200927.log',515,1,148,394,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20200927.log',515,1,169,461,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20200927.log',515,1,171,470,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20200927.log',515,1,173,479,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200927.log',515,1,175,493,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200927.log',515,1,177,507,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200927.log',515,1,186,533,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20200927.log',515,1,191,563,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20200927.log',515,1,193,569,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20200927.log',1048585,1,20,20,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200927.log',1048585,1,51,51,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200927.log',1048585,1,58,58,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200927.log',1048585,1,59,59,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20200927.log',1048585,1,78,78,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20200927.log',1048585,1,87,87,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200927.log',1048585,1,137,137,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200927.log',1048585,1,139,139,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200927.log',1048585,1,169,169,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200927.log',1048585,1,175,175,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200927.log',1048585,1,186,186,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200927.log',1048585,1,191,191,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,12,NULL),('usage_events_20200928.log',256,1,NULL,1,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20200928.log',259,1,NULL,12,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200928.log',515,1,5,30,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20200928.log',515,1,49,116,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20200928.log',515,1,81,283,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200928.log',515,1,78,288,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20200928.log',515,1,136,336,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20200928.log',515,1,137,343,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200928.log',515,1,146,379,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200928.log',515,1,147,387,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20200928.log',515,1,150,407,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200928.log',515,1,174,486,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20200928.log',515,1,175,493,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200928.log',515,1,176,500,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20200928.log',515,1,186,533,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20200928.log',515,1,190,556,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20200928.log',515,1,193,569,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20200928.log',1048585,1,49,49,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20200928.log',1048585,1,78,78,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200928.log',1048585,1,84,84,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200928.log',1048585,1,89,89,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200928.log',1048585,1,136,136,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200928.log',1048585,1,146,146,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200928.log',1048585,1,147,147,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20200928.log',1048585,1,150,150,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200928.log',1048585,1,186,186,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200928.log',1048585,1,190,190,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200928.log',1048585,1,193,193,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200929.log',256,1,NULL,1,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,1,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,2,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,3,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,4,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,5,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,6,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,7,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,8,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,9,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,10,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,11,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20200929.log',259,1,NULL,12,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20200929.log',515,1,1,3,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20200929.log',515,1,20,53,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20200929.log',515,1,51,118,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200929.log',515,1,56,135,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20200929.log',515,1,58,137,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200929.log',515,1,81,283,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20200929.log',515,1,82,284,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20200929.log',515,1,78,288,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20200929.log',515,1,84,289,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20200929.log',515,1,87,291,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20200929.log',515,1,89,293,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200929.log',515,1,99,305,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20200929.log',515,1,139,351,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20200929.log',515,1,146,379,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20200929.log',515,1,152,423,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20200929.log',515,1,169,461,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200929.log',515,1,173,479,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200929.log',515,1,175,493,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20200929.log',515,1,176,500,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20200929.log',515,1,177,507,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20200929.log',515,1,187,539,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20200929.log',515,1,190,556,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20200929.log',515,1,191,563,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20200929.log',1048585,1,1,1,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200929.log',1048585,1,4,4,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200929.log',1048585,1,5,5,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200929.log',1048585,1,6,6,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200929.log',1048585,1,7,7,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200929.log',1048585,1,8,8,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200929.log',1048585,1,14,14,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200929.log',1048585,1,20,20,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200929.log',1048585,1,21,21,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200929.log',1048585,1,22,22,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200929.log',1048585,1,40,40,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20200929.log',1048585,1,56,56,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200929.log',1048585,1,58,58,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20200929.log',1048585,1,78,78,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200929.log',1048585,1,81,81,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200929.log',1048585,1,82,82,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200929.log',1048585,1,84,84,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20200929.log',1048585,1,87,87,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20200929.log',1048585,1,89,89,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200929.log',1048585,1,139,139,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200929.log',1048585,1,146,146,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20200929.log',1048585,1,169,169,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200929.log',1048585,1,175,175,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200929.log',1048585,1,185,185,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200929.log',1048585,1,186,186,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200929.log',1048585,1,187,187,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200929.log',1048585,1,188,188,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200929.log',1048585,1,189,189,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200929.log',1048585,1,190,190,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200929.log',1048585,1,191,191,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200929.log',1048585,1,193,193,'20200929','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20200930.log',515,1,32,80,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20200930.log',515,1,51,118,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20200930.log',515,1,53,120,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20200930.log',515,1,58,137,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20200930.log',515,1,85,281,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,41),('usage_events_20200930.log',515,1,79,282,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20200930.log',515,1,78,288,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20200930.log',515,1,89,293,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20200930.log',515,1,100,306,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20200930.log',515,1,113,307,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20200930.log',515,1,137,343,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20200930.log',515,1,139,351,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20200930.log',515,1,142,367,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20200930.log',515,1,149,401,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20200930.log',515,1,150,407,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20200930.log',515,1,169,461,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20200930.log',515,1,171,470,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20200930.log',515,1,173,479,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20200930.log',515,1,175,493,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20200930.log',515,1,176,500,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20200930.log',515,1,193,569,'20200930','202009',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20200930.log',1048585,1,21,21,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20200930.log',1048585,1,32,32,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20200930.log',1048585,1,49,49,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20200930.log',1048585,1,58,58,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20200930.log',1048585,1,78,78,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20200930.log',1048585,1,79,79,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20200930.log',1048585,1,85,85,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20200930.log',1048585,1,100,100,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20200930.log',1048585,1,137,137,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20200930.log',1048585,1,142,142,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20200930.log',1048585,1,169,169,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200930.log',1048585,1,171,171,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20200930.log',1048585,1,175,175,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20200930.log',1048585,1,176,176,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20200930.log',1048585,1,191,191,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20200930.log',1048585,1,193,193,'20200930','202009',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201001.log',256,1,NULL,1,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201001.log',259,1,NULL,12,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201001.log',515,1,33,81,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201001.log',515,1,85,281,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20201001.log',515,1,76,286,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20201001.log',515,1,78,288,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201001.log',515,1,88,292,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20201001.log',515,1,91,295,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20201001.log',515,1,99,305,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20201001.log',515,1,137,343,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201001.log',515,1,147,387,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201001.log',515,1,148,394,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201001.log',515,1,149,401,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201001.log',515,1,169,461,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201001.log',515,1,171,470,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201001.log',515,1,175,493,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201001.log',515,1,176,500,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201001.log',515,1,177,507,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201001.log',515,1,186,533,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201001.log',515,1,191,563,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201001.log',515,1,193,569,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201001.log',1048585,1,33,33,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201001.log',1048585,1,51,51,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201001.log',1048585,1,85,85,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201001.log',1048585,1,88,88,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201001.log',1048585,1,137,137,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201001.log',1048585,1,142,142,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201001.log',1048585,1,148,148,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201001.log',1048585,1,171,171,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201001.log',1048585,1,175,175,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201001.log',1048585,1,176,176,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201001.log',1048585,1,177,177,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201001.log',1048585,1,185,185,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201001.log',1048585,1,188,188,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201001.log',1048585,1,191,191,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201002.log',256,1,NULL,1,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,1,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,2,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,3,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,4,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,5,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,6,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,7,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,8,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,9,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,10,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,11,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201002.log',259,1,NULL,12,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201002.log',515,1,1,3,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201002.log',515,1,35,83,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201002.log',515,1,49,116,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201002.log',515,1,51,118,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20201002.log',515,1,79,282,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20201002.log',515,1,78,288,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201002.log',515,1,100,306,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201002.log',515,1,137,343,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201002.log',515,1,141,361,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20201002.log',515,1,148,394,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201002.log',515,1,149,401,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201002.log',515,1,169,461,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201002.log',515,1,175,493,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201002.log',515,1,177,507,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201002.log',515,1,178,514,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201002.log',515,1,190,556,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201002.log',515,1,193,569,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201002.log',1048585,1,1,1,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201002.log',1048585,1,4,4,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201002.log',1048585,1,5,5,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201002.log',1048585,1,6,6,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201002.log',1048585,1,7,7,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201002.log',1048585,1,8,8,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201002.log',1048585,1,14,14,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201002.log',1048585,1,20,20,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201002.log',1048585,1,21,21,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201002.log',1048585,1,22,22,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201002.log',1048585,1,35,35,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201002.log',1048585,1,40,40,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201002.log',1048585,1,49,49,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201002.log',1048585,1,51,51,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201002.log',1048585,1,78,78,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201002.log',1048585,1,79,79,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20201002.log',1048585,1,84,84,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201002.log',1048585,1,149,149,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201002.log',1048585,1,169,169,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201002.log',1048585,1,175,175,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201002.log',1048585,1,176,176,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201002.log',1048585,1,178,178,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201002.log',1048585,1,185,185,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201002.log',1048585,1,186,186,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201002.log',1048585,1,187,187,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201002.log',1048585,1,188,188,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201002.log',1048585,1,189,189,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201002.log',1048585,1,190,190,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201002.log',1048585,1,191,191,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201002.log',1048585,1,193,193,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201003.log',256,1,NULL,1,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201003.log',259,1,NULL,10,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201003.log',259,1,NULL,11,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201003.log',259,1,NULL,12,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201003.log',515,1,47,115,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201003.log',515,1,49,116,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201003.log',515,1,51,118,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201003.log',515,1,54,133,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201003.log',515,1,78,288,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20201003.log',515,1,89,293,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201003.log',515,1,99,305,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201003.log',515,1,137,343,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201003.log',515,1,147,387,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201003.log',515,1,148,394,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201003.log',515,1,149,401,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201003.log',515,1,150,407,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201003.log',515,1,152,423,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201003.log',515,1,169,461,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201003.log',515,1,173,479,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201003.log',515,1,177,507,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201003.log',515,1,178,514,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20201003.log',515,1,188,545,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201003.log',1048585,1,32,32,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201003.log',1048585,1,49,49,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20201003.log',1048585,1,51,51,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201003.log',1048585,1,78,78,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201003.log',1048585,1,89,89,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201003.log',1048585,1,136,136,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201003.log',1048585,1,148,148,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201003.log',1048585,1,149,149,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201003.log',1048585,1,150,150,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20201003.log',1048585,1,152,152,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201003.log',1048585,1,169,169,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201003.log',1048585,1,175,175,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201003.log',1048585,1,178,178,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20201004.log',259,1,NULL,12,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20201004.log',515,1,5,30,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20201004.log',515,1,21,54,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20201004.log',515,1,99,305,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201004.log',515,1,148,394,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201004.log',515,1,150,407,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201004.log',515,1,151,414,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201004.log',515,1,169,461,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201004.log',515,1,173,479,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201004.log',515,1,174,486,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201004.log',515,1,176,500,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201004.log',515,1,177,507,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201004.log',515,1,187,539,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201004.log',515,1,188,545,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201004.log',515,1,190,556,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201004.log',1048585,1,85,85,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201004.log',1048585,1,136,136,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201004.log',1048585,1,169,169,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201004.log',1048585,1,173,173,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201004.log',1048585,1,174,174,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201004.log',1048585,1,176,176,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201004.log',1048585,1,190,190,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201004.log',1048585,1,191,191,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201005.log',256,1,NULL,1,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,1,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,2,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,3,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,4,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,5,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,6,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,7,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,8,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,9,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,10,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,11,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201005.log',259,1,NULL,12,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201005.log',515,1,1,3,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201005.log',515,1,20,53,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20201005.log',515,1,51,118,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20201005.log',515,1,81,283,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201005.log',515,1,76,286,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,47),('usage_events_20201005.log',515,1,78,288,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201005.log',515,1,84,289,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201005.log',515,1,137,343,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20201005.log',515,1,139,351,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201005.log',515,1,142,367,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201005.log',515,1,149,401,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201005.log',515,1,150,407,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201005.log',515,1,152,423,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20201005.log',515,1,173,479,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201005.log',515,1,175,493,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201005.log',515,1,176,500,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20201005.log',515,1,177,507,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201005.log',515,1,178,514,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201005.log',515,1,185,527,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201005.log',515,1,186,533,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20201005.log',515,1,188,545,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201005.log',1048585,1,1,1,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201005.log',1048585,1,4,4,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201005.log',1048585,1,5,5,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201005.log',1048585,1,6,6,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201005.log',1048585,1,7,7,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201005.log',1048585,1,8,8,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201005.log',1048585,1,14,14,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201005.log',1048585,1,20,20,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,2,NULL),('usage_events_20201005.log',1048585,1,21,21,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201005.log',1048585,1,22,22,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201005.log',1048585,1,40,40,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201005.log',1048585,1,49,49,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201005.log',1048585,1,51,51,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20201005.log',1048585,1,58,58,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20201005.log',1048585,1,76,76,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201005.log',1048585,1,81,81,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201005.log',1048585,1,84,84,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201005.log',1048585,1,137,137,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201005.log',1048585,1,139,139,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201005.log',1048585,1,149,149,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201005.log',1048585,1,173,173,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201005.log',1048585,1,175,175,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20201005.log',1048585,1,176,176,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201005.log',1048585,1,177,177,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201005.log',1048585,1,178,178,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201005.log',1048585,1,185,185,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201005.log',1048585,1,186,186,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201005.log',1048585,1,187,187,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201005.log',1048585,1,188,188,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201005.log',1048585,1,189,189,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201005.log',1048585,1,190,190,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201005.log',1048585,1,191,191,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201005.log',1048585,1,193,193,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201006.log',256,1,NULL,1,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201006.log',259,1,NULL,12,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201006.log',515,1,40,94,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20201006.log',515,1,51,118,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20201006.log',515,1,53,120,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20201006.log',515,1,58,137,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201006.log',515,1,85,281,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201006.log',515,1,82,284,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201006.log',515,1,78,288,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201006.log',515,1,87,291,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201006.log',515,1,89,293,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201006.log',515,1,90,294,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201006.log',515,1,99,305,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201006.log',515,1,115,309,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20201006.log',515,1,133,318,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20201006.log',515,1,134,324,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201006.log',515,1,139,351,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20201006.log',515,1,141,361,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201006.log',515,1,148,394,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201006.log',515,1,149,401,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201006.log',515,1,150,407,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201006.log',515,1,169,461,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201006.log',515,1,171,470,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201006.log',515,1,173,479,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201006.log',515,1,175,493,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201006.log',515,1,176,500,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20201006.log',515,1,185,527,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20201006.log',515,1,186,533,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201006.log',515,1,188,545,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201006.log',1048585,1,40,40,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201006.log',1048585,1,78,78,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201006.log',1048585,1,79,79,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201006.log',1048585,1,82,82,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201006.log',1048585,1,85,85,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201006.log',1048585,1,91,91,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201006.log',1048585,1,115,115,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201006.log',1048585,1,135,135,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201006.log',1048585,1,148,148,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201006.log',1048585,1,149,149,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201006.log',1048585,1,151,151,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201006.log',1048585,1,169,169,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201006.log',1048585,1,171,171,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201006.log',1048585,1,174,174,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201006.log',1048585,1,176,176,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201006.log',1048585,1,190,190,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201007.log',256,1,NULL,1,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201007.log',259,1,NULL,4,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201007.log',259,1,NULL,6,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201007.log',259,1,NULL,7,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201007.log',259,1,NULL,8,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201007.log',259,1,NULL,9,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201007.log',259,1,NULL,10,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201007.log',259,1,NULL,12,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201007.log',515,1,5,30,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20201007.log',515,1,19,52,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201007.log',515,1,32,80,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20201007.log',515,1,33,81,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201007.log',515,1,47,115,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201007.log',515,1,56,135,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20201007.log',515,1,58,137,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201007.log',515,1,78,288,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201007.log',515,1,86,290,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20201007.log',515,1,87,291,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201007.log',515,1,99,305,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201007.log',515,1,100,306,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201007.log',515,1,137,343,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201007.log',515,1,139,351,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20201007.log',515,1,148,394,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201007.log',515,1,149,401,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20201007.log',515,1,150,407,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201007.log',515,1,151,414,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201007.log',515,1,169,461,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201007.log',515,1,173,479,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201007.log',515,1,174,486,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201007.log',515,1,175,493,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201007.log',515,1,176,500,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201007.log',515,1,177,507,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201007.log',515,1,178,514,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201007.log',515,1,190,556,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201007.log',1048585,1,19,19,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201007.log',1048585,1,32,32,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20201007.log',1048585,1,34,34,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201007.log',1048585,1,35,35,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201007.log',1048585,1,47,47,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201007.log',1048585,1,56,56,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201007.log',1048585,1,78,78,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201007.log',1048585,1,84,84,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201007.log',1048585,1,86,86,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201007.log',1048585,1,100,100,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201007.log',1048585,1,137,137,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201007.log',1048585,1,149,149,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201007.log',1048585,1,169,169,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201007.log',1048585,1,173,173,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201007.log',1048585,1,178,178,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201007.log',1048585,1,190,190,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201007.log',1048585,1,193,193,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201008.log',256,1,NULL,1,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,1,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,2,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,3,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,4,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,5,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,6,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,7,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,8,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,9,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,10,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,11,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201008.log',259,1,NULL,12,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201008.log',515,1,1,3,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201008.log',515,1,78,288,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201008.log',515,1,100,306,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,58),('usage_events_20201008.log',515,1,125,310,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201008.log',515,1,135,330,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201008.log',515,1,139,351,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201008.log',515,1,141,361,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201008.log',515,1,146,379,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201008.log',515,1,147,387,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201008.log',515,1,148,394,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201008.log',515,1,150,407,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20201008.log',515,1,169,461,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201008.log',515,1,173,479,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201008.log',515,1,174,486,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201008.log',515,1,175,493,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201008.log',515,1,176,500,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20201008.log',515,1,178,514,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201008.log',515,1,187,539,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20201008.log',515,1,188,545,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201008.log',515,1,190,556,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201008.log',1048585,1,1,1,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201008.log',1048585,1,4,4,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201008.log',1048585,1,5,5,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201008.log',1048585,1,6,6,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201008.log',1048585,1,7,7,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201008.log',1048585,1,8,8,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201008.log',1048585,1,14,14,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201008.log',1048585,1,20,20,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201008.log',1048585,1,21,21,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201008.log',1048585,1,22,22,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201008.log',1048585,1,40,40,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201008.log',1048585,1,53,53,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20201008.log',1048585,1,100,100,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201008.log',1048585,1,137,137,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201008.log',1048585,1,169,169,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201008.log',1048585,1,171,171,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201008.log',1048585,1,174,174,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201008.log',1048585,1,175,175,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201008.log',1048585,1,176,176,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20201008.log',1048585,1,185,185,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201008.log',1048585,1,186,186,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201008.log',1048585,1,187,187,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201008.log',1048585,1,188,188,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201008.log',1048585,1,189,189,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201008.log',1048585,1,190,190,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201008.log',1048585,1,191,191,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201008.log',1048585,1,193,193,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201009.log',256,1,NULL,1,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201009.log',259,1,NULL,7,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201009.log',259,1,NULL,12,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201009.log',515,1,49,116,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20201009.log',515,1,58,137,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201009.log',515,1,85,281,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,41),('usage_events_20201009.log',515,1,79,282,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201009.log',515,1,78,288,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20201009.log',515,1,87,291,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201009.log',515,1,89,293,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201009.log',515,1,133,318,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201009.log',515,1,142,367,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201009.log',515,1,146,379,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201009.log',515,1,148,394,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201009.log',515,1,149,401,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201009.log',515,1,173,479,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201009.log',515,1,175,493,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201009.log',515,1,176,500,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20201009.log',515,1,178,514,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201009.log',515,1,190,556,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201009.log',1048585,1,19,19,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201009.log',1048585,1,51,51,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201009.log',1048585,1,58,58,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201009.log',1048585,1,78,78,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201009.log',1048585,1,79,79,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201009.log',1048585,1,84,84,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201009.log',1048585,1,85,85,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201009.log',1048585,1,87,87,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201009.log',1048585,1,89,89,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201009.log',1048585,1,133,133,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201009.log',1048585,1,137,137,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201009.log',1048585,1,148,148,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201009.log',1048585,1,149,149,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201009.log',1048585,1,169,169,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201009.log',1048585,1,175,175,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201009.log',1048585,1,176,176,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201009.log',1048585,1,178,178,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201009.log',1048585,1,190,190,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201010.log',515,1,7,32,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20201010.log',515,1,34,82,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201010.log',515,1,47,115,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201010.log',515,1,49,116,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20201010.log',515,1,58,137,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201010.log',515,1,81,283,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20201010.log',515,1,78,288,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201010.log',515,1,86,290,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20201010.log',515,1,87,291,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201010.log',515,1,89,293,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201010.log',515,1,91,295,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20201010.log',515,1,147,387,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201010.log',515,1,148,394,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201010.log',515,1,149,401,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201010.log',515,1,152,423,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201010.log',515,1,176,500,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201010.log',515,1,191,563,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201010.log',515,1,193,569,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20201010.log',1048585,1,7,7,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201010.log',1048585,1,58,58,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201010.log',1048585,1,86,86,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201010.log',1048585,1,87,87,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201010.log',1048585,1,89,89,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201010.log',1048585,1,91,91,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201010.log',1048585,1,137,137,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201010.log',1048585,1,146,146,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201010.log',1048585,1,148,148,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201010.log',1048585,1,149,149,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201010.log',1048585,1,152,152,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201010.log',1048585,1,171,171,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201010.log',1048585,1,176,176,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201010.log',1048585,1,191,191,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201010.log',1048585,1,193,193,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201011.log',256,1,NULL,1,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,1,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,2,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,3,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,4,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,5,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,6,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,7,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,8,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,9,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,10,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,11,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201011.log',259,1,NULL,12,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201011.log',515,1,1,3,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201011.log',515,1,31,79,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20201011.log',515,1,34,82,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201011.log',515,1,35,83,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201011.log',515,1,49,116,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201011.log',515,1,51,118,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20201011.log',515,1,54,133,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201011.log',515,1,58,137,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201011.log',515,1,85,281,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201011.log',515,1,82,284,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201011.log',515,1,77,287,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20201011.log',515,1,87,291,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201011.log',515,1,91,295,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201011.log',515,1,99,305,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201011.log',515,1,148,394,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201011.log',515,1,176,500,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201011.log',515,1,178,514,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201011.log',515,1,185,527,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201011.log',515,1,187,539,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201011.log',515,1,190,556,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201011.log',1048585,1,1,1,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201011.log',1048585,1,4,4,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201011.log',1048585,1,5,5,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201011.log',1048585,1,6,6,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201011.log',1048585,1,7,7,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201011.log',1048585,1,8,8,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201011.log',1048585,1,14,14,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201011.log',1048585,1,20,20,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201011.log',1048585,1,21,21,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201011.log',1048585,1,22,22,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201011.log',1048585,1,34,34,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201011.log',1048585,1,35,35,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201011.log',1048585,1,40,40,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201011.log',1048585,1,49,49,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201011.log',1048585,1,54,54,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20201011.log',1048585,1,58,58,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201011.log',1048585,1,87,87,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201011.log',1048585,1,149,149,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201011.log',1048585,1,176,176,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201011.log',1048585,1,185,185,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201011.log',1048585,1,186,186,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201011.log',1048585,1,187,187,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201011.log',1048585,1,188,188,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201011.log',1048585,1,189,189,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201011.log',1048585,1,190,190,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201011.log',1048585,1,191,191,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201011.log',1048585,1,193,193,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201012.log',515,1,20,53,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20201012.log',515,1,33,81,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201012.log',515,1,49,116,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201012.log',515,1,51,118,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201012.log',515,1,53,120,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201012.log',515,1,58,137,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20201012.log',515,1,78,288,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201012.log',515,1,87,291,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201012.log',515,1,89,293,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201012.log',515,1,99,305,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201012.log',515,1,137,343,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201012.log',515,1,139,351,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201012.log',515,1,142,367,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201012.log',515,1,148,394,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201012.log',515,1,169,461,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201012.log',515,1,171,470,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201012.log',515,1,173,479,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201012.log',515,1,175,493,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201012.log',515,1,176,500,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20201012.log',515,1,178,514,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201012.log',515,1,190,556,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201012.log',515,1,193,569,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201012.log',1048585,1,20,20,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201012.log',1048585,1,33,33,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201012.log',1048585,1,49,49,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201012.log',1048585,1,58,58,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201012.log',1048585,1,78,78,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201012.log',1048585,1,87,87,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201012.log',1048585,1,89,89,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201012.log',1048585,1,148,148,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201012.log',1048585,1,149,149,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201012.log',1048585,1,173,173,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201012.log',1048585,1,176,176,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201012.log',1048585,1,190,190,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201013.log',256,1,NULL,1,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201013.log',259,1,NULL,12,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201013.log',515,1,6,31,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20201013.log',515,1,8,33,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201013.log',515,1,35,83,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201013.log',515,1,49,116,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20201013.log',515,1,83,285,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201013.log',515,1,78,288,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20201013.log',515,1,87,291,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201013.log',515,1,89,293,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201013.log',515,1,99,305,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20201013.log',515,1,137,343,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201013.log',515,1,142,367,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201013.log',515,1,148,394,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201013.log',515,1,150,407,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20201013.log',515,1,151,414,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20201013.log',515,1,169,461,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,78),('usage_events_20201013.log',515,1,173,479,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201013.log',515,1,176,500,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201013.log',515,1,177,507,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201013.log',515,1,178,514,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201013.log',515,1,186,533,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20201013.log',515,1,190,556,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201013.log',515,1,193,569,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201013.log',1048585,1,8,8,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201013.log',1048585,1,20,20,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201013.log',1048585,1,49,49,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201013.log',1048585,1,50,50,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201013.log',1048585,1,51,51,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201013.log',1048585,1,53,53,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201013.log',1048585,1,58,58,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201013.log',1048585,1,78,78,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201013.log',1048585,1,83,83,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201013.log',1048585,1,87,87,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201013.log',1048585,1,89,89,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201013.log',1048585,1,125,125,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201013.log',1048585,1,148,148,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20201013.log',1048585,1,150,150,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201013.log',1048585,1,151,151,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201013.log',1048585,1,169,169,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201013.log',1048585,1,173,173,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201013.log',1048585,1,176,176,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201013.log',1048585,1,178,178,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201013.log',1048585,1,185,185,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201013.log',1048585,1,190,190,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201014.log',256,1,NULL,1,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',259,1,NULL,1,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',259,1,NULL,2,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',259,1,NULL,4,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',259,1,NULL,5,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',259,1,NULL,7,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',259,1,NULL,11,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',259,1,NULL,12,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201014.log',515,1,20,53,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201014.log',515,1,21,54,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20201014.log',515,1,34,82,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20201014.log',515,1,58,137,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20201014.log',515,1,83,285,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201014.log',515,1,77,287,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,48),('usage_events_20201014.log',515,1,78,288,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201014.log',515,1,89,293,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201014.log',515,1,134,324,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201014.log',515,1,137,343,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201014.log',515,1,151,414,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201014.log',515,1,152,423,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201014.log',515,1,169,461,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20201014.log',515,1,173,479,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201014.log',515,1,177,507,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201014.log',515,1,178,514,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201014.log',515,1,186,533,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201014.log',515,1,187,539,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201014.log',515,1,190,556,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201014.log',1048585,1,4,4,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201014.log',1048585,1,6,6,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201014.log',1048585,1,20,20,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201014.log',1048585,1,21,21,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201014.log',1048585,1,34,34,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201014.log',1048585,1,49,49,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201014.log',1048585,1,58,58,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20201014.log',1048585,1,77,77,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201014.log',1048585,1,78,78,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20201014.log',1048585,1,89,89,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201014.log',1048585,1,137,137,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201014.log',1048585,1,150,150,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201014.log',1048585,1,152,152,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201014.log',1048585,1,169,169,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201014.log',1048585,1,177,177,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201014.log',1048585,1,187,187,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201014.log',1048585,1,191,191,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201014.log',1048585,1,193,193,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201015.log',259,1,NULL,11,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201015.log',515,1,8,33,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201015.log',515,1,58,137,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201015.log',515,1,81,283,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201015.log',515,1,82,284,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201015.log',515,1,76,286,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20201015.log',515,1,78,288,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201015.log',515,1,87,291,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201015.log',515,1,89,293,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201015.log',515,1,91,295,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201015.log',515,1,100,306,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20201015.log',515,1,115,309,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20201015.log',515,1,134,324,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,64),('usage_events_20201015.log',515,1,142,367,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20201015.log',515,1,148,394,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201015.log',515,1,149,401,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201015.log',515,1,152,423,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201015.log',515,1,169,461,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201015.log',515,1,171,470,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201015.log',515,1,173,479,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20201015.log',515,1,176,500,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20201015.log',515,1,177,507,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201015.log',515,1,178,514,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201015.log',515,1,185,527,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201015.log',515,1,190,556,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201015.log',1048585,1,8,8,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201015.log',1048585,1,33,33,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201015.log',1048585,1,53,53,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201015.log',1048585,1,76,76,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201015.log',1048585,1,78,78,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201015.log',1048585,1,81,81,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201015.log',1048585,1,85,85,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201015.log',1048585,1,86,86,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201015.log',1048585,1,87,87,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201015.log',1048585,1,89,89,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201015.log',1048585,1,91,91,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201015.log',1048585,1,100,100,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201015.log',1048585,1,134,134,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201015.log',1048585,1,139,139,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201015.log',1048585,1,142,142,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201015.log',1048585,1,148,148,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201015.log',1048585,1,149,149,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201015.log',1048585,1,152,152,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201015.log',1048585,1,169,169,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201015.log',1048585,1,171,171,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201015.log',1048585,1,173,173,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20201015.log',1048585,1,176,176,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201015.log',1048585,1,178,178,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201015.log',1048585,1,187,187,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201015.log',1048585,1,190,190,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201016.log',259,1,NULL,8,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201016.log',515,1,47,115,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201016.log',515,1,78,288,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201016.log',515,1,89,293,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201016.log',515,1,90,294,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201016.log',515,1,100,306,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201016.log',515,1,142,367,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201016.log',515,1,146,379,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201016.log',515,1,148,394,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201016.log',515,1,150,407,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201016.log',515,1,152,423,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20201016.log',515,1,169,461,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20201016.log',515,1,173,479,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201016.log',515,1,176,500,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20201016.log',515,1,178,514,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20201016.log',515,1,186,533,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20201016.log',515,1,193,569,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201016.log',1048585,1,51,51,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201016.log',1048585,1,78,78,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201016.log',1048585,1,86,86,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201016.log',1048585,1,87,87,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201016.log',1048585,1,99,99,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201016.log',1048585,1,100,100,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201016.log',1048585,1,142,142,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201016.log',1048585,1,146,146,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201016.log',1048585,1,148,148,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201016.log',1048585,1,150,150,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201016.log',1048585,1,152,152,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201016.log',1048585,1,169,169,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201016.log',1048585,1,173,173,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201016.log',1048585,1,174,174,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201016.log',1048585,1,176,176,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201016.log',1048585,1,178,178,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201016.log',1048585,1,185,185,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201016.log',1048585,1,193,193,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201017.log',256,1,NULL,1,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,1,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,2,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,3,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,4,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,5,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,6,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,7,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,8,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,9,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,10,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,11,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201017.log',259,1,NULL,12,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201017.log',515,1,1,3,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201017.log',515,1,4,19,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20201017.log',515,1,7,32,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20201017.log',515,1,47,115,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201017.log',515,1,56,135,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201017.log',515,1,78,288,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201017.log',515,1,89,293,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201017.log',515,1,99,305,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201017.log',515,1,134,324,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20201017.log',515,1,139,351,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201017.log',515,1,147,387,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20201017.log',515,1,173,479,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20201017.log',515,1,175,493,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201017.log',515,1,177,507,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201017.log',515,1,190,556,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201017.log',1048585,1,1,1,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201017.log',1048585,1,4,4,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201017.log',1048585,1,5,5,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201017.log',1048585,1,6,6,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201017.log',1048585,1,7,7,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201017.log',1048585,1,8,8,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201017.log',1048585,1,14,14,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201017.log',1048585,1,20,20,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201017.log',1048585,1,21,21,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201017.log',1048585,1,22,22,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201017.log',1048585,1,40,40,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201017.log',1048585,1,58,58,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201017.log',1048585,1,86,86,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201017.log',1048585,1,89,89,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201017.log',1048585,1,99,99,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201017.log',1048585,1,134,134,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201017.log',1048585,1,139,139,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201017.log',1048585,1,142,142,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201017.log',1048585,1,147,147,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201017.log',1048585,1,173,173,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201017.log',1048585,1,185,185,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201017.log',1048585,1,186,186,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201017.log',1048585,1,187,187,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201017.log',1048585,1,188,188,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201017.log',1048585,1,189,189,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201017.log',1048585,1,190,190,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201017.log',1048585,1,191,191,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201017.log',1048585,1,193,193,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201018.log',515,1,33,81,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201018.log',515,1,58,137,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201018.log',515,1,81,283,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201018.log',515,1,87,291,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201018.log',515,1,100,306,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201018.log',515,1,125,310,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20201018.log',515,1,137,343,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201018.log',515,1,139,351,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201018.log',515,1,150,407,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20201018.log',515,1,175,493,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201018.log',515,1,176,500,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201018.log',515,1,178,514,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201018.log',515,1,190,556,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20201018.log',1048585,1,33,33,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201018.log',1048585,1,58,58,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201018.log',1048585,1,78,78,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201018.log',1048585,1,84,84,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201018.log',1048585,1,125,125,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201018.log',1048585,1,142,142,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201018.log',1048585,1,150,150,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20201018.log',1048585,1,176,176,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201018.log',1048585,1,190,190,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20201019.log',259,1,NULL,9,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201019.log',515,1,8,33,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201019.log',515,1,19,52,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201019.log',515,1,28,68,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20201019.log',515,1,35,83,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201019.log',515,1,49,116,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201019.log',515,1,53,120,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201019.log',515,1,59,138,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20201019.log',515,1,82,284,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201019.log',515,1,78,288,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201019.log',515,1,87,291,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201019.log',515,1,89,293,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201019.log',515,1,137,343,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201019.log',515,1,142,367,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,70),('usage_events_20201019.log',515,1,150,407,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201019.log',515,1,151,414,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201019.log',515,1,169,461,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201019.log',515,1,173,479,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20201019.log',515,1,175,493,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,82),('usage_events_20201019.log',515,1,176,500,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20201019.log',515,1,186,533,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201019.log',515,1,191,563,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201019.log',1048585,1,4,4,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20201019.log',1048585,1,8,8,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201019.log',1048585,1,53,53,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201019.log',1048585,1,58,58,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20201019.log',1048585,1,78,78,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201019.log',1048585,1,87,87,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201019.log',1048585,1,89,89,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201019.log',1048585,1,137,137,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201019.log',1048585,1,142,142,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20201019.log',1048585,1,150,150,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201019.log',1048585,1,173,173,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20201019.log',1048585,1,175,175,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20201019.log',1048585,1,176,176,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201019.log',1048585,1,186,186,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201020.log',256,1,NULL,1,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201020.log',259,1,NULL,12,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201020.log',515,1,51,118,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20201020.log',515,1,56,135,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201020.log',515,1,79,282,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20201020.log',515,1,81,283,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20201020.log',515,1,78,288,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201020.log',515,1,84,289,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201020.log',515,1,89,293,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201020.log',515,1,90,294,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201020.log',515,1,133,318,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201020.log',515,1,134,324,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201020.log',515,1,137,343,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201020.log',515,1,147,387,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20201020.log',515,1,149,401,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201020.log',515,1,171,470,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201020.log',515,1,173,479,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201020.log',515,1,175,493,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201020.log',515,1,176,500,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201020.log',515,1,190,556,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201020.log',515,1,191,563,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201020.log',1048585,1,28,28,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201020.log',1048585,1,51,51,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20201020.log',1048585,1,58,58,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201020.log',1048585,1,78,78,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201020.log',1048585,1,84,84,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201020.log',1048585,1,87,87,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201020.log',1048585,1,90,90,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201020.log',1048585,1,125,125,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201020.log',1048585,1,133,133,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201020.log',1048585,1,134,134,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201020.log',1048585,1,147,147,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201020.log',1048585,1,171,171,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201020.log',1048585,1,176,176,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201020.log',1048585,1,178,178,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201020.log',1048585,1,190,190,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201020.log',1048585,1,191,191,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201021.log',256,1,NULL,1,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201021.log',259,1,NULL,9,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201021.log',259,1,NULL,10,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201021.log',259,1,NULL,12,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201021.log',515,1,51,118,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201021.log',515,1,58,137,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20201021.log',515,1,79,282,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201021.log',515,1,81,283,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20201021.log',515,1,78,288,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20201021.log',515,1,89,293,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201021.log',515,1,91,295,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201021.log',515,1,141,361,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201021.log',515,1,142,367,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',7,1,259,9,70),('usage_events_20201021.log',515,1,147,387,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20201021.log',515,1,148,394,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20201021.log',515,1,169,461,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20201021.log',515,1,175,493,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20201021.log',515,1,176,500,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201021.log',515,1,185,527,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201021.log',515,1,186,533,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201021.log',515,1,190,556,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201021.log',515,1,191,563,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201021.log',515,1,193,569,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20201021.log',1048585,1,28,28,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20201021.log',1048585,1,51,51,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201021.log',1048585,1,58,58,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201021.log',1048585,1,78,78,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201021.log',1048585,1,79,79,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201021.log',1048585,1,82,82,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201021.log',1048585,1,141,141,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201021.log',1048585,1,142,142,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20201021.log',1048585,1,146,146,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201021.log',1048585,1,147,147,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201021.log',1048585,1,148,148,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201021.log',1048585,1,149,149,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201021.log',1048585,1,150,150,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201021.log',1048585,1,169,169,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201021.log',1048585,1,175,175,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201021.log',1048585,1,185,185,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201021.log',1048585,1,190,190,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201021.log',1048585,1,193,193,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201022.log',515,1,4,19,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,3),('usage_events_20201022.log',515,1,51,118,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,26),('usage_events_20201022.log',515,1,54,133,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20201022.log',515,1,58,137,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20201022.log',515,1,81,283,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20201022.log',515,1,78,288,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201022.log',515,1,88,292,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20201022.log',515,1,113,307,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20201022.log',515,1,133,318,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201022.log',515,1,136,336,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20201022.log',515,1,147,387,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201022.log',515,1,148,394,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201022.log',515,1,169,461,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201022.log',515,1,171,470,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201022.log',515,1,173,479,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201022.log',515,1,174,486,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201022.log',515,1,175,493,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201022.log',515,1,176,500,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201022.log',515,1,178,514,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20201022.log',515,1,193,569,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201022.log',1048585,1,4,4,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20201022.log',1048585,1,46,46,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201022.log',1048585,1,51,51,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201022.log',1048585,1,53,53,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201022.log',1048585,1,54,54,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201022.log',1048585,1,58,58,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20201022.log',1048585,1,77,77,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201022.log',1048585,1,78,78,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201022.log',1048585,1,85,85,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201022.log',1048585,1,88,88,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201022.log',1048585,1,91,91,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201022.log',1048585,1,113,113,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201022.log',1048585,1,133,133,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201022.log',1048585,1,139,139,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201022.log',1048585,1,147,147,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201022.log',1048585,1,148,148,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201022.log',1048585,1,169,169,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201022.log',1048585,1,171,171,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201022.log',1048585,1,173,173,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201022.log',1048585,1,174,174,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201022.log',1048585,1,175,175,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201022.log',1048585,1,176,176,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201022.log',1048585,1,185,185,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201022.log',1048585,1,191,191,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201022.log',1048585,1,193,193,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201023.log',256,1,NULL,1,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,1,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,2,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,3,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,4,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,5,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,6,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,7,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,8,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,9,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,10,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,11,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201023.log',259,1,NULL,12,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201023.log',515,1,1,3,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201023.log',515,1,19,52,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201023.log',515,1,32,80,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20201023.log',515,1,49,116,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20201023.log',515,1,51,118,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201023.log',515,1,58,137,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201023.log',515,1,83,285,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201023.log',515,1,78,288,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20201023.log',515,1,87,291,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201023.log',515,1,89,293,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,54),('usage_events_20201023.log',515,1,99,305,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201023.log',515,1,100,306,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20201023.log',515,1,125,310,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201023.log',515,1,133,318,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201023.log',515,1,136,336,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20201023.log',515,1,142,367,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201023.log',515,1,148,394,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201023.log',515,1,149,401,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201023.log',515,1,150,407,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201023.log',515,1,173,479,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201023.log',515,1,175,493,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20201023.log',515,1,176,500,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201023.log',515,1,178,514,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201023.log',1048585,1,1,1,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201023.log',1048585,1,4,4,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201023.log',1048585,1,5,5,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201023.log',1048585,1,6,6,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201023.log',1048585,1,7,7,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201023.log',1048585,1,8,8,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201023.log',1048585,1,14,14,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201023.log',1048585,1,19,19,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201023.log',1048585,1,20,20,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201023.log',1048585,1,21,21,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201023.log',1048585,1,22,22,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201023.log',1048585,1,32,32,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201023.log',1048585,1,40,40,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201023.log',1048585,1,51,51,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201023.log',1048585,1,78,78,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,7,NULL),('usage_events_20201023.log',1048585,1,81,81,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201023.log',1048585,1,83,83,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201023.log',1048585,1,84,84,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201023.log',1048585,1,89,89,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20201023.log',1048585,1,100,100,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201023.log',1048585,1,125,125,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201023.log',1048585,1,150,150,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201023.log',1048585,1,169,169,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201023.log',1048585,1,173,173,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201023.log',1048585,1,175,175,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201023.log',1048585,1,178,178,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201023.log',1048585,1,185,185,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201023.log',1048585,1,186,186,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201023.log',1048585,1,187,187,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201023.log',1048585,1,188,188,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201023.log',1048585,1,189,189,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201023.log',1048585,1,190,190,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201023.log',1048585,1,191,191,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201023.log',1048585,1,193,193,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201024.log',259,1,NULL,7,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201024.log',259,1,NULL,12,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201024.log',515,1,53,120,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201024.log',515,1,58,137,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20201024.log',515,1,78,288,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',13,1,259,7,49),('usage_events_20201024.log',515,1,86,290,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20201024.log',515,1,87,291,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201024.log',515,1,89,293,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20201024.log',515,1,113,307,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201024.log',515,1,137,343,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201024.log',515,1,142,367,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20201024.log',515,1,149,401,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201024.log',515,1,169,461,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201024.log',515,1,171,470,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20201024.log',515,1,173,479,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201024.log',515,1,177,507,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201024.log',515,1,190,556,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201024.log',515,1,193,569,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201024.log',1048585,1,53,53,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201024.log',1048585,1,78,78,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20201024.log',1048585,1,89,89,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201024.log',1048585,1,137,137,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201024.log',1048585,1,142,142,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20201024.log',1048585,1,149,149,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201024.log',1048585,1,150,150,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20201024.log',1048585,1,171,171,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201024.log',1048585,1,173,173,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201024.log',1048585,1,175,175,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201024.log',1048585,1,177,177,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201024.log',1048585,1,190,190,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201024.log',1048585,1,191,191,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201024.log',1048585,1,193,193,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201025.log',259,1,NULL,10,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201025.log',515,1,20,53,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201025.log',515,1,51,118,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20201025.log',515,1,58,137,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20201025.log',515,1,76,286,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20201025.log',515,1,78,288,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201025.log',515,1,91,295,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20201025.log',515,1,100,306,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201025.log',515,1,133,318,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201025.log',515,1,137,343,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201025.log',515,1,142,367,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20201025.log',515,1,149,401,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201025.log',515,1,150,407,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201025.log',515,1,151,414,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20201025.log',515,1,169,461,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201025.log',515,1,187,539,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201025.log',515,1,190,556,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201025.log',1048585,1,19,19,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201025.log',1048585,1,51,51,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201025.log',1048585,1,58,58,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201025.log',1048585,1,76,76,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201025.log',1048585,1,78,78,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20201025.log',1048585,1,82,82,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201025.log',1048585,1,133,133,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201025.log',1048585,1,137,137,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201025.log',1048585,1,149,149,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201025.log',1048585,1,151,151,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201025.log',1048585,1,169,169,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201025.log',1048585,1,174,174,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201025.log',1048585,1,175,175,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201025.log',1048585,1,190,190,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201026.log',256,1,NULL,1,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,1,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,2,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,3,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,4,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,5,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,6,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,7,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,8,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,9,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,10,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,11,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201026.log',259,1,NULL,12,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201026.log',515,1,1,3,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201026.log',515,1,19,52,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201026.log',515,1,20,53,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201026.log',515,1,32,80,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20201026.log',515,1,53,120,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20201026.log',515,1,78,288,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201026.log',515,1,89,293,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201026.log',515,1,100,306,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201026.log',515,1,137,343,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201026.log',515,1,139,351,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201026.log',515,1,141,361,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201026.log',515,1,142,367,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201026.log',515,1,148,394,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201026.log',515,1,149,401,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201026.log',515,1,152,423,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20201026.log',515,1,169,461,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20201026.log',515,1,171,470,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201026.log',515,1,173,479,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201026.log',515,1,175,493,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201026.log',515,1,176,500,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,83),('usage_events_20201026.log',515,1,187,539,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201026.log',515,1,191,563,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201026.log',515,1,193,569,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201026.log',1048585,1,1,1,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201026.log',1048585,1,4,4,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201026.log',1048585,1,5,5,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201026.log',1048585,1,6,6,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201026.log',1048585,1,7,7,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201026.log',1048585,1,8,8,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201026.log',1048585,1,14,14,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201026.log',1048585,1,19,19,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201026.log',1048585,1,20,20,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201026.log',1048585,1,21,21,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201026.log',1048585,1,22,22,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201026.log',1048585,1,40,40,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201026.log',1048585,1,46,46,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201026.log',1048585,1,49,49,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201026.log',1048585,1,51,51,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201026.log',1048585,1,53,53,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20201026.log',1048585,1,58,58,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201026.log',1048585,1,78,78,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201026.log',1048585,1,137,137,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201026.log',1048585,1,139,139,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201026.log',1048585,1,142,142,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201026.log',1048585,1,147,147,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201026.log',1048585,1,149,149,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201026.log',1048585,1,151,151,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201026.log',1048585,1,152,152,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20201026.log',1048585,1,169,169,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201026.log',1048585,1,171,171,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201026.log',1048585,1,173,173,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201026.log',1048585,1,185,185,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201026.log',1048585,1,186,186,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201026.log',1048585,1,187,187,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201026.log',1048585,1,188,188,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201026.log',1048585,1,189,189,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201026.log',1048585,1,190,190,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201026.log',1048585,1,191,191,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201026.log',1048585,1,193,193,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201027.log',259,1,NULL,6,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201027.log',515,1,19,52,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201027.log',515,1,20,53,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20201027.log',515,1,47,115,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201027.log',515,1,51,118,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20201027.log',515,1,54,133,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201027.log',515,1,58,137,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201027.log',515,1,79,282,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201027.log',515,1,82,284,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201027.log',515,1,78,288,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201027.log',515,1,84,289,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,50),('usage_events_20201027.log',515,1,87,291,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20201027.log',515,1,89,293,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201027.log',515,1,114,308,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201027.log',515,1,152,423,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201027.log',515,1,169,461,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',14,1,259,11,78),('usage_events_20201027.log',515,1,173,479,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201027.log',515,1,175,493,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201027.log',515,1,178,514,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201027.log',515,1,185,527,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201027.log',515,1,191,563,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201027.log',1048585,1,19,19,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201027.log',1048585,1,51,51,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,4,NULL),('usage_events_20201027.log',1048585,1,78,78,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201027.log',1048585,1,79,79,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201027.log',1048585,1,82,82,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201027.log',1048585,1,84,84,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201027.log',1048585,1,85,85,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201027.log',1048585,1,87,87,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201027.log',1048585,1,114,114,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201027.log',1048585,1,169,169,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20201027.log',1048585,1,171,171,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201027.log',1048585,1,173,173,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201027.log',1048585,1,175,175,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201027.log',1048585,1,178,178,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201028.log',256,1,NULL,1,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201028.log',259,1,NULL,11,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201028.log',259,1,NULL,12,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201028.log',515,1,4,19,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20201028.log',515,1,51,118,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201028.log',515,1,83,285,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201028.log',515,1,78,288,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20201028.log',515,1,87,291,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201028.log',515,1,89,293,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201028.log',515,1,113,307,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20201028.log',515,1,134,324,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201028.log',515,1,169,461,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20201028.log',515,1,173,479,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201028.log',515,1,174,486,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201028.log',515,1,177,507,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201028.log',515,1,178,514,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201028.log',515,1,191,563,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201028.log',515,1,193,569,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20201028.log',1048585,1,40,40,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201028.log',1048585,1,51,51,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201028.log',1048585,1,78,78,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201028.log',1048585,1,87,87,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201028.log',1048585,1,89,89,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201028.log',1048585,1,113,113,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201028.log',1048585,1,169,169,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201028.log',1048585,1,173,173,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201028.log',1048585,1,174,174,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201028.log',1048585,1,177,177,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201028.log',1048585,1,185,185,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201028.log',1048585,1,190,190,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201028.log',1048585,1,193,193,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201029.log',256,1,NULL,1,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,1,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,2,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,3,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,4,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,5,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,6,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,7,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,8,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,9,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,10,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,11,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201029.log',259,1,NULL,12,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201029.log',515,1,1,3,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201029.log',515,1,6,31,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20201029.log',515,1,8,33,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20201029.log',515,1,14,51,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20201029.log',515,1,49,116,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201029.log',515,1,85,281,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20201029.log',515,1,81,283,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201029.log',515,1,78,288,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201029.log',515,1,87,291,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201029.log',515,1,89,293,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20201029.log',515,1,91,295,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20201029.log',515,1,169,461,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201029.log',515,1,173,479,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201029.log',515,1,176,500,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201029.log',515,1,177,507,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201029.log',1048585,1,1,1,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201029.log',1048585,1,4,4,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201029.log',1048585,1,5,5,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201029.log',1048585,1,6,6,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201029.log',1048585,1,7,7,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201029.log',1048585,1,8,8,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201029.log',1048585,1,14,14,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201029.log',1048585,1,20,20,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201029.log',1048585,1,21,21,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201029.log',1048585,1,22,22,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201029.log',1048585,1,40,40,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201029.log',1048585,1,78,78,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201029.log',1048585,1,81,81,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201029.log',1048585,1,83,83,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201029.log',1048585,1,85,85,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201029.log',1048585,1,87,87,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201029.log',1048585,1,89,89,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201029.log',1048585,1,91,91,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201029.log',1048585,1,149,149,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201029.log',1048585,1,150,150,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201029.log',1048585,1,169,169,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201029.log',1048585,1,175,175,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201029.log',1048585,1,176,176,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201029.log',1048585,1,178,178,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201029.log',1048585,1,185,185,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201029.log',1048585,1,186,186,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201029.log',1048585,1,187,187,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201029.log',1048585,1,188,188,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201029.log',1048585,1,189,189,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201029.log',1048585,1,190,190,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201029.log',1048585,1,191,191,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201029.log',1048585,1,193,193,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201030.log',515,1,35,83,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201030.log',515,1,49,116,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20201030.log',515,1,58,137,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201030.log',515,1,85,281,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201030.log',515,1,81,283,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201030.log',515,1,78,288,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201030.log',515,1,84,289,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20201030.log',515,1,87,291,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20201030.log',515,1,90,294,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201030.log',515,1,99,305,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,57),('usage_events_20201030.log',515,1,113,307,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20201030.log',515,1,133,318,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201030.log',515,1,141,361,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201030.log',515,1,148,394,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201030.log',515,1,149,401,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20201030.log',515,1,150,407,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201030.log',515,1,151,414,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201030.log',515,1,173,479,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201030.log',515,1,176,500,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201030.log',515,1,178,514,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201030.log',1048585,1,58,58,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201030.log',1048585,1,78,78,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201030.log',1048585,1,81,81,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201030.log',1048585,1,84,84,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201030.log',1048585,1,87,87,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201030.log',1048585,1,100,100,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201030.log',1048585,1,133,133,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201030.log',1048585,1,142,142,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201030.log',1048585,1,150,150,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201030.log',1048585,1,151,151,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201030.log',1048585,1,190,190,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201031.log',256,1,NULL,1,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201031.log',259,1,NULL,1,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201031.log',515,1,8,33,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201031.log',515,1,20,53,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201031.log',515,1,78,288,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201031.log',515,1,86,290,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20201031.log',515,1,87,291,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20201031.log',515,1,89,293,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201031.log',515,1,100,306,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201031.log',515,1,113,307,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201031.log',515,1,133,318,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201031.log',515,1,137,343,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201031.log',515,1,169,461,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201031.log',515,1,171,470,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201031.log',515,1,175,493,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201031.log',515,1,176,500,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201031.log',515,1,177,507,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201031.log',515,1,178,514,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201031.log',515,1,185,527,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201031.log',515,1,187,539,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201031.log',515,1,191,563,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201031.log',1048585,1,8,8,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20201031.log',1048585,1,20,20,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201031.log',1048585,1,86,86,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201031.log',1048585,1,87,87,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201031.log',1048585,1,100,100,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201031.log',1048585,1,133,133,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201031.log',1048585,1,137,137,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201031.log',1048585,1,171,171,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201031.log',1048585,1,177,177,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201031.log',1048585,1,178,178,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201031.log',1048585,1,186,186,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201031.log',1048585,1,191,191,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201101.log',515,1,8,33,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201101.log',515,1,51,118,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20201101.log',515,1,77,287,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20201101.log',515,1,78,288,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20201101.log',515,1,87,291,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201101.log',515,1,89,293,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201101.log',515,1,100,306,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201101.log',515,1,114,308,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201101.log',515,1,135,330,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201101.log',515,1,137,343,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201101.log',515,1,148,394,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201101.log',515,1,149,401,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201101.log',515,1,169,461,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201101.log',515,1,173,479,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201101.log',515,1,175,493,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201101.log',515,1,186,533,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201101.log',515,1,187,539,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20201101.log',515,1,191,563,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201101.log',1048585,1,8,8,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201101.log',1048585,1,51,51,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201101.log',1048585,1,77,77,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201101.log',1048585,1,78,78,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201101.log',1048585,1,100,100,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201101.log',1048585,1,133,133,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201101.log',1048585,1,137,137,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201101.log',1048585,1,148,148,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201101.log',1048585,1,175,175,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201102.log',256,1,NULL,1,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201102.log',259,1,NULL,12,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201102.log',515,1,4,19,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20201102.log',515,1,47,115,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201102.log',515,1,49,116,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201102.log',515,1,53,120,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201102.log',515,1,78,288,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201102.log',515,1,84,289,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201102.log',515,1,99,305,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201102.log',515,1,113,307,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20201102.log',515,1,114,308,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20201102.log',515,1,136,336,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20201102.log',515,1,147,387,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,72),('usage_events_20201102.log',515,1,148,394,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201102.log',515,1,149,401,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201102.log',515,1,150,407,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201102.log',515,1,151,414,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201102.log',515,1,169,461,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201102.log',515,1,173,479,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201102.log',515,1,175,493,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201102.log',515,1,176,500,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201102.log',515,1,178,514,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201102.log',515,1,187,539,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201102.log',515,1,190,556,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201102.log',515,1,191,563,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,92),('usage_events_20201102.log',515,1,193,569,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201102.log',1048585,1,4,4,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201102.log',1048585,1,7,7,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201102.log',1048585,1,47,47,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201102.log',1048585,1,78,78,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201102.log',1048585,1,114,114,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201102.log',1048585,1,133,133,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201102.log',1048585,1,147,147,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201102.log',1048585,1,148,148,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201102.log',1048585,1,169,169,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201102.log',1048585,1,175,175,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201102.log',1048585,1,191,191,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201102.log',1048585,1,193,193,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201103.log',256,1,NULL,1,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201103.log',515,1,19,52,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201103.log',515,1,82,284,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201103.log',515,1,83,285,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201103.log',515,1,78,288,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201103.log',515,1,87,291,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201103.log',515,1,99,305,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201103.log',515,1,147,387,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201103.log',515,1,148,394,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201103.log',515,1,149,401,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20201103.log',515,1,150,407,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201103.log',515,1,152,423,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201103.log',515,1,173,479,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201103.log',515,1,175,493,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201103.log',515,1,177,507,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201103.log',515,1,186,533,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201103.log',515,1,190,556,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201103.log',515,1,193,569,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201103.log',1048585,1,19,19,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201103.log',1048585,1,52,52,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201103.log',1048585,1,83,83,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20201103.log',1048585,1,87,87,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201103.log',1048585,1,135,135,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201103.log',1048585,1,148,148,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201103.log',1048585,1,149,149,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201103.log',1048585,1,152,152,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201103.log',1048585,1,173,173,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201103.log',1048585,1,175,175,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201103.log',1048585,1,177,177,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201103.log',1048585,1,185,185,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201103.log',1048585,1,186,186,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201103.log',1048585,1,190,190,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201103.log',1048585,1,193,193,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201104.log',256,1,NULL,1,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,1,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,2,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,3,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,4,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,5,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,6,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,7,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,8,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,9,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,10,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,11,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201104.log',259,1,NULL,12,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201104.log',515,1,1,3,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20201104.log',515,1,4,19,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20201104.log',515,1,19,52,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201104.log',515,1,33,81,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201104.log',515,1,78,288,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201104.log',515,1,87,291,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201104.log',515,1,114,308,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201104.log',515,1,133,318,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201104.log',515,1,141,361,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201104.log',515,1,150,407,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20201104.log',515,1,169,461,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201104.log',515,1,171,470,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201104.log',515,1,173,479,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201104.log',515,1,175,493,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201104.log',515,1,177,507,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201104.log',515,1,178,514,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201104.log',515,1,191,563,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201104.log',1048585,1,1,1,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201104.log',1048585,1,4,4,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201104.log',1048585,1,5,5,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201104.log',1048585,1,6,6,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201104.log',1048585,1,7,7,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201104.log',1048585,1,8,8,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201104.log',1048585,1,14,14,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201104.log',1048585,1,20,20,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201104.log',1048585,1,21,21,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201104.log',1048585,1,22,22,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201104.log',1048585,1,40,40,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201104.log',1048585,1,78,78,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201104.log',1048585,1,87,87,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201104.log',1048585,1,91,91,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201104.log',1048585,1,114,114,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201104.log',1048585,1,133,133,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201104.log',1048585,1,152,152,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201104.log',1048585,1,169,169,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201104.log',1048585,1,175,175,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201104.log',1048585,1,185,185,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201104.log',1048585,1,186,186,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201104.log',1048585,1,187,187,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201104.log',1048585,1,188,188,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201104.log',1048585,1,189,189,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201104.log',1048585,1,190,190,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201104.log',1048585,1,191,191,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201104.log',1048585,1,193,193,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201105.log',256,1,NULL,1,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201105.log',259,1,NULL,11,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201105.log',515,1,19,52,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201105.log',515,1,21,54,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20201105.log',515,1,58,137,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201105.log',515,1,114,308,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20201105.log',515,1,137,343,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20201105.log',515,1,142,367,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20201105.log',515,1,149,401,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20201105.log',515,1,150,407,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20201105.log',515,1,152,423,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201105.log',515,1,169,461,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201105.log',515,1,175,493,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201105.log',515,1,176,500,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201105.log',515,1,185,527,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201105.log',515,1,187,539,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201105.log',515,1,190,556,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201105.log',515,1,193,569,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20201105.log',1048585,1,19,19,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201105.log',1048585,1,53,53,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201105.log',1048585,1,54,54,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201105.log',1048585,1,58,58,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201105.log',1048585,1,84,84,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201105.log',1048585,1,89,89,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201105.log',1048585,1,137,137,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20201105.log',1048585,1,142,142,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201105.log',1048585,1,149,149,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201105.log',1048585,1,152,152,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201105.log',1048585,1,176,176,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201105.log',1048585,1,190,190,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201105.log',1048585,1,193,193,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20201106.log',256,1,NULL,1,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201106.log',515,1,19,52,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20201106.log',515,1,49,116,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201106.log',515,1,54,133,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201106.log',515,1,81,283,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201106.log',515,1,78,288,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201106.log',515,1,84,289,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201106.log',515,1,88,292,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20201106.log',515,1,89,293,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201106.log',515,1,113,307,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20201106.log',515,1,133,318,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201106.log',515,1,139,351,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201106.log',515,1,148,394,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20201106.log',515,1,149,401,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201106.log',515,1,150,407,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20201106.log',515,1,169,461,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201106.log',515,1,175,493,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201106.log',515,1,176,500,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201106.log',515,1,177,507,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,84),('usage_events_20201106.log',515,1,178,514,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,85),('usage_events_20201106.log',515,1,185,527,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201106.log',515,1,187,539,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201106.log',515,1,190,556,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201106.log',515,1,191,563,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201106.log',515,1,193,569,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201106.log',1048585,1,19,19,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201106.log',1048585,1,20,20,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201106.log',1048585,1,49,49,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201106.log',1048585,1,51,51,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201106.log',1048585,1,54,54,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201106.log',1048585,1,58,58,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201106.log',1048585,1,78,78,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201106.log',1048585,1,89,89,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201106.log',1048585,1,133,133,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201106.log',1048585,1,139,139,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201106.log',1048585,1,148,148,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201106.log',1048585,1,169,169,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201106.log',1048585,1,176,176,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201106.log',1048585,1,177,177,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201106.log',1048585,1,178,178,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20201106.log',1048585,1,185,185,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201106.log',1048585,1,191,191,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201106.log',1048585,1,193,193,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201107.log',256,1,NULL,1,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201107.log',515,1,6,31,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20201107.log',515,1,46,114,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,22),('usage_events_20201107.log',515,1,50,117,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20201107.log',515,1,54,133,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20201107.log',515,1,56,135,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201107.log',515,1,85,281,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201107.log',515,1,81,283,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201107.log',515,1,78,288,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20201107.log',515,1,87,291,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201107.log',515,1,91,295,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201107.log',515,1,99,305,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201107.log',515,1,113,307,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201107.log',515,1,135,330,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201107.log',515,1,137,343,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201107.log',515,1,147,387,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201107.log',515,1,148,394,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201107.log',515,1,149,401,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201107.log',515,1,152,423,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201107.log',515,1,169,461,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201107.log',515,1,173,479,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201107.log',515,1,176,500,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20201107.log',515,1,177,507,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201107.log',515,1,190,556,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201107.log',515,1,191,563,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201107.log',515,1,193,569,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201107.log',1048585,1,6,6,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201107.log',1048585,1,31,31,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201107.log',1048585,1,46,46,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201107.log',1048585,1,78,78,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20201107.log',1048585,1,81,81,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201107.log',1048585,1,87,87,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201107.log',1048585,1,91,91,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201107.log',1048585,1,135,135,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201107.log',1048585,1,136,136,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201107.log',1048585,1,149,149,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201107.log',1048585,1,152,152,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201107.log',1048585,1,173,173,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201107.log',1048585,1,176,176,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201107.log',1048585,1,191,191,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201108.log',256,1,NULL,1,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201108.log',259,1,NULL,11,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201108.log',515,1,14,51,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20201108.log',515,1,35,83,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201108.log',515,1,50,117,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20201108.log',515,1,82,284,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201108.log',515,1,78,288,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201108.log',515,1,87,291,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201108.log',515,1,91,295,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201108.log',515,1,137,343,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201108.log',515,1,148,394,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201108.log',515,1,150,407,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,75),('usage_events_20201108.log',515,1,151,414,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20201108.log',515,1,169,461,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201108.log',515,1,171,470,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20201108.log',515,1,173,479,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201108.log',515,1,175,493,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201108.log',515,1,177,507,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201108.log',515,1,185,527,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201108.log',515,1,191,563,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201108.log',515,1,193,569,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20201108.log',1048585,1,59,59,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201108.log',1048585,1,78,78,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201108.log',1048585,1,87,87,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201108.log',1048585,1,91,91,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201108.log',1048585,1,115,115,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201108.log',1048585,1,137,137,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201108.log',1048585,1,139,139,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201108.log',1048585,1,142,142,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201108.log',1048585,1,148,148,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201108.log',1048585,1,151,151,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201108.log',1048585,1,169,169,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201108.log',1048585,1,171,171,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201108.log',1048585,1,173,173,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201108.log',1048585,1,175,175,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201108.log',1048585,1,185,185,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201108.log',1048585,1,193,193,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201109.log',256,1,NULL,1,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201109.log',515,1,58,137,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201109.log',515,1,78,288,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20201109.log',515,1,87,291,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201109.log',515,1,113,307,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201109.log',515,1,136,336,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20201109.log',515,1,137,343,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201109.log',515,1,139,351,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201109.log',515,1,148,394,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20201109.log',515,1,150,407,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20201109.log',515,1,151,414,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20201109.log',515,1,169,461,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20201109.log',515,1,173,479,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201109.log',515,1,175,493,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201109.log',515,1,176,500,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20201109.log',515,1,177,507,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201109.log',515,1,187,539,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20201109.log',515,1,190,556,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201109.log',1048585,1,35,35,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201109.log',1048585,1,58,58,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201109.log',1048585,1,78,78,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20201109.log',1048585,1,87,87,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201109.log',1048585,1,139,139,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201109.log',1048585,1,149,149,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201109.log',1048585,1,169,169,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20201109.log',1048585,1,173,173,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201109.log',1048585,1,176,176,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201109.log',1048585,1,177,177,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201109.log',1048585,1,178,178,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201109.log',1048585,1,187,187,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201109.log',1048585,1,190,190,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201110.log',515,1,33,81,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201110.log',515,1,35,83,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,20),('usage_events_20201110.log',515,1,82,284,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201110.log',515,1,78,288,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20201110.log',515,1,87,291,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201110.log',515,1,91,295,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201110.log',515,1,114,308,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20201110.log',515,1,115,309,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20201110.log',515,1,137,343,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20201110.log',515,1,139,351,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201110.log',515,1,141,361,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201110.log',515,1,146,379,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201110.log',515,1,147,387,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20201110.log',515,1,149,401,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201110.log',515,1,150,407,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201110.log',515,1,169,461,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201110.log',515,1,171,470,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201110.log',515,1,173,479,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201110.log',515,1,175,493,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20201110.log',515,1,177,507,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201110.log',515,1,190,556,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201110.log',515,1,191,563,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201110.log',515,1,193,569,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201110.log',1048585,1,78,78,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201110.log',1048585,1,87,87,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201110.log',1048585,1,91,91,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201110.log',1048585,1,114,114,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20201110.log',1048585,1,136,136,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201110.log',1048585,1,139,139,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201110.log',1048585,1,147,147,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201110.log',1048585,1,150,150,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201110.log',1048585,1,169,169,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201110.log',1048585,1,173,173,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201110.log',1048585,1,174,174,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201110.log',1048585,1,190,190,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201110.log',1048585,1,191,191,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201111.log',256,1,NULL,1,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20201111.log',515,1,55,134,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20201111.log',515,1,83,285,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201111.log',515,1,78,288,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201111.log',515,1,89,293,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201111.log',515,1,113,307,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201111.log',515,1,137,343,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201111.log',515,1,148,394,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201111.log',515,1,149,401,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201111.log',515,1,171,470,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20201111.log',515,1,173,479,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201111.log',515,1,175,493,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201111.log',515,1,186,533,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201111.log',515,1,187,539,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201111.log',515,1,189,551,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20201111.log',515,1,193,569,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201111.log',1048585,1,51,51,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201111.log',1048585,1,78,78,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201111.log',1048585,1,89,89,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201111.log',1048585,1,137,137,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201111.log',1048585,1,148,148,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201111.log',1048585,1,173,173,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201111.log',1048585,1,175,175,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201111.log',1048585,1,187,187,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201111.log',1048585,1,193,193,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201112.log',256,1,NULL,1,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20201112.log',259,1,NULL,12,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201112.log',515,1,20,53,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20201112.log',515,1,49,116,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201112.log',515,1,79,282,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20201112.log',515,1,78,288,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201112.log',515,1,84,289,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201112.log',515,1,87,291,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20201112.log',515,1,89,293,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201112.log',515,1,125,310,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201112.log',515,1,137,343,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20201112.log',515,1,142,367,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20201112.log',515,1,148,394,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201112.log',515,1,150,407,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20201112.log',515,1,151,414,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20201112.log',515,1,169,461,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201112.log',515,1,171,470,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201112.log',515,1,175,493,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201112.log',515,1,176,500,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201112.log',515,1,177,507,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201112.log',515,1,186,533,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201112.log',515,1,187,539,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20201112.log',1048585,1,20,20,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201112.log',1048585,1,78,78,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201112.log',1048585,1,79,79,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201112.log',1048585,1,84,84,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201112.log',1048585,1,87,87,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201112.log',1048585,1,100,100,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201112.log',1048585,1,125,125,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201112.log',1048585,1,137,137,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201112.log',1048585,1,150,150,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201112.log',1048585,1,151,151,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20201112.log',1048585,1,152,152,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201112.log',1048585,1,169,169,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201114.log',256,1,NULL,1,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201114.log',259,1,NULL,7,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201114.log',259,1,NULL,12,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201114.log',515,1,83,285,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201114.log',515,1,78,288,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201114.log',515,1,87,291,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201114.log',515,1,148,394,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201114.log',515,1,150,407,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,75),('usage_events_20201114.log',515,1,175,493,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201114.log',515,1,176,500,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201114.log',515,1,178,514,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201114.log',515,1,187,539,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201114.log',515,1,190,556,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20201114.log',515,1,193,569,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201114.log',1048585,1,58,58,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201114.log',1048585,1,87,87,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201114.log',1048585,1,113,113,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201114.log',1048585,1,148,148,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201114.log',1048585,1,150,150,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201114.log',1048585,1,176,176,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201114.log',1048585,1,178,178,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201114.log',1048585,1,185,185,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201114.log',1048585,1,186,186,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201114.log',1048585,1,187,187,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201114.log',1048585,1,188,188,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201114.log',1048585,1,189,189,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201114.log',1048585,1,190,190,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201114.log',1048585,1,191,191,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201114.log',1048585,1,193,193,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201113.log',256,1,NULL,1,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20201113.log',515,1,6,31,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20201113.log',515,1,21,54,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20201113.log',515,1,34,82,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201113.log',515,1,47,115,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201113.log',515,1,49,116,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201113.log',515,1,51,118,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201113.log',515,1,54,133,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201113.log',515,1,79,282,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201113.log',515,1,78,288,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20201113.log',515,1,84,289,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201113.log',515,1,88,292,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20201113.log',515,1,113,307,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20201113.log',515,1,139,351,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201113.log',515,1,142,367,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201113.log',515,1,148,394,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201113.log',515,1,169,461,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20201113.log',515,1,171,470,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201113.log',515,1,173,479,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20201113.log',515,1,191,563,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201113.log',515,1,193,569,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201113.log',1048585,1,6,6,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201113.log',1048585,1,47,47,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201113.log',1048585,1,49,49,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201113.log',1048585,1,56,56,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201113.log',1048585,1,78,78,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,7,NULL),('usage_events_20201113.log',1048585,1,87,87,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201113.log',1048585,1,89,89,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201113.log',1048585,1,125,125,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201113.log',1048585,1,142,142,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201113.log',1048585,1,148,148,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201113.log',1048585,1,169,169,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201113.log',1048585,1,171,171,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201113.log',1048585,1,174,174,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201113.log',1048585,1,176,176,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201113.log',1048585,1,177,177,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201113.log',1048585,1,186,186,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201113.log',1048585,1,193,193,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201115.log',256,1,NULL,1,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,1,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,2,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,3,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,4,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,5,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,6,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,7,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,8,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,9,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,10,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,11,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201115.log',259,1,NULL,12,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201115.log',515,1,7,32,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20201115.log',515,1,14,51,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20201115.log',515,1,20,53,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201115.log',515,1,32,80,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20201115.log',515,1,34,82,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20201115.log',515,1,50,117,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20201115.log',515,1,85,281,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201115.log',515,1,81,283,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201115.log',515,1,78,288,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201115.log',515,1,87,291,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201115.log',515,1,133,318,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201115.log',515,1,137,343,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201115.log',515,1,141,361,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201115.log',515,1,146,379,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201115.log',515,1,147,387,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201115.log',515,1,169,461,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201115.log',515,1,171,470,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201115.log',515,1,175,493,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201115.log',515,1,176,500,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20201115.log',515,1,178,514,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201115.log',515,1,185,527,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20201115.log',515,1,186,533,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',7,1,259,12,87),('usage_events_20201115.log',515,1,187,539,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201115.log',515,1,188,545,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201115.log',515,1,189,551,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20201115.log',515,1,190,556,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20201115.log',515,1,191,563,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201115.log',515,1,193,569,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201115.log',1048585,1,1,1,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201115.log',1048585,1,4,4,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201115.log',1048585,1,5,5,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201115.log',1048585,1,6,6,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201115.log',1048585,1,7,7,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201115.log',1048585,1,8,8,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201115.log',1048585,1,14,14,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201115.log',1048585,1,19,19,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201115.log',1048585,1,20,20,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201115.log',1048585,1,21,21,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201115.log',1048585,1,22,22,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201115.log',1048585,1,28,28,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201115.log',1048585,1,31,31,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201115.log',1048585,1,32,32,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201115.log',1048585,1,33,33,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201115.log',1048585,1,34,34,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201115.log',1048585,1,35,35,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201115.log',1048585,1,40,40,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201115.log',1048585,1,46,46,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201115.log',1048585,1,47,47,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201115.log',1048585,1,49,49,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201115.log',1048585,1,50,50,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201115.log',1048585,1,51,51,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201115.log',1048585,1,52,52,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201115.log',1048585,1,53,53,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201115.log',1048585,1,54,54,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201115.log',1048585,1,55,55,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201115.log',1048585,1,56,56,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201115.log',1048585,1,57,57,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201115.log',1048585,1,58,58,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201115.log',1048585,1,59,59,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201115.log',1048585,1,74,74,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201115.log',1048585,1,76,76,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201115.log',1048585,1,77,77,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201115.log',1048585,1,78,78,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201115.log',1048585,1,79,79,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201115.log',1048585,1,81,81,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201115.log',1048585,1,82,82,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201115.log',1048585,1,83,83,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201115.log',1048585,1,84,84,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201115.log',1048585,1,85,85,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201115.log',1048585,1,86,86,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201115.log',1048585,1,87,87,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201115.log',1048585,1,88,88,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201115.log',1048585,1,89,89,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201115.log',1048585,1,90,90,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201115.log',1048585,1,91,91,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201115.log',1048585,1,99,99,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201115.log',1048585,1,100,100,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201115.log',1048585,1,113,113,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201115.log',1048585,1,114,114,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201115.log',1048585,1,115,115,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201115.log',1048585,1,125,125,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201115.log',1048585,1,133,133,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201115.log',1048585,1,134,134,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201115.log',1048585,1,135,135,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201115.log',1048585,1,136,136,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201115.log',1048585,1,137,137,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201115.log',1048585,1,139,139,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201115.log',1048585,1,141,141,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201115.log',1048585,1,142,142,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201115.log',1048585,1,146,146,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201115.log',1048585,1,147,147,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201115.log',1048585,1,148,148,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201115.log',1048585,1,149,149,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201115.log',1048585,1,150,150,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201115.log',1048585,1,151,151,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201115.log',1048585,1,152,152,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201115.log',1048585,1,169,169,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20201115.log',1048585,1,171,171,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201115.log',1048585,1,173,173,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201115.log',1048585,1,174,174,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201115.log',1048585,1,175,175,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201115.log',1048585,1,176,176,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201115.log',1048585,1,177,177,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201115.log',1048585,1,178,178,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201115.log',1048585,1,185,185,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201115.log',1048585,1,187,187,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201115.log',1048585,1,191,191,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201115.log',1048585,1,193,193,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201116.log',256,1,NULL,1,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',16,NULL,NULL,NULL,NULL),('usage_events_20201116.log',259,1,NULL,12,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201116.log',515,1,4,19,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20201116.log',515,1,33,81,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201116.log',515,1,34,82,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,3,19),('usage_events_20201116.log',515,1,47,115,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201116.log',515,1,51,118,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201116.log',515,1,56,135,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201116.log',515,1,78,288,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201116.log',515,1,87,291,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201116.log',515,1,113,307,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20201116.log',515,1,139,351,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201116.log',515,1,146,379,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201116.log',515,1,148,394,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',10,1,259,10,73),('usage_events_20201116.log',515,1,149,401,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20201116.log',515,1,151,414,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201116.log',515,1,169,461,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201116.log',515,1,171,470,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201116.log',515,1,173,479,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201116.log',515,1,176,500,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201116.log',515,1,178,514,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201116.log',515,1,185,527,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201116.log',515,1,187,539,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201116.log',515,1,191,563,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20201116.log',1048585,1,4,4,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201116.log',1048585,1,78,78,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201116.log',1048585,1,87,87,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201116.log',1048585,1,139,139,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201116.log',1048585,1,148,148,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20201116.log',1048585,1,169,169,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201116.log',1048585,1,171,171,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201116.log',1048585,1,173,173,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201116.log',1048585,1,178,178,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201116.log',1048585,1,191,191,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201117.log',256,1,NULL,1,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201117.log',515,1,4,19,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',6,1,259,1,3),('usage_events_20201117.log',515,1,19,52,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201117.log',515,1,33,81,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201117.log',515,1,34,82,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201117.log',515,1,46,114,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20201117.log',515,1,49,116,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20201117.log',515,1,53,120,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201117.log',515,1,56,135,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201117.log',515,1,81,283,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20201117.log',515,1,83,285,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201117.log',515,1,78,288,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201117.log',515,1,87,291,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201117.log',515,1,91,295,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20201117.log',515,1,125,310,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201117.log',515,1,136,336,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20201117.log',515,1,137,343,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201117.log',515,1,139,351,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201117.log',515,1,146,379,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201117.log',515,1,148,394,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201117.log',515,1,149,401,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201117.log',515,1,150,407,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201117.log',515,1,169,461,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201117.log',515,1,173,479,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201117.log',515,1,174,486,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201117.log',515,1,176,500,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,83),('usage_events_20201117.log',515,1,177,507,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,84),('usage_events_20201117.log',515,1,185,527,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201117.log',515,1,186,533,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201117.log',515,1,187,539,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20201117.log',515,1,188,545,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201117.log',515,1,190,556,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201117.log',515,1,191,563,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201117.log',1048585,1,4,4,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,1,NULL),('usage_events_20201117.log',1048585,1,49,49,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201117.log',1048585,1,78,78,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201117.log',1048585,1,83,83,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201117.log',1048585,1,86,86,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201117.log',1048585,1,87,87,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201117.log',1048585,1,100,100,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201117.log',1048585,1,125,125,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201117.log',1048585,1,139,139,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201117.log',1048585,1,142,142,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201117.log',1048585,1,146,146,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201117.log',1048585,1,148,148,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201117.log',1048585,1,171,171,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201117.log',1048585,1,176,176,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20201117.log',1048585,1,177,177,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201117.log',1048585,1,185,185,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201117.log',1048585,1,187,187,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201117.log',1048585,1,190,190,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201118.log',256,1,NULL,1,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20201118.log',259,1,NULL,11,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201118.log',259,1,NULL,12,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201118.log',515,1,54,133,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201118.log',515,1,56,135,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201118.log',515,1,58,137,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20201118.log',515,1,78,288,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201118.log',515,1,84,289,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201118.log',515,1,89,293,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201118.log',515,1,91,295,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201118.log',515,1,113,307,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201118.log',515,1,125,310,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201118.log',515,1,133,318,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201118.log',515,1,137,343,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201118.log',515,1,139,351,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201118.log',515,1,148,394,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201118.log',515,1,169,461,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20201118.log',515,1,173,479,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201118.log',515,1,175,493,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201118.log',515,1,176,500,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,83),('usage_events_20201118.log',515,1,177,507,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20201118.log',515,1,186,533,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201118.log',515,1,188,545,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201118.log',515,1,190,556,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201118.log',515,1,191,563,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201118.log',515,1,193,569,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201118.log',1048585,1,56,56,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201118.log',1048585,1,125,125,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201118.log',1048585,1,137,137,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201118.log',1048585,1,139,139,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201118.log',1048585,1,142,142,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201118.log',1048585,1,169,169,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201118.log',1048585,1,173,173,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201118.log',1048585,1,176,176,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201118.log',1048585,1,177,177,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201118.log',1048585,1,188,188,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201118.log',1048585,1,190,190,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201118.log',1048585,1,191,191,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201119.log',256,1,NULL,1,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201119.log',515,1,35,83,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201119.log',515,1,53,120,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201119.log',515,1,56,135,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201119.log',515,1,58,137,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20201119.log',515,1,85,281,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201119.log',515,1,81,283,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201119.log',515,1,82,284,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201119.log',515,1,76,286,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20201119.log',515,1,78,288,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201119.log',515,1,87,291,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20201119.log',515,1,100,306,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201119.log',515,1,113,307,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201119.log',515,1,137,343,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201119.log',515,1,142,367,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201119.log',515,1,149,401,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201119.log',515,1,150,407,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201119.log',515,1,169,461,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201119.log',515,1,173,479,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201119.log',515,1,176,500,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201119.log',515,1,177,507,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201119.log',515,1,185,527,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201119.log',515,1,190,556,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201119.log',515,1,193,569,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201119.log',1048585,1,35,35,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201119.log',1048585,1,53,53,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20201119.log',1048585,1,56,56,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201119.log',1048585,1,58,58,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20201119.log',1048585,1,78,78,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201119.log',1048585,1,85,85,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201119.log',1048585,1,87,87,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201119.log',1048585,1,113,113,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201119.log',1048585,1,134,134,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201119.log',1048585,1,137,137,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201119.log',1048585,1,139,139,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201119.log',1048585,1,142,142,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201119.log',1048585,1,149,149,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201119.log',1048585,1,150,150,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201119.log',1048585,1,169,169,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201119.log',1048585,1,175,175,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201119.log',1048585,1,176,176,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201119.log',1048585,1,177,177,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201119.log',1048585,1,186,186,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201119.log',1048585,1,190,190,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201120.log',256,1,NULL,1,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20201120.log',259,1,NULL,11,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201120.log',259,1,NULL,12,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201120.log',515,1,34,82,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201120.log',515,1,35,83,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201120.log',515,1,49,116,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201120.log',515,1,81,283,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201120.log',515,1,76,286,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20201120.log',515,1,78,288,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20201120.log',515,1,89,293,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201120.log',515,1,114,308,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201120.log',515,1,125,310,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201120.log',515,1,136,336,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,66),('usage_events_20201120.log',515,1,137,343,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201120.log',515,1,147,387,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201120.log',515,1,148,394,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201120.log',515,1,150,407,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20201120.log',515,1,151,414,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20201120.log',515,1,169,461,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201120.log',515,1,173,479,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201120.log',515,1,174,486,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201120.log',515,1,176,500,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20201120.log',515,1,187,539,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201120.log',515,1,189,551,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20201120.log',515,1,190,556,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201120.log',1048585,1,49,49,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201120.log',1048585,1,58,58,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20201120.log',1048585,1,78,78,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201120.log',1048585,1,114,114,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201120.log',1048585,1,125,125,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201120.log',1048585,1,148,148,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201120.log',1048585,1,150,150,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201120.log',1048585,1,169,169,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201120.log',1048585,1,173,173,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201120.log',1048585,1,176,176,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20201120.log',1048585,1,187,187,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201120.log',1048585,1,189,189,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201120.log',1048585,1,190,190,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201120.log',1048585,1,191,191,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201121.log',256,1,NULL,1,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL);
INSERT INTO `metrics` VALUES ('usage_events_20201121.log',259,1,NULL,11,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201121.log',259,1,NULL,12,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201121.log',515,1,79,282,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201121.log',515,1,78,288,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201121.log',515,1,89,293,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20201121.log',515,1,135,330,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201121.log',515,1,169,461,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20201121.log',515,1,173,479,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20201121.log',515,1,174,486,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201121.log',515,1,178,514,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201121.log',515,1,186,533,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201121.log',515,1,187,539,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201121.log',515,1,193,569,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201121.log',1048585,1,85,85,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201121.log',1048585,1,89,89,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201121.log',1048585,1,135,135,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201121.log',1048585,1,169,169,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201121.log',1048585,1,173,173,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201121.log',1048585,1,174,174,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201121.log',1048585,1,178,178,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201122.log',256,1,NULL,1,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201122.log',259,1,NULL,7,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201122.log',515,1,54,133,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201122.log',515,1,83,285,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20201122.log',515,1,78,288,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201122.log',515,1,88,292,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20201122.log',515,1,90,294,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201122.log',515,1,114,308,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201122.log',515,1,125,310,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20201122.log',515,1,141,361,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201122.log',515,1,147,387,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201122.log',515,1,148,394,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201122.log',515,1,151,414,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20201122.log',515,1,152,423,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20201122.log',515,1,169,461,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20201122.log',515,1,171,470,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20201122.log',515,1,173,479,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20201122.log',515,1,175,493,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20201122.log',515,1,177,507,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20201122.log',515,1,178,514,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201122.log',515,1,185,527,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201122.log',515,1,187,539,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201122.log',515,1,193,569,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201122.log',1048585,1,4,4,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201122.log',1048585,1,53,53,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201122.log',1048585,1,54,54,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201122.log',1048585,1,58,58,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201122.log',1048585,1,78,78,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201122.log',1048585,1,83,83,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201122.log',1048585,1,114,114,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201122.log',1048585,1,125,125,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201122.log',1048585,1,142,142,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201122.log',1048585,1,148,148,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201122.log',1048585,1,152,152,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201122.log',1048585,1,169,169,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201122.log',1048585,1,173,173,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201122.log',1048585,1,176,176,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201122.log',1048585,1,178,178,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201122.log',1048585,1,186,186,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201122.log',1048585,1,187,187,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201123.log',256,1,NULL,1,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201123.log',515,1,7,32,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20201123.log',515,1,54,133,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201123.log',515,1,79,282,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20201123.log',515,1,81,283,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201123.log',515,1,78,288,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201123.log',515,1,87,291,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201123.log',515,1,90,294,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201123.log',515,1,114,308,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201123.log',515,1,137,343,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201123.log',515,1,141,361,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201123.log',515,1,148,394,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201123.log',515,1,150,407,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201123.log',515,1,169,461,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201123.log',515,1,171,470,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20201123.log',515,1,173,479,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201123.log',515,1,175,493,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201123.log',515,1,176,500,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201123.log',515,1,185,527,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20201123.log',515,1,190,556,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201123.log',1048585,1,7,7,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201123.log',1048585,1,54,54,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201123.log',1048585,1,56,56,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201123.log',1048585,1,78,78,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201123.log',1048585,1,79,79,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201123.log',1048585,1,83,83,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201123.log',1048585,1,87,87,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201123.log',1048585,1,90,90,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201123.log',1048585,1,114,114,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201123.log',1048585,1,137,137,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201123.log',1048585,1,148,148,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20201123.log',1048585,1,150,150,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201123.log',1048585,1,171,171,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201123.log',1048585,1,177,177,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201123.log',1048585,1,185,185,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201123.log',1048585,1,193,193,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201124.log',256,1,NULL,1,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201124.log',515,1,8,33,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201124.log',515,1,19,52,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20201124.log',515,1,33,81,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201124.log',515,1,56,135,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201124.log',515,1,85,281,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201124.log',515,1,78,288,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201124.log',515,1,89,293,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201124.log',515,1,99,305,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20201124.log',515,1,100,306,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201124.log',515,1,113,307,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20201124.log',515,1,125,310,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20201124.log',515,1,137,343,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201124.log',515,1,139,351,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201124.log',515,1,141,361,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201124.log',515,1,149,401,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201124.log',515,1,150,407,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201124.log',515,1,152,423,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201124.log',515,1,169,461,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201124.log',515,1,171,470,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201124.log',515,1,173,479,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201124.log',515,1,175,493,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20201124.log',515,1,177,507,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201124.log',515,1,185,527,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201124.log',515,1,186,533,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201124.log',515,1,188,545,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,89),('usage_events_20201124.log',515,1,190,556,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201124.log',515,1,191,563,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201124.log',515,1,193,569,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201124.log',1048585,1,8,8,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201124.log',1048585,1,19,19,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201124.log',1048585,1,33,33,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201124.log',1048585,1,49,49,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201124.log',1048585,1,56,56,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201124.log',1048585,1,87,87,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201124.log',1048585,1,89,89,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201124.log',1048585,1,99,99,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20201124.log',1048585,1,113,113,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201124.log',1048585,1,125,125,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201124.log',1048585,1,137,137,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201124.log',1048585,1,139,139,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201124.log',1048585,1,142,142,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201124.log',1048585,1,150,150,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20201124.log',1048585,1,169,169,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201124.log',1048585,1,171,171,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201124.log',1048585,1,173,173,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201124.log',1048585,1,175,175,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201124.log',1048585,1,176,176,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201124.log',1048585,1,177,177,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201124.log',1048585,1,178,178,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201124.log',1048585,1,185,185,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201124.log',1048585,1,190,190,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201124.log',1048585,1,191,191,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201124.log',1048585,1,193,193,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201125.log',256,1,NULL,1,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201125.log',515,1,6,31,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20201125.log',515,1,8,33,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20201125.log',515,1,20,53,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20201125.log',515,1,58,137,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201125.log',515,1,82,284,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201125.log',515,1,78,288,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20201125.log',515,1,91,295,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201125.log',515,1,100,306,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201125.log',515,1,114,308,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201125.log',515,1,137,343,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201125.log',515,1,147,387,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20201125.log',515,1,150,407,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201125.log',515,1,169,461,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20201125.log',515,1,173,479,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201125.log',515,1,176,500,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20201125.log',515,1,177,507,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201125.log',515,1,178,514,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201125.log',515,1,186,533,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201125.log',515,1,191,563,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,92),('usage_events_20201125.log',1048585,1,6,6,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201125.log',1048585,1,8,8,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201125.log',1048585,1,51,51,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201125.log',1048585,1,58,58,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20201125.log',1048585,1,78,78,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201125.log',1048585,1,114,114,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201125.log',1048585,1,147,147,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201125.log',1048585,1,169,169,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201125.log',1048585,1,176,176,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20201125.log',1048585,1,177,177,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201125.log',1048585,1,186,186,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201125.log',1048585,1,190,190,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201125.log',1048585,1,193,193,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201126.log',256,1,NULL,1,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201126.log',259,1,NULL,1,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201126.log',259,1,NULL,2,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201126.log',259,1,NULL,7,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201126.log',259,1,NULL,11,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201126.log',259,1,NULL,12,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201126.log',515,1,34,82,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201126.log',515,1,35,83,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201126.log',515,1,49,116,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201126.log',515,1,54,133,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201126.log',515,1,78,288,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201126.log',515,1,84,289,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201126.log',515,1,87,291,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201126.log',515,1,89,293,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201126.log',515,1,91,295,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201126.log',515,1,114,308,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20201126.log',515,1,133,318,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201126.log',515,1,137,343,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201126.log',515,1,147,387,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20201126.log',515,1,149,401,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20201126.log',515,1,151,414,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201126.log',515,1,169,461,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201126.log',515,1,173,479,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201126.log',515,1,175,493,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201126.log',515,1,177,507,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201126.log',515,1,178,514,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201126.log',515,1,185,527,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201126.log',515,1,186,533,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20201126.log',515,1,190,556,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201126.log',515,1,191,563,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201126.log',1048585,1,49,49,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201126.log',1048585,1,53,53,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201126.log',1048585,1,54,54,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201126.log',1048585,1,58,58,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201126.log',1048585,1,78,78,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201126.log',1048585,1,86,86,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201126.log',1048585,1,87,87,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201126.log',1048585,1,88,88,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201126.log',1048585,1,89,89,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201126.log',1048585,1,133,133,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201126.log',1048585,1,137,137,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201126.log',1048585,1,151,151,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201126.log',1048585,1,173,173,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201126.log',1048585,1,174,174,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201126.log',1048585,1,175,175,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201126.log',1048585,1,176,176,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201126.log',1048585,1,178,178,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201126.log',1048585,1,187,187,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201126.log',1048585,1,190,190,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201126.log',1048585,1,191,191,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201127.log',256,1,NULL,1,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201127.log',515,1,83,285,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201127.log',515,1,78,288,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201127.log',515,1,87,291,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201127.log',515,1,134,324,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201127.log',515,1,139,351,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201127.log',515,1,147,387,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20201127.log',515,1,148,394,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201127.log',515,1,171,470,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201127.log',515,1,178,514,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201127.log',515,1,185,527,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20201127.log',515,1,191,563,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201127.log',1048585,1,83,83,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201127.log',1048585,1,134,134,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201127.log',1048585,1,193,193,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201128.log',256,1,NULL,1,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201128.log',259,1,NULL,12,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201128.log',515,1,8,33,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201128.log',515,1,49,116,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201128.log',515,1,50,117,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20201128.log',515,1,53,120,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201128.log',515,1,54,133,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201128.log',515,1,77,287,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20201128.log',515,1,78,288,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201128.log',515,1,87,291,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201128.log',515,1,100,306,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201128.log',515,1,148,394,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201128.log',515,1,149,401,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201128.log',515,1,152,423,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201128.log',515,1,169,461,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20201128.log',515,1,173,479,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201128.log',515,1,175,493,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201128.log',515,1,176,500,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20201128.log',515,1,185,527,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201128.log',515,1,187,539,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20201128.log',515,1,191,563,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201128.log',1048585,1,8,8,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201128.log',1048585,1,40,40,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201128.log',1048585,1,49,49,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201128.log',1048585,1,78,78,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201128.log',1048585,1,137,137,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201128.log',1048585,1,148,148,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201128.log',1048585,1,149,149,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201128.log',1048585,1,152,152,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201128.log',1048585,1,169,169,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201128.log',1048585,1,173,173,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201128.log',1048585,1,175,175,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201128.log',1048585,1,176,176,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201128.log',1048585,1,177,177,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201128.log',1048585,1,185,185,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201128.log',1048585,1,187,187,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201129.log',515,1,4,19,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20201129.log',515,1,33,81,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,3,18),('usage_events_20201129.log',515,1,34,82,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201129.log',515,1,40,94,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20201129.log',515,1,46,114,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20201129.log',515,1,54,133,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201129.log',515,1,79,282,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201129.log',515,1,81,283,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201129.log',515,1,78,288,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201129.log',515,1,87,291,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201129.log',515,1,90,294,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201129.log',515,1,91,295,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201129.log',515,1,114,308,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201129.log',515,1,137,343,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201129.log',515,1,139,351,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201129.log',515,1,146,379,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201129.log',515,1,148,394,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201129.log',515,1,149,401,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201129.log',515,1,169,461,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20201129.log',515,1,171,470,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20201129.log',515,1,174,486,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201129.log',515,1,186,533,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20201129.log',1048585,1,33,33,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201129.log',1048585,1,34,34,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201129.log',1048585,1,91,91,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201129.log',1048585,1,137,137,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201129.log',1048585,1,139,139,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201129.log',1048585,1,149,149,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201129.log',1048585,1,169,169,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201129.log',1048585,1,171,171,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201129.log',1048585,1,174,174,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201129.log',1048585,1,175,175,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201129.log',1048585,1,191,191,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201129.log',1048585,1,193,193,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201130.log',256,1,NULL,1,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201130.log',515,1,8,33,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20201130.log',515,1,81,283,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,44),('usage_events_20201130.log',515,1,82,284,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201130.log',515,1,78,288,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201130.log',515,1,84,289,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201130.log',515,1,89,293,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201130.log',515,1,114,308,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201130.log',515,1,125,310,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201130.log',515,1,133,318,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201130.log',515,1,136,336,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20201130.log',515,1,137,343,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201130.log',515,1,139,351,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201130.log',515,1,169,461,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201130.log',515,1,173,479,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201130.log',515,1,175,493,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201130.log',515,1,176,500,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201130.log',515,1,178,514,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201130.log',515,1,186,533,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201130.log',515,1,191,563,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201130.log',515,1,193,569,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201130.log',1048585,1,8,8,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201130.log',1048585,1,78,78,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201130.log',1048585,1,81,81,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20201130.log',1048585,1,87,87,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201130.log',1048585,1,125,125,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201130.log',1048585,1,136,136,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201130.log',1048585,1,137,137,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201130.log',1048585,1,173,173,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201130.log',1048585,1,193,193,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201201.log',256,1,NULL,1,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201201.log',259,1,NULL,10,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201201.log',259,1,NULL,11,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201201.log',515,1,21,54,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20201201.log',515,1,33,81,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20201201.log',515,1,54,133,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201201.log',515,1,57,136,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20201201.log',515,1,81,283,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201201.log',515,1,83,285,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20201201.log',515,1,78,288,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201201.log',515,1,87,291,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201201.log',515,1,99,305,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201201.log',515,1,114,308,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201201.log',515,1,135,330,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201201.log',515,1,137,343,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201201.log',515,1,139,351,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201201.log',515,1,142,367,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201201.log',515,1,147,387,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201201.log',515,1,148,394,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201201.log',515,1,152,423,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201201.log',515,1,169,461,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201201.log',515,1,173,479,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201201.log',515,1,175,493,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201201.log',515,1,177,507,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201201.log',515,1,186,533,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201201.log',515,1,187,539,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201201.log',515,1,190,556,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20201201.log',515,1,191,563,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201201.log',1048585,1,51,51,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201201.log',1048585,1,54,54,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201201.log',1048585,1,83,83,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201201.log',1048585,1,87,87,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201201.log',1048585,1,139,139,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201201.log',1048585,1,142,142,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201201.log',1048585,1,146,146,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201201.log',1048585,1,147,147,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201201.log',1048585,1,148,148,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201201.log',1048585,1,152,152,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201201.log',1048585,1,169,169,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20201201.log',1048585,1,173,173,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201201.log',1048585,1,175,175,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201201.log',1048585,1,177,177,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201201.log',1048585,1,178,178,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201201.log',1048585,1,186,186,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201201.log',1048585,1,190,190,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201201.log',1048585,1,191,191,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201201.log',1048585,1,193,193,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201202.log',256,1,NULL,1,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',19,NULL,NULL,NULL,NULL),('usage_events_20201202.log',259,1,NULL,7,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201202.log',259,1,NULL,12,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201202.log',515,1,8,33,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20201202.log',515,1,34,82,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201202.log',515,1,49,116,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201202.log',515,1,51,118,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20201202.log',515,1,56,135,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201202.log',515,1,79,282,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201202.log',515,1,76,286,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20201202.log',515,1,78,288,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201202.log',515,1,87,291,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20201202.log',515,1,89,293,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201202.log',515,1,91,295,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201202.log',515,1,99,305,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201202.log',515,1,146,379,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201202.log',515,1,147,387,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201202.log',515,1,148,394,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201202.log',515,1,150,407,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201202.log',515,1,151,414,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201202.log',515,1,169,461,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201202.log',515,1,174,486,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20201202.log',515,1,175,493,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20201202.log',515,1,176,500,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201202.log',515,1,178,514,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201202.log',515,1,185,527,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20201202.log',515,1,186,533,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20201202.log',515,1,187,539,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201202.log',515,1,188,545,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201202.log',515,1,190,556,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20201202.log',515,1,193,569,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201202.log',1048585,1,8,8,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20201202.log',1048585,1,51,51,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201202.log',1048585,1,56,56,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20201202.log',1048585,1,78,78,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201202.log',1048585,1,87,87,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20201202.log',1048585,1,99,99,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201202.log',1048585,1,137,137,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201202.log',1048585,1,147,147,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201202.log',1048585,1,148,148,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201202.log',1048585,1,173,173,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201202.log',1048585,1,185,185,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201202.log',1048585,1,190,190,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201202.log',1048585,1,193,193,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201203.log',256,1,NULL,1,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201203.log',259,1,NULL,1,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201203.log',515,1,8,33,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20201203.log',515,1,20,53,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201203.log',515,1,32,80,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20201203.log',515,1,34,82,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201203.log',515,1,49,116,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201203.log',515,1,53,120,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201203.log',515,1,58,137,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20201203.log',515,1,85,281,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201203.log',515,1,77,287,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20201203.log',515,1,78,288,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201203.log',515,1,89,293,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201203.log',515,1,91,295,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20201203.log',515,1,99,305,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20201203.log',515,1,100,306,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201203.log',515,1,134,324,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201203.log',515,1,137,343,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20201203.log',515,1,139,351,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201203.log',515,1,147,387,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,72),('usage_events_20201203.log',515,1,148,394,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201203.log',515,1,150,407,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201203.log',515,1,169,461,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20201203.log',515,1,173,479,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201203.log',515,1,175,493,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201203.log',515,1,178,514,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201203.log',515,1,185,527,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201203.log',515,1,186,533,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20201203.log',515,1,190,556,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201203.log',515,1,191,563,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201203.log',515,1,193,569,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201203.log',1048585,1,8,8,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20201203.log',1048585,1,20,20,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201203.log',1048585,1,32,32,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201203.log',1048585,1,49,49,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201203.log',1048585,1,58,58,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20201203.log',1048585,1,77,77,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201203.log',1048585,1,85,85,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201203.log',1048585,1,89,89,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201203.log',1048585,1,99,99,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20201203.log',1048585,1,137,137,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20201203.log',1048585,1,146,146,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20201203.log',1048585,1,147,147,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20201203.log',1048585,1,148,148,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201203.log',1048585,1,150,150,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201203.log',1048585,1,169,169,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201203.log',1048585,1,173,173,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201203.log',1048585,1,175,175,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201203.log',1048585,1,178,178,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201203.log',1048585,1,187,187,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201203.log',1048585,1,190,190,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201203.log',1048585,1,191,191,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201204.log',256,1,NULL,1,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201204.log',259,1,NULL,7,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201204.log',259,1,NULL,12,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201204.log',515,1,20,53,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201204.log',515,1,58,137,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201204.log',515,1,85,281,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20201204.log',515,1,79,282,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20201204.log',515,1,78,288,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20201204.log',515,1,84,289,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201204.log',515,1,137,343,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201204.log',515,1,139,351,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201204.log',515,1,142,367,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20201204.log',515,1,147,387,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,72),('usage_events_20201204.log',515,1,148,394,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20201204.log',515,1,150,407,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201204.log',515,1,169,461,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201204.log',515,1,175,493,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201204.log',515,1,177,507,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201204.log',515,1,178,514,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20201204.log',515,1,185,527,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201204.log',515,1,190,556,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201204.log',515,1,191,563,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201204.log',1048585,1,5,5,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201204.log',1048585,1,8,8,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201204.log',1048585,1,31,31,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201204.log',1048585,1,32,32,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201204.log',1048585,1,58,58,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201204.log',1048585,1,78,78,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20201204.log',1048585,1,86,86,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201204.log',1048585,1,137,137,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201204.log',1048585,1,142,142,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201204.log',1048585,1,148,148,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,10,NULL),('usage_events_20201204.log',1048585,1,150,150,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201204.log',1048585,1,151,151,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201204.log',1048585,1,169,169,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201204.log',1048585,1,185,185,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201205.log',256,1,NULL,1,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201205.log',259,1,NULL,12,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201205.log',515,1,7,32,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20201205.log',515,1,51,118,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201205.log',515,1,81,283,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201205.log',515,1,82,284,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201205.log',515,1,83,285,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201205.log',515,1,77,287,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20201205.log',515,1,78,288,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201205.log',515,1,87,291,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201205.log',515,1,89,293,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201205.log',515,1,91,295,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201205.log',515,1,99,305,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201205.log',515,1,125,310,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,62),('usage_events_20201205.log',515,1,133,318,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201205.log',515,1,152,423,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201205.log',515,1,169,461,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20201205.log',515,1,171,470,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20201205.log',515,1,173,479,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20201205.log',515,1,174,486,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201205.log',515,1,176,500,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201205.log',515,1,177,507,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20201205.log',515,1,178,514,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201205.log',515,1,185,527,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201205.log',515,1,186,533,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20201205.log',515,1,188,545,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201205.log',515,1,190,556,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201205.log',1048585,1,77,77,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201205.log',1048585,1,78,78,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201205.log',1048585,1,83,83,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201205.log',1048585,1,89,89,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201205.log',1048585,1,125,125,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20201205.log',1048585,1,133,133,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20201205.log',1048585,1,142,142,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201205.log',1048585,1,148,148,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201205.log',1048585,1,169,169,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201205.log',1048585,1,171,171,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201205.log',1048585,1,173,173,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201205.log',1048585,1,176,176,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201205.log',1048585,1,177,177,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201205.log',1048585,1,178,178,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201205.log',1048585,1,185,185,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201205.log',1048585,1,186,186,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201205.log',1048585,1,188,188,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201205.log',1048585,1,190,190,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201206.log',515,1,20,53,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201206.log',515,1,56,135,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201206.log',515,1,58,137,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201206.log',515,1,78,288,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201206.log',515,1,89,293,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,54),('usage_events_20201206.log',515,1,136,336,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20201206.log',515,1,137,343,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201206.log',515,1,148,394,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201206.log',515,1,169,461,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201206.log',515,1,173,479,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201206.log',515,1,176,500,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201206.log',515,1,187,539,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201206.log',515,1,190,556,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201206.log',1048585,1,20,20,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20201206.log',1048585,1,47,47,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201206.log',1048585,1,56,56,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201206.log',1048585,1,78,78,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201206.log',1048585,1,79,79,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201206.log',1048585,1,89,89,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201206.log',1048585,1,137,137,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201206.log',1048585,1,173,173,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201206.log',1048585,1,176,176,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201206.log',1048585,1,187,187,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201206.log',1048585,1,190,190,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201207.log',256,1,NULL,1,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201207.log',515,1,20,53,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201207.log',515,1,28,68,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20201207.log',515,1,35,83,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20201207.log',515,1,47,115,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20201207.log',515,1,51,118,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20201207.log',515,1,53,120,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201207.log',515,1,59,138,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20201207.log',515,1,78,288,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20201207.log',515,1,84,289,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201207.log',515,1,89,293,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201207.log',515,1,139,351,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201207.log',515,1,151,414,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201207.log',515,1,169,461,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201207.log',515,1,171,470,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201207.log',515,1,173,479,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20201207.log',515,1,174,486,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201207.log',515,1,175,493,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201207.log',515,1,176,500,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,83),('usage_events_20201207.log',515,1,178,514,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201207.log',515,1,186,533,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201207.log',515,1,187,539,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20201207.log',515,1,190,556,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20201207.log',515,1,191,563,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201207.log',1048585,1,35,35,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201207.log',1048585,1,51,51,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201207.log',1048585,1,78,78,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20201207.log',1048585,1,84,84,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201207.log',1048585,1,87,87,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201207.log',1048585,1,89,89,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201207.log',1048585,1,139,139,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201207.log',1048585,1,142,142,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201207.log',1048585,1,151,151,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201207.log',1048585,1,169,169,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201207.log',1048585,1,171,171,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201207.log',1048585,1,173,173,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201207.log',1048585,1,174,174,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201207.log',1048585,1,176,176,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201207.log',1048585,1,186,186,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201207.log',1048585,1,190,190,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201207.log',1048585,1,191,191,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201208.log',256,1,NULL,1,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20201208.log',259,1,NULL,12,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201208.log',515,1,49,116,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201208.log',515,1,51,118,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201208.log',515,1,54,133,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201208.log',515,1,58,137,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20201208.log',515,1,77,287,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20201208.log',515,1,78,288,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201208.log',515,1,87,291,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201208.log',515,1,125,310,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201208.log',515,1,150,407,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20201208.log',515,1,151,414,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20201208.log',515,1,169,461,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201208.log',515,1,173,479,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20201208.log',515,1,174,486,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20201208.log',515,1,175,493,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20201208.log',515,1,176,500,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201208.log',515,1,177,507,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201208.log',515,1,178,514,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201208.log',515,1,186,533,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201208.log',515,1,190,556,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201208.log',515,1,191,563,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201208.log',1048585,1,51,51,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201208.log',1048585,1,58,58,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20201208.log',1048585,1,59,59,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201208.log',1048585,1,77,77,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201208.log',1048585,1,113,113,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201208.log',1048585,1,114,114,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201208.log',1048585,1,125,125,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201208.log',1048585,1,150,150,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201208.log',1048585,1,151,151,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201208.log',1048585,1,169,169,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201208.log',1048585,1,173,173,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201208.log',1048585,1,175,175,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201208.log',1048585,1,186,186,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201208.log',1048585,1,190,190,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201208.log',1048585,1,191,191,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201208.log',1048585,1,193,193,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201209.log',256,1,NULL,1,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201209.log',259,1,NULL,4,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201209.log',259,1,NULL,6,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201209.log',259,1,NULL,11,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201209.log',515,1,32,80,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20201209.log',515,1,51,118,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201209.log',515,1,53,120,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20201209.log',515,1,56,135,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201209.log',515,1,81,283,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201209.log',515,1,82,284,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201209.log',515,1,83,285,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,46),('usage_events_20201209.log',515,1,77,287,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20201209.log',515,1,78,288,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201209.log',515,1,114,308,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201209.log',515,1,142,367,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201209.log',515,1,147,387,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,72),('usage_events_20201209.log',515,1,149,401,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201209.log',515,1,152,423,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20201209.log',515,1,169,461,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201209.log',515,1,171,470,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201209.log',515,1,173,479,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201209.log',515,1,175,493,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201209.log',515,1,178,514,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201209.log',515,1,185,527,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20201209.log',515,1,188,545,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20201209.log',515,1,191,563,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201209.log',1048585,1,49,49,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201209.log',1048585,1,51,51,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201209.log',1048585,1,53,53,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201209.log',1048585,1,78,78,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201209.log',1048585,1,81,81,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20201209.log',1048585,1,82,82,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201209.log',1048585,1,83,83,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201209.log',1048585,1,142,142,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201209.log',1048585,1,147,147,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201209.log',1048585,1,148,148,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201209.log',1048585,1,149,149,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201209.log',1048585,1,152,152,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201209.log',1048585,1,173,173,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201209.log',1048585,1,176,176,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201209.log',1048585,1,177,177,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201209.log',1048585,1,178,178,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201209.log',1048585,1,188,188,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201209.log',1048585,1,190,190,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201210.log',256,1,NULL,1,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201210.log',515,1,47,115,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20201210.log',515,1,56,135,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20201210.log',515,1,58,137,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201210.log',515,1,83,285,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201210.log',515,1,78,288,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201210.log',515,1,87,291,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20201210.log',515,1,99,305,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20201210.log',515,1,135,330,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201210.log',515,1,137,343,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201210.log',515,1,139,351,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201210.log',515,1,148,394,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201210.log',515,1,149,401,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201210.log',515,1,150,407,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201210.log',515,1,151,414,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201210.log',515,1,169,461,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201210.log',515,1,173,479,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201210.log',515,1,175,493,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201210.log',515,1,178,514,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201210.log',515,1,191,563,'20201210','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201210.log',1048585,1,56,56,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20201210.log',1048585,1,77,77,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201210.log',1048585,1,78,78,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201210.log',1048585,1,83,83,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201210.log',1048585,1,87,87,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201210.log',1048585,1,135,135,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201210.log',1048585,1,148,148,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201210.log',1048585,1,149,149,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201210.log',1048585,1,169,169,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201210.log',1048585,1,175,175,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201210.log',1048585,1,191,191,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201211.log',256,1,NULL,1,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20201211.log',259,1,NULL,7,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201211.log',259,1,NULL,10,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201211.log',259,1,NULL,12,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201211.log',515,1,49,116,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201211.log',515,1,55,134,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20201211.log',515,1,56,135,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201211.log',515,1,58,137,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201211.log',515,1,81,283,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201211.log',515,1,77,287,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20201211.log',515,1,78,288,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201211.log',515,1,86,290,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20201211.log',515,1,87,291,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20201211.log',515,1,90,294,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201211.log',515,1,139,351,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201211.log',515,1,147,387,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201211.log',515,1,148,394,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20201211.log',515,1,150,407,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201211.log',515,1,151,414,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201211.log',515,1,169,461,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201211.log',515,1,173,479,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201211.log',515,1,175,493,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201211.log',515,1,176,500,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201211.log',515,1,178,514,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201211.log',515,1,190,556,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201211.log',1048585,1,56,56,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201211.log',1048585,1,58,58,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20201211.log',1048585,1,77,77,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201211.log',1048585,1,81,81,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201211.log',1048585,1,82,82,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201211.log',1048585,1,86,86,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201211.log',1048585,1,87,87,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20201211.log',1048585,1,90,90,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201211.log',1048585,1,147,147,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201211.log',1048585,1,148,148,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201211.log',1048585,1,151,151,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201211.log',1048585,1,173,173,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201211.log',1048585,1,185,185,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201211.log',1048585,1,187,187,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201212.log',256,1,NULL,1,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20201212.log',259,1,NULL,10,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201212.log',515,1,33,81,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20201212.log',515,1,34,82,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20201212.log',515,1,58,137,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201212.log',515,1,81,283,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201212.log',515,1,78,288,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201212.log',515,1,84,289,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201212.log',515,1,89,293,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201212.log',515,1,125,310,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201212.log',515,1,139,351,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201212.log',515,1,146,379,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201212.log',515,1,147,387,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201212.log',515,1,149,401,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201212.log',515,1,171,470,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201212.log',515,1,173,479,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201212.log',515,1,175,493,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201212.log',515,1,176,500,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201212.log',515,1,187,539,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201212.log',1048585,1,20,20,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201212.log',1048585,1,33,33,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201212.log',1048585,1,58,58,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201212.log',1048585,1,77,77,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201212.log',1048585,1,82,82,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,6,NULL),('usage_events_20201212.log',1048585,1,89,89,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201212.log',1048585,1,125,125,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201212.log',1048585,1,137,137,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201212.log',1048585,1,139,139,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201212.log',1048585,1,147,147,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20201212.log',1048585,1,171,171,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201212.log',1048585,1,175,175,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201212.log',1048585,1,176,176,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201212.log',1048585,1,193,193,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201213.log',256,1,NULL,1,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201213.log',515,1,40,94,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20201213.log',515,1,81,283,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20201213.log',515,1,83,285,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201213.log',515,1,78,288,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201213.log',515,1,100,306,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20201213.log',515,1,134,324,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201213.log',515,1,139,351,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201213.log',515,1,147,387,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20201213.log',515,1,148,394,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201213.log',515,1,174,486,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20201213.log',515,1,175,493,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201213.log',515,1,191,563,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201213.log',515,1,193,569,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201213.log',1048585,1,40,40,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201213.log',1048585,1,77,77,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201213.log',1048585,1,78,78,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201213.log',1048585,1,81,81,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201213.log',1048585,1,83,83,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201213.log',1048585,1,89,89,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201213.log',1048585,1,91,91,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201213.log',1048585,1,100,100,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20201213.log',1048585,1,137,137,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201213.log',1048585,1,139,139,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201213.log',1048585,1,147,147,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201213.log',1048585,1,191,191,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201213.log',1048585,1,193,193,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201214.log',256,1,NULL,1,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201214.log',259,1,NULL,5,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201214.log',515,1,47,115,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20201214.log',515,1,49,116,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201214.log',515,1,56,135,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201214.log',515,1,59,138,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20201214.log',515,1,81,283,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201214.log',515,1,78,288,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201214.log',515,1,87,291,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20201214.log',515,1,99,305,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20201214.log',515,1,135,330,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201214.log',515,1,136,336,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20201214.log',515,1,137,343,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201214.log',515,1,147,387,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20201214.log',515,1,169,461,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,78),('usage_events_20201214.log',515,1,171,470,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201214.log',515,1,173,479,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201214.log',515,1,176,500,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201214.log',515,1,190,556,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201214.log',515,1,191,563,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201214.log',1048585,1,46,46,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201214.log',1048585,1,49,49,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201214.log',1048585,1,51,51,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201214.log',1048585,1,56,56,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201214.log',1048585,1,58,58,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201214.log',1048585,1,76,76,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201214.log',1048585,1,78,78,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201214.log',1048585,1,81,81,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201214.log',1048585,1,87,87,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201214.log',1048585,1,136,136,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201214.log',1048585,1,139,139,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201214.log',1048585,1,147,147,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201214.log',1048585,1,148,148,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201214.log',1048585,1,149,149,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201214.log',1048585,1,169,169,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201214.log',1048585,1,171,171,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201214.log',1048585,1,190,190,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201214.log',1048585,1,191,191,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201214.log',1048585,1,193,193,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201215.log',256,1,NULL,1,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201215.log',259,1,NULL,12,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201215.log',515,1,28,68,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20201215.log',515,1,50,117,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20201215.log',515,1,51,118,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20201215.log',515,1,78,288,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20201215.log',515,1,87,291,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201215.log',515,1,137,343,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201215.log',515,1,139,351,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201215.log',515,1,141,361,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201215.log',515,1,146,379,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201215.log',515,1,150,407,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201215.log',515,1,169,461,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201215.log',515,1,174,486,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20201215.log',515,1,175,493,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201215.log',515,1,178,514,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201215.log',515,1,185,527,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,86),('usage_events_20201215.log',515,1,187,539,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20201215.log',515,1,193,569,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201215.log',1048585,1,19,19,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201215.log',1048585,1,50,50,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201215.log',1048585,1,51,51,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201215.log',1048585,1,87,87,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201215.log',1048585,1,137,137,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201215.log',1048585,1,139,139,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201215.log',1048585,1,150,150,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201215.log',1048585,1,169,169,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201215.log',1048585,1,175,175,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201215.log',1048585,1,185,185,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201215.log',1048585,1,187,187,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201215.log',1048585,1,190,190,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201216.log',256,1,NULL,1,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201216.log',259,1,NULL,7,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201216.log',515,1,33,81,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20201216.log',515,1,82,284,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201216.log',515,1,78,288,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201216.log',515,1,99,305,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201216.log',515,1,114,308,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20201216.log',515,1,133,318,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201216.log',515,1,137,343,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201216.log',515,1,139,351,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20201216.log',515,1,150,407,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20201216.log',515,1,169,461,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201216.log',515,1,175,493,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20201216.log',515,1,176,500,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201216.log',515,1,187,539,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201216.log',515,1,191,563,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20201216.log',1048585,1,47,47,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201216.log',1048585,1,49,49,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201216.log',1048585,1,78,78,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201216.log',1048585,1,83,83,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201216.log',1048585,1,99,99,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201216.log',1048585,1,114,114,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201216.log',1048585,1,133,133,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201216.log',1048585,1,139,139,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201216.log',1048585,1,142,142,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201216.log',1048585,1,169,169,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201216.log',1048585,1,175,175,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20201216.log',1048585,1,190,190,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201216.log',1048585,1,191,191,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201217.log',256,1,NULL,1,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20201217.log',515,1,79,282,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20201217.log',515,1,78,288,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201217.log',515,1,87,291,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201217.log',515,1,99,305,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201217.log',515,1,114,308,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,60),('usage_events_20201217.log',515,1,125,310,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201217.log',515,1,137,343,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201217.log',515,1,148,394,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201217.log',515,1,149,401,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20201217.log',515,1,171,470,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201217.log',515,1,173,479,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201217.log',515,1,175,493,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201217.log',515,1,176,500,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20201217.log',515,1,177,507,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201217.log',515,1,178,514,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20201217.log',515,1,186,533,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201217.log',515,1,188,545,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,89),('usage_events_20201217.log',1048585,1,21,21,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201217.log',1048585,1,28,28,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201217.log',1048585,1,78,78,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20201217.log',1048585,1,79,79,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201217.log',1048585,1,87,87,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201217.log',1048585,1,137,137,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201217.log',1048585,1,148,148,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201217.log',1048585,1,152,152,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201217.log',1048585,1,171,171,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201217.log',1048585,1,178,178,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201217.log',1048585,1,186,186,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201217.log',1048585,1,188,188,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201217.log',1048585,1,191,191,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201218.log',256,1,NULL,1,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201218.log',259,1,NULL,12,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201218.log',515,1,5,30,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20201218.log',515,1,31,79,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20201218.log',515,1,56,135,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20201218.log',515,1,81,283,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201218.log',515,1,78,288,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201218.log',515,1,84,289,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201218.log',515,1,89,293,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201218.log',515,1,91,295,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201218.log',515,1,100,306,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201218.log',515,1,148,394,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201218.log',515,1,175,493,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201218.log',515,1,187,539,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,88),('usage_events_20201218.log',515,1,190,556,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20201218.log',515,1,191,563,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201218.log',515,1,193,569,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201218.log',1048585,1,5,5,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20201218.log',1048585,1,56,56,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20201218.log',1048585,1,78,78,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201218.log',1048585,1,91,91,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201218.log',1048585,1,100,100,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201218.log',1048585,1,133,133,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201218.log',1048585,1,137,137,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201218.log',1048585,1,148,148,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201218.log',1048585,1,151,151,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201218.log',1048585,1,169,169,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201218.log',1048585,1,175,175,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201218.log',1048585,1,187,187,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20201218.log',1048585,1,190,190,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201218.log',1048585,1,191,191,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201219.log',256,1,NULL,1,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201219.log',259,1,NULL,7,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201219.log',259,1,NULL,12,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201219.log',515,1,20,53,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20201219.log',515,1,54,133,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201219.log',515,1,58,137,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201219.log',515,1,82,284,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20201219.log',515,1,78,288,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20201219.log',515,1,90,294,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201219.log',515,1,91,295,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201219.log',515,1,99,305,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20201219.log',515,1,100,306,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201219.log',515,1,113,307,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201219.log',515,1,114,308,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20201219.log',515,1,137,343,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201219.log',515,1,151,414,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201219.log',515,1,173,479,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201219.log',515,1,190,556,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201219.log',515,1,193,569,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201219.log',1048585,1,20,20,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20201219.log',1048585,1,49,49,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201219.log',1048585,1,58,58,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201219.log',1048585,1,82,82,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201219.log',1048585,1,87,87,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201219.log',1048585,1,90,90,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201219.log',1048585,1,99,99,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201219.log',1048585,1,114,114,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201219.log',1048585,1,151,151,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201219.log',1048585,1,169,169,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201219.log',1048585,1,173,173,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201219.log',1048585,1,175,175,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201219.log',1048585,1,186,186,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20201219.log',1048585,1,190,190,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201219.log',1048585,1,193,193,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201220.log',256,1,NULL,1,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20201220.log',259,1,NULL,7,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201220.log',515,1,51,118,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201220.log',515,1,53,120,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201220.log',515,1,87,291,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201220.log',515,1,89,293,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20201220.log',515,1,90,294,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20201220.log',515,1,136,336,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20201220.log',515,1,137,343,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201220.log',515,1,148,394,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201220.log',515,1,149,401,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201220.log',515,1,150,407,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201220.log',515,1,173,479,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20201220.log',515,1,177,507,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201220.log',515,1,185,527,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201220.log',515,1,190,556,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201220.log',1048585,1,53,53,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201220.log',1048585,1,82,82,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20201220.log',1048585,1,87,87,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201220.log',1048585,1,89,89,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201220.log',1048585,1,90,90,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201220.log',1048585,1,100,100,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201220.log',1048585,1,137,137,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201220.log',1048585,1,148,148,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201220.log',1048585,1,150,150,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20201220.log',1048585,1,173,173,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201220.log',1048585,1,177,177,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201220.log',1048585,1,190,190,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20201221.log',256,1,NULL,1,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20201221.log',259,1,NULL,3,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201221.log',259,1,NULL,11,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201221.log',259,1,NULL,12,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201221.log',515,1,5,30,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20201221.log',515,1,8,33,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20201221.log',515,1,20,53,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20201221.log',515,1,34,82,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20201221.log',515,1,51,118,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201221.log',515,1,56,135,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20201221.log',515,1,58,137,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20201221.log',515,1,81,283,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20201221.log',515,1,78,288,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201221.log',515,1,87,291,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201221.log',515,1,90,294,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201221.log',515,1,100,306,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20201221.log',515,1,114,308,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20201221.log',515,1,137,343,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201221.log',515,1,139,351,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20201221.log',515,1,142,367,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201221.log',515,1,148,394,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201221.log',515,1,149,401,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201221.log',515,1,151,414,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201221.log',515,1,173,479,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20201221.log',515,1,176,500,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201221.log',515,1,185,527,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201221.log',1048585,1,5,5,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201221.log',1048585,1,32,32,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20201221.log',1048585,1,34,34,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20201221.log',1048585,1,51,51,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201221.log',1048585,1,58,58,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20201221.log',1048585,1,79,79,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201221.log',1048585,1,81,81,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201221.log',1048585,1,87,87,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201221.log',1048585,1,100,100,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201221.log',1048585,1,137,137,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201221.log',1048585,1,139,139,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201221.log',1048585,1,142,142,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201221.log',1048585,1,178,178,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201222.log',256,1,NULL,1,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20201222.log',259,1,NULL,11,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201222.log',259,1,NULL,12,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201222.log',515,1,84,289,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20201222.log',515,1,87,291,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201222.log',515,1,89,293,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201222.log',515,1,100,306,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201222.log',515,1,113,307,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',13,1,259,8,59),('usage_events_20201222.log',515,1,137,343,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201222.log',515,1,146,379,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201222.log',515,1,147,387,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201222.log',515,1,148,394,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20201222.log',515,1,152,423,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20201222.log',515,1,169,461,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,78),('usage_events_20201222.log',515,1,178,514,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20201222.log',515,1,186,533,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201222.log',515,1,187,539,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20201222.log',515,1,190,556,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201222.log',515,1,193,569,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201222.log',1048585,1,4,4,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201222.log',1048585,1,32,32,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20201222.log',1048585,1,99,99,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201222.log',1048585,1,133,133,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201222.log',1048585,1,137,137,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201222.log',1048585,1,152,152,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201222.log',1048585,1,169,169,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20201222.log',1048585,1,173,173,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201222.log',1048585,1,178,178,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201222.log',1048585,1,186,186,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201222.log',1048585,1,187,187,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201222.log',1048585,1,190,190,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201223.log',256,1,NULL,1,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201223.log',515,1,58,137,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20201223.log',515,1,78,288,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20201223.log',515,1,87,291,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201223.log',515,1,100,306,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201223.log',515,1,137,343,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201223.log',515,1,142,367,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201223.log',515,1,146,379,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20201223.log',515,1,147,387,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20201223.log',515,1,148,394,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20201223.log',515,1,149,401,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201223.log',515,1,151,414,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20201223.log',515,1,169,461,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20201223.log',515,1,173,479,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201223.log',515,1,175,493,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20201223.log',515,1,176,500,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201223.log',515,1,185,527,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20201223.log',515,1,186,533,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20201223.log',515,1,193,569,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20201223.log',1048585,1,58,58,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20201223.log',1048585,1,78,78,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20201223.log',1048585,1,82,82,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201223.log',1048585,1,87,87,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201223.log',1048585,1,142,142,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201223.log',1048585,1,146,146,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201223.log',1048585,1,149,149,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201223.log',1048585,1,175,175,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201223.log',1048585,1,178,178,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201223.log',1048585,1,185,185,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201223.log',1048585,1,190,190,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201223.log',1048585,1,191,191,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201223.log',1048585,1,193,193,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201224.log',256,1,NULL,1,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20201224.log',259,1,NULL,11,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201224.log',259,1,NULL,12,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20201224.log',515,1,4,19,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20201224.log',515,1,32,80,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20201224.log',515,1,49,116,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201224.log',515,1,51,118,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20201224.log',515,1,53,120,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20201224.log',515,1,78,288,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201224.log',515,1,87,291,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201224.log',515,1,133,318,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20201224.log',515,1,135,330,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20201224.log',515,1,137,343,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201224.log',515,1,141,361,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20201224.log',515,1,142,367,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20201224.log',515,1,148,394,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201224.log',515,1,173,479,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201224.log',515,1,177,507,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201224.log',515,1,187,539,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201224.log',515,1,189,551,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20201224.log',515,1,191,563,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20201224.log',1048585,1,4,4,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20201224.log',1048585,1,32,32,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20201224.log',1048585,1,49,49,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20201224.log',1048585,1,53,53,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201224.log',1048585,1,78,78,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201224.log',1048585,1,82,82,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20201224.log',1048585,1,87,87,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201224.log',1048585,1,173,173,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201224.log',1048585,1,177,177,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201224.log',1048585,1,185,185,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201224.log',1048585,1,189,189,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201225.log',256,1,NULL,1,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201225.log',259,1,NULL,10,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201225.log',259,1,NULL,12,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201225.log',515,1,5,30,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20201225.log',515,1,19,52,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20201225.log',515,1,81,283,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20201225.log',515,1,82,284,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20201225.log',515,1,78,288,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201225.log',515,1,90,294,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20201225.log',515,1,99,305,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20201225.log',515,1,134,324,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20201225.log',515,1,147,387,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201225.log',515,1,148,394,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201225.log',515,1,150,407,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201225.log',515,1,173,479,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20201225.log',515,1,175,493,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20201225.log',515,1,177,507,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201225.log',515,1,187,539,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201225.log',515,1,189,551,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20201225.log',515,1,190,556,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201225.log',515,1,193,569,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201225.log',1048585,1,19,19,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201225.log',1048585,1,78,78,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201225.log',1048585,1,82,82,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201225.log',1048585,1,90,90,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201225.log',1048585,1,99,99,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20201225.log',1048585,1,173,173,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201225.log',1048585,1,175,175,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201225.log',1048585,1,187,187,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201226.log',256,1,NULL,1,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201226.log',515,1,33,81,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20201226.log',515,1,83,285,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201226.log',515,1,78,288,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20201226.log',515,1,87,291,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20201226.log',515,1,100,306,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20201226.log',515,1,137,343,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20201226.log',515,1,149,401,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201226.log',515,1,150,407,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201226.log',515,1,171,470,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201226.log',515,1,173,479,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20201226.log',515,1,177,507,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201226.log',515,1,178,514,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201226.log',515,1,187,539,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20201226.log',515,1,191,563,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201226.log',515,1,193,569,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201226.log',1048585,1,78,78,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201226.log',1048585,1,87,87,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201226.log',1048585,1,137,137,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20201226.log',1048585,1,149,149,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201226.log',1048585,1,171,171,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201226.log',1048585,1,173,173,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201226.log',1048585,1,186,186,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201226.log',1048585,1,191,191,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201227.log',256,1,NULL,1,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201227.log',515,1,4,19,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20201227.log',515,1,28,68,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20201227.log',515,1,49,116,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201227.log',515,1,53,120,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20201227.log',515,1,78,288,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201227.log',515,1,114,308,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20201227.log',515,1,137,343,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20201227.log',515,1,142,367,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20201227.log',515,1,169,461,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201227.log',515,1,178,514,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201227.log',515,1,187,539,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20201227.log',515,1,190,556,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20201227.log',515,1,191,563,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201227.log',1048585,1,53,53,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201227.log',1048585,1,78,78,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20201227.log',1048585,1,82,82,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201227.log',1048585,1,87,87,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201227.log',1048585,1,114,114,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201227.log',1048585,1,142,142,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201227.log',1048585,1,148,148,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201227.log',1048585,1,173,173,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20201227.log',1048585,1,178,178,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201228.log',256,1,NULL,1,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201228.log',515,1,49,116,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20201228.log',515,1,78,288,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20201228.log',515,1,84,289,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,50),('usage_events_20201228.log',515,1,87,291,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20201228.log',515,1,91,295,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20201228.log',515,1,113,307,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20201228.log',515,1,114,308,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20201228.log',515,1,136,336,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20201228.log',515,1,137,343,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201228.log',515,1,142,367,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,70),('usage_events_20201228.log',515,1,148,394,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20201228.log',515,1,150,407,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201228.log',515,1,178,514,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201228.log',515,1,185,527,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20201228.log',515,1,190,556,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20201228.log',515,1,193,569,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201228.log',1048585,1,136,136,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201228.log',1048585,1,142,142,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20201228.log',1048585,1,150,150,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20201228.log',1048585,1,151,151,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201228.log',1048585,1,185,185,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201229.log',256,1,NULL,1,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20201229.log',259,1,NULL,12,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201229.log',515,1,31,79,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20201229.log',515,1,59,138,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20201229.log',515,1,78,288,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20201229.log',515,1,89,293,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20201229.log',515,1,134,324,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20201229.log',515,1,137,343,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20201229.log',515,1,149,401,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20201229.log',515,1,150,407,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20201229.log',515,1,177,507,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20201229.log',515,1,178,514,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20201229.log',515,1,191,563,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20201229.log',515,1,193,569,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20201229.log',1048585,1,78,78,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20201229.log',1048585,1,134,134,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201229.log',1048585,1,136,136,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20201229.log',1048585,1,150,150,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20201229.log',1048585,1,173,173,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201229.log',1048585,1,177,177,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201229.log',1048585,1,185,185,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20201229.log',1048585,1,191,191,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201230.log',256,1,NULL,1,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20201230.log',259,1,NULL,12,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20201230.log',515,1,83,285,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20201230.log',515,1,87,291,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20201230.log',515,1,90,294,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20201230.log',515,1,91,295,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20201230.log',515,1,147,387,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20201230.log',515,1,169,461,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20201230.log',515,1,171,470,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201230.log',515,1,175,493,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20201230.log',515,1,177,507,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20201230.log',515,1,178,514,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20201230.log',515,1,191,563,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20201230.log',1048585,1,78,78,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201230.log',1048585,1,83,83,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20201230.log',1048585,1,87,87,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20201230.log',1048585,1,178,178,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201230.log',1048585,1,191,191,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20201231.log',256,1,NULL,1,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20201231.log',515,1,20,53,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20201231.log',515,1,50,117,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20201231.log',515,1,54,133,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20201231.log',515,1,78,288,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20201231.log',515,1,125,310,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20201231.log',515,1,169,461,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20201231.log',515,1,171,470,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20201231.log',515,1,176,500,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20201231.log',1048585,1,20,20,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20201231.log',1048585,1,50,50,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20201231.log',1048585,1,78,78,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20201231.log',1048585,1,125,125,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20201231.log',1048585,1,169,169,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201231.log',1048585,1,171,171,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20201231.log',1048585,1,178,178,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20201231.log',1048585,1,187,187,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210101.log',256,1,NULL,1,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,1,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,2,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,3,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,4,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,5,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,6,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,7,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,8,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,9,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,10,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,11,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210101.log',259,1,NULL,12,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210101.log',515,1,1,3,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210101.log',515,1,78,288,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210101.log',515,1,87,291,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210101.log',515,1,88,292,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210101.log',515,1,113,307,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210101.log',515,1,139,351,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210101.log',515,1,142,367,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210101.log',515,1,147,387,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210101.log',515,1,148,394,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210101.log',515,1,173,479,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210101.log',515,1,175,493,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210101.log',515,1,177,507,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210101.log',515,1,187,539,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210101.log',1048585,1,1,1,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210101.log',1048585,1,4,4,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210101.log',1048585,1,5,5,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210101.log',1048585,1,6,6,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210101.log',1048585,1,7,7,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210101.log',1048585,1,8,8,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210101.log',1048585,1,14,14,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210101.log',1048585,1,19,19,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210101.log',1048585,1,20,20,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210101.log',1048585,1,21,21,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210101.log',1048585,1,22,22,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210101.log',1048585,1,40,40,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210101.log',1048585,1,78,78,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210101.log',1048585,1,87,87,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210101.log',1048585,1,88,88,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210101.log',1048585,1,99,99,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210101.log',1048585,1,142,142,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210101.log',1048585,1,148,148,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210101.log',1048585,1,169,169,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210101.log',1048585,1,173,173,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210101.log',1048585,1,174,174,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210101.log',1048585,1,177,177,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210101.log',1048585,1,185,185,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210101.log',1048585,1,186,186,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210101.log',1048585,1,187,187,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210101.log',1048585,1,188,188,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210101.log',1048585,1,189,189,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210101.log',1048585,1,190,190,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210101.log',1048585,1,191,191,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210101.log',1048585,1,193,193,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210102.log',259,1,NULL,7,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210102.log',515,1,35,83,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210102.log',515,1,84,289,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210102.log',515,1,100,306,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210102.log',515,1,137,343,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210102.log',515,1,139,351,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210102.log',515,1,147,387,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210102.log',515,1,152,423,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210102.log',515,1,169,461,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210102.log',515,1,177,507,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210102.log',515,1,178,514,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,85),('usage_events_20210102.log',515,1,190,556,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210102.log',515,1,191,563,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210102.log',1048585,1,35,35,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210102.log',1048585,1,137,137,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210102.log',1048585,1,139,139,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210102.log',1048585,1,147,147,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210102.log',1048585,1,152,152,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210102.log',1048585,1,173,173,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210102.log',1048585,1,177,177,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210102.log',1048585,1,178,178,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210103.log',256,1,NULL,1,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210103.log',515,1,7,32,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,6),('usage_events_20210103.log',515,1,58,137,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210103.log',515,1,59,138,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210103.log',515,1,78,288,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210103.log',515,1,89,293,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210103.log',515,1,133,318,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210103.log',515,1,137,343,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210103.log',515,1,141,361,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210103.log',515,1,142,367,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210103.log',515,1,149,401,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210103.log',515,1,150,407,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210103.log',515,1,169,461,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210103.log',515,1,176,500,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210103.log',515,1,190,556,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210103.log',1048585,1,7,7,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210103.log',1048585,1,59,59,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210103.log',1048585,1,78,78,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210103.log',1048585,1,82,82,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210103.log',1048585,1,133,133,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210103.log',1048585,1,176,176,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210103.log',1048585,1,190,190,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210104.log',515,1,20,53,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210104.log',515,1,32,80,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210104.log',515,1,81,283,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210104.log',515,1,78,288,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210104.log',515,1,89,293,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210104.log',515,1,135,330,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210104.log',515,1,137,343,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210104.log',515,1,139,351,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210104.log',515,1,141,361,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210104.log',515,1,149,401,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20210104.log',515,1,150,407,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210104.log',515,1,152,423,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210104.log',515,1,169,461,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210104.log',515,1,171,470,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210104.log',515,1,173,479,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210104.log',515,1,176,500,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210104.log',1048585,1,20,20,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210104.log',1048585,1,32,32,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210104.log',1048585,1,78,78,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210104.log',1048585,1,86,86,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210104.log',1048585,1,135,135,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210104.log',1048585,1,139,139,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210104.log',1048585,1,150,150,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210104.log',1048585,1,171,171,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210104.log',1048585,1,173,173,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210104.log',1048585,1,175,175,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210105.log',256,1,NULL,1,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210105.log',259,1,NULL,7,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210105.log',259,1,NULL,11,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210105.log',259,1,NULL,12,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210105.log',515,1,58,137,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210105.log',515,1,79,282,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20210105.log',515,1,76,286,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210105.log',515,1,78,288,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210105.log',515,1,84,289,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210105.log',515,1,137,343,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210105.log',515,1,148,394,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210105.log',515,1,149,401,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,74),('usage_events_20210105.log',515,1,169,461,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210105.log',515,1,173,479,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210105.log',515,1,175,493,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210105.log',515,1,176,500,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210105.log',515,1,187,539,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210105.log',515,1,190,556,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210105.log',515,1,193,569,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210105.log',1048585,1,76,76,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210105.log',1048585,1,78,78,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210105.log',1048585,1,79,79,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210105.log',1048585,1,82,82,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210105.log',1048585,1,86,86,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210105.log',1048585,1,137,137,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210105.log',1048585,1,148,148,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210105.log',1048585,1,149,149,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210105.log',1048585,1,169,169,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210105.log',1048585,1,173,173,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210105.log',1048585,1,176,176,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210105.log',1048585,1,178,178,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210106.log',256,1,NULL,1,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210106.log',259,1,NULL,4,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210106.log',259,1,NULL,11,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210106.log',515,1,49,116,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210106.log',515,1,54,133,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210106.log',515,1,79,282,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20210106.log',515,1,76,286,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210106.log',515,1,89,293,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210106.log',515,1,91,295,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210106.log',515,1,139,351,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210106.log',515,1,146,379,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210106.log',515,1,148,394,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210106.log',515,1,149,401,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210106.log',515,1,169,461,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210106.log',515,1,173,479,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210106.log',515,1,175,493,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210106.log',515,1,176,500,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210106.log',515,1,177,507,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210106.log',515,1,178,514,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210106.log',515,1,187,539,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210106.log',515,1,190,556,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210106.log',1048585,1,49,49,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210106.log',1048585,1,58,58,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210106.log',1048585,1,78,78,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210106.log',1048585,1,79,79,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210106.log',1048585,1,89,89,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210106.log',1048585,1,91,91,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210106.log',1048585,1,114,114,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210106.log',1048585,1,125,125,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210106.log',1048585,1,146,146,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210106.log',1048585,1,173,173,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210106.log',1048585,1,177,177,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210106.log',1048585,1,191,191,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210106.log',1048585,1,193,193,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210107.log',256,1,NULL,1,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210107.log',515,1,4,19,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210107.log',515,1,40,94,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210107.log',515,1,77,287,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210107.log',515,1,84,289,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210107.log',515,1,113,307,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20210107.log',515,1,114,308,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210107.log',515,1,146,379,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,71),('usage_events_20210107.log',515,1,149,401,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210107.log',515,1,150,407,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210107.log',515,1,169,461,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,78),('usage_events_20210107.log',515,1,173,479,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20210107.log',515,1,175,493,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210107.log',515,1,176,500,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210107.log',515,1,186,533,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,87),('usage_events_20210107.log',1048585,1,40,40,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210107.log',1048585,1,78,78,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210107.log',1048585,1,86,86,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210107.log',1048585,1,113,113,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210107.log',1048585,1,146,146,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210107.log',1048585,1,150,150,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210107.log',1048585,1,169,169,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20210107.log',1048585,1,173,173,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210107.log',1048585,1,186,186,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210109.log',256,1,NULL,1,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210109.log',259,1,NULL,6,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210109.log',515,1,32,80,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210109.log',515,1,49,116,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210109.log',515,1,54,133,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210109.log',515,1,81,283,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210109.log',515,1,87,291,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210109.log',515,1,89,293,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210109.log',515,1,115,309,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210109.log',515,1,137,343,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210109.log',515,1,142,367,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210109.log',515,1,148,394,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210109.log',515,1,169,461,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210109.log',515,1,175,493,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,82),('usage_events_20210109.log',515,1,185,527,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,86),('usage_events_20210109.log',515,1,186,533,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210109.log',515,1,193,569,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210109.log',1048585,1,47,47,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210109.log',1048585,1,49,49,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210109.log',1048585,1,54,54,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210109.log',1048585,1,81,81,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20210109.log',1048585,1,87,87,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210109.log',1048585,1,88,88,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210109.log',1048585,1,89,89,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210109.log',1048585,1,115,115,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210109.log',1048585,1,148,148,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210109.log',1048585,1,150,150,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210109.log',1048585,1,175,175,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210109.log',1048585,1,176,176,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210109.log',1048585,1,193,193,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210108.log',256,1,NULL,1,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210108.log',515,1,7,32,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210108.log',515,1,8,33,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210108.log',515,1,20,53,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20210108.log',515,1,22,57,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20210108.log',515,1,34,82,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210108.log',515,1,47,115,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210108.log',515,1,56,135,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20210108.log',515,1,85,281,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210108.log',515,1,77,287,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210108.log',515,1,78,288,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210108.log',515,1,84,289,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210108.log',515,1,137,343,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210108.log',515,1,139,351,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210108.log',515,1,146,379,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,71),('usage_events_20210108.log',515,1,148,394,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210108.log',515,1,150,407,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210108.log',515,1,169,461,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210108.log',515,1,173,479,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210108.log',515,1,175,493,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,82),('usage_events_20210108.log',515,1,177,507,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210108.log',1048585,1,7,7,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210108.log',1048585,1,20,20,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210108.log',1048585,1,47,47,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210108.log',1048585,1,78,78,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210108.log',1048585,1,85,85,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210108.log',1048585,1,137,137,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210108.log',1048585,1,139,139,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210108.log',1048585,1,150,150,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210108.log',1048585,1,169,169,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210108.log',1048585,1,175,175,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210108.log',1048585,1,176,176,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210108.log',1048585,1,177,177,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210108.log',1048585,1,190,190,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210110.log',256,1,NULL,1,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210110.log',515,1,49,116,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210110.log',515,1,54,133,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20210110.log',515,1,83,285,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210110.log',515,1,78,288,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210110.log',515,1,91,295,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210110.log',515,1,113,307,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210110.log',515,1,137,343,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210110.log',515,1,148,394,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210110.log',515,1,149,401,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210110.log',515,1,169,461,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210110.log',515,1,175,493,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210110.log',515,1,176,500,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210110.log',515,1,178,514,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210110.log',1048585,1,54,54,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210110.log',1048585,1,78,78,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210110.log',1048585,1,84,84,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210110.log',1048585,1,90,90,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210110.log',1048585,1,91,91,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210110.log',1048585,1,113,113,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210110.log',1048585,1,137,137,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210110.log',1048585,1,148,148,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210110.log',1048585,1,149,149,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210110.log',1048585,1,169,169,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210110.log',1048585,1,175,175,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210110.log',1048585,1,176,176,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210110.log',1048585,1,178,178,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210111.log',256,1,NULL,1,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210111.log',259,1,NULL,8,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210111.log',259,1,NULL,12,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210111.log',515,1,49,116,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210111.log',515,1,51,118,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210111.log',515,1,54,133,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210111.log',515,1,56,135,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,5,31),('usage_events_20210111.log',515,1,78,288,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210111.log',515,1,91,295,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210111.log',515,1,100,306,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210111.log',515,1,137,343,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210111.log',515,1,146,379,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',9,1,259,10,71),('usage_events_20210111.log',515,1,147,387,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210111.log',515,1,148,394,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210111.log',515,1,149,401,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210111.log',515,1,150,407,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,75),('usage_events_20210111.log',515,1,169,461,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210111.log',515,1,175,493,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210111.log',515,1,176,500,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210111.log',515,1,186,533,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210111.log',515,1,191,563,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210111.log',1048585,1,54,54,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210111.log',1048585,1,76,76,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210111.log',1048585,1,78,78,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210111.log',1048585,1,125,125,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210111.log',1048585,1,150,150,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210111.log',1048585,1,152,152,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210111.log',1048585,1,169,169,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210111.log',1048585,1,173,173,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210112.log',256,1,NULL,1,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210112.log',515,1,31,79,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210112.log',515,1,77,287,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210112.log',515,1,78,288,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210112.log',515,1,91,295,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210112.log',515,1,113,307,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210112.log',515,1,115,309,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210112.log',515,1,148,394,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210112.log',515,1,149,401,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210112.log',515,1,169,461,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210112.log',515,1,173,479,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210112.log',515,1,175,493,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210112.log',515,1,176,500,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210112.log',515,1,177,507,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210112.log',515,1,178,514,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210112.log',515,1,186,533,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210112.log',515,1,193,569,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210112.log',1048585,1,76,76,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210112.log',1048585,1,77,77,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210112.log',1048585,1,78,78,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210112.log',1048585,1,81,81,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210112.log',1048585,1,90,90,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210112.log',1048585,1,115,115,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210112.log',1048585,1,148,148,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210112.log',1048585,1,173,173,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210112.log',1048585,1,175,175,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210112.log',1048585,1,176,176,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210112.log',1048585,1,178,178,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210112.log',1048585,1,193,193,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210113.log',256,1,NULL,1,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210113.log',515,1,47,115,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20210113.log',515,1,51,118,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210113.log',515,1,58,137,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210113.log',515,1,81,283,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210113.log',515,1,78,288,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210113.log',515,1,90,294,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210113.log',515,1,100,306,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210113.log',515,1,113,307,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210113.log',515,1,114,308,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210113.log',515,1,134,324,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210113.log',515,1,137,343,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210113.log',515,1,150,407,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210113.log',515,1,169,461,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210113.log',515,1,171,470,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210113.log',515,1,173,479,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20210113.log',515,1,175,493,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210113.log',515,1,185,527,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210113.log',515,1,187,539,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210113.log',515,1,190,556,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210113.log',1048585,1,31,31,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210113.log',1048585,1,51,51,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210113.log',1048585,1,58,58,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210113.log',1048585,1,78,78,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210113.log',1048585,1,81,81,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210113.log',1048585,1,84,84,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210113.log',1048585,1,90,90,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210113.log',1048585,1,100,100,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210113.log',1048585,1,134,134,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210113.log',1048585,1,137,137,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210113.log',1048585,1,150,150,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210113.log',1048585,1,169,169,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210113.log',1048585,1,173,173,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210113.log',1048585,1,193,193,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210114.log',256,1,NULL,1,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210114.log',259,1,NULL,8,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210114.log',259,1,NULL,12,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210114.log',515,1,4,19,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210114.log',515,1,6,31,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210114.log',515,1,8,33,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210114.log',515,1,49,116,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210114.log',515,1,58,137,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210114.log',515,1,83,285,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210114.log',515,1,78,288,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210114.log',515,1,99,305,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210114.log',515,1,113,307,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210114.log',515,1,135,330,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210114.log',515,1,139,351,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210114.log',515,1,141,361,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210114.log',515,1,148,394,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210114.log',515,1,149,401,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210114.log',515,1,152,423,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210114.log',515,1,169,461,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210114.log',515,1,171,470,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210114.log',515,1,173,479,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20210114.log',515,1,175,493,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,82),('usage_events_20210114.log',515,1,176,500,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210114.log',515,1,178,514,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210114.log',515,1,185,527,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210114.log',1048585,1,20,20,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210114.log',1048585,1,47,47,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210114.log',1048585,1,56,56,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210114.log',1048585,1,58,58,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210114.log',1048585,1,78,78,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210114.log',1048585,1,81,81,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210114.log',1048585,1,83,83,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210114.log',1048585,1,100,100,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210114.log',1048585,1,133,133,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210114.log',1048585,1,135,135,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210114.log',1048585,1,139,139,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210114.log',1048585,1,141,141,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210114.log',1048585,1,152,152,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210114.log',1048585,1,173,173,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210114.log',1048585,1,176,176,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210114.log',1048585,1,177,177,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210114.log',1048585,1,185,185,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210114.log',1048585,1,190,190,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210114.log',1048585,1,193,193,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210115.log',256,1,NULL,1,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210115.log',259,1,NULL,2,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210115.log',259,1,NULL,12,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210115.log',515,1,8,33,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210115.log',515,1,14,51,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210115.log',515,1,28,68,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,15),('usage_events_20210115.log',515,1,49,116,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210115.log',515,1,53,120,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210115.log',515,1,79,282,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210115.log',515,1,82,284,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210115.log',515,1,78,288,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210115.log',515,1,90,294,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210115.log',515,1,100,306,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210115.log',515,1,137,343,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210115.log',515,1,148,394,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210115.log',515,1,149,401,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210115.log',515,1,169,461,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210115.log',515,1,173,479,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210115.log',515,1,175,493,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210115.log',515,1,177,507,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,84),('usage_events_20210115.log',515,1,193,569,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210115.log',1048585,1,53,53,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210115.log',1048585,1,78,78,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210115.log',1048585,1,82,82,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210115.log',1048585,1,90,90,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210115.log',1048585,1,100,100,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210115.log',1048585,1,136,136,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210115.log',1048585,1,148,148,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210115.log',1048585,1,149,149,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210115.log',1048585,1,169,169,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210115.log',1048585,1,175,175,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210115.log',1048585,1,177,177,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210115.log',1048585,1,178,178,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210115.log',1048585,1,187,187,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210115.log',1048585,1,189,189,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210116.log',515,1,8,33,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210116.log',515,1,35,83,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210116.log',515,1,78,288,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210116.log',515,1,84,289,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210116.log',515,1,87,291,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210116.log',515,1,169,461,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210116.log',515,1,171,470,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210116.log',515,1,173,479,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210116.log',515,1,175,493,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210116.log',515,1,176,500,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210116.log',515,1,177,507,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210116.log',515,1,193,569,'20210116','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210116.log',1048585,1,8,8,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210116.log',1048585,1,53,53,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210116.log',1048585,1,84,84,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210116.log',1048585,1,87,87,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210116.log',1048585,1,171,171,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210116.log',1048585,1,173,173,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210116.log',1048585,1,175,175,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210116.log',1048585,1,176,176,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210116.log',1048585,1,193,193,'20210116','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210117.log',256,1,NULL,1,'20210117','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210117.log',259,1,NULL,12,'20210117','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210117.log',515,1,33,81,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210117.log',515,1,77,287,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210117.log',515,1,78,288,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210117.log',515,1,99,305,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,8,57),('usage_events_20210117.log',515,1,137,343,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,67),('usage_events_20210117.log',515,1,142,367,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210117.log',515,1,150,407,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210117.log',515,1,151,414,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210117.log',515,1,169,461,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210117.log',515,1,177,507,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210117.log',515,1,189,551,'20210117','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210117.log',1048585,1,52,52,'20210117','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210117.log',1048585,1,78,78,'20210117','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210117.log',1048585,1,87,87,'20210117','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210117.log',1048585,1,99,99,'20210117','202101',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,8,NULL),('usage_events_20210117.log',1048585,1,100,100,'20210117','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210118.log',256,1,NULL,1,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210118.log',259,1,NULL,1,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210118.log',259,1,NULL,7,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210118.log',259,1,NULL,11,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210118.log',259,1,NULL,12,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210118.log',515,1,8,33,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210118.log',515,1,47,115,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210118.log',515,1,49,116,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210118.log',515,1,82,284,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210118.log',515,1,78,288,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210118.log',515,1,89,293,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210118.log',515,1,99,305,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210118.log',515,1,137,343,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210118.log',515,1,139,351,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210118.log',515,1,141,361,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210118.log',515,1,149,401,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210118.log',515,1,169,461,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210118.log',515,1,174,486,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210118.log',515,1,175,493,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210118.log',515,1,177,507,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210118.log',515,1,178,514,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210118.log',515,1,186,533,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210118.log',515,1,187,539,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210118.log',515,1,191,563,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210118.log',515,1,193,569,'20210118','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210118.log',1048585,1,5,5,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210118.log',1048585,1,47,47,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210118.log',1048585,1,78,78,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210118.log',1048585,1,82,82,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210118.log',1048585,1,83,83,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210118.log',1048585,1,89,89,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210118.log',1048585,1,99,99,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210118.log',1048585,1,100,100,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210118.log',1048585,1,137,137,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210118.log',1048585,1,147,147,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210118.log',1048585,1,171,171,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210118.log',1048585,1,173,173,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210118.log',1048585,1,175,175,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210118.log',1048585,1,177,177,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210118.log',1048585,1,178,178,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210118.log',1048585,1,187,187,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210118.log',1048585,1,191,191,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210118.log',1048585,1,193,193,'20210118','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210119.log',256,1,NULL,1,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210119.log',259,1,NULL,3,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210119.log',259,1,NULL,12,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210119.log',515,1,8,33,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210119.log',515,1,32,80,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210119.log',515,1,47,115,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210119.log',515,1,51,118,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210119.log',515,1,85,281,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210119.log',515,1,78,288,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210119.log',515,1,99,305,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210119.log',515,1,137,343,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210119.log',515,1,139,351,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210119.log',515,1,147,387,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210119.log',515,1,148,394,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210119.log',515,1,149,401,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210119.log',515,1,150,407,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210119.log',515,1,152,423,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210119.log',515,1,169,461,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210119.log',515,1,175,493,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210119.log',515,1,178,514,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210119.log',515,1,187,539,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210119.log',515,1,189,551,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210119.log',515,1,191,563,'20210119','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210119.log',1048585,1,32,32,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210119.log',1048585,1,35,35,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210119.log',1048585,1,51,51,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210119.log',1048585,1,58,58,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210119.log',1048585,1,78,78,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210119.log',1048585,1,87,87,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210119.log',1048585,1,89,89,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210119.log',1048585,1,137,137,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210119.log',1048585,1,147,147,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210119.log',1048585,1,150,150,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210119.log',1048585,1,169,169,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210119.log',1048585,1,173,173,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210119.log',1048585,1,175,175,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210119.log',1048585,1,178,178,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210119.log',1048585,1,187,187,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210119.log',1048585,1,191,191,'20210119','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210120.log',256,1,NULL,1,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210120.log',515,1,8,33,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210120.log',515,1,50,117,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20210120.log',515,1,82,284,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210120.log',515,1,83,285,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210120.log',515,1,78,288,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',19,1,259,7,49),('usage_events_20210120.log',515,1,87,291,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210120.log',515,1,90,294,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210120.log',515,1,100,306,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210120.log',515,1,113,307,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210120.log',515,1,137,343,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',11,1,259,9,67),('usage_events_20210120.log',515,1,148,394,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20210120.log',515,1,149,401,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210120.log',515,1,169,461,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210120.log',515,1,175,493,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210120.log',515,1,178,514,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210120.log',515,1,186,533,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210120.log',515,1,187,539,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210120.log',515,1,190,556,'20210120','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210120.log',1048585,1,78,78,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20210120.log',1048585,1,82,82,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210120.log',1048585,1,83,83,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210120.log',1048585,1,100,100,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210120.log',1048585,1,137,137,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210120.log',1048585,1,148,148,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210120.log',1048585,1,149,149,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210120.log',1048585,1,169,169,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210120.log',1048585,1,175,175,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210120.log',1048585,1,176,176,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210120.log',1048585,1,186,186,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210120.log',1048585,1,187,187,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210120.log',1048585,1,193,193,'20210120','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210121.log',256,1,NULL,1,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210121.log',259,1,NULL,11,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210121.log',259,1,NULL,12,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210121.log',515,1,51,118,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210121.log',515,1,54,133,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210121.log',515,1,56,135,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210121.log',515,1,58,137,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210121.log',515,1,79,282,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210121.log',515,1,78,288,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210121.log',515,1,87,291,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210121.log',515,1,100,306,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210121.log',515,1,125,310,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210121.log',515,1,137,343,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210121.log',515,1,139,351,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20210121.log',515,1,142,367,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210121.log',515,1,169,461,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210121.log',515,1,171,470,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210121.log',515,1,173,479,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20210121.log',515,1,175,493,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210121.log',515,1,176,500,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210121.log',515,1,177,507,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,84),('usage_events_20210121.log',515,1,178,514,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210121.log',515,1,191,563,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,92),('usage_events_20210121.log',515,1,193,569,'20210121','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210121.log',1048585,1,33,33,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210121.log',1048585,1,47,47,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210121.log',1048585,1,58,58,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210121.log',1048585,1,78,78,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210121.log',1048585,1,87,87,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210121.log',1048585,1,137,137,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210121.log',1048585,1,139,139,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210121.log',1048585,1,142,142,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210121.log',1048585,1,169,169,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210121.log',1048585,1,173,173,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210121.log',1048585,1,175,175,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210121.log',1048585,1,176,176,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210121.log',1048585,1,177,177,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,11,NULL),('usage_events_20210121.log',1048585,1,178,178,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210121.log',1048585,1,193,193,'20210121','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210122.log',256,1,NULL,1,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210122.log',259,1,NULL,12,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210122.log',515,1,4,19,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210122.log',515,1,8,33,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210122.log',515,1,49,116,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210122.log',515,1,56,135,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210122.log',515,1,83,285,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210122.log',515,1,76,286,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210122.log',515,1,78,288,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210122.log',515,1,89,293,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210122.log',515,1,99,305,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210122.log',515,1,137,343,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210122.log',515,1,139,351,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210122.log',515,1,147,387,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210122.log',515,1,148,394,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210122.log',515,1,149,401,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210122.log',515,1,151,414,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210122.log',515,1,169,461,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210122.log',515,1,173,479,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210122.log',515,1,189,551,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210122.log',515,1,191,563,'20210122','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210122.log',1048585,1,49,49,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210122.log',1048585,1,56,56,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210122.log',1048585,1,58,58,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210122.log',1048585,1,76,76,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210122.log',1048585,1,78,78,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210122.log',1048585,1,99,99,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210122.log',1048585,1,137,137,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210122.log',1048585,1,147,147,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210122.log',1048585,1,148,148,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210122.log',1048585,1,169,169,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210122.log',1048585,1,173,173,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210122.log',1048585,1,176,176,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210122.log',1048585,1,191,191,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210122.log',1048585,1,193,193,'20210122','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210123.log',256,1,NULL,1,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210123.log',259,1,NULL,12,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210123.log',515,1,50,117,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210123.log',515,1,53,120,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210123.log',515,1,56,135,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210123.log',515,1,83,285,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210123.log',515,1,78,288,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210123.log',515,1,87,291,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210123.log',515,1,89,293,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210123.log',515,1,125,310,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210123.log',515,1,137,343,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210123.log',515,1,139,351,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210123.log',515,1,149,401,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210123.log',515,1,152,423,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210123.log',515,1,169,461,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210123.log',515,1,171,470,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210123.log',515,1,175,493,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210123.log',515,1,176,500,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210123.log',515,1,177,507,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210123.log',515,1,185,527,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210123.log',515,1,186,533,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210123.log',515,1,187,539,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,88),('usage_events_20210123.log',515,1,190,556,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210123.log',515,1,193,569,'20210123','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210123.log',1048585,1,50,50,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210123.log',1048585,1,51,51,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210123.log',1048585,1,53,53,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210123.log',1048585,1,76,76,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210123.log',1048585,1,78,78,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210123.log',1048585,1,83,83,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210123.log',1048585,1,87,87,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210123.log',1048585,1,89,89,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210123.log',1048585,1,137,137,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210123.log',1048585,1,139,139,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210123.log',1048585,1,171,171,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210123.log',1048585,1,175,175,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210123.log',1048585,1,177,177,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210123.log',1048585,1,190,190,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210123.log',1048585,1,193,193,'20210123','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210124.log',256,1,NULL,1,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210124.log',515,1,32,80,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210124.log',515,1,53,120,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210124.log',515,1,56,135,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210124.log',515,1,85,281,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210124.log',515,1,83,285,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',9,1,259,6,46),('usage_events_20210124.log',515,1,77,287,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210124.log',515,1,78,288,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210124.log',515,1,134,324,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,64),('usage_events_20210124.log',515,1,137,343,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210124.log',515,1,146,379,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210124.log',515,1,149,401,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210124.log',515,1,169,461,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210124.log',515,1,171,470,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210124.log',515,1,173,479,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,80),('usage_events_20210124.log',515,1,187,539,'20210124','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210124.log',1048585,1,56,56,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210124.log',1048585,1,78,78,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210124.log',1048585,1,113,113,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210124.log',1048585,1,134,134,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210124.log',1048585,1,137,137,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210124.log',1048585,1,146,146,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210124.log',1048585,1,169,169,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210124.log',1048585,1,171,171,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210124.log',1048585,1,173,173,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210124.log',1048585,1,177,177,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210124.log',1048585,1,187,187,'20210124','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210125.log',256,1,NULL,1,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,1,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,2,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,4,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,5,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,6,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,7,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,8,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,11,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210125.log',259,1,NULL,12,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210125.log',515,1,1,3,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210125.log',515,1,35,83,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20210125.log',515,1,49,116,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210125.log',515,1,85,281,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210125.log',515,1,79,282,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210125.log',515,1,81,283,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210125.log',515,1,83,285,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,6,46),('usage_events_20210125.log',515,1,78,288,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210125.log',515,1,89,293,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210125.log',515,1,90,294,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20210125.log',515,1,99,305,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210125.log',515,1,113,307,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210125.log',515,1,135,330,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210125.log',515,1,137,343,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210125.log',515,1,146,379,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210125.log',515,1,148,394,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210125.log',515,1,149,401,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210125.log',515,1,150,407,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210125.log',515,1,169,461,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210125.log',515,1,171,470,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210125.log',515,1,173,479,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210125.log',515,1,175,493,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210125.log',515,1,176,500,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210125.log',515,1,177,507,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,84),('usage_events_20210125.log',515,1,187,539,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210125.log',515,1,190,556,'20210125','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210125.log',1048585,1,1,1,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210125.log',1048585,1,4,4,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210125.log',1048585,1,5,5,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210125.log',1048585,1,6,6,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210125.log',1048585,1,7,7,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210125.log',1048585,1,8,8,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210125.log',1048585,1,14,14,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210125.log',1048585,1,19,19,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210125.log',1048585,1,20,20,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210125.log',1048585,1,21,21,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210125.log',1048585,1,22,22,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210125.log',1048585,1,35,35,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210125.log',1048585,1,40,40,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210125.log',1048585,1,78,78,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210125.log',1048585,1,83,83,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210125.log',1048585,1,90,90,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210125.log',1048585,1,125,125,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210125.log',1048585,1,137,137,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210125.log',1048585,1,146,146,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210125.log',1048585,1,148,148,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210125.log',1048585,1,169,169,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210125.log',1048585,1,171,171,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210125.log',1048585,1,173,173,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210125.log',1048585,1,175,175,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210125.log',1048585,1,177,177,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210125.log',1048585,1,178,178,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210125.log',1048585,1,185,185,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210125.log',1048585,1,186,186,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210125.log',1048585,1,187,187,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210125.log',1048585,1,188,188,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210125.log',1048585,1,189,189,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210125.log',1048585,1,190,190,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210125.log',1048585,1,191,191,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210125.log',1048585,1,193,193,'20210125','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210126.log',256,1,NULL,1,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210126.log',259,1,NULL,7,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210126.log',259,1,NULL,9,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210126.log',259,1,NULL,12,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210126.log',515,1,6,31,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20210126.log',515,1,8,33,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,7),('usage_events_20210126.log',515,1,34,82,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210126.log',515,1,46,114,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20210126.log',515,1,53,120,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210126.log',515,1,56,135,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210126.log',515,1,76,286,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,47),('usage_events_20210126.log',515,1,77,287,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210126.log',515,1,78,288,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210126.log',515,1,86,290,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210126.log',515,1,99,305,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210126.log',515,1,134,324,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210126.log',515,1,137,343,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210126.log',515,1,148,394,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210126.log',515,1,149,401,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210126.log',515,1,150,407,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20210126.log',515,1,169,461,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210126.log',515,1,171,470,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210126.log',515,1,173,479,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210126.log',515,1,175,493,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210126.log',515,1,176,500,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,83),('usage_events_20210126.log',515,1,177,507,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,84),('usage_events_20210126.log',515,1,186,533,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210126.log',515,1,190,556,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210126.log',515,1,193,569,'20210126','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210126.log',1048585,1,6,6,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210126.log',1048585,1,8,8,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210126.log',1048585,1,34,34,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210126.log',1048585,1,53,53,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210126.log',1048585,1,56,56,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210126.log',1048585,1,58,58,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210126.log',1048585,1,76,76,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210126.log',1048585,1,78,78,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210126.log',1048585,1,86,86,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210126.log',1048585,1,89,89,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210126.log',1048585,1,134,134,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210126.log',1048585,1,135,135,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210126.log',1048585,1,137,137,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210126.log',1048585,1,148,148,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210126.log',1048585,1,149,149,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210126.log',1048585,1,150,150,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210126.log',1048585,1,169,169,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210126.log',1048585,1,173,173,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210126.log',1048585,1,175,175,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210126.log',1048585,1,176,176,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210126.log',1048585,1,190,190,'20210126','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210127.log',259,1,NULL,4,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210127.log',259,1,NULL,12,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210127.log',515,1,35,83,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210127.log',515,1,46,114,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,22),('usage_events_20210127.log',515,1,53,120,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210127.log',515,1,81,283,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210127.log',515,1,78,288,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210127.log',515,1,90,294,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210127.log',515,1,113,307,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210127.log',515,1,135,330,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210127.log',515,1,137,343,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210127.log',515,1,146,379,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210127.log',515,1,148,394,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210127.log',515,1,150,407,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210127.log',515,1,169,461,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210127.log',515,1,171,470,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210127.log',515,1,173,479,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210127.log',515,1,174,486,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210127.log',515,1,177,507,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210127.log',515,1,187,539,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210127.log',515,1,190,556,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210127.log',515,1,193,569,'20210127','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210127.log',1048585,1,35,35,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210127.log',1048585,1,46,46,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210127.log',1048585,1,53,53,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210127.log',1048585,1,58,58,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210127.log',1048585,1,78,78,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210127.log',1048585,1,85,85,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210127.log',1048585,1,90,90,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210127.log',1048585,1,125,125,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210127.log',1048585,1,146,146,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210127.log',1048585,1,150,150,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210127.log',1048585,1,169,169,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210127.log',1048585,1,171,171,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210127.log',1048585,1,173,173,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210127.log',1048585,1,174,174,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210127.log',1048585,1,186,186,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210127.log',1048585,1,190,190,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210127.log',1048585,1,191,191,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210127.log',1048585,1,193,193,'20210127','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210128.log',259,1,NULL,10,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210128.log',515,1,34,82,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210128.log',515,1,58,137,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210128.log',515,1,78,288,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210128.log',515,1,91,295,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210128.log',515,1,134,324,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210128.log',515,1,137,343,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210128.log',515,1,150,407,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210128.log',515,1,169,461,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210128.log',515,1,171,470,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210128.log',515,1,173,479,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210128.log',515,1,175,493,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210128.log',515,1,177,507,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210128.log',515,1,189,551,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210128.log',515,1,190,556,'20210128','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210128.log',1048585,1,58,58,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210128.log',1048585,1,114,114,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210128.log',1048585,1,134,134,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210128.log',1048585,1,150,150,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210128.log',1048585,1,169,169,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210128.log',1048585,1,171,171,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210128.log',1048585,1,173,173,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210128.log',1048585,1,177,177,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210128.log',1048585,1,178,178,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210128.log',1048585,1,190,190,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210128.log',1048585,1,193,193,'20210128','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210129.log',256,1,NULL,1,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210129.log',515,1,49,116,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210129.log',515,1,78,288,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210129.log',515,1,100,306,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210129.log',515,1,137,343,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210129.log',515,1,139,351,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210129.log',515,1,147,387,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210129.log',515,1,148,394,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210129.log',515,1,149,401,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210129.log',515,1,169,461,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210129.log',515,1,171,470,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210129.log',515,1,173,479,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210129.log',515,1,175,493,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210129.log',515,1,176,500,'20210129','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210129.log',1048585,1,78,78,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210129.log',1048585,1,100,100,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210129.log',1048585,1,149,149,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210129.log',1048585,1,150,150,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210129.log',1048585,1,169,169,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210129.log',1048585,1,171,171,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210129.log',1048585,1,173,173,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210129.log',1048585,1,176,176,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210129.log',1048585,1,186,186,'20210129','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210130.log',515,1,81,283,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210130.log',515,1,83,285,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210130.log',515,1,78,288,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210130.log',515,1,84,289,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210130.log',515,1,87,291,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210130.log',515,1,139,351,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210130.log',515,1,146,379,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210130.log',515,1,147,387,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210130.log',515,1,150,407,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210130.log',515,1,169,461,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210130.log',515,1,171,470,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20210130.log',515,1,176,500,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210130.log',515,1,190,556,'20210130','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210130.log',1048585,1,32,32,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210130.log',1048585,1,54,54,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210130.log',1048585,1,58,58,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210130.log',1048585,1,59,59,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210130.log',1048585,1,78,78,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210130.log',1048585,1,113,113,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210130.log',1048585,1,137,137,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210130.log',1048585,1,139,139,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210130.log',1048585,1,149,149,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210130.log',1048585,1,150,150,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210130.log',1048585,1,171,171,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210130.log',1048585,1,175,175,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210130.log',1048585,1,176,176,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210130.log',1048585,1,190,190,'20210130','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210131.log',515,1,34,82,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210131.log',515,1,49,116,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210131.log',515,1,83,285,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210131.log',515,1,78,288,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210131.log',515,1,91,295,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210131.log',515,1,137,343,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210131.log',515,1,139,351,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210131.log',515,1,148,394,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210131.log',515,1,149,401,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210131.log',515,1,150,407,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210131.log',515,1,169,461,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210131.log',515,1,171,470,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210131.log',515,1,173,479,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210131.log',515,1,176,500,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210131.log',515,1,185,527,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210131.log',515,1,186,533,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210131.log',515,1,187,539,'20210131','202101',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210131.log',1048585,1,49,49,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210131.log',1048585,1,58,58,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210131.log',1048585,1,83,83,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210131.log',1048585,1,91,91,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210131.log',1048585,1,169,169,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210131.log',1048585,1,171,171,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210131.log',1048585,1,173,173,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210131.log',1048585,1,176,176,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210131.log',1048585,1,185,185,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210131.log',1048585,1,186,186,'20210131','202101',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210201.log',256,1,NULL,1,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210201.log',259,1,NULL,9,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210201.log',259,1,NULL,10,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210201.log',515,1,33,81,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210201.log',515,1,58,137,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210201.log',515,1,78,288,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210201.log',515,1,137,343,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210201.log',515,1,139,351,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210201.log',515,1,146,379,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210201.log',515,1,150,407,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210201.log',515,1,169,461,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210201.log',515,1,171,470,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210201.log',515,1,173,479,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210201.log',515,1,174,486,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210201.log',515,1,175,493,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210201.log',515,1,187,539,'20210201','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210201.log',1048585,1,6,6,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210201.log',1048585,1,21,21,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210201.log',1048585,1,49,49,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210201.log',1048585,1,78,78,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210201.log',1048585,1,137,137,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210201.log',1048585,1,146,146,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210201.log',1048585,1,150,150,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210201.log',1048585,1,169,169,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210201.log',1048585,1,171,171,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210201.log',1048585,1,173,173,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210201.log',1048585,1,174,174,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210201.log',1048585,1,175,175,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210201.log',1048585,1,176,176,'20210201','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210202.log',259,1,NULL,10,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210202.log',259,1,NULL,11,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210202.log',259,1,NULL,12,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210202.log',515,1,50,117,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20210202.log',515,1,81,283,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210202.log',515,1,78,288,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210202.log',515,1,89,293,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210202.log',515,1,114,308,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210202.log',515,1,137,343,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210202.log',515,1,139,351,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210202.log',515,1,141,361,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210202.log',515,1,148,394,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210202.log',515,1,149,401,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210202.log',515,1,150,407,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210202.log',515,1,169,461,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210202.log',515,1,171,470,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210202.log',515,1,174,486,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210202.log',515,1,175,493,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210202.log',515,1,176,500,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210202.log',515,1,177,507,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210202.log',515,1,186,533,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210202.log',515,1,187,539,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210202.log',515,1,189,551,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210202.log',515,1,190,556,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210202.log',1048585,1,49,49,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210202.log',1048585,1,78,78,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210202.log',1048585,1,114,114,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210202.log',1048585,1,134,134,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210202.log',1048585,1,137,137,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210202.log',1048585,1,141,141,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210202.log',1048585,1,150,150,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210202.log',1048585,1,169,169,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210202.log',1048585,1,171,171,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210202.log',1048585,1,174,174,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210202.log',1048585,1,175,175,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210202.log',1048585,1,187,187,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210202.log',1048585,1,190,190,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210203.log',256,1,NULL,1,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210203.log',259,1,NULL,11,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210203.log',259,1,NULL,12,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210203.log',515,1,7,32,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210203.log',515,1,50,117,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210203.log',515,1,56,135,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210203.log',515,1,78,288,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210203.log',515,1,84,289,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210203.log',515,1,89,293,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210203.log',515,1,114,308,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210203.log',515,1,139,351,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210203.log',515,1,142,367,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210203.log',515,1,149,401,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210203.log',515,1,150,407,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210203.log',515,1,169,461,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210203.log',515,1,171,470,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,79),('usage_events_20210203.log',515,1,173,479,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210203.log',515,1,175,493,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210203.log',515,1,177,507,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210203.log',515,1,188,545,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210203.log',515,1,190,556,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210203.log',515,1,191,563,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210203.log',515,1,193,569,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210203.log',1048585,1,7,7,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210203.log',1048585,1,56,56,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210203.log',1048585,1,78,78,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210203.log',1048585,1,79,79,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210203.log',1048585,1,139,139,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210203.log',1048585,1,147,147,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210203.log',1048585,1,148,148,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210203.log',1048585,1,149,149,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210203.log',1048585,1,150,150,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210203.log',1048585,1,169,169,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210203.log',1048585,1,171,171,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,11,NULL),('usage_events_20210203.log',1048585,1,173,173,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210203.log',1048585,1,175,175,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210203.log',1048585,1,176,176,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210203.log',1048585,1,177,177,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210203.log',1048585,1,190,190,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210204.log',256,1,NULL,1,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210204.log',259,1,NULL,12,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210204.log',515,1,85,281,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,41),('usage_events_20210204.log',515,1,81,283,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210204.log',515,1,78,288,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210204.log',515,1,86,290,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,51),('usage_events_20210204.log',515,1,100,306,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210204.log',515,1,114,308,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210204.log',515,1,133,318,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20210204.log',515,1,137,343,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210204.log',515,1,139,351,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210204.log',515,1,142,367,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210204.log',515,1,150,407,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210204.log',515,1,152,423,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210204.log',515,1,169,461,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210204.log',515,1,171,470,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210204.log',515,1,175,493,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210204.log',515,1,186,533,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210204.log',515,1,187,539,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210204.log',515,1,193,569,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210204.log',1048585,1,78,78,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210204.log',1048585,1,81,81,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210204.log',1048585,1,85,85,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210204.log',1048585,1,86,86,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210204.log',1048585,1,137,137,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210204.log',1048585,1,139,139,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210204.log',1048585,1,150,150,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210204.log',1048585,1,169,169,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210204.log',1048585,1,171,171,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210204.log',1048585,1,185,185,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210204.log',1048585,1,186,186,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210204.log',1048585,1,187,187,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210204.log',1048585,1,188,188,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210204.log',1048585,1,193,193,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210205.log',256,1,NULL,1,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210205.log',259,1,NULL,12,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210205.log',515,1,5,30,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210205.log',515,1,53,120,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210205.log',515,1,81,283,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210205.log',515,1,78,288,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',16,1,259,7,49),('usage_events_20210205.log',515,1,86,290,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210205.log',515,1,137,343,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,67),('usage_events_20210205.log',515,1,146,379,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210205.log',515,1,148,394,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210205.log',515,1,149,401,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210205.log',515,1,169,461,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210205.log',515,1,171,470,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210205.log',515,1,173,479,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20210205.log',515,1,176,500,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210205.log',515,1,177,507,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210205.log',515,1,187,539,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210205.log',1048585,1,78,78,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210205.log',1048585,1,81,81,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210205.log',1048585,1,137,137,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210205.log',1048585,1,149,149,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210205.log',1048585,1,169,169,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210205.log',1048585,1,171,171,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210205.log',1048585,1,173,173,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210205.log',1048585,1,177,177,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210205.log',1048585,1,187,187,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210206.log',256,1,NULL,1,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210206.log',259,1,NULL,12,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210206.log',515,1,8,33,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210206.log',515,1,49,116,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210206.log',515,1,50,117,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20210206.log',515,1,51,118,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210206.log',515,1,56,135,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210206.log',515,1,81,283,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210206.log',515,1,78,288,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210206.log',515,1,86,290,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210206.log',515,1,99,305,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210206.log',515,1,114,308,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210206.log',515,1,137,343,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210206.log',515,1,146,379,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210206.log',515,1,150,407,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210206.log',515,1,151,414,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210206.log',515,1,171,470,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,79),('usage_events_20210206.log',515,1,173,479,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210206.log',515,1,176,500,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210206.log',515,1,187,539,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210206.log',515,1,189,551,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210206.log',515,1,190,556,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210206.log',515,1,191,563,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20210206.log',1048585,1,49,49,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210206.log',1048585,1,51,51,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210206.log',1048585,1,56,56,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210206.log',1048585,1,78,78,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210206.log',1048585,1,81,81,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210206.log',1048585,1,86,86,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210206.log',1048585,1,114,114,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210206.log',1048585,1,134,134,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210206.log',1048585,1,137,137,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210206.log',1048585,1,150,150,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210206.log',1048585,1,171,171,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210206.log',1048585,1,176,176,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210206.log',1048585,1,187,187,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210206.log',1048585,1,189,189,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210206.log',1048585,1,191,191,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210206.log',1048585,1,193,193,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210207.log',256,1,NULL,1,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210207.log',515,1,4,19,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20210207.log',515,1,83,285,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210207.log',515,1,78,288,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210207.log',515,1,86,290,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210207.log',515,1,137,343,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210207.log',515,1,139,351,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210207.log',515,1,169,461,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210207.log',515,1,171,470,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210207.log',515,1,175,493,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210207.log',515,1,187,539,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210207.log',515,1,189,551,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210207.log',515,1,191,563,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210207.log',515,1,193,569,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210207.log',1048585,1,78,78,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210207.log',1048585,1,137,137,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210207.log',1048585,1,139,139,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210207.log',1048585,1,141,141,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210207.log',1048585,1,169,169,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210207.log',1048585,1,171,171,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210207.log',1048585,1,187,187,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210207.log',1048585,1,190,190,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210207.log',1048585,1,191,191,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210208.log',256,1,NULL,1,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210208.log',515,1,5,30,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210208.log',515,1,8,33,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210208.log',515,1,32,80,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210208.log',515,1,53,120,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210208.log',515,1,78,288,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210208.log',515,1,86,290,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210208.log',515,1,113,307,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210208.log',515,1,114,308,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210208.log',515,1,137,343,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',7,1,259,9,67),('usage_events_20210208.log',515,1,139,351,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210208.log',515,1,146,379,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210208.log',515,1,148,394,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210208.log',515,1,151,414,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210208.log',515,1,169,461,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210208.log',515,1,171,470,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210208.log',515,1,175,493,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210208.log',515,1,176,500,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210208.log',515,1,177,507,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210208.log',515,1,186,533,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210208.log',515,1,190,556,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210208.log',1048585,1,4,4,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210208.log',1048585,1,5,5,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210208.log',1048585,1,8,8,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210208.log',1048585,1,137,137,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210208.log',1048585,1,139,139,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210208.log',1048585,1,146,146,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210208.log',1048585,1,150,150,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210208.log',1048585,1,151,151,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210208.log',1048585,1,169,169,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210208.log',1048585,1,171,171,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210208.log',1048585,1,175,175,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210208.log',1048585,1,176,176,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210208.log',1048585,1,177,177,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210208.log',1048585,1,178,178,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210208.log',1048585,1,186,186,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210209.log',256,1,NULL,1,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',19,NULL,NULL,NULL,NULL),('usage_events_20210209.log',259,1,NULL,9,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210209.log',259,1,NULL,12,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210209.log',515,1,49,116,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210209.log',515,1,81,283,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210209.log',515,1,83,285,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210209.log',515,1,78,288,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210209.log',515,1,86,290,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210209.log',515,1,99,305,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210209.log',515,1,134,324,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210209.log',515,1,137,343,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210209.log',515,1,141,361,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210209.log',515,1,169,461,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210209.log',515,1,171,470,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210209.log',515,1,175,493,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210209.log',515,1,177,507,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210209.log',515,1,193,569,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20210209.log',1048585,1,78,78,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210209.log',1048585,1,81,81,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210209.log',1048585,1,85,85,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210209.log',1048585,1,99,99,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210209.log',1048585,1,141,141,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210209.log',1048585,1,169,169,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210209.log',1048585,1,171,171,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210209.log',1048585,1,193,193,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210210.log',256,1,NULL,1,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210210.log',259,1,NULL,1,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210210.log',259,1,NULL,11,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210210.log',515,1,4,19,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210210.log',515,1,7,32,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20210210.log',515,1,51,118,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210210.log',515,1,53,120,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210210.log',515,1,56,135,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210210.log',515,1,58,137,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210210.log',515,1,78,288,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210210.log',515,1,84,289,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210210.log',515,1,114,308,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210210.log',515,1,137,343,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210210.log',515,1,147,387,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210210.log',515,1,148,394,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210210.log',515,1,149,401,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210210.log',515,1,169,461,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20210210.log',515,1,171,470,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210210.log',515,1,175,493,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20210210.log',515,1,176,500,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210210.log',515,1,178,514,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210210.log',515,1,187,539,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210210.log',1048585,1,4,4,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210210.log',1048585,1,5,5,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210210.log',1048585,1,7,7,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,1,NULL),('usage_events_20210210.log',1048585,1,53,53,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,4,NULL),('usage_events_20210210.log',1048585,1,56,56,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210210.log',1048585,1,58,58,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210210.log',1048585,1,78,78,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210210.log',1048585,1,82,82,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210210.log',1048585,1,87,87,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210210.log',1048585,1,114,114,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210210.log',1048585,1,137,137,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210210.log',1048585,1,139,139,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210210.log',1048585,1,142,142,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210210.log',1048585,1,147,147,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210210.log',1048585,1,169,169,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210210.log',1048585,1,171,171,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210210.log',1048585,1,175,175,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210210.log',1048585,1,177,177,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210210.log',1048585,1,178,178,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210210.log',1048585,1,185,185,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210210.log',1048585,1,186,186,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210210.log',1048585,1,187,187,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210210.log',1048585,1,191,191,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210210.log',1048585,1,193,193,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210211.log',256,1,NULL,1,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210211.log',259,1,NULL,10,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210211.log',515,1,20,53,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20210211.log',515,1,34,82,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210211.log',515,1,49,116,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210211.log',515,1,50,117,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210211.log',515,1,58,137,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210211.log',515,1,78,288,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210211.log',515,1,84,289,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210211.log',515,1,87,291,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20210211.log',515,1,90,294,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210211.log',515,1,137,343,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210211.log',515,1,139,351,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210211.log',515,1,142,367,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210211.log',515,1,148,394,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210211.log',515,1,151,414,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210211.log',515,1,169,461,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210211.log',515,1,174,486,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210211.log',515,1,175,493,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210211.log',515,1,176,500,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210211.log',515,1,177,507,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210211.log',515,1,178,514,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210211.log',515,1,191,563,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,92),('usage_events_20210211.log',515,1,193,569,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210211.log',1048585,1,34,34,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210211.log',1048585,1,58,58,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210211.log',1048585,1,77,77,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210211.log',1048585,1,78,78,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,7,NULL),('usage_events_20210211.log',1048585,1,84,84,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210211.log',1048585,1,87,87,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210211.log',1048585,1,91,91,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210211.log',1048585,1,142,142,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210211.log',1048585,1,148,148,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210211.log',1048585,1,169,169,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210211.log',1048585,1,173,173,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210211.log',1048585,1,174,174,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210211.log',1048585,1,175,175,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210211.log',1048585,1,177,177,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210211.log',1048585,1,185,185,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210211.log',1048585,1,186,186,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210211.log',1048585,1,191,191,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210212.log',256,1,NULL,1,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210212.log',259,1,NULL,11,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210212.log',515,1,46,114,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210212.log',515,1,56,135,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210212.log',515,1,82,284,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210212.log',515,1,76,286,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210212.log',515,1,78,288,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210212.log',515,1,113,307,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210212.log',515,1,125,310,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210212.log',515,1,133,318,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210212.log',515,1,137,343,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210212.log',515,1,142,367,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210212.log',515,1,147,387,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210212.log',515,1,149,401,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210212.log',515,1,150,407,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,75),('usage_events_20210212.log',515,1,169,461,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210212.log',515,1,171,470,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210212.log',515,1,173,479,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210212.log',515,1,175,493,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210212.log',515,1,178,514,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210212.log',515,1,186,533,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210212.log',515,1,187,539,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210212.log',515,1,191,563,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210212.log',1048585,1,31,31,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210212.log',1048585,1,46,46,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210212.log',1048585,1,76,76,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210212.log',1048585,1,78,78,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210212.log',1048585,1,82,82,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210212.log',1048585,1,84,84,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210212.log',1048585,1,125,125,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210212.log',1048585,1,147,147,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210212.log',1048585,1,149,149,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210212.log',1048585,1,150,150,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210212.log',1048585,1,151,151,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210212.log',1048585,1,171,171,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210212.log',1048585,1,173,173,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210212.log',1048585,1,178,178,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210212.log',1048585,1,187,187,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210212.log',1048585,1,191,191,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210213.log',256,1,NULL,1,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210213.log',259,1,NULL,12,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210213.log',515,1,8,33,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210213.log',515,1,46,114,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210213.log',515,1,53,120,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210213.log',515,1,78,288,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210213.log',515,1,137,343,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210213.log',515,1,139,351,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210213.log',515,1,146,379,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210213.log',515,1,148,394,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210213.log',515,1,149,401,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210213.log',515,1,150,407,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210213.log',515,1,171,470,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210213.log',515,1,175,493,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210213.log',515,1,190,556,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210213.log',515,1,191,563,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210213.log',515,1,193,569,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210213.log',1048585,1,53,53,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210213.log',1048585,1,135,135,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210213.log',1048585,1,146,146,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210213.log',1048585,1,149,149,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210213.log',1048585,1,171,171,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210213.log',1048585,1,175,175,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210213.log',1048585,1,190,190,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210213.log',1048585,1,191,191,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210213.log',1048585,1,193,193,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210214.log',256,1,NULL,1,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',30,NULL,NULL,NULL,NULL),('usage_events_20210214.log',515,1,46,114,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,22),('usage_events_20210214.log',515,1,49,116,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210214.log',515,1,58,137,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210214.log',515,1,81,283,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210214.log',515,1,83,285,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210214.log',515,1,77,287,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210214.log',515,1,78,288,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210214.log',515,1,137,343,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210214.log',515,1,139,351,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210214.log',515,1,142,367,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210214.log',515,1,148,394,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210214.log',515,1,149,401,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210214.log',515,1,152,423,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210214.log',515,1,169,461,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210214.log',515,1,171,470,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210214.log',515,1,173,479,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210214.log',515,1,176,500,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210214.log',515,1,191,563,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210214.log',1048585,1,56,56,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210214.log',1048585,1,58,58,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210214.log',1048585,1,77,77,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210214.log',1048585,1,78,78,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210214.log',1048585,1,81,81,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210214.log',1048585,1,139,139,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210214.log',1048585,1,149,149,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210214.log',1048585,1,152,152,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210214.log',1048585,1,176,176,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210214.log',1048585,1,191,191,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210215.log',256,1,NULL,1,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210215.log',515,1,46,114,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210215.log',515,1,58,137,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210215.log',515,1,59,138,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210215.log',515,1,81,283,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210215.log',515,1,82,284,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210215.log',515,1,76,286,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210215.log',515,1,135,330,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210215.log',515,1,137,343,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210215.log',515,1,141,361,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210215.log',515,1,147,387,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210215.log',515,1,148,394,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210215.log',515,1,169,461,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210215.log',515,1,171,470,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210215.log',515,1,175,493,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210215.log',515,1,178,514,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210215.log',515,1,190,556,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210215.log',1048585,1,58,58,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210215.log',1048585,1,76,76,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210215.log',1048585,1,81,81,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210215.log',1048585,1,135,135,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210215.log',1048585,1,142,142,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210215.log',1048585,1,148,148,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210215.log',1048585,1,171,171,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210215.log',1048585,1,173,173,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210215.log',1048585,1,175,175,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210215.log',1048585,1,190,190,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210215.log',1048585,1,193,193,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210216.log',256,1,NULL,1,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210216.log',259,1,NULL,11,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210216.log',259,1,NULL,12,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210216.log',515,1,46,114,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,22),('usage_events_20210216.log',515,1,81,283,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210216.log',515,1,78,288,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210216.log',515,1,89,293,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210216.log',515,1,90,294,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210216.log',515,1,91,295,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210216.log',515,1,99,305,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210216.log',515,1,113,307,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210216.log',515,1,114,308,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210216.log',515,1,137,343,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210216.log',515,1,169,461,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210216.log',515,1,171,470,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210216.log',515,1,173,479,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210216.log',515,1,176,500,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210216.log',515,1,187,539,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210216.log',515,1,190,556,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210216.log',515,1,191,563,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210216.log',1048585,1,46,46,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210216.log',1048585,1,81,81,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210216.log',1048585,1,91,91,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210216.log',1048585,1,99,99,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210216.log',1048585,1,137,137,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210216.log',1048585,1,169,169,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210216.log',1048585,1,173,173,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210216.log',1048585,1,174,174,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210216.log',1048585,1,175,175,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210216.log',1048585,1,176,176,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210216.log',1048585,1,185,185,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210216.log',1048585,1,190,190,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210217.log',256,1,NULL,1,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210217.log',259,1,NULL,12,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210217.log',515,1,6,31,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210217.log',515,1,7,32,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210217.log',515,1,46,114,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,22),('usage_events_20210217.log',515,1,58,137,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',9,1,259,5,33),('usage_events_20210217.log',515,1,83,285,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210217.log',515,1,76,286,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210217.log',515,1,78,288,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210217.log',515,1,84,289,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210217.log',515,1,91,295,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210217.log',515,1,114,308,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210217.log',515,1,137,343,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210217.log',515,1,139,351,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210217.log',515,1,150,407,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20210217.log',515,1,169,461,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20210217.log',515,1,173,479,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210217.log',515,1,175,493,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210217.log',515,1,176,500,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210217.log',515,1,177,507,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,84),('usage_events_20210217.log',515,1,185,527,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210217.log',515,1,186,533,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210217.log',515,1,187,539,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210217.log',515,1,190,556,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210217.log',515,1,193,569,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210217.log',1048585,1,53,53,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210217.log',1048585,1,58,58,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210217.log',1048585,1,76,76,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210217.log',1048585,1,78,78,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210217.log',1048585,1,84,84,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210217.log',1048585,1,91,91,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210217.log',1048585,1,114,114,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210217.log',1048585,1,139,139,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210217.log',1048585,1,142,142,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210217.log',1048585,1,169,169,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210217.log',1048585,1,171,171,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210217.log',1048585,1,173,173,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210217.log',1048585,1,175,175,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210217.log',1048585,1,177,177,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210217.log',1048585,1,178,178,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210217.log',1048585,1,185,185,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210217.log',1048585,1,186,186,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210217.log',1048585,1,190,190,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210217.log',1048585,1,193,193,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210218.log',256,1,NULL,1,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',86,NULL,NULL,NULL,NULL),('usage_events_20210218.log',259,1,NULL,13,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',17,NULL,NULL,NULL,NULL),('usage_events_20210218.log',515,1,8,33,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210218.log',515,1,46,114,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,22),('usage_events_20210218.log',515,1,50,117,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20210218.log',515,1,58,137,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210218.log',515,1,85,281,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210218.log',515,1,81,283,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210218.log',515,1,83,285,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210218.log',515,1,77,287,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210218.log',515,1,78,288,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210218.log',515,1,84,289,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210218.log',515,1,91,295,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210218.log',515,1,113,307,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210218.log',515,1,133,318,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210218.log',515,1,137,343,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210218.log',515,1,139,351,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210218.log',515,1,142,367,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210218.log',515,1,146,379,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210218.log',515,1,148,394,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210218.log',515,1,169,461,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210218.log',515,1,171,470,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210218.log',515,1,173,479,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210218.log',515,1,175,493,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210218.log',515,1,176,500,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210218.log',515,1,177,507,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210218.log',515,1,178,514,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210218.log',515,1,185,527,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210218.log',515,1,190,556,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210218.log',515,1,203,589,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,94),('usage_events_20210218.log',515,1,204,597,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,95),('usage_events_20210218.log',515,1,205,606,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210218.log',515,1,206,615,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210218.log',515,1,207,622,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210218.log',515,1,208,630,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,99),('usage_events_20210218.log',515,1,209,637,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,100),('usage_events_20210218.log',515,1,210,644,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210218.log',1048585,1,4,4,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210218.log',1048585,1,19,19,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210218.log',1048585,1,34,34,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210218.log',1048585,1,50,50,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210218.log',1048585,1,78,78,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210218.log',1048585,1,83,83,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210218.log',1048585,1,87,87,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210218.log',1048585,1,91,91,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210218.log',1048585,1,113,113,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210218.log',1048585,1,137,137,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210218.log',1048585,1,141,141,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210218.log',1048585,1,146,146,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210218.log',1048585,1,148,148,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210218.log',1048585,1,169,169,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210218.log',1048585,1,171,171,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210218.log',1048585,1,173,173,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210218.log',1048585,1,175,175,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210218.log',1048585,1,185,185,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210218.log',1048585,1,190,190,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210218.log',1048585,1,191,191,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210218.log',1048585,1,203,203,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210218.log',1048585,1,206,206,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210218.log',1048585,1,207,207,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210218.log',1048585,1,208,208,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210218.log',1048585,1,209,209,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210219.log',256,1,NULL,1,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',18,NULL,NULL,NULL,NULL),('usage_events_20210219.log',259,1,NULL,5,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210219.log',259,1,NULL,10,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210219.log',259,1,NULL,13,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210219.log',515,1,7,32,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210219.log',515,1,46,114,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,22),('usage_events_20210219.log',515,1,49,116,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210219.log',515,1,51,118,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20210219.log',515,1,58,137,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210219.log',515,1,77,287,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210219.log',515,1,87,291,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210219.log',515,1,99,305,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210219.log',515,1,113,307,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210219.log',515,1,114,308,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210219.log',515,1,115,309,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210219.log',515,1,125,310,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210219.log',515,1,134,324,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210219.log',515,1,137,343,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210219.log',515,1,141,361,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210219.log',515,1,146,379,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210219.log',515,1,150,407,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210219.log',515,1,151,414,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210219.log',515,1,169,461,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210219.log',515,1,171,470,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210219.log',515,1,173,479,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210219.log',515,1,174,486,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210219.log',515,1,175,493,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210219.log',515,1,191,563,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210219.log',515,1,207,622,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210219.log',515,1,208,630,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210219.log',515,1,210,644,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210219.log',1048585,1,47,47,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210219.log',1048585,1,58,58,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210219.log',1048585,1,59,59,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210219.log',1048585,1,77,77,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210219.log',1048585,1,85,85,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210219.log',1048585,1,139,139,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210219.log',1048585,1,141,141,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210219.log',1048585,1,146,146,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210219.log',1048585,1,149,149,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210219.log',1048585,1,150,150,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210219.log',1048585,1,151,151,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210219.log',1048585,1,169,169,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210219.log',1048585,1,171,171,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210219.log',1048585,1,173,173,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210219.log',1048585,1,174,174,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210219.log',1048585,1,175,175,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210219.log',1048585,1,185,185,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210219.log',1048585,1,191,191,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210219.log',1048585,1,208,208,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210220.log',256,1,NULL,1,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210220.log',259,1,NULL,4,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210220.log',259,1,NULL,13,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210220.log',515,1,46,114,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210220.log',515,1,47,115,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210220.log',515,1,49,116,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210220.log',515,1,53,120,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210220.log',515,1,58,137,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210220.log',515,1,81,283,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210220.log',515,1,78,288,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210220.log',515,1,113,307,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210220.log',515,1,169,461,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210220.log',515,1,171,470,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210220.log',515,1,173,479,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210220.log',515,1,174,486,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210220.log',515,1,175,493,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210220.log',515,1,190,556,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210220.log',515,1,193,569,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210220.log',515,1,210,644,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210220.log',1048585,1,4,4,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210220.log',1048585,1,47,47,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210220.log',1048585,1,49,49,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,4,NULL),('usage_events_20210220.log',1048585,1,53,53,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210220.log',1048585,1,78,78,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210220.log',1048585,1,81,81,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210220.log',1048585,1,86,86,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210220.log',1048585,1,134,134,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210220.log',1048585,1,148,148,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210220.log',1048585,1,171,171,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210220.log',1048585,1,173,173,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210220.log',1048585,1,174,174,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210221.log',256,1,NULL,1,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20210221.log',259,1,NULL,13,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210221.log',515,1,32,80,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,17),('usage_events_20210221.log',515,1,33,81,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210221.log',515,1,47,115,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210221.log',515,1,51,118,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210221.log',515,1,53,120,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210221.log',515,1,78,288,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210221.log',515,1,137,343,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210221.log',515,1,142,367,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210221.log',515,1,147,387,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210221.log',515,1,148,394,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210221.log',515,1,169,461,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210221.log',515,1,174,486,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210221.log',515,1,175,493,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,82),('usage_events_20210221.log',515,1,176,500,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210221.log',515,1,206,615,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210221.log',1048585,1,32,32,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210221.log',1048585,1,33,33,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210221.log',1048585,1,47,47,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210221.log',1048585,1,51,51,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210221.log',1048585,1,53,53,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210221.log',1048585,1,58,58,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210221.log',1048585,1,78,78,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210221.log',1048585,1,85,85,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210221.log',1048585,1,91,91,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210221.log',1048585,1,142,142,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210221.log',1048585,1,148,148,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210221.log',1048585,1,150,150,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210221.log',1048585,1,152,152,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210221.log',1048585,1,169,169,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210221.log',1048585,1,174,174,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210221.log',1048585,1,176,176,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210221.log',1048585,1,206,206,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210222.log',256,1,NULL,1,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210222.log',259,1,NULL,13,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210222.log',515,1,51,118,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210222.log',515,1,53,120,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210222.log',515,1,56,135,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210222.log',515,1,81,283,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210222.log',515,1,76,286,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210222.log',515,1,78,288,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210222.log',515,1,99,305,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210222.log',515,1,139,351,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210222.log',515,1,148,394,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210222.log',515,1,149,401,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210222.log',515,1,150,407,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20210222.log',515,1,169,461,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210222.log',515,1,171,470,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210222.log',515,1,173,479,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210222.log',515,1,176,500,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210222.log',515,1,185,527,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20210222.log',515,1,186,533,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210222.log',515,1,187,539,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210222.log',515,1,190,556,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210222.log',515,1,193,569,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210222.log',515,1,208,630,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210222.log',515,1,209,637,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210222.log',515,1,210,644,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210222.log',1048585,1,49,49,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210222.log',1048585,1,56,56,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210222.log',1048585,1,58,58,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210222.log',1048585,1,59,59,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210222.log',1048585,1,85,85,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210222.log',1048585,1,87,87,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210222.log',1048585,1,139,139,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210222.log',1048585,1,146,146,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210222.log',1048585,1,148,148,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210222.log',1048585,1,149,149,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210222.log',1048585,1,150,150,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210222.log',1048585,1,175,175,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210222.log',1048585,1,176,176,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210222.log',1048585,1,185,185,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210222.log',1048585,1,187,187,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210222.log',1048585,1,190,190,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210222.log',1048585,1,193,193,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210222.log',1048585,1,208,208,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210223.log',256,1,NULL,1,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20210223.log',259,1,NULL,9,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210223.log',259,1,NULL,13,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210223.log',515,1,4,19,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210223.log',515,1,49,116,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20210223.log',515,1,53,120,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210223.log',515,1,56,135,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210223.log',515,1,58,137,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20210223.log',515,1,76,286,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210223.log',515,1,77,287,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210223.log',515,1,78,288,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210223.log',515,1,84,289,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210223.log',515,1,86,290,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210223.log',515,1,90,294,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210223.log',515,1,100,306,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20210223.log',515,1,137,343,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210223.log',515,1,146,379,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210223.log',515,1,149,401,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210223.log',515,1,151,414,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210223.log',515,1,169,461,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210223.log',515,1,171,470,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20210223.log',515,1,173,479,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210223.log',515,1,178,514,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210223.log',515,1,186,533,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210223.log',515,1,187,539,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210223.log',515,1,189,551,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210223.log',515,1,190,556,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210223.log',515,1,204,597,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210223.log',515,1,205,606,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210223.log',515,1,206,615,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',12,1,259,13,97),('usage_events_20210223.log',515,1,207,622,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,98),('usage_events_20210223.log',515,1,208,630,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210223.log',515,1,209,637,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210223.log',515,1,210,644,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210223.log',1048585,1,4,4,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210223.log',1048585,1,14,14,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210223.log',1048585,1,49,49,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210223.log',1048585,1,53,53,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210223.log',1048585,1,56,56,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210223.log',1048585,1,58,58,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20210223.log',1048585,1,78,78,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210223.log',1048585,1,86,86,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210223.log',1048585,1,90,90,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210223.log',1048585,1,134,134,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210223.log',1048585,1,136,136,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20210223.log',1048585,1,146,146,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210223.log',1048585,1,147,147,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210223.log',1048585,1,149,149,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210223.log',1048585,1,169,169,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210223.log',1048585,1,171,171,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210223.log',1048585,1,173,173,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210223.log',1048585,1,175,175,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210223.log',1048585,1,176,176,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210223.log',1048585,1,177,177,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210223.log',1048585,1,178,178,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210223.log',1048585,1,187,187,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210223.log',1048585,1,190,190,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210223.log',1048585,1,191,191,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210223.log',1048585,1,193,193,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210223.log',1048585,1,204,204,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210223.log',1048585,1,205,205,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210223.log',1048585,1,206,206,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',23,1,259,13,NULL),('usage_events_20210223.log',1048585,1,207,207,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210223.log',1048585,1,208,208,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210223.log',1048585,1,209,209,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210223.log',1048585,1,210,210,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210224.log',256,1,NULL,1,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20210224.log',259,1,NULL,13,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210224.log',515,1,47,115,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210224.log',515,1,49,116,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210224.log',515,1,53,120,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210224.log',515,1,58,137,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210224.log',515,1,85,281,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,41),('usage_events_20210224.log',515,1,81,283,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,44),('usage_events_20210224.log',515,1,83,285,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210224.log',515,1,76,286,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210224.log',515,1,78,288,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',18,1,259,7,49),('usage_events_20210224.log',515,1,86,290,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210224.log',515,1,87,291,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210224.log',515,1,90,294,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,55),('usage_events_20210224.log',515,1,99,305,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210224.log',515,1,100,306,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210224.log',515,1,137,343,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210224.log',515,1,139,351,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210224.log',515,1,148,394,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210224.log',515,1,149,401,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210224.log',515,1,169,461,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210224.log',515,1,171,470,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210224.log',515,1,174,486,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210224.log',515,1,175,493,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210224.log',515,1,187,539,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210224.log',515,1,190,556,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210224.log',515,1,191,563,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210224.log',515,1,193,569,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210224.log',515,1,203,589,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210224.log',515,1,204,597,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210224.log',515,1,205,606,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210224.log',515,1,206,615,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210224.log',515,1,207,622,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210224.log',515,1,210,644,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210224.log',1048585,1,20,20,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210224.log',1048585,1,28,28,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210224.log',1048585,1,47,47,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210224.log',1048585,1,49,49,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210224.log',1048585,1,58,58,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210224.log',1048585,1,78,78,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210224.log',1048585,1,79,79,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210224.log',1048585,1,81,81,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,6,NULL),('usage_events_20210224.log',1048585,1,82,82,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210224.log',1048585,1,83,83,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210224.log',1048585,1,85,85,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210224.log',1048585,1,86,86,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210224.log',1048585,1,87,87,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210224.log',1048585,1,113,113,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210224.log',1048585,1,135,135,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210224.log',1048585,1,137,137,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210224.log',1048585,1,139,139,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210224.log',1048585,1,142,142,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210224.log',1048585,1,148,148,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210224.log',1048585,1,152,152,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210224.log',1048585,1,169,169,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210224.log',1048585,1,173,173,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210224.log',1048585,1,174,174,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210224.log',1048585,1,176,176,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210224.log',1048585,1,191,191,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210224.log',1048585,1,193,193,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210224.log',1048585,1,204,204,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210224.log',1048585,1,205,205,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210224.log',1048585,1,206,206,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',27,1,259,13,NULL),('usage_events_20210224.log',1048585,1,207,207,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210225.log',256,1,NULL,1,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210225.log',259,1,NULL,13,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210225.log',515,1,19,52,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20210225.log',515,1,47,115,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,23),('usage_events_20210225.log',515,1,53,120,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210225.log',515,1,56,135,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210225.log',515,1,76,286,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210225.log',515,1,78,288,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210225.log',515,1,84,289,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210225.log',515,1,87,291,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210225.log',515,1,134,324,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210225.log',515,1,137,343,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210225.log',515,1,139,351,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210225.log',515,1,147,387,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210225.log',515,1,148,394,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210225.log',515,1,149,401,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210225.log',515,1,169,461,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210225.log',515,1,171,470,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210225.log',515,1,173,479,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210225.log',515,1,178,514,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210225.log',515,1,185,527,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210225.log',515,1,190,556,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210225.log',515,1,204,597,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210225.log',515,1,205,606,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210225.log',515,1,206,615,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210225.log',515,1,207,622,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210225.log',515,1,208,630,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,99),('usage_events_20210225.log',1048585,1,8,8,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20210225.log',1048585,1,47,47,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,4,NULL),('usage_events_20210225.log',1048585,1,78,78,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,7,NULL),('usage_events_20210225.log',1048585,1,84,84,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210225.log',1048585,1,87,87,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210225.log',1048585,1,99,99,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210225.log',1048585,1,134,134,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210225.log',1048585,1,139,139,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210225.log',1048585,1,142,142,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210225.log',1048585,1,147,147,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210225.log',1048585,1,148,148,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210225.log',1048585,1,169,169,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210225.log',1048585,1,171,171,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210225.log',1048585,1,173,173,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210225.log',1048585,1,178,178,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210225.log',1048585,1,185,185,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210225.log',1048585,1,190,190,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210225.log',1048585,1,204,204,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210225.log',1048585,1,206,206,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,13,NULL),('usage_events_20210225.log',1048585,1,207,207,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210225.log',1048585,1,208,208,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210226.log',256,1,NULL,1,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210226.log',259,1,NULL,13,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210226.log',515,1,47,115,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20210226.log',515,1,58,137,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210226.log',515,1,85,281,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210226.log',515,1,81,283,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210226.log',515,1,78,288,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210226.log',515,1,141,361,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210226.log',515,1,148,394,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210226.log',515,1,150,407,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210226.log',515,1,151,414,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210226.log',515,1,169,461,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',19,1,259,11,78),('usage_events_20210226.log',515,1,171,470,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210226.log',515,1,174,486,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210226.log',515,1,175,493,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210226.log',515,1,177,507,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,84),('usage_events_20210226.log',515,1,185,527,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210226.log',515,1,186,533,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210226.log',515,1,188,545,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210226.log',515,1,189,551,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210226.log',515,1,190,556,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210226.log',515,1,193,569,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210226.log',515,1,205,606,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210226.log',515,1,206,615,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210226.log',515,1,207,622,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210226.log',515,1,208,630,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210226.log',515,1,209,637,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210226.log',515,1,210,644,'20210226','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210226.log',1048585,1,47,47,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210226.log',1048585,1,49,49,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210226.log',1048585,1,53,53,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210226.log',1048585,1,78,78,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210226.log',1048585,1,85,85,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210226.log',1048585,1,137,137,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210226.log',1048585,1,141,141,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210226.log',1048585,1,142,142,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210226.log',1048585,1,147,147,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210226.log',1048585,1,148,148,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,10,NULL),('usage_events_20210226.log',1048585,1,150,150,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210226.log',1048585,1,169,169,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,11,NULL),('usage_events_20210226.log',1048585,1,171,171,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210226.log',1048585,1,173,173,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210226.log',1048585,1,174,174,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210226.log',1048585,1,175,175,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210226.log',1048585,1,186,186,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210226.log',1048585,1,188,188,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210226.log',1048585,1,205,205,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210226.log',1048585,1,206,206,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210226.log',1048585,1,207,207,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210226.log',1048585,1,208,208,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210226.log',1048585,1,210,210,'20210226','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210227.log',515,1,46,114,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210227.log',515,1,53,120,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',8,1,259,4,28),('usage_events_20210227.log',515,1,58,137,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210227.log',515,1,83,285,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210227.log',515,1,78,288,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210227.log',515,1,89,293,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210227.log',515,1,133,318,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,63),('usage_events_20210227.log',515,1,137,343,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210227.log',515,1,147,387,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20210227.log',515,1,149,401,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210227.log',515,1,150,407,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210227.log',515,1,169,461,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210227.log',515,1,173,479,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210227.log',515,1,177,507,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,84),('usage_events_20210227.log',515,1,187,539,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210227.log',515,1,204,597,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210227.log',515,1,205,606,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210227.log',515,1,206,615,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210227.log',515,1,207,622,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210227.log',515,1,208,630,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210227.log',515,1,209,637,'20210227','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210227.log',1048585,1,19,19,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210227.log',1048585,1,49,49,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210227.log',1048585,1,53,53,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,4,NULL),('usage_events_20210227.log',1048585,1,56,56,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210227.log',1048585,1,58,58,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210227.log',1048585,1,78,78,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210227.log',1048585,1,83,83,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210227.log',1048585,1,89,89,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210227.log',1048585,1,133,133,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210227.log',1048585,1,137,137,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210227.log',1048585,1,146,146,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210227.log',1048585,1,147,147,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210227.log',1048585,1,148,148,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210227.log',1048585,1,152,152,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210227.log',1048585,1,169,169,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210227.log',1048585,1,173,173,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210227.log',1048585,1,177,177,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210227.log',1048585,1,204,204,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210227.log',1048585,1,205,205,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210227.log',1048585,1,206,206,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210227.log',1048585,1,207,207,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210227.log',1048585,1,208,208,'20210227','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210228.log',256,1,NULL,1,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,1,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,2,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,3,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,4,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,5,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,6,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,7,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,8,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,9,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,10,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,11,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,12,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210228.log',259,1,NULL,13,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210228.log',515,1,1,3,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210228.log',515,1,8,33,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210228.log',515,1,51,118,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210228.log',515,1,53,120,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210228.log',515,1,55,134,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210228.log',515,1,58,137,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210228.log',515,1,79,282,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210228.log',515,1,76,286,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210228.log',515,1,78,288,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210228.log',515,1,84,289,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210228.log',515,1,86,290,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210228.log',515,1,87,291,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20210228.log',515,1,146,379,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210228.log',515,1,148,394,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210228.log',515,1,150,407,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210228.log',515,1,169,461,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',12,1,259,11,78),('usage_events_20210228.log',515,1,175,493,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210228.log',515,1,186,533,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210228.log',515,1,187,539,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210228.log',515,1,203,589,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210228.log',515,1,205,606,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210228.log',515,1,206,615,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210228.log',515,1,207,622,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210228.log',515,1,209,637,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210228.log',515,1,210,644,'20210228','202102',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210228.log',1048585,1,1,1,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210228.log',1048585,1,4,4,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210228.log',1048585,1,5,5,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210228.log',1048585,1,6,6,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210228.log',1048585,1,7,7,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210228.log',1048585,1,8,8,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210228.log',1048585,1,14,14,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210228.log',1048585,1,19,19,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210228.log',1048585,1,20,20,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210228.log',1048585,1,21,21,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210228.log',1048585,1,22,22,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210228.log',1048585,1,40,40,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210228.log',1048585,1,79,79,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210228.log',1048585,1,87,87,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210228.log',1048585,1,89,89,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210228.log',1048585,1,146,146,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210228.log',1048585,1,148,148,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210228.log',1048585,1,150,150,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210228.log',1048585,1,169,169,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210228.log',1048585,1,175,175,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210228.log',1048585,1,177,177,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210228.log',1048585,1,187,187,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210228.log',1048585,1,203,203,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210228.log',1048585,1,204,204,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210228.log',1048585,1,205,205,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210228.log',1048585,1,206,206,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210228.log',1048585,1,207,207,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210228.log',1048585,1,208,208,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210228.log',1048585,1,209,209,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210228.log',1048585,1,210,210,'20210228','202102',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210301.log',256,1,NULL,1,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20210301.log',259,1,NULL,13,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210301.log',515,1,58,137,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210301.log',515,1,81,283,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210301.log',515,1,83,285,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210301.log',515,1,78,288,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210301.log',515,1,114,308,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210301.log',515,1,133,318,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210301.log',515,1,134,324,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210301.log',515,1,135,330,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210301.log',515,1,148,394,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210301.log',515,1,150,407,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210301.log',515,1,169,461,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210301.log',515,1,175,493,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20210301.log',515,1,177,507,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210301.log',515,1,186,533,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210301.log',515,1,190,556,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210301.log',515,1,191,563,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210301.log',515,1,206,615,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210301.log',515,1,207,622,'20210301','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210301.log',1048585,1,31,31,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210301.log',1048585,1,58,58,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210301.log',1048585,1,78,78,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210301.log',1048585,1,87,87,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210301.log',1048585,1,91,91,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210301.log',1048585,1,135,135,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210301.log',1048585,1,148,148,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210301.log',1048585,1,175,175,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210301.log',1048585,1,178,178,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210301.log',1048585,1,190,190,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210301.log',1048585,1,203,203,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210301.log',1048585,1,206,206,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',13,1,259,13,NULL),('usage_events_20210301.log',1048585,1,207,207,'20210301','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210302.log',515,1,5,30,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,4),('usage_events_20210302.log',515,1,8,33,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210302.log',515,1,33,81,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,18),('usage_events_20210302.log',515,1,56,135,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210302.log',515,1,81,283,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210302.log',515,1,78,288,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210302.log',515,1,91,295,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210302.log',515,1,115,309,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210302.log',515,1,133,318,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210302.log',515,1,137,343,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210302.log',515,1,147,387,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210302.log',515,1,148,394,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210302.log',515,1,151,414,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210302.log',515,1,169,461,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20210302.log',515,1,171,470,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210302.log',515,1,175,493,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210302.log',515,1,176,500,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210302.log',515,1,189,551,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210302.log',515,1,206,615,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210302.log',515,1,209,637,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210302.log',515,1,210,644,'20210302','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210302.log',1048585,1,5,5,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210302.log',1048585,1,8,8,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210302.log',1048585,1,33,33,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210302.log',1048585,1,81,81,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210302.log',1048585,1,142,142,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210302.log',1048585,1,147,147,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210302.log',1048585,1,148,148,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210302.log',1048585,1,149,149,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210302.log',1048585,1,150,150,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210302.log',1048585,1,151,151,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210302.log',1048585,1,169,169,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210302.log',1048585,1,171,171,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210302.log',1048585,1,175,175,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210302.log',1048585,1,206,206,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210302.log',1048585,1,207,207,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210302.log',1048585,1,209,209,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210302.log',1048585,1,210,210,'20210302','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210303.log',256,1,NULL,1,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210303.log',259,1,NULL,8,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210303.log',515,1,31,79,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210303.log',515,1,78,288,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210303.log',515,1,89,293,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210303.log',515,1,90,294,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210303.log',515,1,91,295,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210303.log',515,1,114,308,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210303.log',515,1,137,343,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210303.log',515,1,142,367,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210303.log',515,1,147,387,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20210303.log',515,1,149,401,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210303.log',515,1,151,414,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210303.log',515,1,169,461,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',12,1,259,11,78),('usage_events_20210303.log',515,1,171,470,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,79),('usage_events_20210303.log',515,1,175,493,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210303.log',515,1,178,514,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210303.log',515,1,185,527,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20210303.log',515,1,186,533,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210303.log',515,1,191,563,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210303.log',515,1,193,569,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210303.log',515,1,203,589,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210303.log',515,1,204,597,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210303.log',515,1,206,615,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',13,1,259,13,97),('usage_events_20210303.log',515,1,207,622,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210303.log',515,1,208,630,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210303.log',515,1,209,637,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,100),('usage_events_20210303.log',515,1,210,644,'20210303','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210303.log',1048585,1,78,78,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210303.log',1048585,1,81,81,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210303.log',1048585,1,89,89,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210303.log',1048585,1,91,91,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210303.log',1048585,1,114,114,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210303.log',1048585,1,137,137,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210303.log',1048585,1,142,142,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210303.log',1048585,1,147,147,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210303.log',1048585,1,148,148,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210303.log',1048585,1,149,149,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210303.log',1048585,1,150,150,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210303.log',1048585,1,151,151,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210303.log',1048585,1,169,169,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210303.log',1048585,1,171,171,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210303.log',1048585,1,175,175,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210303.log',1048585,1,185,185,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210303.log',1048585,1,190,190,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210303.log',1048585,1,191,191,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210303.log',1048585,1,193,193,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210303.log',1048585,1,203,203,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210303.log',1048585,1,204,204,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210303.log',1048585,1,206,206,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',17,1,259,13,NULL),('usage_events_20210303.log',1048585,1,207,207,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210303.log',1048585,1,208,208,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210303.log',1048585,1,209,209,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210303.log',1048585,1,210,210,'20210303','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210304.log',256,1,NULL,1,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210304.log',259,1,NULL,12,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210304.log',259,1,NULL,13,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210304.log',515,1,31,79,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210304.log',515,1,33,81,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210304.log',515,1,58,137,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210304.log',515,1,78,288,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210304.log',515,1,137,343,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210304.log',515,1,148,394,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210304.log',515,1,149,401,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210304.log',515,1,151,414,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20210304.log',515,1,169,461,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210304.log',515,1,171,470,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210304.log',515,1,173,479,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210304.log',515,1,175,493,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210304.log',515,1,177,507,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210304.log',515,1,178,514,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210304.log',515,1,186,533,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210304.log',515,1,193,569,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210304.log',515,1,203,589,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210304.log',515,1,204,597,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210304.log',515,1,206,615,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210304.log',515,1,208,630,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210304.log',515,1,210,644,'20210304','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210304.log',1048585,1,33,33,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210304.log',1048585,1,58,58,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210304.log',1048585,1,78,78,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210304.log',1048585,1,149,149,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210304.log',1048585,1,151,151,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210304.log',1048585,1,152,152,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210304.log',1048585,1,169,169,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210304.log',1048585,1,171,171,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210304.log',1048585,1,177,177,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210304.log',1048585,1,187,187,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210304.log',1048585,1,191,191,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210304.log',1048585,1,193,193,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210304.log',1048585,1,204,204,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210304.log',1048585,1,206,206,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210304.log',1048585,1,208,208,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210304.log',1048585,1,210,210,'20210304','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210305.log',256,1,NULL,1,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210305.log',259,1,NULL,13,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210305.log',515,1,31,79,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210305.log',515,1,46,114,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210305.log',515,1,47,115,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210305.log',515,1,53,120,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210305.log',515,1,81,283,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210305.log',515,1,76,286,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210305.log',515,1,77,287,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210305.log',515,1,78,288,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210305.log',515,1,87,291,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210305.log',515,1,99,305,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,57),('usage_events_20210305.log',515,1,113,307,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210305.log',515,1,148,394,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20210305.log',515,1,169,461,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210305.log',515,1,175,493,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210305.log',515,1,177,507,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210305.log',515,1,185,527,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210305.log',515,1,190,556,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210305.log',515,1,193,569,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210305.log',515,1,204,597,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210305.log',515,1,205,606,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210305.log',515,1,206,615,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210305.log',515,1,207,622,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210305.log',515,1,209,637,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210305.log',515,1,210,644,'20210305','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210305.log',1048585,1,53,53,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210305.log',1048585,1,77,77,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210305.log',1048585,1,78,78,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210305.log',1048585,1,81,81,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210305.log',1048585,1,137,137,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210305.log',1048585,1,148,148,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210305.log',1048585,1,175,175,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210305.log',1048585,1,177,177,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210305.log',1048585,1,185,185,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210305.log',1048585,1,193,193,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210305.log',1048585,1,204,204,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210305.log',1048585,1,205,205,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210305.log',1048585,1,206,206,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210305.log',1048585,1,207,207,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210305.log',1048585,1,208,208,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210305.log',1048585,1,209,209,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210305.log',1048585,1,210,210,'20210305','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210306.log',259,1,NULL,6,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210306.log',259,1,NULL,13,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210306.log',515,1,50,117,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210306.log',515,1,53,120,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210306.log',515,1,58,137,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210306.log',515,1,81,283,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210306.log',515,1,78,288,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210306.log',515,1,84,289,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210306.log',515,1,87,291,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210306.log',515,1,99,305,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210306.log',515,1,115,309,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210306.log',515,1,137,343,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210306.log',515,1,148,394,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210306.log',515,1,169,461,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210306.log',515,1,171,470,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210306.log',515,1,173,479,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210306.log',515,1,174,486,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210306.log',515,1,206,615,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210306.log',515,1,207,622,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210306.log',515,1,209,637,'20210306','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210306.log',1048585,1,50,50,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210306.log',1048585,1,58,58,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210306.log',1048585,1,59,59,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210306.log',1048585,1,78,78,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210306.log',1048585,1,81,81,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20210306.log',1048585,1,84,84,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210306.log',1048585,1,87,87,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210306.log',1048585,1,147,147,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210306.log',1048585,1,148,148,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210306.log',1048585,1,149,149,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210306.log',1048585,1,171,171,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210306.log',1048585,1,173,173,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210306.log',1048585,1,206,206,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210306.log',1048585,1,207,207,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210306.log',1048585,1,209,209,'20210306','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210307.log',515,1,8,33,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210307.log',515,1,32,80,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210307.log',515,1,33,81,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20210307.log',515,1,34,82,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210307.log',515,1,53,120,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210307.log',515,1,58,137,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210307.log',515,1,85,281,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210307.log',515,1,79,282,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210307.log',515,1,81,283,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,44),('usage_events_20210307.log',515,1,78,288,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210307.log',515,1,84,289,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210307.log',515,1,87,291,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210307.log',515,1,91,295,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210307.log',515,1,99,305,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210307.log',515,1,136,336,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20210307.log',515,1,148,394,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210307.log',515,1,149,401,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210307.log',515,1,169,461,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210307.log',515,1,171,470,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210307.log',515,1,173,479,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210307.log',515,1,174,486,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210307.log',515,1,175,493,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210307.log',515,1,178,514,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210307.log',515,1,187,539,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210307.log',515,1,205,606,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210307.log',515,1,206,615,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210307.log',515,1,207,622,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210307.log',515,1,208,630,'20210307','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210307.log',1048585,1,33,33,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,3,NULL),('usage_events_20210307.log',1048585,1,34,34,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210307.log',1048585,1,53,53,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210307.log',1048585,1,58,58,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,5,NULL),('usage_events_20210307.log',1048585,1,78,78,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210307.log',1048585,1,79,79,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210307.log',1048585,1,81,81,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20210307.log',1048585,1,99,99,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210307.log',1048585,1,133,133,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210307.log',1048585,1,148,148,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210307.log',1048585,1,149,149,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210307.log',1048585,1,150,150,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210307.log',1048585,1,169,169,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210307.log',1048585,1,174,174,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210307.log',1048585,1,175,175,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210307.log',1048585,1,178,178,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210307.log',1048585,1,187,187,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210307.log',1048585,1,193,193,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210307.log',1048585,1,205,205,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210307.log',1048585,1,206,206,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210307.log',1048585,1,207,207,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210307.log',1048585,1,208,208,'20210307','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210308.log',256,1,NULL,1,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210308.log',515,1,19,52,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210308.log',515,1,31,79,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210308.log',515,1,33,81,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210308.log',515,1,46,114,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210308.log',515,1,53,120,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210308.log',515,1,58,137,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210308.log',515,1,81,283,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210308.log',515,1,78,288,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',14,1,259,7,49),('usage_events_20210308.log',515,1,86,290,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210308.log',515,1,87,291,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210308.log',515,1,90,294,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210308.log',515,1,114,308,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210308.log',515,1,133,318,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210308.log',515,1,137,343,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210308.log',515,1,148,394,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210308.log',515,1,149,401,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210308.log',515,1,169,461,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,78),('usage_events_20210308.log',515,1,171,470,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210308.log',515,1,174,486,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,81),('usage_events_20210308.log',515,1,175,493,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210308.log',515,1,176,500,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210308.log',515,1,177,507,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210308.log',515,1,178,514,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210308.log',515,1,187,539,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210308.log',515,1,190,556,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210308.log',515,1,204,597,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210308.log',515,1,205,606,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210308.log',515,1,206,615,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210308.log',515,1,207,622,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210308.log',515,1,208,630,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210308.log',515,1,209,637,'20210308','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210308.log',1048585,1,19,19,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210308.log',1048585,1,31,31,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210308.log',1048585,1,33,33,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210308.log',1048585,1,49,49,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210308.log',1048585,1,58,58,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210308.log',1048585,1,78,78,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210308.log',1048585,1,81,81,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210308.log',1048585,1,87,87,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210308.log',1048585,1,137,137,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210308.log',1048585,1,169,169,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210308.log',1048585,1,171,171,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210308.log',1048585,1,174,174,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,11,NULL),('usage_events_20210308.log',1048585,1,175,175,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210308.log',1048585,1,176,176,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210308.log',1048585,1,178,178,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210308.log',1048585,1,187,187,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210308.log',1048585,1,205,205,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210308.log',1048585,1,206,206,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,13,NULL),('usage_events_20210308.log',1048585,1,207,207,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210308.log',1048585,1,208,208,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210308.log',1048585,1,209,209,'20210308','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210310.log',259,1,NULL,5,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210310.log',259,1,NULL,9,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210310.log',259,1,NULL,11,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210310.log',259,1,NULL,12,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210310.log',259,1,NULL,13,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210310.log',515,1,7,32,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210310.log',515,1,46,114,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210310.log',515,1,52,119,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210310.log',515,1,53,120,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210310.log',515,1,54,133,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210310.log',515,1,79,282,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210310.log',515,1,81,283,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210310.log',515,1,78,288,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210310.log',515,1,84,289,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210310.log',515,1,87,291,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210310.log',515,1,90,294,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20210310.log',515,1,114,308,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210310.log',515,1,133,318,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20210310.log',515,1,137,343,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210310.log',515,1,142,367,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210310.log',515,1,148,394,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210310.log',515,1,150,407,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210310.log',515,1,151,414,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210310.log',515,1,169,461,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210310.log',515,1,171,470,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210310.log',515,1,173,479,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210310.log',515,1,177,507,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210310.log',515,1,178,514,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20210310.log',515,1,187,539,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210310.log',515,1,190,556,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210310.log',515,1,204,597,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210310.log',515,1,205,606,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210310.log',515,1,206,615,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210310.log',515,1,207,622,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210310.log',515,1,209,637,'20210310','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210310.log',1048585,1,53,53,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210310.log',1048585,1,54,54,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210310.log',1048585,1,58,58,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210310.log',1048585,1,78,78,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210310.log',1048585,1,84,84,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210310.log',1048585,1,87,87,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210310.log',1048585,1,133,133,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210310.log',1048585,1,137,137,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210310.log',1048585,1,147,147,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210310.log',1048585,1,150,150,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210310.log',1048585,1,171,171,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210310.log',1048585,1,173,173,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210310.log',1048585,1,178,178,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210310.log',1048585,1,187,187,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210310.log',1048585,1,190,190,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210310.log',1048585,1,205,205,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210310.log',1048585,1,206,206,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210310.log',1048585,1,207,207,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210310.log',1048585,1,209,209,'20210310','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210309.log',256,1,NULL,1,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210309.log',259,1,NULL,5,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210309.log',259,1,NULL,7,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210309.log',515,1,20,53,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210309.log',515,1,79,282,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210309.log',515,1,78,288,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',13,1,259,7,49),('usage_events_20210309.log',515,1,88,292,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210309.log',515,1,91,295,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210309.log',515,1,99,305,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210309.log',515,1,125,310,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210309.log',515,1,135,330,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210309.log',515,1,141,361,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210309.log',515,1,142,367,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210309.log',515,1,147,387,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210309.log',515,1,148,394,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210309.log',515,1,149,401,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210309.log',515,1,150,407,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210309.log',515,1,169,461,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210309.log',515,1,173,479,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210309.log',515,1,175,493,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210309.log',515,1,187,539,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210309.log',515,1,190,556,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210309.log',515,1,191,563,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210309.log',515,1,204,597,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210309.log',515,1,205,606,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210309.log',515,1,206,615,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210309.log',515,1,207,622,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210309.log',515,1,208,630,'20210309','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210309.log',1048585,1,31,31,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210309.log',1048585,1,59,59,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210309.log',1048585,1,78,78,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210309.log',1048585,1,141,141,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210309.log',1048585,1,142,142,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210309.log',1048585,1,148,148,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210309.log',1048585,1,152,152,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210309.log',1048585,1,173,173,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210309.log',1048585,1,174,174,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210309.log',1048585,1,203,203,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210309.log',1048585,1,204,204,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210309.log',1048585,1,206,206,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210309.log',1048585,1,207,207,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210309.log',1048585,1,208,208,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210309.log',1048585,1,209,209,'20210309','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210311.log',256,1,NULL,1,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210311.log',259,1,NULL,13,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210311.log',515,1,4,19,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20210311.log',515,1,8,33,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210311.log',515,1,20,53,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210311.log',515,1,56,135,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210311.log',515,1,81,283,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210311.log',515,1,77,287,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210311.log',515,1,78,288,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210311.log',515,1,87,291,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210311.log',515,1,88,292,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210311.log',515,1,89,293,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210311.log',515,1,90,294,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20210311.log',515,1,91,295,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210311.log',515,1,99,305,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210311.log',515,1,113,307,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210311.log',515,1,136,336,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210311.log',515,1,137,343,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210311.log',515,1,141,361,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20210311.log',515,1,148,394,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210311.log',515,1,149,401,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20210311.log',515,1,150,407,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210311.log',515,1,169,461,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210311.log',515,1,171,470,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210311.log',515,1,175,493,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210311.log',515,1,177,507,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210311.log',515,1,186,533,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210311.log',515,1,187,539,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210311.log',515,1,205,606,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210311.log',515,1,206,615,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210311.log',515,1,207,622,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210311.log',515,1,209,637,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210311.log',515,1,210,644,'20210311','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210311.log',1048585,1,8,8,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210311.log',1048585,1,20,20,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210311.log',1048585,1,53,53,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210311.log',1048585,1,58,58,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210311.log',1048585,1,59,59,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210311.log',1048585,1,77,77,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210311.log',1048585,1,87,87,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210311.log',1048585,1,88,88,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210311.log',1048585,1,89,89,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210311.log',1048585,1,91,91,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210311.log',1048585,1,133,133,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210311.log',1048585,1,137,137,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210311.log',1048585,1,148,148,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210311.log',1048585,1,150,150,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210311.log',1048585,1,169,169,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210311.log',1048585,1,175,175,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210311.log',1048585,1,177,177,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210311.log',1048585,1,178,178,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210311.log',1048585,1,186,186,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210311.log',1048585,1,187,187,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210311.log',1048585,1,205,205,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210311.log',1048585,1,206,206,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210311.log',1048585,1,207,207,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210311.log',1048585,1,209,209,'20210311','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210312.log',256,1,NULL,1,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,1,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,2,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,3,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,4,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,5,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,6,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,7,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,8,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,9,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,10,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,11,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,12,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210312.log',259,1,NULL,13,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210312.log',515,1,1,3,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210312.log',515,1,34,82,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210312.log',515,1,46,114,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210312.log',515,1,51,118,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20210312.log',515,1,81,283,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210312.log',515,1,83,285,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210312.log',515,1,78,288,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210312.log',515,1,114,308,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,60),('usage_events_20210312.log',515,1,133,318,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210312.log',515,1,150,407,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210312.log',515,1,152,423,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210312.log',515,1,169,461,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210312.log',515,1,171,470,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210312.log',515,1,173,479,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210312.log',515,1,174,486,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210312.log',515,1,175,493,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210312.log',515,1,176,500,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210312.log',515,1,177,507,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210312.log',515,1,178,514,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210312.log',515,1,190,556,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210312.log',515,1,193,569,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210312.log',515,1,204,597,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210312.log',515,1,205,606,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210312.log',515,1,206,615,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',15,1,259,13,97),('usage_events_20210312.log',515,1,207,622,'20210312','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210312.log',1048585,1,1,1,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210312.log',1048585,1,4,4,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210312.log',1048585,1,5,5,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210312.log',1048585,1,6,6,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210312.log',1048585,1,7,7,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210312.log',1048585,1,8,8,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210312.log',1048585,1,14,14,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210312.log',1048585,1,19,19,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210312.log',1048585,1,20,20,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210312.log',1048585,1,21,21,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210312.log',1048585,1,22,22,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210312.log',1048585,1,34,34,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210312.log',1048585,1,40,40,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210312.log',1048585,1,51,51,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210312.log',1048585,1,58,58,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20210312.log',1048585,1,78,78,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210312.log',1048585,1,81,81,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210312.log',1048585,1,133,133,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210312.log',1048585,1,137,137,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210312.log',1048585,1,150,150,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210312.log',1048585,1,171,171,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210312.log',1048585,1,173,173,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210312.log',1048585,1,174,174,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210312.log',1048585,1,175,175,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210312.log',1048585,1,177,177,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210312.log',1048585,1,178,178,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210312.log',1048585,1,188,188,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210312.log',1048585,1,190,190,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210312.log',1048585,1,203,203,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210312.log',1048585,1,204,204,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210312.log',1048585,1,205,205,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210312.log',1048585,1,206,206,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210312.log',1048585,1,207,207,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210312.log',1048585,1,208,208,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210312.log',1048585,1,209,209,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210312.log',1048585,1,210,210,'20210312','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210313.log',256,1,NULL,1,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20210313.log',259,1,NULL,6,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210313.log',259,1,NULL,11,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210313.log',515,1,47,115,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210313.log',515,1,51,118,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210313.log',515,1,79,282,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210313.log',515,1,81,283,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210313.log',515,1,78,288,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210313.log',515,1,86,290,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210313.log',515,1,99,305,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210313.log',515,1,113,307,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20210313.log',515,1,137,343,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,9,67),('usage_events_20210313.log',515,1,148,394,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210313.log',515,1,149,401,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',10,1,259,10,74),('usage_events_20210313.log',515,1,152,423,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210313.log',515,1,169,461,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210313.log',515,1,171,470,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210313.log',515,1,175,493,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210313.log',515,1,176,500,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210313.log',515,1,187,539,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,88),('usage_events_20210313.log',515,1,189,551,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210313.log',515,1,191,563,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210313.log',515,1,193,569,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210313.log',515,1,206,615,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210313.log',515,1,207,622,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210313.log',515,1,208,630,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210313.log',515,1,209,637,'20210313','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210313.log',1048585,1,34,34,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210313.log',1048585,1,51,51,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210313.log',1048585,1,58,58,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210313.log',1048585,1,78,78,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210313.log',1048585,1,81,81,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210313.log',1048585,1,84,84,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210313.log',1048585,1,86,86,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210313.log',1048585,1,113,113,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210313.log',1048585,1,137,137,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210313.log',1048585,1,149,149,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210313.log',1048585,1,150,150,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210313.log',1048585,1,152,152,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210313.log',1048585,1,169,169,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210313.log',1048585,1,171,171,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210313.log',1048585,1,175,175,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210313.log',1048585,1,176,176,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210313.log',1048585,1,177,177,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210313.log',1048585,1,187,187,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210313.log',1048585,1,191,191,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210313.log',1048585,1,193,193,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210313.log',1048585,1,206,206,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210313.log',1048585,1,207,207,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210313.log',1048585,1,210,210,'20210313','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210314.log',256,1,NULL,1,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,1,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,2,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,3,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,4,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,5,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,6,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,7,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210314.log',259,1,NULL,13,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210314.log',515,1,7,32,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20210314.log',515,1,19,52,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210314.log',515,1,53,120,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210314.log',515,1,54,133,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210314.log',515,1,83,285,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210314.log',515,1,78,288,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210314.log',515,1,87,291,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210314.log',515,1,99,305,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210314.log',515,1,113,307,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210314.log',515,1,114,308,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210314.log',515,1,139,351,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210314.log',515,1,148,394,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210314.log',515,1,149,401,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210314.log',515,1,150,407,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210314.log',515,1,176,500,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210314.log',515,1,191,563,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210314.log',515,1,204,597,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210314.log',515,1,206,615,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210314.log',515,1,209,637,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210314.log',515,1,210,644,'20210314','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210314.log',1048585,1,53,53,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210314.log',1048585,1,54,54,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210314.log',1048585,1,78,78,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210314.log',1048585,1,83,83,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210314.log',1048585,1,86,86,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210314.log',1048585,1,114,114,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210314.log',1048585,1,150,150,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210314.log',1048585,1,176,176,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210314.log',1048585,1,191,191,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210314.log',1048585,1,203,203,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210314.log',1048585,1,204,204,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210314.log',1048585,1,205,205,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210314.log',1048585,1,206,206,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,13,NULL),('usage_events_20210314.log',1048585,1,207,207,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210314.log',1048585,1,208,208,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210314.log',1048585,1,209,209,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210314.log',1048585,1,210,210,'20210314','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210315.log',256,1,NULL,1,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210315.log',259,1,NULL,9,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210315.log',259,1,NULL,11,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210315.log',259,1,NULL,12,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210315.log',259,1,NULL,13,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210315.log',515,1,6,31,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210315.log',515,1,51,118,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210315.log',515,1,58,137,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210315.log',515,1,79,282,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210315.log',515,1,81,283,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210315.log',515,1,82,284,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210315.log',515,1,78,288,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210315.log',515,1,89,293,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210315.log',515,1,113,307,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210315.log',515,1,136,336,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210315.log',515,1,137,343,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210315.log',515,1,147,387,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20210315.log',515,1,148,394,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210315.log',515,1,149,401,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210315.log',515,1,150,407,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210315.log',515,1,151,414,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210315.log',515,1,171,470,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210315.log',515,1,173,479,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210315.log',515,1,174,486,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210315.log',515,1,176,500,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210315.log',515,1,186,533,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210315.log',515,1,187,539,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210315.log',515,1,190,556,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210315.log',515,1,193,569,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210315.log',515,1,204,597,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210315.log',515,1,205,606,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210315.log',515,1,206,615,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',14,1,259,13,97),('usage_events_20210315.log',515,1,207,622,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210315.log',515,1,210,644,'20210315','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210315.log',1048585,1,51,51,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210315.log',1048585,1,56,56,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210315.log',1048585,1,58,58,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210315.log',1048585,1,77,77,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210315.log',1048585,1,78,78,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210315.log',1048585,1,81,81,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210315.log',1048585,1,82,82,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210315.log',1048585,1,135,135,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210315.log',1048585,1,136,136,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210315.log',1048585,1,137,137,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210315.log',1048585,1,139,139,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210315.log',1048585,1,147,147,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210315.log',1048585,1,148,148,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210315.log',1048585,1,150,150,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210315.log',1048585,1,169,169,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210315.log',1048585,1,171,171,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210315.log',1048585,1,173,173,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210315.log',1048585,1,187,187,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210315.log',1048585,1,190,190,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210315.log',1048585,1,191,191,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210315.log',1048585,1,193,193,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210315.log',1048585,1,204,204,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210315.log',1048585,1,205,205,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210315.log',1048585,1,206,206,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210315.log',1048585,1,207,207,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210315.log',1048585,1,208,208,'20210315','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210316.log',256,1,NULL,1,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',24,NULL,NULL,NULL,NULL),('usage_events_20210316.log',259,1,NULL,7,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210316.log',259,1,NULL,10,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210316.log',259,1,NULL,12,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210316.log',259,1,NULL,13,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210316.log',515,1,34,82,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210316.log',515,1,49,116,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210316.log',515,1,51,118,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210316.log',515,1,53,120,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210316.log',515,1,54,133,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210316.log',515,1,58,137,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210316.log',515,1,79,282,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20210316.log',515,1,76,286,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210316.log',515,1,77,287,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210316.log',515,1,78,288,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210316.log',515,1,87,291,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210316.log',515,1,91,295,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210316.log',515,1,113,307,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210316.log',515,1,114,308,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210316.log',515,1,137,343,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210316.log',515,1,146,379,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210316.log',515,1,147,387,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210316.log',515,1,148,394,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',19,1,259,10,73),('usage_events_20210316.log',515,1,152,423,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,77),('usage_events_20210316.log',515,1,169,461,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210316.log',515,1,171,470,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210316.log',515,1,173,479,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210316.log',515,1,175,493,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210316.log',515,1,178,514,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210316.log',515,1,185,527,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20210316.log',515,1,189,551,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210316.log',515,1,190,556,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210316.log',515,1,193,569,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210316.log',515,1,203,589,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210316.log',515,1,204,597,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210316.log',515,1,205,606,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210316.log',515,1,206,615,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',17,1,259,13,97),('usage_events_20210316.log',515,1,207,622,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210316.log',515,1,208,630,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210316.log',515,1,210,644,'20210316','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210316.log',1048585,1,51,51,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210316.log',1048585,1,54,54,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210316.log',1048585,1,58,58,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210316.log',1048585,1,77,77,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210316.log',1048585,1,78,78,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210316.log',1048585,1,79,79,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210316.log',1048585,1,81,81,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210316.log',1048585,1,89,89,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210316.log',1048585,1,91,91,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210316.log',1048585,1,146,146,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210316.log',1048585,1,148,148,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210316.log',1048585,1,152,152,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210316.log',1048585,1,169,169,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210316.log',1048585,1,171,171,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210316.log',1048585,1,173,173,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210316.log',1048585,1,178,178,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210316.log',1048585,1,185,185,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210316.log',1048585,1,190,190,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210316.log',1048585,1,191,191,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210316.log',1048585,1,193,193,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210316.log',1048585,1,203,203,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',21,1,259,13,NULL),('usage_events_20210316.log',1048585,1,204,204,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210316.log',1048585,1,205,205,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210316.log',1048585,1,206,206,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,13,NULL),('usage_events_20210316.log',1048585,1,207,207,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210316.log',1048585,1,208,208,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210316.log',1048585,1,209,209,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210316.log',1048585,1,210,210,'20210316','202103',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210317.log',256,1,NULL,1,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',28,NULL,NULL,NULL,NULL),('usage_events_20210317.log',259,1,NULL,12,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210317.log',259,1,NULL,13,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210317.log',515,1,50,117,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210317.log',515,1,51,118,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210317.log',515,1,54,133,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210317.log',515,1,59,138,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210317.log',515,1,81,283,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210317.log',515,1,78,288,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210317.log',515,1,84,289,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210317.log',515,1,86,290,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210317.log',515,1,91,295,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210317.log',515,1,125,310,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210317.log',515,1,135,330,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210317.log',515,1,137,343,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210317.log',515,1,147,387,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210317.log',515,1,148,394,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210317.log',515,1,149,401,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210317.log',515,1,150,407,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210317.log',515,1,152,423,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,77),('usage_events_20210317.log',515,1,171,470,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210317.log',515,1,174,486,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210317.log',515,1,175,493,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,82),('usage_events_20210317.log',515,1,177,507,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210317.log',515,1,185,527,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210317.log',515,1,186,533,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210317.log',515,1,190,556,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210317.log',515,1,193,569,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210317.log',515,1,203,589,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210317.log',515,1,204,597,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210317.log',515,1,205,606,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210317.log',515,1,206,615,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',16,1,259,13,97),('usage_events_20210317.log',515,1,207,622,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210317.log',515,1,208,630,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210317.log',515,1,209,637,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210317.log',515,1,210,644,'20210317','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210317.log',1048585,1,51,51,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210317.log',1048585,1,58,58,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210317.log',1048585,1,78,78,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210317.log',1048585,1,79,79,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210317.log',1048585,1,81,81,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210317.log',1048585,1,84,84,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210317.log',1048585,1,86,86,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210317.log',1048585,1,87,87,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210317.log',1048585,1,147,147,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210317.log',1048585,1,149,149,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210317.log',1048585,1,150,150,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210317.log',1048585,1,152,152,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210317.log',1048585,1,171,171,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210317.log',1048585,1,174,174,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210317.log',1048585,1,177,177,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210317.log',1048585,1,178,178,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210317.log',1048585,1,185,185,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210317.log',1048585,1,186,186,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210317.log',1048585,1,187,187,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210317.log',1048585,1,188,188,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210317.log',1048585,1,189,189,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210317.log',1048585,1,190,190,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,12,NULL),('usage_events_20210317.log',1048585,1,191,191,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210317.log',1048585,1,193,193,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210317.log',1048585,1,203,203,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,13,NULL),('usage_events_20210317.log',1048585,1,204,204,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210317.log',1048585,1,205,205,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210317.log',1048585,1,206,206,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',19,1,259,13,NULL),('usage_events_20210317.log',1048585,1,207,207,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210317.log',1048585,1,208,208,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210317.log',1048585,1,209,209,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210317.log',1048585,1,210,210,'20210317','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210318.log',256,1,NULL,1,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210318.log',259,1,NULL,10,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210318.log',259,1,NULL,13,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210318.log',515,1,5,30,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210318.log',515,1,51,118,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210318.log',515,1,58,137,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210318.log',515,1,76,286,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210318.log',515,1,78,288,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210318.log',515,1,86,290,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210318.log',515,1,91,295,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210318.log',515,1,99,305,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210318.log',515,1,125,310,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210318.log',515,1,133,318,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210318.log',515,1,137,343,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210318.log',515,1,139,351,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210318.log',515,1,148,394,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210318.log',515,1,149,401,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210318.log',515,1,150,407,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,75),('usage_events_20210318.log',515,1,152,423,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,77),('usage_events_20210318.log',515,1,169,461,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210318.log',515,1,175,493,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20210318.log',515,1,176,500,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210318.log',515,1,178,514,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210318.log',515,1,185,527,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210318.log',515,1,186,533,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210318.log',515,1,187,539,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210318.log',515,1,188,545,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210318.log',515,1,189,551,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210318.log',515,1,190,556,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210318.log',515,1,191,563,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210318.log',515,1,193,569,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210318.log',515,1,204,597,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210318.log',515,1,206,615,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',16,1,259,13,97),('usage_events_20210318.log',515,1,207,622,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210318.log',515,1,209,637,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210318.log',515,1,210,644,'20210318','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210318.log',1048585,1,49,49,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210318.log',1048585,1,51,51,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210318.log',1048585,1,58,58,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210318.log',1048585,1,78,78,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210318.log',1048585,1,79,79,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210318.log',1048585,1,87,87,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210318.log',1048585,1,133,133,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210318.log',1048585,1,148,148,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210318.log',1048585,1,150,150,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210318.log',1048585,1,152,152,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210318.log',1048585,1,169,169,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210318.log',1048585,1,175,175,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210318.log',1048585,1,176,176,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210318.log',1048585,1,178,178,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210318.log',1048585,1,185,185,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210318.log',1048585,1,186,186,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210318.log',1048585,1,187,187,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210318.log',1048585,1,188,188,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210318.log',1048585,1,189,189,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210318.log',1048585,1,190,190,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210318.log',1048585,1,191,191,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210318.log',1048585,1,193,193,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,12,NULL),('usage_events_20210318.log',1048585,1,203,203,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210318.log',1048585,1,206,206,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',13,1,259,13,NULL),('usage_events_20210318.log',1048585,1,207,207,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210318.log',1048585,1,208,208,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210318.log',1048585,1,209,209,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210318.log',1048585,1,210,210,'20210318','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210319.log',256,1,NULL,1,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210319.log',259,1,NULL,8,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210319.log',259,1,NULL,9,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210319.log',259,1,NULL,11,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210319.log',259,1,NULL,13,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210319.log',515,1,5,30,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210319.log',515,1,19,52,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20210319.log',515,1,32,80,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210319.log',515,1,49,116,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210319.log',515,1,53,120,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210319.log',515,1,58,137,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210319.log',515,1,82,284,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210319.log',515,1,78,288,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210319.log',515,1,100,306,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210319.log',515,1,113,307,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210319.log',515,1,114,308,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210319.log',515,1,142,367,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210319.log',515,1,146,379,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210319.log',515,1,148,394,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',13,1,259,10,73),('usage_events_20210319.log',515,1,149,401,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210319.log',515,1,150,407,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',9,1,259,10,75),('usage_events_20210319.log',515,1,152,423,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210319.log',515,1,169,461,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210319.log',515,1,171,470,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210319.log',515,1,174,486,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210319.log',515,1,175,493,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210319.log',515,1,176,500,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210319.log',515,1,177,507,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210319.log',515,1,187,539,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210319.log',515,1,188,545,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210319.log',515,1,193,569,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210319.log',515,1,203,589,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210319.log',515,1,204,597,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210319.log',515,1,205,606,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210319.log',515,1,206,615,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210319.log',515,1,207,622,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210319.log',515,1,208,630,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,99),('usage_events_20210319.log',515,1,209,637,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,100),('usage_events_20210319.log',515,1,210,644,'20210319','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210319.log',1048585,1,8,8,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210319.log',1048585,1,32,32,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210319.log',1048585,1,58,58,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210319.log',1048585,1,77,77,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210319.log',1048585,1,81,81,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210319.log',1048585,1,100,100,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,8,NULL),('usage_events_20210319.log',1048585,1,134,134,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210319.log',1048585,1,142,142,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210319.log',1048585,1,146,146,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210319.log',1048585,1,148,148,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,10,NULL),('usage_events_20210319.log',1048585,1,150,150,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,10,NULL),('usage_events_20210319.log',1048585,1,152,152,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210319.log',1048585,1,171,171,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210319.log',1048585,1,175,175,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210319.log',1048585,1,176,176,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210319.log',1048585,1,177,177,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210319.log',1048585,1,178,178,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210319.log',1048585,1,188,188,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210319.log',1048585,1,203,203,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210319.log',1048585,1,204,204,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210319.log',1048585,1,206,206,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210319.log',1048585,1,207,207,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210319.log',1048585,1,208,208,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210319.log',1048585,1,209,209,'20210319','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210320.log',259,1,NULL,6,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210320.log',515,1,47,115,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210320.log',515,1,81,283,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210320.log',515,1,77,287,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210320.log',515,1,78,288,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210320.log',515,1,114,308,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210320.log',515,1,139,351,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210320.log',515,1,148,394,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210320.log',515,1,150,407,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210320.log',515,1,151,414,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210320.log',515,1,173,479,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210320.log',515,1,174,486,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210320.log',515,1,175,493,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210320.log',515,1,177,507,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210320.log',515,1,186,533,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210320.log',515,1,187,539,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210320.log',515,1,189,551,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210320.log',515,1,193,569,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20210320.log',515,1,205,606,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210320.log',515,1,206,615,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210320.log',515,1,207,622,'20210320','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210320.log',1048585,1,5,5,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210320.log',1048585,1,78,78,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210320.log',1048585,1,81,81,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20210320.log',1048585,1,137,137,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210320.log',1048585,1,139,139,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210320.log',1048585,1,142,142,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210320.log',1048585,1,148,148,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210320.log',1048585,1,150,150,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210320.log',1048585,1,171,171,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210320.log',1048585,1,173,173,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210320.log',1048585,1,175,175,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210320.log',1048585,1,177,177,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210320.log',1048585,1,186,186,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210320.log',1048585,1,189,189,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210320.log',1048585,1,193,193,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210320.log',1048585,1,206,206,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210320.log',1048585,1,207,207,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210320.log',1048585,1,208,208,'20210320','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210321.log',256,1,NULL,1,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210321.log',259,1,NULL,5,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210321.log',515,1,8,33,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210321.log',515,1,20,53,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210321.log',515,1,32,80,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210321.log',515,1,49,116,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210321.log',515,1,58,137,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210321.log',515,1,81,283,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210321.log',515,1,77,287,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210321.log',515,1,78,288,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210321.log',515,1,86,290,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210321.log',515,1,87,291,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210321.log',515,1,89,293,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210321.log',515,1,125,310,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20210321.log',515,1,135,330,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210321.log',515,1,139,351,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210321.log',515,1,148,394,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210321.log',515,1,150,407,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210321.log',515,1,151,414,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210321.log',515,1,169,461,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210321.log',515,1,171,470,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210321.log',515,1,177,507,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210321.log',515,1,185,527,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210321.log',515,1,186,533,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210321.log',515,1,187,539,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210321.log',515,1,188,545,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210321.log',515,1,189,551,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210321.log',515,1,190,556,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210321.log',515,1,191,563,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210321.log',515,1,193,569,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210321.log',515,1,204,597,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210321.log',515,1,205,606,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210321.log',515,1,206,615,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',12,1,259,13,97),('usage_events_20210321.log',515,1,207,622,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210321.log',515,1,208,630,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210321.log',515,1,209,637,'20210321','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210321.log',1048585,1,20,20,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210321.log',1048585,1,49,49,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210321.log',1048585,1,56,56,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210321.log',1048585,1,58,58,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210321.log',1048585,1,77,77,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210321.log',1048585,1,78,78,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210321.log',1048585,1,81,81,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210321.log',1048585,1,86,86,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210321.log',1048585,1,87,87,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210321.log',1048585,1,125,125,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210321.log',1048585,1,135,135,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210321.log',1048585,1,148,148,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210321.log',1048585,1,150,150,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210321.log',1048585,1,173,173,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210321.log',1048585,1,187,187,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210321.log',1048585,1,193,193,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210321.log',1048585,1,203,203,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210321.log',1048585,1,204,204,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210321.log',1048585,1,205,205,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210321.log',1048585,1,206,206,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210321.log',1048585,1,207,207,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210321.log',1048585,1,208,208,'20210321','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210322.log',256,1,NULL,1,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210322.log',259,1,NULL,9,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210322.log',259,1,NULL,13,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210322.log',515,1,8,33,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210322.log',515,1,49,116,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210322.log',515,1,51,118,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210322.log',515,1,78,288,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210322.log',515,1,86,290,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210322.log',515,1,87,291,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210322.log',515,1,91,295,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210322.log',515,1,100,306,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,58),('usage_events_20210322.log',515,1,137,343,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210322.log',515,1,141,361,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210322.log',515,1,149,401,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210322.log',515,1,169,461,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210322.log',515,1,171,470,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210322.log',515,1,174,486,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210322.log',515,1,175,493,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210322.log',515,1,176,500,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210322.log',515,1,177,507,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210322.log',515,1,178,514,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210322.log',515,1,185,527,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210322.log',515,1,186,533,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210322.log',515,1,187,539,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210322.log',515,1,188,545,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210322.log',515,1,189,551,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210322.log',515,1,190,556,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210322.log',515,1,191,563,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210322.log',515,1,193,569,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210322.log',515,1,203,589,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210322.log',515,1,204,597,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210322.log',515,1,205,606,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210322.log',515,1,206,615,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210322.log',515,1,207,622,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210322.log',515,1,208,630,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210322.log',515,1,209,637,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210322.log',515,1,210,644,'20210322','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210322.log',1048585,1,8,8,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210322.log',1048585,1,49,49,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210322.log',1048585,1,58,58,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210322.log',1048585,1,78,78,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210322.log',1048585,1,86,86,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210322.log',1048585,1,87,87,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210322.log',1048585,1,89,89,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210322.log',1048585,1,100,100,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210322.log',1048585,1,137,137,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210322.log',1048585,1,141,141,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210322.log',1048585,1,148,148,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210322.log',1048585,1,171,171,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210322.log',1048585,1,174,174,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210322.log',1048585,1,175,175,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210322.log',1048585,1,176,176,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210322.log',1048585,1,177,177,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210322.log',1048585,1,205,205,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210322.log',1048585,1,206,206,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210322.log',1048585,1,207,207,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210322.log',1048585,1,208,208,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210322.log',1048585,1,209,209,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210322.log',1048585,1,210,210,'20210322','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210323.log',256,1,NULL,1,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,1,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,2,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,3,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,4,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,5,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,6,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,7,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,8,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,9,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,10,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,11,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,12,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210323.log',259,1,NULL,13,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210323.log',515,1,1,3,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210323.log',515,1,8,33,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210323.log',515,1,20,53,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210323.log',515,1,32,80,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210323.log',515,1,53,120,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210323.log',515,1,82,284,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210323.log',515,1,83,285,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210323.log',515,1,78,288,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210323.log',515,1,87,291,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210323.log',515,1,99,305,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210323.log',515,1,114,308,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210323.log',515,1,133,318,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20210323.log',515,1,137,343,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210323.log',515,1,148,394,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210323.log',515,1,149,401,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210323.log',515,1,169,461,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210323.log',515,1,171,470,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210323.log',515,1,174,486,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210323.log',515,1,175,493,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210323.log',515,1,177,507,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210323.log',515,1,186,533,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210323.log',515,1,190,556,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210323.log',515,1,191,563,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210323.log',515,1,205,606,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210323.log',515,1,206,615,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210323.log',515,1,207,622,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210323.log',515,1,208,630,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210323.log',515,1,210,644,'20210323','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210323.log',1048585,1,1,1,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210323.log',1048585,1,4,4,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210323.log',1048585,1,5,5,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210323.log',1048585,1,6,6,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210323.log',1048585,1,7,7,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210323.log',1048585,1,8,8,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210323.log',1048585,1,14,14,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210323.log',1048585,1,19,19,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210323.log',1048585,1,20,20,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210323.log',1048585,1,21,21,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210323.log',1048585,1,22,22,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210323.log',1048585,1,40,40,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210323.log',1048585,1,78,78,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210323.log',1048585,1,82,82,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210323.log',1048585,1,83,83,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210323.log',1048585,1,87,87,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210323.log',1048585,1,91,91,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210323.log',1048585,1,137,137,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210323.log',1048585,1,142,142,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210323.log',1048585,1,148,148,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210323.log',1048585,1,150,150,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210323.log',1048585,1,152,152,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210323.log',1048585,1,169,169,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210323.log',1048585,1,171,171,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210323.log',1048585,1,175,175,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210323.log',1048585,1,177,177,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210323.log',1048585,1,178,178,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210323.log',1048585,1,190,190,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210323.log',1048585,1,191,191,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210323.log',1048585,1,203,203,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210323.log',1048585,1,204,204,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210323.log',1048585,1,205,205,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210323.log',1048585,1,206,206,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,13,NULL),('usage_events_20210323.log',1048585,1,207,207,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210323.log',1048585,1,208,208,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210323.log',1048585,1,209,209,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210323.log',1048585,1,210,210,'20210323','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210324.log',256,1,NULL,1,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210324.log',259,1,NULL,1,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210324.log',515,1,14,51,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210324.log',515,1,20,53,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20210324.log',515,1,50,117,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210324.log',515,1,53,120,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210324.log',515,1,54,133,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210324.log',515,1,58,137,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210324.log',515,1,83,285,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210324.log',515,1,78,288,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',13,1,259,7,49),('usage_events_20210324.log',515,1,86,290,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210324.log',515,1,87,291,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210324.log',515,1,89,293,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210324.log',515,1,99,305,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210324.log',515,1,114,308,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20210324.log',515,1,134,324,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210324.log',515,1,135,330,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210324.log',515,1,137,343,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210324.log',515,1,142,367,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210324.log',515,1,148,394,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210324.log',515,1,173,479,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210324.log',515,1,174,486,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210324.log',515,1,175,493,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210324.log',515,1,177,507,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210324.log',515,1,185,527,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210324.log',515,1,189,551,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210324.log',515,1,190,556,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210324.log',515,1,191,563,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210324.log',515,1,193,569,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210324.log',515,1,204,597,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210324.log',515,1,205,606,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210324.log',515,1,206,615,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210324.log',515,1,207,622,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',17,1,259,13,98),('usage_events_20210324.log',515,1,208,630,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210324.log',515,1,209,637,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210324.log',515,1,210,644,'20210324','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210324.log',1048585,1,14,14,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210324.log',1048585,1,49,49,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210324.log',1048585,1,50,50,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210324.log',1048585,1,58,58,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210324.log',1048585,1,78,78,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210324.log',1048585,1,87,87,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210324.log',1048585,1,91,91,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210324.log',1048585,1,114,114,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210324.log',1048585,1,134,134,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210324.log',1048585,1,135,135,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210324.log',1048585,1,137,137,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210324.log',1048585,1,142,142,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210324.log',1048585,1,169,169,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210324.log',1048585,1,174,174,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210324.log',1048585,1,175,175,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210324.log',1048585,1,190,190,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210324.log',1048585,1,191,191,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210324.log',1048585,1,205,205,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210324.log',1048585,1,206,206,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210324.log',1048585,1,207,207,'20210324','202103',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210325.log',256,1,NULL,1,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210325.log',259,1,NULL,9,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210325.log',259,1,NULL,12,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210325.log',259,1,NULL,13,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210325.log',515,1,4,19,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,3),('usage_events_20210325.log',515,1,6,31,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210325.log',515,1,34,82,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210325.log',515,1,54,133,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210325.log',515,1,78,288,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210325.log',515,1,86,290,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210325.log',515,1,91,295,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210325.log',515,1,113,307,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210325.log',515,1,114,308,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,8,60),('usage_events_20210325.log',515,1,139,351,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210325.log',515,1,142,367,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210325.log',515,1,150,407,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210325.log',515,1,152,423,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210325.log',515,1,169,461,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210325.log',515,1,171,470,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210325.log',515,1,173,479,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210325.log',515,1,175,493,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210325.log',515,1,188,545,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210325.log',515,1,190,556,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210325.log',515,1,191,563,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,92),('usage_events_20210325.log',515,1,193,569,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20210325.log',515,1,205,606,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210325.log',515,1,206,615,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210325.log',515,1,207,622,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',15,1,259,13,98),('usage_events_20210325.log',515,1,208,630,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,99),('usage_events_20210325.log',515,1,209,637,'20210325','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210325.log',1048585,1,78,78,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210325.log',1048585,1,81,81,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210325.log',1048585,1,91,91,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210325.log',1048585,1,114,114,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210325.log',1048585,1,139,139,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210325.log',1048585,1,142,142,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210325.log',1048585,1,150,150,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210325.log',1048585,1,169,169,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210325.log',1048585,1,171,171,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210325.log',1048585,1,173,173,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210325.log',1048585,1,175,175,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210325.log',1048585,1,176,176,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210325.log',1048585,1,177,177,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210325.log',1048585,1,190,190,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210325.log',1048585,1,193,193,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210325.log',1048585,1,203,203,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210325.log',1048585,1,205,205,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210325.log',1048585,1,206,206,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210325.log',1048585,1,207,207,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210325.log',1048585,1,208,208,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210325.log',1048585,1,209,209,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210325.log',1048585,1,210,210,'20210325','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210326.log',256,1,NULL,1,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210326.log',259,1,NULL,8,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210326.log',259,1,NULL,13,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210326.log',515,1,5,30,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210326.log',515,1,8,33,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210326.log',515,1,31,79,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210326.log',515,1,81,283,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210326.log',515,1,78,288,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210326.log',515,1,91,295,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210326.log',515,1,99,305,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210326.log',515,1,133,318,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210326.log',515,1,137,343,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210326.log',515,1,149,401,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20210326.log',515,1,151,414,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210326.log',515,1,169,461,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210326.log',515,1,175,493,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210326.log',515,1,190,556,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210326.log',515,1,204,597,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210326.log',515,1,205,606,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210326.log',515,1,206,615,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210326.log',515,1,207,622,'20210326','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,98),('usage_events_20210326.log',1048585,1,8,8,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210326.log',1048585,1,20,20,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210326.log',1048585,1,46,46,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210326.log',1048585,1,78,78,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210326.log',1048585,1,82,82,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210326.log',1048585,1,84,84,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210326.log',1048585,1,91,91,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210326.log',1048585,1,114,114,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210326.log',1048585,1,150,150,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210326.log',1048585,1,151,151,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210326.log',1048585,1,169,169,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210326.log',1048585,1,175,175,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210326.log',1048585,1,190,190,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210326.log',1048585,1,191,191,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210326.log',1048585,1,206,206,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',13,1,259,13,NULL),('usage_events_20210326.log',1048585,1,207,207,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210326.log',1048585,1,209,209,'20210326','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210327.log',256,1,NULL,1,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210327.log',259,1,NULL,10,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210327.log',259,1,NULL,13,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210327.log',515,1,8,33,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,7),('usage_events_20210327.log',515,1,50,117,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20210327.log',515,1,53,120,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210327.log',515,1,58,137,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210327.log',515,1,81,283,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210327.log',515,1,83,285,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210327.log',515,1,78,288,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210327.log',515,1,86,290,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210327.log',515,1,114,308,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210327.log',515,1,136,336,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210327.log',515,1,141,361,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210327.log',515,1,148,394,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210327.log',515,1,149,401,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',10,1,259,10,74),('usage_events_20210327.log',515,1,150,407,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210327.log',515,1,169,461,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210327.log',515,1,171,470,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210327.log',515,1,175,493,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210327.log',515,1,177,507,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210327.log',515,1,190,556,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210327.log',515,1,191,563,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210327.log',515,1,193,569,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210327.log',515,1,205,606,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210327.log',515,1,206,615,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210327.log',515,1,207,622,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210327.log',515,1,208,630,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210327.log',515,1,209,637,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210327.log',515,1,210,644,'20210327','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210327.log',1048585,1,78,78,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210327.log',1048585,1,81,81,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210327.log',1048585,1,114,114,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210327.log',1048585,1,136,136,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210327.log',1048585,1,142,142,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210327.log',1048585,1,150,150,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210327.log',1048585,1,169,169,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210327.log',1048585,1,173,173,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210327.log',1048585,1,190,190,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210327.log',1048585,1,193,193,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210327.log',1048585,1,205,205,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210327.log',1048585,1,206,206,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210327.log',1048585,1,208,208,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210327.log',1048585,1,209,209,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210327.log',1048585,1,210,210,'20210327','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210328.log',259,1,NULL,10,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210328.log',259,1,NULL,12,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210328.log',515,1,20,53,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210328.log',515,1,51,118,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210328.log',515,1,53,120,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210328.log',515,1,56,135,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210328.log',515,1,85,281,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210328.log',515,1,81,283,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210328.log',515,1,86,290,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210328.log',515,1,87,291,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210328.log',515,1,90,294,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210328.log',515,1,99,305,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210328.log',515,1,113,307,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210328.log',515,1,115,309,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210328.log',515,1,137,343,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210328.log',515,1,149,401,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,74),('usage_events_20210328.log',515,1,152,423,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210328.log',515,1,173,479,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210328.log',515,1,185,527,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210328.log',515,1,190,556,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210328.log',515,1,191,563,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210328.log',515,1,193,569,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210328.log',515,1,204,597,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210328.log',515,1,205,606,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210328.log',515,1,206,615,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210328.log',515,1,207,622,'20210328','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210328.log',1048585,1,20,20,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210328.log',1048585,1,53,53,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210328.log',1048585,1,78,78,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210328.log',1048585,1,81,81,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210328.log',1048585,1,85,85,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210328.log',1048585,1,87,87,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210328.log',1048585,1,90,90,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210328.log',1048585,1,115,115,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210328.log',1048585,1,146,146,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210328.log',1048585,1,149,149,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210328.log',1048585,1,178,178,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210328.log',1048585,1,185,185,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210328.log',1048585,1,190,190,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210328.log',1048585,1,193,193,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210328.log',1048585,1,206,206,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210328.log',1048585,1,207,207,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210328.log',1048585,1,209,209,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210328.log',1048585,1,210,210,'20210328','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210329.log',259,1,NULL,8,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210329.log',515,1,8,33,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210329.log',515,1,20,53,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20210329.log',515,1,21,54,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20210329.log',515,1,40,94,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210329.log',515,1,49,116,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210329.log',515,1,58,137,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210329.log',515,1,85,281,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210329.log',515,1,79,282,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210329.log',515,1,78,288,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210329.log',515,1,89,293,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210329.log',515,1,91,295,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210329.log',515,1,99,305,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210329.log',515,1,100,306,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210329.log',515,1,114,308,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,60),('usage_events_20210329.log',515,1,115,309,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,61),('usage_events_20210329.log',515,1,133,318,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210329.log',515,1,134,324,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210329.log',515,1,136,336,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20210329.log',515,1,137,343,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210329.log',515,1,142,367,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210329.log',515,1,147,387,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210329.log',515,1,148,394,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210329.log',515,1,149,401,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210329.log',515,1,169,461,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210329.log',515,1,171,470,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210329.log',515,1,173,479,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210329.log',515,1,174,486,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210329.log',515,1,176,500,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210329.log',515,1,177,507,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210329.log',515,1,178,514,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210329.log',515,1,190,556,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210329.log',515,1,191,563,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210329.log',515,1,193,569,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210329.log',515,1,206,615,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210329.log',515,1,207,622,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210329.log',515,1,209,637,'20210329','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210329.log',1048585,1,40,40,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210329.log',1048585,1,58,58,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210329.log',1048585,1,79,79,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210329.log',1048585,1,85,85,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210329.log',1048585,1,89,89,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210329.log',1048585,1,91,91,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210329.log',1048585,1,100,100,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210329.log',1048585,1,133,133,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210329.log',1048585,1,134,134,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210329.log',1048585,1,136,136,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210329.log',1048585,1,142,142,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210329.log',1048585,1,148,148,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210329.log',1048585,1,152,152,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210329.log',1048585,1,169,169,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210329.log',1048585,1,171,171,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210329.log',1048585,1,173,173,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210329.log',1048585,1,174,174,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210329.log',1048585,1,176,176,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210329.log',1048585,1,177,177,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210329.log',1048585,1,178,178,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210329.log',1048585,1,187,187,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210329.log',1048585,1,190,190,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210329.log',1048585,1,205,205,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210329.log',1048585,1,206,206,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210329.log',1048585,1,207,207,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210329.log',1048585,1,210,210,'20210329','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210330.log',256,1,NULL,1,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210330.log',259,1,NULL,4,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210330.log',259,1,NULL,11,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210330.log',259,1,NULL,13,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210330.log',515,1,5,30,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210330.log',515,1,51,118,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210330.log',515,1,52,119,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,27),('usage_events_20210330.log',515,1,53,120,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210330.log',515,1,58,137,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20210330.log',515,1,76,286,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210330.log',515,1,78,288,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210330.log',515,1,89,293,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210330.log',515,1,90,294,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210330.log',515,1,91,295,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,56),('usage_events_20210330.log',515,1,100,306,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210330.log',515,1,113,307,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210330.log',515,1,137,343,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210330.log',515,1,139,351,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210330.log',515,1,147,387,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210330.log',515,1,148,394,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210330.log',515,1,150,407,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210330.log',515,1,169,461,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210330.log',515,1,171,470,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210330.log',515,1,173,479,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210330.log',515,1,175,493,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210330.log',515,1,176,500,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20210330.log',515,1,178,514,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210330.log',515,1,185,527,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,86),('usage_events_20210330.log',515,1,188,545,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210330.log',515,1,191,563,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210330.log',515,1,203,589,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210330.log',515,1,205,606,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210330.log',515,1,206,615,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210330.log',515,1,209,637,'20210330','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210330.log',1048585,1,52,52,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210330.log',1048585,1,53,53,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,4,NULL),('usage_events_20210330.log',1048585,1,58,58,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210330.log',1048585,1,78,78,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210330.log',1048585,1,86,86,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210330.log',1048585,1,91,91,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210330.log',1048585,1,100,100,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210330.log',1048585,1,139,139,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210330.log',1048585,1,148,148,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210330.log',1048585,1,150,150,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210330.log',1048585,1,171,171,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210330.log',1048585,1,173,173,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210330.log',1048585,1,175,175,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210330.log',1048585,1,176,176,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210330.log',1048585,1,185,185,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210330.log',1048585,1,186,186,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',28,1,259,12,NULL),('usage_events_20210330.log',1048585,1,190,190,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210330.log',1048585,1,203,203,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210330.log',1048585,1,205,205,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210330.log',1048585,1,206,206,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210330.log',1048585,1,207,207,'20210330','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210331.log',256,1,NULL,1,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210331.log',259,1,NULL,10,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210331.log',259,1,NULL,13,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210331.log',515,1,5,30,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210331.log',515,1,20,53,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,2,11),('usage_events_20210331.log',515,1,49,116,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210331.log',515,1,53,120,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210331.log',515,1,81,283,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210331.log',515,1,78,288,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210331.log',515,1,86,290,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210331.log',515,1,87,291,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210331.log',515,1,113,307,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210331.log',515,1,114,308,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210331.log',515,1,134,324,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210331.log',515,1,141,361,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210331.log',515,1,142,367,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210331.log',515,1,146,379,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210331.log',515,1,148,394,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210331.log',515,1,152,423,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210331.log',515,1,169,461,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210331.log',515,1,171,470,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210331.log',515,1,175,493,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210331.log',515,1,176,500,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210331.log',515,1,177,507,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210331.log',515,1,178,514,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210331.log',515,1,187,539,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210331.log',515,1,190,556,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210331.log',515,1,191,563,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,92),('usage_events_20210331.log',515,1,193,569,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210331.log',515,1,205,606,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210331.log',515,1,206,615,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210331.log',515,1,207,622,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210331.log',515,1,208,630,'20210331','202103',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210331.log',1048585,1,8,8,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210331.log',1048585,1,20,20,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210331.log',1048585,1,53,53,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210331.log',1048585,1,78,78,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210331.log',1048585,1,86,86,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210331.log',1048585,1,134,134,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210331.log',1048585,1,149,149,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210331.log',1048585,1,169,169,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210331.log',1048585,1,171,171,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210331.log',1048585,1,173,173,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210331.log',1048585,1,174,174,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210331.log',1048585,1,175,175,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210331.log',1048585,1,176,176,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210331.log',1048585,1,177,177,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210331.log',1048585,1,178,178,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210331.log',1048585,1,187,187,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210331.log',1048585,1,206,206,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210331.log',1048585,1,207,207,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210331.log',1048585,1,208,208,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210331.log',1048585,1,210,210,'20210331','202103',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210401.log',256,1,NULL,1,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210401.log',259,1,NULL,9,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210401.log',259,1,NULL,10,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210401.log',515,1,20,53,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210401.log',515,1,46,114,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,22),('usage_events_20210401.log',515,1,54,133,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210401.log',515,1,85,281,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210401.log',515,1,76,286,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210401.log',515,1,78,288,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210401.log',515,1,86,290,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,51),('usage_events_20210401.log',515,1,134,324,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210401.log',515,1,136,336,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210401.log',515,1,147,387,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210401.log',515,1,148,394,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210401.log',515,1,150,407,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20210401.log',515,1,152,423,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210401.log',515,1,169,461,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210401.log',515,1,171,470,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210401.log',515,1,173,479,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210401.log',515,1,174,486,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210401.log',515,1,176,500,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210401.log',515,1,177,507,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210401.log',515,1,185,527,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20210401.log',515,1,205,606,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210401.log',515,1,206,615,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210401.log',515,1,207,622,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210401.log',515,1,208,630,'20210401','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210401.log',1048585,1,20,20,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20210401.log',1048585,1,46,46,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210401.log',1048585,1,53,53,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210401.log',1048585,1,54,54,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210401.log',1048585,1,59,59,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210401.log',1048585,1,76,76,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210401.log',1048585,1,86,86,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210401.log',1048585,1,136,136,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210401.log',1048585,1,148,148,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210401.log',1048585,1,149,149,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210401.log',1048585,1,150,150,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210401.log',1048585,1,169,169,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210401.log',1048585,1,171,171,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210401.log',1048585,1,173,173,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210401.log',1048585,1,174,174,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210401.log',1048585,1,175,175,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210401.log',1048585,1,176,176,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210401.log',1048585,1,177,177,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210401.log',1048585,1,178,178,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210401.log',1048585,1,185,185,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210401.log',1048585,1,206,206,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210401.log',1048585,1,207,207,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210401.log',1048585,1,208,208,'20210401','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210402.log',259,1,NULL,13,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210402.log',515,1,33,81,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20210402.log',515,1,51,118,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210402.log',515,1,53,120,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210402.log',515,1,76,286,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210402.log',515,1,91,295,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,56),('usage_events_20210402.log',515,1,100,306,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210402.log',515,1,114,308,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210402.log',515,1,139,351,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210402.log',515,1,171,470,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210402.log',515,1,174,486,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210402.log',515,1,175,493,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210402.log',515,1,177,507,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210402.log',515,1,178,514,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210402.log',515,1,190,556,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210402.log',515,1,204,597,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210402.log',515,1,205,606,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210402.log',515,1,206,615,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210402.log',515,1,207,622,'20210402','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210402.log',1048585,1,51,51,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210402.log',1048585,1,53,53,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210402.log',1048585,1,58,58,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210402.log',1048585,1,76,76,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210402.log',1048585,1,100,100,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210402.log',1048585,1,114,114,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210402.log',1048585,1,139,139,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210402.log',1048585,1,142,142,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210402.log',1048585,1,148,148,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210402.log',1048585,1,173,173,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210402.log',1048585,1,175,175,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210402.log',1048585,1,177,177,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210402.log',1048585,1,178,178,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210402.log',1048585,1,185,185,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210402.log',1048585,1,190,190,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210402.log',1048585,1,204,204,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210402.log',1048585,1,206,206,'20210402','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210403.log',515,1,19,52,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210403.log',515,1,34,82,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210403.log',515,1,53,120,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210403.log',515,1,86,290,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210403.log',515,1,89,293,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210403.log',515,1,113,307,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210403.log',515,1,137,343,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210403.log',515,1,147,387,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210403.log',515,1,148,394,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210403.log',515,1,176,500,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210403.log',515,1,187,539,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210403.log',515,1,193,569,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210403.log',515,1,206,615,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210403.log',515,1,207,622,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210403.log',515,1,209,637,'20210403','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210403.log',1048585,1,34,34,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210403.log',1048585,1,53,53,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210403.log',1048585,1,86,86,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210403.log',1048585,1,147,147,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210403.log',1048585,1,171,171,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210403.log',1048585,1,173,173,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210403.log',1048585,1,186,186,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210403.log',1048585,1,187,187,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210403.log',1048585,1,191,191,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210403.log',1048585,1,193,193,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210403.log',1048585,1,206,206,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210403.log',1048585,1,207,207,'20210403','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210404.log',515,1,53,120,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210404.log',515,1,99,305,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210404.log',515,1,100,306,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210404.log',515,1,137,343,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210404.log',515,1,142,367,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210404.log',515,1,148,394,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20210404.log',515,1,149,401,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210404.log',515,1,150,407,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210404.log',515,1,152,423,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210404.log',515,1,169,461,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210404.log',515,1,175,493,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210404.log',515,1,177,507,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210404.log',515,1,178,514,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210404.log',515,1,190,556,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210404.log',515,1,205,606,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210404.log',515,1,206,615,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210404.log',515,1,207,622,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210404.log',515,1,209,637,'20210404','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210404.log',1048585,1,79,79,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210404.log',1048585,1,81,81,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210404.log',1048585,1,87,87,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210404.log',1048585,1,100,100,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210404.log',1048585,1,134,134,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210404.log',1048585,1,142,142,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210404.log',1048585,1,149,149,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210404.log',1048585,1,150,150,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210404.log',1048585,1,175,175,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210404.log',1048585,1,177,177,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210404.log',1048585,1,178,178,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210404.log',1048585,1,190,190,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210404.log',1048585,1,206,206,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210404.log',1048585,1,207,207,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210404.log',1048585,1,209,209,'20210404','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210405.log',256,1,NULL,1,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210405.log',259,1,NULL,13,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210405.log',515,1,8,33,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,7),('usage_events_20210405.log',515,1,47,115,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20210405.log',515,1,49,116,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210405.log',515,1,50,117,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20210405.log',515,1,53,120,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,28),('usage_events_20210405.log',515,1,59,138,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210405.log',515,1,81,283,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210405.log',515,1,78,288,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210405.log',515,1,87,291,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210405.log',515,1,90,294,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210405.log',515,1,133,318,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210405.log',515,1,136,336,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210405.log',515,1,139,351,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210405.log',515,1,142,367,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210405.log',515,1,148,394,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20210405.log',515,1,149,401,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210405.log',515,1,169,461,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210405.log',515,1,173,479,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210405.log',515,1,174,486,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210405.log',515,1,175,493,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210405.log',515,1,177,507,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210405.log',515,1,185,527,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210405.log',515,1,205,606,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210405.log',515,1,206,615,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210405.log',515,1,207,622,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210405.log',515,1,208,630,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210405.log',515,1,209,637,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210405.log',515,1,210,644,'20210405','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210405.log',1048585,1,8,8,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20210405.log',1048585,1,47,47,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210405.log',1048585,1,49,49,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210405.log',1048585,1,50,50,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210405.log',1048585,1,53,53,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210405.log',1048585,1,78,78,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210405.log',1048585,1,87,87,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210405.log',1048585,1,89,89,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210405.log',1048585,1,133,133,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210405.log',1048585,1,136,136,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210405.log',1048585,1,142,142,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210405.log',1048585,1,148,148,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210405.log',1048585,1,169,169,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210405.log',1048585,1,173,173,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210405.log',1048585,1,185,185,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210405.log',1048585,1,190,190,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210405.log',1048585,1,206,206,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210405.log',1048585,1,209,209,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210405.log',1048585,1,210,210,'20210405','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210406.log',256,1,NULL,1,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210406.log',259,1,NULL,4,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210406.log',515,1,5,30,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210406.log',515,1,8,33,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,1,7),('usage_events_20210406.log',515,1,20,53,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210406.log',515,1,47,115,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210406.log',515,1,49,116,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210406.log',515,1,55,134,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210406.log',515,1,56,135,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210406.log',515,1,58,137,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210406.log',515,1,82,284,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210406.log',515,1,77,287,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210406.log',515,1,78,288,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210406.log',515,1,136,336,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210406.log',515,1,137,343,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210406.log',515,1,141,361,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210406.log',515,1,142,367,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210406.log',515,1,146,379,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210406.log',515,1,147,387,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210406.log',515,1,148,394,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210406.log',515,1,149,401,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210406.log',515,1,152,423,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210406.log',515,1,171,470,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210406.log',515,1,173,479,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210406.log',515,1,177,507,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210406.log',515,1,178,514,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210406.log',515,1,187,539,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210406.log',515,1,190,556,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210406.log',515,1,191,563,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210406.log',515,1,193,569,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210406.log',515,1,204,597,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210406.log',515,1,205,606,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210406.log',515,1,206,615,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210406.log',515,1,207,622,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210406.log',515,1,208,630,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210406.log',515,1,209,637,'20210406','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210406.log',1048585,1,8,8,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210406.log',1048585,1,32,32,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210406.log',1048585,1,49,49,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210406.log',1048585,1,56,56,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210406.log',1048585,1,77,77,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20210406.log',1048585,1,114,114,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210406.log',1048585,1,139,139,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210406.log',1048585,1,146,146,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210406.log',1048585,1,149,149,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210406.log',1048585,1,150,150,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210406.log',1048585,1,152,152,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210406.log',1048585,1,173,173,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210406.log',1048585,1,175,175,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210406.log',1048585,1,177,177,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210406.log',1048585,1,178,178,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210406.log',1048585,1,187,187,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210406.log',1048585,1,190,190,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210406.log',1048585,1,204,204,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210406.log',1048585,1,206,206,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210406.log',1048585,1,207,207,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210406.log',1048585,1,208,208,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210406.log',1048585,1,209,209,'20210406','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210407.log',256,1,NULL,1,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210407.log',259,1,NULL,13,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210407.log',515,1,6,31,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20210407.log',515,1,31,79,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210407.log',515,1,35,83,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210407.log',515,1,50,117,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210407.log',515,1,51,118,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210407.log',515,1,53,120,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210407.log',515,1,83,285,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210407.log',515,1,78,288,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210407.log',515,1,87,291,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210407.log',515,1,137,343,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210407.log',515,1,141,361,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210407.log',515,1,142,367,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210407.log',515,1,152,423,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210407.log',515,1,169,461,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210407.log',515,1,171,470,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210407.log',515,1,175,493,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210407.log',515,1,178,514,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210407.log',515,1,190,556,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210407.log',515,1,204,597,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210407.log',515,1,206,615,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210407.log',515,1,207,622,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210407.log',515,1,209,637,'20210407','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210407.log',1048585,1,31,31,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210407.log',1048585,1,50,50,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210407.log',1048585,1,78,78,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210407.log',1048585,1,83,83,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210407.log',1048585,1,113,113,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210407.log',1048585,1,137,137,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210407.log',1048585,1,141,141,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210407.log',1048585,1,142,142,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210407.log',1048585,1,148,148,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210407.log',1048585,1,152,152,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210407.log',1048585,1,169,169,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210407.log',1048585,1,171,171,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210407.log',1048585,1,173,173,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210407.log',1048585,1,175,175,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210407.log',1048585,1,176,176,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210407.log',1048585,1,185,185,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210407.log',1048585,1,203,203,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210407.log',1048585,1,205,205,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210407.log',1048585,1,206,206,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210407.log',1048585,1,207,207,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210407.log',1048585,1,209,209,'20210407','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210408.log',256,1,NULL,1,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210408.log',259,1,NULL,11,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210408.log',259,1,NULL,13,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210408.log',515,1,58,137,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210408.log',515,1,59,138,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210408.log',515,1,82,284,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210408.log',515,1,78,288,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210408.log',515,1,89,293,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210408.log',515,1,91,295,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210408.log',515,1,99,305,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210408.log',515,1,115,309,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210408.log',515,1,133,318,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210408.log',515,1,137,343,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20210408.log',515,1,139,351,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20210408.log',515,1,141,361,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210408.log',515,1,149,401,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210408.log',515,1,150,407,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210408.log',515,1,169,461,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210408.log',515,1,175,493,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210408.log',515,1,186,533,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210408.log',515,1,190,556,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210408.log',515,1,191,563,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210408.log',515,1,193,569,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210408.log',515,1,204,597,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210408.log',515,1,205,606,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210408.log',515,1,206,615,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',12,1,259,13,97),('usage_events_20210408.log',515,1,208,630,'20210408','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210408.log',1048585,1,8,8,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210408.log',1048585,1,58,58,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210408.log',1048585,1,78,78,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210408.log',1048585,1,82,82,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210408.log',1048585,1,89,89,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210408.log',1048585,1,137,137,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210408.log',1048585,1,139,139,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210408.log',1048585,1,150,150,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210408.log',1048585,1,169,169,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210408.log',1048585,1,175,175,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210408.log',1048585,1,185,185,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210408.log',1048585,1,186,186,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210408.log',1048585,1,191,191,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210408.log',1048585,1,193,193,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210408.log',1048585,1,203,203,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210408.log',1048585,1,206,206,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210408.log',1048585,1,207,207,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210408.log',1048585,1,208,208,'20210408','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210409.log',256,1,NULL,1,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210409.log',515,1,54,133,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210409.log',515,1,79,282,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210409.log',515,1,81,283,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210409.log',515,1,82,284,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210409.log',515,1,83,285,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210409.log',515,1,78,288,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210409.log',515,1,89,293,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210409.log',515,1,99,305,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210409.log',515,1,100,306,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210409.log',515,1,133,318,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210409.log',515,1,134,324,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210409.log',515,1,136,336,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210409.log',515,1,137,343,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210409.log',515,1,139,351,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210409.log',515,1,148,394,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210409.log',515,1,149,401,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210409.log',515,1,150,407,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210409.log',515,1,152,423,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210409.log',515,1,171,470,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210409.log',515,1,173,479,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210409.log',515,1,175,493,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210409.log',515,1,190,556,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210409.log',515,1,193,569,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210409.log',515,1,204,597,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210409.log',515,1,206,615,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210409.log',515,1,207,622,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210409.log',515,1,208,630,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210409.log',515,1,209,637,'20210409','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210409.log',1048585,1,8,8,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210409.log',1048585,1,54,54,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210409.log',1048585,1,58,58,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210409.log',1048585,1,78,78,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210409.log',1048585,1,79,79,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210409.log',1048585,1,82,82,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210409.log',1048585,1,83,83,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210409.log',1048585,1,100,100,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210409.log',1048585,1,148,148,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210409.log',1048585,1,149,149,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210409.log',1048585,1,152,152,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210409.log',1048585,1,171,171,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210409.log',1048585,1,173,173,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210409.log',1048585,1,190,190,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210409.log',1048585,1,193,193,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210409.log',1048585,1,204,204,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210409.log',1048585,1,206,206,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210409.log',1048585,1,209,209,'20210409','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210410.log',256,1,NULL,1,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210410.log',259,1,NULL,13,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210410.log',515,1,49,116,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210410.log',515,1,59,138,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210410.log',515,1,81,283,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210410.log',515,1,82,284,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,45),('usage_events_20210410.log',515,1,78,288,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210410.log',515,1,86,290,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210410.log',515,1,88,292,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210410.log',515,1,99,305,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210410.log',515,1,134,324,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,64),('usage_events_20210410.log',515,1,146,379,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210410.log',515,1,149,401,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210410.log',515,1,152,423,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210410.log',515,1,174,486,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210410.log',515,1,176,500,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210410.log',515,1,190,556,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210410.log',515,1,205,606,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210410.log',515,1,206,615,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210410.log',515,1,209,637,'20210410','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210410.log',1048585,1,49,49,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210410.log',1048585,1,83,83,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210410.log',1048585,1,86,86,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210410.log',1048585,1,134,134,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20210410.log',1048585,1,146,146,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210410.log',1048585,1,175,175,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210410.log',1048585,1,176,176,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210410.log',1048585,1,204,204,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210410.log',1048585,1,205,205,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210410.log',1048585,1,206,206,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210410.log',1048585,1,209,209,'20210410','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210411.log',256,1,NULL,1,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210411.log',259,1,NULL,7,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210411.log',515,1,8,33,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210411.log',515,1,19,52,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210411.log',515,1,49,116,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20210411.log',515,1,53,120,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210411.log',515,1,83,285,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210411.log',515,1,78,288,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210411.log',515,1,87,291,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20210411.log',515,1,99,305,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210411.log',515,1,100,306,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210411.log',515,1,142,367,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210411.log',515,1,148,394,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210411.log',515,1,149,401,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210411.log',515,1,150,407,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210411.log',515,1,152,423,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210411.log',515,1,169,461,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210411.log',515,1,175,493,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210411.log',515,1,205,606,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210411.log',515,1,206,615,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210411.log',515,1,207,622,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210411.log',515,1,209,637,'20210411','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210411.log',1048585,1,8,8,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210411.log',1048585,1,49,49,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210411.log',1048585,1,53,53,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210411.log',1048585,1,78,78,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210411.log',1048585,1,83,83,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210411.log',1048585,1,87,87,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210411.log',1048585,1,134,134,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210411.log',1048585,1,142,142,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210411.log',1048585,1,150,150,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210411.log',1048585,1,152,152,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210411.log',1048585,1,169,169,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210411.log',1048585,1,173,173,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210411.log',1048585,1,175,175,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210411.log',1048585,1,206,206,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210411.log',1048585,1,207,207,'20210411','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210412.log',256,1,NULL,1,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210412.log',259,1,NULL,4,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210412.log',259,1,NULL,13,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210412.log',515,1,4,19,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210412.log',515,1,7,32,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210412.log',515,1,58,137,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210412.log',515,1,59,138,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210412.log',515,1,85,281,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,41),('usage_events_20210412.log',515,1,79,282,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210412.log',515,1,78,288,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210412.log',515,1,84,289,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210412.log',515,1,87,291,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210412.log',515,1,99,305,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210412.log',515,1,149,401,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210412.log',515,1,152,423,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20210412.log',515,1,169,461,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,78),('usage_events_20210412.log',515,1,173,479,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210412.log',515,1,174,486,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210412.log',515,1,175,493,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210412.log',515,1,178,514,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210412.log',515,1,189,551,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210412.log',515,1,190,556,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210412.log',515,1,204,597,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210412.log',515,1,205,606,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210412.log',515,1,206,615,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210412.log',515,1,207,622,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210412.log',515,1,208,630,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210412.log',515,1,209,637,'20210412','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210412.log',1048585,1,7,7,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210412.log',1048585,1,49,49,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210412.log',1048585,1,58,58,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210412.log',1048585,1,78,78,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210412.log',1048585,1,84,84,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210412.log',1048585,1,85,85,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210412.log',1048585,1,86,86,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210412.log',1048585,1,87,87,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210412.log',1048585,1,148,148,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210412.log',1048585,1,152,152,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210412.log',1048585,1,169,169,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,11,NULL),('usage_events_20210412.log',1048585,1,178,178,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210412.log',1048585,1,190,190,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210412.log',1048585,1,204,204,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210412.log',1048585,1,205,205,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210412.log',1048585,1,206,206,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210412.log',1048585,1,207,207,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210412.log',1048585,1,208,208,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210412.log',1048585,1,209,209,'20210412','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210413.log',256,1,NULL,1,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,1,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,2,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,3,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,4,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,5,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,6,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,7,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,8,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,9,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,10,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,11,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,12,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210413.log',259,1,NULL,13,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210413.log',515,1,1,3,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210413.log',515,1,34,82,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210413.log',515,1,49,116,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210413.log',515,1,50,117,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20210413.log',515,1,51,118,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210413.log',515,1,53,120,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210413.log',515,1,78,288,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210413.log',515,1,100,306,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210413.log',515,1,114,308,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210413.log',515,1,148,394,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210413.log',515,1,150,407,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,75),('usage_events_20210413.log',515,1,151,414,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210413.log',515,1,152,423,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20210413.log',515,1,169,461,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210413.log',515,1,171,470,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20210413.log',515,1,173,479,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210413.log',515,1,174,486,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210413.log',515,1,175,493,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210413.log',515,1,176,500,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210413.log',515,1,177,507,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210413.log',515,1,178,514,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210413.log',515,1,186,533,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210413.log',515,1,190,556,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210413.log',515,1,204,597,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210413.log',515,1,205,606,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210413.log',515,1,206,615,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210413.log',515,1,207,622,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210413.log',515,1,209,637,'20210413','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210413.log',1048585,1,1,1,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210413.log',1048585,1,4,4,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210413.log',1048585,1,5,5,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210413.log',1048585,1,6,6,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210413.log',1048585,1,7,7,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210413.log',1048585,1,8,8,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210413.log',1048585,1,14,14,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210413.log',1048585,1,19,19,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210413.log',1048585,1,20,20,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210413.log',1048585,1,21,21,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210413.log',1048585,1,22,22,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210413.log',1048585,1,40,40,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210413.log',1048585,1,49,49,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210413.log',1048585,1,50,50,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,4,NULL),('usage_events_20210413.log',1048585,1,53,53,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210413.log',1048585,1,78,78,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210413.log',1048585,1,90,90,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210413.log',1048585,1,114,114,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210413.log',1048585,1,148,148,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210413.log',1048585,1,149,149,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210413.log',1048585,1,150,150,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210413.log',1048585,1,151,151,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210413.log',1048585,1,152,152,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210413.log',1048585,1,169,169,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210413.log',1048585,1,171,171,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210413.log',1048585,1,173,173,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210413.log',1048585,1,176,176,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210413.log',1048585,1,177,177,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210413.log',1048585,1,187,187,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210413.log',1048585,1,190,190,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210413.log',1048585,1,203,203,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210413.log',1048585,1,204,204,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210413.log',1048585,1,205,205,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210413.log',1048585,1,206,206,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,13,NULL),('usage_events_20210413.log',1048585,1,207,207,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210413.log',1048585,1,208,208,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210413.log',1048585,1,209,209,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210413.log',1048585,1,210,210,'20210413','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210414.log',256,1,NULL,1,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210414.log',259,1,NULL,13,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210414.log',515,1,50,117,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210414.log',515,1,53,120,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210414.log',515,1,58,137,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210414.log',515,1,82,284,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210414.log',515,1,78,288,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210414.log',515,1,84,289,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210414.log',515,1,99,305,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210414.log',515,1,137,343,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210414.log',515,1,146,379,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210414.log',515,1,148,394,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210414.log',515,1,150,407,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210414.log',515,1,152,423,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210414.log',515,1,169,461,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210414.log',515,1,171,470,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210414.log',515,1,175,493,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210414.log',515,1,176,500,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210414.log',515,1,177,507,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210414.log',515,1,187,539,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210414.log',515,1,190,556,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210414.log',515,1,193,569,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210414.log',515,1,205,606,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210414.log',515,1,206,615,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210414.log',515,1,207,622,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210414.log',515,1,208,630,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210414.log',515,1,209,637,'20210414','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210414.log',1048585,1,5,5,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210414.log',1048585,1,58,58,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210414.log',1048585,1,78,78,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210414.log',1048585,1,99,99,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210414.log',1048585,1,133,133,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210414.log',1048585,1,147,147,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210414.log',1048585,1,148,148,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210414.log',1048585,1,150,150,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210414.log',1048585,1,169,169,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210414.log',1048585,1,171,171,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210414.log',1048585,1,176,176,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210414.log',1048585,1,177,177,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210414.log',1048585,1,178,178,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210414.log',1048585,1,187,187,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210414.log',1048585,1,206,206,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210414.log',1048585,1,207,207,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210414.log',1048585,1,209,209,'20210414','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210415.log',256,1,NULL,1,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,2,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,5,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,6,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,7,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,8,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,10,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,11,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,12,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',259,1,NULL,13,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210415.log',515,1,4,19,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210415.log',515,1,20,53,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210415.log',515,1,51,118,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210415.log',515,1,53,120,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210415.log',515,1,58,137,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210415.log',515,1,81,283,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210415.log',515,1,78,288,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210415.log',515,1,87,291,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210415.log',515,1,89,293,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210415.log',515,1,99,305,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210415.log',515,1,114,308,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210415.log',515,1,134,324,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210415.log',515,1,148,394,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210415.log',515,1,149,401,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,74),('usage_events_20210415.log',515,1,150,407,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210415.log',515,1,152,423,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210415.log',515,1,169,461,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210415.log',515,1,174,486,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210415.log',515,1,176,500,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210415.log',515,1,178,514,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210415.log',515,1,185,527,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210415.log',515,1,187,539,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210415.log',515,1,190,556,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210415.log',515,1,193,569,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210415.log',515,1,205,606,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210415.log',515,1,206,615,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210415.log',515,1,210,644,'20210415','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210415.log',1048585,1,20,20,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210415.log',1048585,1,51,51,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210415.log',1048585,1,53,53,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210415.log',1048585,1,55,55,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210415.log',1048585,1,58,58,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210415.log',1048585,1,78,78,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210415.log',1048585,1,85,85,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210415.log',1048585,1,86,86,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210415.log',1048585,1,89,89,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210415.log',1048585,1,114,114,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210415.log',1048585,1,146,146,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210415.log',1048585,1,149,149,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210415.log',1048585,1,169,169,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210415.log',1048585,1,176,176,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210415.log',1048585,1,178,178,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210415.log',1048585,1,185,185,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210415.log',1048585,1,190,190,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210415.log',1048585,1,193,193,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210415.log',1048585,1,205,205,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210415.log',1048585,1,206,206,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,13,NULL),('usage_events_20210415.log',1048585,1,210,210,'20210415','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210416.log',256,1,NULL,1,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210416.log',259,1,NULL,13,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210416.log',515,1,51,118,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20210416.log',515,1,52,119,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210416.log',515,1,59,138,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210416.log',515,1,78,288,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210416.log',515,1,99,305,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210416.log',515,1,114,308,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210416.log',515,1,146,379,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210416.log',515,1,148,394,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210416.log',515,1,149,401,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,74),('usage_events_20210416.log',515,1,150,407,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210416.log',515,1,152,423,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,77),('usage_events_20210416.log',515,1,171,470,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210416.log',515,1,173,479,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210416.log',515,1,175,493,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210416.log',515,1,176,500,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210416.log',515,1,185,527,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210416.log',515,1,188,545,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210416.log',515,1,190,556,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210416.log',515,1,191,563,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210416.log',515,1,206,615,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',12,1,259,13,97),('usage_events_20210416.log',515,1,208,630,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210416.log',515,1,209,637,'20210416','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210416.log',1048585,1,51,51,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210416.log',1048585,1,78,78,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210416.log',1048585,1,79,79,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210416.log',1048585,1,86,86,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210416.log',1048585,1,147,147,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210416.log',1048585,1,148,148,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210416.log',1048585,1,149,149,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210416.log',1048585,1,150,150,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210416.log',1048585,1,152,152,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210416.log',1048585,1,171,171,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210416.log',1048585,1,173,173,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210416.log',1048585,1,175,175,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210416.log',1048585,1,176,176,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210416.log',1048585,1,185,185,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210416.log',1048585,1,190,190,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210416.log',1048585,1,206,206,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,13,NULL),('usage_events_20210416.log',1048585,1,207,207,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210416.log',1048585,1,208,208,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210416.log',1048585,1,209,209,'20210416','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210417.log',256,1,NULL,1,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210417.log',259,1,NULL,12,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210417.log',259,1,NULL,13,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210417.log',515,1,20,53,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210417.log',515,1,51,118,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210417.log',515,1,58,137,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210417.log',515,1,78,288,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210417.log',515,1,87,291,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210417.log',515,1,89,293,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210417.log',515,1,91,295,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210417.log',515,1,99,305,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210417.log',515,1,113,307,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210417.log',515,1,133,318,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210417.log',515,1,137,343,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210417.log',515,1,148,394,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210417.log',515,1,149,401,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20210417.log',515,1,150,407,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210417.log',515,1,169,461,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210417.log',515,1,171,470,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210417.log',515,1,173,479,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210417.log',515,1,174,486,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210417.log',515,1,178,514,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210417.log',515,1,185,527,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210417.log',515,1,190,556,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210417.log',515,1,193,569,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210417.log',515,1,203,589,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210417.log',515,1,205,606,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210417.log',515,1,206,615,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210417.log',515,1,207,622,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210417.log',515,1,208,630,'20210417','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210417.log',1048585,1,20,20,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210417.log',1048585,1,54,54,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210417.log',1048585,1,78,78,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210417.log',1048585,1,89,89,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210417.log',1048585,1,91,91,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210417.log',1048585,1,99,99,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210417.log',1048585,1,133,133,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210417.log',1048585,1,137,137,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210417.log',1048585,1,150,150,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210417.log',1048585,1,169,169,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210417.log',1048585,1,173,173,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210417.log',1048585,1,178,178,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210417.log',1048585,1,185,185,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210417.log',1048585,1,188,188,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210417.log',1048585,1,190,190,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210417.log',1048585,1,206,206,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210417.log',1048585,1,208,208,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210417.log',1048585,1,209,209,'20210417','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210418.log',515,1,58,137,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210418.log',515,1,79,282,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210418.log',515,1,81,283,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210418.log',515,1,78,288,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210418.log',515,1,91,295,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210418.log',515,1,99,305,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210418.log',515,1,100,306,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210418.log',515,1,147,387,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210418.log',515,1,148,394,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210418.log',515,1,149,401,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210418.log',515,1,151,414,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210418.log',515,1,169,461,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210418.log',515,1,171,470,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210418.log',515,1,178,514,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210418.log',515,1,189,551,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210418.log',515,1,203,589,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210418.log',515,1,205,606,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210418.log',515,1,206,615,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210418.log',515,1,207,622,'20210418','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210418.log',1048585,1,58,58,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210418.log',1048585,1,78,78,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210418.log',1048585,1,79,79,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210418.log',1048585,1,91,91,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210418.log',1048585,1,148,148,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210418.log',1048585,1,149,149,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210418.log',1048585,1,151,151,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210418.log',1048585,1,169,169,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210418.log',1048585,1,206,206,'20210418','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210419.log',256,1,NULL,1,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210419.log',259,1,NULL,13,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210419.log',515,1,54,133,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,29),('usage_events_20210419.log',515,1,56,135,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210419.log',515,1,79,282,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210419.log',515,1,82,284,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,45),('usage_events_20210419.log',515,1,83,285,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210419.log',515,1,77,287,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210419.log',515,1,78,288,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210419.log',515,1,86,290,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210419.log',515,1,87,291,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210419.log',515,1,99,305,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210419.log',515,1,125,310,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210419.log',515,1,134,324,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210419.log',515,1,137,343,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210419.log',515,1,147,387,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210419.log',515,1,148,394,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210419.log',515,1,149,401,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210419.log',515,1,150,407,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210419.log',515,1,169,461,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,78),('usage_events_20210419.log',515,1,171,470,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210419.log',515,1,173,479,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210419.log',515,1,174,486,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210419.log',515,1,175,493,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210419.log',515,1,177,507,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210419.log',515,1,178,514,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,85),('usage_events_20210419.log',515,1,185,527,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,12,86),('usage_events_20210419.log',515,1,205,606,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210419.log',515,1,206,615,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210419.log',515,1,207,622,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210419.log',515,1,209,637,'20210419','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210419.log',1048585,1,49,49,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210419.log',1048585,1,54,54,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210419.log',1048585,1,56,56,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210419.log',1048585,1,78,78,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210419.log',1048585,1,82,82,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210419.log',1048585,1,87,87,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210419.log',1048585,1,125,125,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210419.log',1048585,1,137,137,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210419.log',1048585,1,148,148,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210419.log',1048585,1,149,149,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210419.log',1048585,1,150,150,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210419.log',1048585,1,169,169,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210419.log',1048585,1,173,173,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210419.log',1048585,1,175,175,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210419.log',1048585,1,177,177,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210419.log',1048585,1,178,178,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210419.log',1048585,1,185,185,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210419.log',1048585,1,205,205,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210419.log',1048585,1,206,206,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210419.log',1048585,1,207,207,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210419.log',1048585,1,208,208,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210419.log',1048585,1,209,209,'20210419','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210420.log',256,1,NULL,1,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210420.log',259,1,NULL,11,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210420.log',259,1,NULL,12,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210420.log',259,1,NULL,13,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210420.log',515,1,19,52,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210420.log',515,1,46,114,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210420.log',515,1,49,116,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210420.log',515,1,54,133,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210420.log',515,1,58,137,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210420.log',515,1,79,282,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210420.log',515,1,81,283,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210420.log',515,1,82,284,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210420.log',515,1,76,286,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210420.log',515,1,77,287,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210420.log',515,1,78,288,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210420.log',515,1,86,290,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210420.log',515,1,87,291,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210420.log',515,1,137,343,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210420.log',515,1,148,394,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210420.log',515,1,149,401,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210420.log',515,1,169,461,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210420.log',515,1,171,470,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210420.log',515,1,173,479,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210420.log',515,1,175,493,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,82),('usage_events_20210420.log',515,1,176,500,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210420.log',515,1,177,507,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,84),('usage_events_20210420.log',515,1,178,514,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210420.log',515,1,185,527,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20210420.log',515,1,186,533,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210420.log',515,1,190,556,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210420.log',515,1,193,569,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210420.log',515,1,205,606,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210420.log',515,1,206,615,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210420.log',515,1,207,622,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210420.log',515,1,208,630,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210420.log',515,1,209,637,'20210420','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,100),('usage_events_20210420.log',1048585,1,20,20,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210420.log',1048585,1,54,54,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210420.log',1048585,1,58,58,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210420.log',1048585,1,78,78,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210420.log',1048585,1,79,79,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210420.log',1048585,1,81,81,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210420.log',1048585,1,86,86,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210420.log',1048585,1,137,137,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210420.log',1048585,1,148,148,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210420.log',1048585,1,150,150,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210420.log',1048585,1,169,169,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210420.log',1048585,1,171,171,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210420.log',1048585,1,173,173,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210420.log',1048585,1,175,175,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210420.log',1048585,1,176,176,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210420.log',1048585,1,177,177,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210420.log',1048585,1,190,190,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210420.log',1048585,1,205,205,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210420.log',1048585,1,206,206,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210420.log',1048585,1,207,207,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210420.log',1048585,1,208,208,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210420.log',1048585,1,209,209,'20210420','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210421.log',256,1,NULL,1,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210421.log',259,1,NULL,12,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210421.log',515,1,8,33,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210421.log',515,1,51,118,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210421.log',515,1,54,133,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210421.log',515,1,58,137,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210421.log',515,1,59,138,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210421.log',515,1,81,283,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210421.log',515,1,76,286,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210421.log',515,1,78,288,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210421.log',515,1,87,291,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210421.log',515,1,99,305,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210421.log',515,1,100,306,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210421.log',515,1,113,307,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210421.log',515,1,114,308,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210421.log',515,1,115,309,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210421.log',515,1,137,343,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210421.log',515,1,139,351,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210421.log',515,1,147,387,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210421.log',515,1,149,401,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210421.log',515,1,150,407,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210421.log',515,1,152,423,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210421.log',515,1,171,470,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',11,1,259,11,79),('usage_events_20210421.log',515,1,174,486,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210421.log',515,1,177,507,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210421.log',515,1,178,514,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210421.log',515,1,190,556,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210421.log',515,1,191,563,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210421.log',515,1,193,569,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210421.log',515,1,203,589,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210421.log',515,1,205,606,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210421.log',515,1,206,615,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210421.log',515,1,207,622,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210421.log',515,1,210,644,'20210421','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210421.log',1048585,1,53,53,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210421.log',1048585,1,58,58,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210421.log',1048585,1,76,76,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210421.log',1048585,1,78,78,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210421.log',1048585,1,86,86,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210421.log',1048585,1,100,100,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210421.log',1048585,1,113,113,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210421.log',1048585,1,115,115,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210421.log',1048585,1,139,139,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210421.log',1048585,1,142,142,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210421.log',1048585,1,147,147,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210421.log',1048585,1,149,149,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210421.log',1048585,1,152,152,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210421.log',1048585,1,171,171,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210421.log',1048585,1,176,176,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210421.log',1048585,1,177,177,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210421.log',1048585,1,178,178,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210421.log',1048585,1,190,190,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210421.log',1048585,1,191,191,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210421.log',1048585,1,193,193,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210421.log',1048585,1,203,203,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210421.log',1048585,1,205,205,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210421.log',1048585,1,206,206,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210421.log',1048585,1,207,207,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210421.log',1048585,1,208,208,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210421.log',1048585,1,209,209,'20210421','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210422.log',256,1,NULL,1,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210422.log',259,1,NULL,4,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210422.log',259,1,NULL,11,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210422.log',259,1,NULL,13,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210422.log',515,1,4,19,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210422.log',515,1,51,118,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,26),('usage_events_20210422.log',515,1,53,120,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210422.log',515,1,58,137,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210422.log',515,1,59,138,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210422.log',515,1,81,283,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210422.log',515,1,78,288,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20210422.log',515,1,84,289,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210422.log',515,1,89,293,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210422.log',515,1,91,295,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210422.log',515,1,99,305,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210422.log',515,1,114,308,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210422.log',515,1,133,318,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210422.log',515,1,137,343,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210422.log',515,1,148,394,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',14,1,259,10,73),('usage_events_20210422.log',515,1,149,401,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20210422.log',515,1,169,461,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210422.log',515,1,171,470,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210422.log',515,1,173,479,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210422.log',515,1,174,486,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210422.log',515,1,175,493,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210422.log',515,1,176,500,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210422.log',515,1,185,527,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210422.log',515,1,187,539,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210422.log',515,1,190,556,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210422.log',515,1,193,569,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210422.log',515,1,203,589,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210422.log',515,1,204,597,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210422.log',515,1,205,606,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210422.log',515,1,206,615,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210422.log',515,1,207,622,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210422.log',515,1,208,630,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210422.log',515,1,209,637,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210422.log',515,1,210,644,'20210422','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210422.log',1048585,1,4,4,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210422.log',1048585,1,50,50,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210422.log',1048585,1,51,51,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210422.log',1048585,1,52,52,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210422.log',1048585,1,53,53,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210422.log',1048585,1,58,58,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210422.log',1048585,1,78,78,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210422.log',1048585,1,81,81,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210422.log',1048585,1,83,83,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210422.log',1048585,1,89,89,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210422.log',1048585,1,114,114,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210422.log',1048585,1,134,134,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210422.log',1048585,1,139,139,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210422.log',1048585,1,148,148,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,10,NULL),('usage_events_20210422.log',1048585,1,149,149,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210422.log',1048585,1,150,150,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210422.log',1048585,1,151,151,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210422.log',1048585,1,169,169,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210422.log',1048585,1,171,171,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210422.log',1048585,1,175,175,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210422.log',1048585,1,176,176,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210422.log',1048585,1,187,187,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210422.log',1048585,1,193,193,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210422.log',1048585,1,203,203,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210422.log',1048585,1,204,204,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210422.log',1048585,1,205,205,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210422.log',1048585,1,206,206,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210422.log',1048585,1,207,207,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210422.log',1048585,1,208,208,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210422.log',1048585,1,209,209,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210422.log',1048585,1,210,210,'20210422','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210423.log',256,1,NULL,1,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20210423.log',259,1,NULL,7,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210423.log',259,1,NULL,8,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210423.log',259,1,NULL,9,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210423.log',259,1,NULL,11,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210423.log',515,1,8,33,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210423.log',515,1,51,118,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210423.log',515,1,53,120,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,28),('usage_events_20210423.log',515,1,54,133,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210423.log',515,1,57,136,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210423.log',515,1,58,137,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210423.log',515,1,78,288,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210423.log',515,1,86,290,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210423.log',515,1,99,305,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210423.log',515,1,114,308,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210423.log',515,1,135,330,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210423.log',515,1,137,343,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210423.log',515,1,149,401,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210423.log',515,1,150,407,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210423.log',515,1,169,461,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210423.log',515,1,174,486,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210423.log',515,1,175,493,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210423.log',515,1,176,500,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210423.log',515,1,177,507,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,84),('usage_events_20210423.log',515,1,185,527,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20210423.log',515,1,186,533,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210423.log',515,1,190,556,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210423.log',515,1,191,563,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210423.log',515,1,193,569,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210423.log',515,1,205,606,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210423.log',515,1,208,630,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210423.log',515,1,209,637,'20210423','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210423.log',1048585,1,32,32,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210423.log',1048585,1,52,52,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210423.log',1048585,1,53,53,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210423.log',1048585,1,54,54,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210423.log',1048585,1,58,58,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210423.log',1048585,1,78,78,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210423.log',1048585,1,86,86,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210423.log',1048585,1,89,89,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210423.log',1048585,1,114,114,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210423.log',1048585,1,134,134,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210423.log',1048585,1,151,151,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210423.log',1048585,1,173,173,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210423.log',1048585,1,174,174,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210423.log',1048585,1,176,176,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210423.log',1048585,1,177,177,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210423.log',1048585,1,185,185,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210423.log',1048585,1,186,186,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210423.log',1048585,1,190,190,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210423.log',1048585,1,191,191,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210423.log',1048585,1,193,193,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210423.log',1048585,1,204,204,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210423.log',1048585,1,206,206,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210423.log',1048585,1,207,207,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210423.log',1048585,1,208,208,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210423.log',1048585,1,209,209,'20210423','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210424.log',256,1,NULL,1,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210424.log',259,1,NULL,7,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210424.log',515,1,5,30,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210424.log',515,1,8,33,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210424.log',515,1,31,79,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210424.log',515,1,49,116,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210424.log',515,1,51,118,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20210424.log',515,1,79,282,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210424.log',515,1,82,284,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210424.log',515,1,78,288,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210424.log',515,1,87,291,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210424.log',515,1,99,305,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210424.log',515,1,115,309,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210424.log',515,1,125,310,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210424.log',515,1,139,351,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210424.log',515,1,142,367,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210424.log',515,1,147,387,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210424.log',515,1,150,407,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,75),('usage_events_20210424.log',515,1,171,470,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210424.log',515,1,185,527,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210424.log',515,1,186,533,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210424.log',515,1,187,539,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210424.log',515,1,190,556,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210424.log',515,1,191,563,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210424.log',515,1,193,569,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210424.log',515,1,203,589,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210424.log',515,1,204,597,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210424.log',515,1,205,606,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210424.log',515,1,206,615,'20210424','202104',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210424.log',1048585,1,8,8,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210424.log',1048585,1,51,51,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210424.log',1048585,1,53,53,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210424.log',1048585,1,78,78,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210424.log',1048585,1,115,115,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210424.log',1048585,1,134,134,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210424.log',1048585,1,149,149,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210424.log',1048585,1,150,150,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210424.log',1048585,1,171,171,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210424.log',1048585,1,187,187,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210424.log',1048585,1,190,190,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210424.log',1048585,1,193,193,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210424.log',1048585,1,204,204,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210424.log',1048585,1,205,205,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210424.log',1048585,1,206,206,'20210424','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210425.log',515,1,4,19,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210425.log',515,1,8,33,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210425.log',515,1,49,116,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210425.log',515,1,53,120,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210425.log',515,1,54,133,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210425.log',515,1,55,134,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210425.log',515,1,58,137,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210425.log',515,1,59,138,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210425.log',515,1,85,281,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20210425.log',515,1,79,282,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20210425.log',515,1,81,283,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210425.log',515,1,82,284,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210425.log',515,1,78,288,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210425.log',515,1,84,289,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210425.log',515,1,87,291,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210425.log',515,1,137,343,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210425.log',515,1,139,351,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210425.log',515,1,147,387,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210425.log',515,1,148,394,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210425.log',515,1,149,401,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210425.log',515,1,150,407,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210425.log',515,1,151,414,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210425.log',515,1,171,470,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210425.log',515,1,175,493,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210425.log',515,1,176,500,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20210425.log',515,1,177,507,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210425.log',515,1,178,514,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210425.log',515,1,190,556,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210425.log',515,1,191,563,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210425.log',515,1,193,569,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210425.log',515,1,205,606,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210425.log',515,1,206,615,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210425.log',515,1,207,622,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210425.log',515,1,209,637,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210425.log',515,1,210,644,'20210425','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210425.log',1048585,1,8,8,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210425.log',1048585,1,54,54,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210425.log',1048585,1,55,55,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210425.log',1048585,1,58,58,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210425.log',1048585,1,78,78,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210425.log',1048585,1,79,79,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210425.log',1048585,1,81,81,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210425.log',1048585,1,85,85,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210425.log',1048585,1,87,87,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210425.log',1048585,1,139,139,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210425.log',1048585,1,150,150,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210425.log',1048585,1,152,152,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210425.log',1048585,1,171,171,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210425.log',1048585,1,176,176,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210425.log',1048585,1,177,177,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210425.log',1048585,1,185,185,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210425.log',1048585,1,206,206,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210425.log',1048585,1,210,210,'20210425','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210426.log',256,1,NULL,1,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210426.log',259,1,NULL,1,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210426.log',259,1,NULL,2,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210426.log',259,1,NULL,4,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210426.log',259,1,NULL,7,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210426.log',259,1,NULL,11,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210426.log',259,1,NULL,13,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210426.log',515,1,7,32,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210426.log',515,1,8,33,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210426.log',515,1,47,115,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210426.log',515,1,53,120,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210426.log',515,1,79,282,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210426.log',515,1,78,288,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210426.log',515,1,89,293,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20210426.log',515,1,91,295,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210426.log',515,1,99,305,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210426.log',515,1,100,306,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210426.log',515,1,113,307,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210426.log',515,1,125,310,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210426.log',515,1,133,318,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210426.log',515,1,135,330,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210426.log',515,1,139,351,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210426.log',515,1,142,367,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210426.log',515,1,149,401,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210426.log',515,1,171,470,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210426.log',515,1,175,493,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210426.log',515,1,176,500,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210426.log',515,1,177,507,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210426.log',515,1,178,514,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210426.log',515,1,186,533,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210426.log',515,1,188,545,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,89),('usage_events_20210426.log',515,1,190,556,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210426.log',515,1,193,569,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210426.log',515,1,203,589,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210426.log',515,1,205,606,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210426.log',515,1,206,615,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210426.log',515,1,207,622,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,98),('usage_events_20210426.log',515,1,208,630,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210426.log',515,1,209,637,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210426.log',515,1,210,644,'20210426','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210426.log',1048585,1,4,4,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210426.log',1048585,1,6,6,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210426.log',1048585,1,7,7,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210426.log',1048585,1,8,8,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210426.log',1048585,1,19,19,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210426.log',1048585,1,47,47,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210426.log',1048585,1,53,53,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210426.log',1048585,1,58,58,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210426.log',1048585,1,78,78,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210426.log',1048585,1,79,79,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210426.log',1048585,1,91,91,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210426.log',1048585,1,135,135,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210426.log',1048585,1,142,142,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210426.log',1048585,1,149,149,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210426.log',1048585,1,171,171,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210426.log',1048585,1,176,176,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210426.log',1048585,1,177,177,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210426.log',1048585,1,185,185,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210426.log',1048585,1,187,187,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210426.log',1048585,1,204,204,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210426.log',1048585,1,205,205,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210426.log',1048585,1,206,206,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210426.log',1048585,1,207,207,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210426.log',1048585,1,208,208,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210426.log',1048585,1,209,209,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210426.log',1048585,1,210,210,'20210426','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210427.log',259,1,NULL,2,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210427.log',259,1,NULL,4,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210427.log',259,1,NULL,5,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210427.log',259,1,NULL,7,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210427.log',259,1,NULL,11,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210427.log',515,1,5,30,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210427.log',515,1,20,53,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210427.log',515,1,47,115,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210427.log',515,1,51,118,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210427.log',515,1,79,282,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210427.log',515,1,81,283,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210427.log',515,1,83,285,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210427.log',515,1,78,288,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210427.log',515,1,84,289,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210427.log',515,1,87,291,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210427.log',515,1,88,292,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210427.log',515,1,89,293,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210427.log',515,1,90,294,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210427.log',515,1,91,295,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210427.log',515,1,133,318,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210427.log',515,1,136,336,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210427.log',515,1,147,387,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210427.log',515,1,148,394,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210427.log',515,1,150,407,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210427.log',515,1,169,461,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210427.log',515,1,173,479,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210427.log',515,1,175,493,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210427.log',515,1,176,500,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210427.log',515,1,177,507,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210427.log',515,1,190,556,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210427.log',515,1,191,563,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210427.log',515,1,206,615,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210427.log',515,1,207,622,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210427.log',515,1,208,630,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210427.log',515,1,210,644,'20210427','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210427.log',1048585,1,7,7,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210427.log',1048585,1,8,8,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210427.log',1048585,1,47,47,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210427.log',1048585,1,51,51,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210427.log',1048585,1,58,58,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210427.log',1048585,1,78,78,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210427.log',1048585,1,79,79,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210427.log',1048585,1,81,81,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210427.log',1048585,1,83,83,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210427.log',1048585,1,84,84,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210427.log',1048585,1,136,136,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210427.log',1048585,1,147,147,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210427.log',1048585,1,148,148,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210427.log',1048585,1,149,149,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210427.log',1048585,1,150,150,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210427.log',1048585,1,169,169,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210427.log',1048585,1,171,171,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210427.log',1048585,1,173,173,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210427.log',1048585,1,190,190,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210427.log',1048585,1,191,191,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210427.log',1048585,1,193,193,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210427.log',1048585,1,206,206,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210427.log',1048585,1,207,207,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210427.log',1048585,1,210,210,'20210427','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210428.log',256,1,NULL,1,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210428.log',259,1,NULL,5,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210428.log',259,1,NULL,7,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210428.log',259,1,NULL,9,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210428.log',515,1,4,19,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210428.log',515,1,7,32,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20210428.log',515,1,32,80,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210428.log',515,1,53,120,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210428.log',515,1,54,133,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210428.log',515,1,58,137,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210428.log',515,1,82,284,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210428.log',515,1,78,288,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210428.log',515,1,86,290,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210428.log',515,1,99,305,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210428.log',515,1,133,318,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210428.log',515,1,136,336,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210428.log',515,1,137,343,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210428.log',515,1,139,351,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210428.log',515,1,148,394,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210428.log',515,1,150,407,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210428.log',515,1,169,461,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210428.log',515,1,171,470,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210428.log',515,1,173,479,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210428.log',515,1,175,493,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210428.log',515,1,177,507,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210428.log',515,1,193,569,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,93),('usage_events_20210428.log',515,1,205,606,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210428.log',515,1,206,615,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210428.log',515,1,207,622,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210428.log',515,1,209,637,'20210428','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210428.log',1048585,1,7,7,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210428.log',1048585,1,33,33,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210428.log',1048585,1,49,49,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210428.log',1048585,1,53,53,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210428.log',1048585,1,58,58,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210428.log',1048585,1,78,78,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210428.log',1048585,1,86,86,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210428.log',1048585,1,136,136,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210428.log',1048585,1,137,137,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210428.log',1048585,1,169,169,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210428.log',1048585,1,173,173,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210428.log',1048585,1,175,175,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210428.log',1048585,1,176,176,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210428.log',1048585,1,193,193,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210428.log',1048585,1,206,206,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210428.log',1048585,1,207,207,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210428.log',1048585,1,209,209,'20210428','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210429.log',515,1,20,53,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210429.log',515,1,53,120,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210429.log',515,1,54,133,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210429.log',515,1,79,282,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210429.log',515,1,81,283,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210429.log',515,1,78,288,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',13,1,259,7,49),('usage_events_20210429.log',515,1,84,289,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210429.log',515,1,89,293,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210429.log',515,1,113,307,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210429.log',515,1,114,308,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210429.log',515,1,115,309,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210429.log',515,1,142,367,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210429.log',515,1,148,394,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210429.log',515,1,149,401,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210429.log',515,1,169,461,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210429.log',515,1,171,470,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210429.log',515,1,175,493,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210429.log',515,1,176,500,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210429.log',515,1,177,507,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210429.log',515,1,178,514,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210429.log',515,1,204,597,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210429.log',515,1,205,606,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210429.log',515,1,206,615,'20210429','202104',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210429.log',1048585,1,20,20,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210429.log',1048585,1,35,35,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210429.log',1048585,1,53,53,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210429.log',1048585,1,56,56,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210429.log',1048585,1,78,78,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210429.log',1048585,1,89,89,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210429.log',1048585,1,100,100,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210429.log',1048585,1,169,169,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210429.log',1048585,1,171,171,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210429.log',1048585,1,190,190,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210429.log',1048585,1,206,206,'20210429','202104',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210430.log',259,1,NULL,5,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210430.log',259,1,NULL,8,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210430.log',515,1,4,19,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210430.log',515,1,5,30,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210430.log',515,1,19,52,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210430.log',515,1,49,116,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210430.log',515,1,51,118,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210430.log',515,1,54,133,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210430.log',515,1,59,138,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210430.log',515,1,79,282,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210430.log',515,1,81,283,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210430.log',515,1,78,288,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20210430.log',515,1,86,290,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210430.log',515,1,91,295,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210430.log',515,1,99,305,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210430.log',515,1,100,306,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210430.log',515,1,113,307,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210430.log',515,1,142,367,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210430.log',515,1,147,387,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210430.log',515,1,148,394,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210430.log',515,1,149,401,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210430.log',515,1,151,414,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210430.log',515,1,169,461,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210430.log',515,1,174,486,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210430.log',515,1,175,493,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210430.log',515,1,176,500,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210430.log',515,1,178,514,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210430.log',515,1,187,539,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210430.log',515,1,190,556,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210430.log',515,1,191,563,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210430.log',515,1,203,589,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210430.log',515,1,205,606,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210430.log',515,1,206,615,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210430.log',515,1,207,622,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210430.log',515,1,208,630,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210430.log',515,1,209,637,'20210430','202104',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210430.log',1048585,1,4,4,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210430.log',1048585,1,47,47,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210430.log',1048585,1,53,53,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210430.log',1048585,1,58,58,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210430.log',1048585,1,78,78,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210430.log',1048585,1,79,79,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210430.log',1048585,1,81,81,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210430.log',1048585,1,86,86,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210430.log',1048585,1,100,100,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210430.log',1048585,1,142,142,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210430.log',1048585,1,149,149,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210430.log',1048585,1,150,150,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210430.log',1048585,1,152,152,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210430.log',1048585,1,169,169,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210430.log',1048585,1,171,171,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210430.log',1048585,1,187,187,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210430.log',1048585,1,190,190,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210430.log',1048585,1,203,203,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210430.log',1048585,1,206,206,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210430.log',1048585,1,208,208,'20210430','202104',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210501.log',256,1,NULL,1,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210501.log',259,1,NULL,12,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210501.log',515,1,47,115,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210501.log',515,1,51,118,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210501.log',515,1,53,120,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210501.log',515,1,54,133,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210501.log',515,1,56,135,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210501.log',515,1,59,138,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210501.log',515,1,79,282,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210501.log',515,1,78,288,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210501.log',515,1,114,308,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210501.log',515,1,169,461,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210501.log',515,1,171,470,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210501.log',515,1,175,493,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210501.log',515,1,190,556,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210501.log',515,1,191,563,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210501.log',515,1,206,615,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210501.log',515,1,209,637,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210501.log',515,1,210,644,'20210501','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210501.log',1048585,1,47,47,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210501.log',1048585,1,78,78,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210501.log',1048585,1,89,89,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210501.log',1048585,1,114,114,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210501.log',1048585,1,134,134,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210501.log',1048585,1,169,169,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210501.log',1048585,1,171,171,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210501.log',1048585,1,175,175,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210501.log',1048585,1,190,190,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210501.log',1048585,1,191,191,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210501.log',1048585,1,210,210,'20210501','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210502.log',256,1,NULL,1,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210502.log',259,1,NULL,9,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210502.log',259,1,NULL,13,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210502.log',515,1,7,32,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210502.log',515,1,54,133,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210502.log',515,1,85,281,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210502.log',515,1,81,283,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210502.log',515,1,82,284,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210502.log',515,1,78,288,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210502.log',515,1,114,308,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210502.log',515,1,133,318,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210502.log',515,1,141,361,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210502.log',515,1,142,367,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210502.log',515,1,148,394,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210502.log',515,1,149,401,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210502.log',515,1,150,407,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210502.log',515,1,169,461,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210502.log',515,1,171,470,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210502.log',515,1,173,479,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210502.log',515,1,174,486,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210502.log',515,1,175,493,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210502.log',515,1,189,551,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210502.log',515,1,190,556,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210502.log',515,1,205,606,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210502.log',515,1,206,615,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210502.log',515,1,209,637,'20210502','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210502.log',1048585,1,53,53,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210502.log',1048585,1,54,54,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210502.log',1048585,1,55,55,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210502.log',1048585,1,56,56,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210502.log',1048585,1,57,57,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210502.log',1048585,1,59,59,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210502.log',1048585,1,78,78,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210502.log',1048585,1,85,85,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210502.log',1048585,1,86,86,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210502.log',1048585,1,87,87,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210502.log',1048585,1,88,88,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210502.log',1048585,1,89,89,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210502.log',1048585,1,90,90,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210502.log',1048585,1,91,91,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210502.log',1048585,1,100,100,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210502.log',1048585,1,114,114,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210502.log',1048585,1,133,133,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210502.log',1048585,1,134,134,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210502.log',1048585,1,135,135,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210502.log',1048585,1,136,136,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210502.log',1048585,1,137,137,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210502.log',1048585,1,141,141,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210502.log',1048585,1,142,142,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210502.log',1048585,1,146,146,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210502.log',1048585,1,147,147,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210502.log',1048585,1,148,148,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210502.log',1048585,1,149,149,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210502.log',1048585,1,150,150,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210502.log',1048585,1,151,151,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210502.log',1048585,1,152,152,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210502.log',1048585,1,169,169,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210502.log',1048585,1,171,171,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210502.log',1048585,1,173,173,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210502.log',1048585,1,174,174,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210502.log',1048585,1,205,205,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210502.log',1048585,1,209,209,'20210502','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210503.log',256,1,NULL,1,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210503.log',515,1,53,120,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210503.log',515,1,85,281,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210503.log',515,1,76,286,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210503.log',515,1,78,288,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210503.log',515,1,99,305,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210503.log',515,1,125,310,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20210503.log',515,1,147,387,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210503.log',515,1,148,394,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210503.log',515,1,149,401,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210503.log',515,1,150,407,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210503.log',515,1,152,423,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210503.log',515,1,169,461,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210503.log',515,1,171,470,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,79),('usage_events_20210503.log',515,1,174,486,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210503.log',515,1,177,507,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210503.log',515,1,178,514,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210503.log',515,1,185,527,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210503.log',515,1,187,539,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210503.log',515,1,205,606,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210503.log',515,1,206,615,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210503.log',515,1,207,622,'20210503','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210503.log',1048585,1,19,19,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210503.log',1048585,1,53,53,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210503.log',1048585,1,58,58,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210503.log',1048585,1,89,89,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210503.log',1048585,1,125,125,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210503.log',1048585,1,142,142,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210503.log',1048585,1,149,149,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210503.log',1048585,1,150,150,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210503.log',1048585,1,152,152,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210503.log',1048585,1,169,169,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210503.log',1048585,1,171,171,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210503.log',1048585,1,178,178,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210503.log',1048585,1,187,187,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210503.log',1048585,1,193,193,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210503.log',1048585,1,204,204,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210503.log',1048585,1,206,206,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210503.log',1048585,1,207,207,'20210503','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210504.log',259,1,NULL,13,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210504.log',515,1,21,54,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20210504.log',515,1,35,83,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210504.log',515,1,49,116,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210504.log',515,1,53,120,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210504.log',515,1,56,135,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210504.log',515,1,57,136,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210504.log',515,1,85,281,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210504.log',515,1,79,282,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20210504.log',515,1,81,283,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210504.log',515,1,78,288,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210504.log',515,1,99,305,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210504.log',515,1,142,367,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210504.log',515,1,148,394,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210504.log',515,1,169,461,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210504.log',515,1,174,486,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210504.log',515,1,175,493,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210504.log',515,1,176,500,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210504.log',515,1,177,507,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210504.log',515,1,178,514,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210504.log',515,1,193,569,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210504.log',515,1,205,606,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210504.log',515,1,206,615,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210504.log',515,1,207,622,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',16,1,259,13,98),('usage_events_20210504.log',515,1,210,644,'20210504','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210504.log',1048585,1,35,35,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210504.log',1048585,1,49,49,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210504.log',1048585,1,52,52,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210504.log',1048585,1,53,53,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210504.log',1048585,1,78,78,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210504.log',1048585,1,114,114,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210504.log',1048585,1,115,115,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210504.log',1048585,1,142,142,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210504.log',1048585,1,148,148,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210504.log',1048585,1,149,149,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210504.log',1048585,1,169,169,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210504.log',1048585,1,174,174,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210504.log',1048585,1,176,176,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210504.log',1048585,1,178,178,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210504.log',1048585,1,193,193,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210504.log',1048585,1,206,206,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210504.log',1048585,1,207,207,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210504.log',1048585,1,210,210,'20210504','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210505.log',515,1,4,19,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210505.log',515,1,51,118,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210505.log',515,1,85,281,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20210505.log',515,1,81,283,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210505.log',515,1,83,285,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210505.log',515,1,78,288,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210505.log',515,1,87,291,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210505.log',515,1,90,294,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210505.log',515,1,114,308,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,60),('usage_events_20210505.log',515,1,115,309,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210505.log',515,1,142,367,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210505.log',515,1,147,387,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210505.log',515,1,148,394,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210505.log',515,1,149,401,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210505.log',515,1,173,479,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210505.log',515,1,174,486,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210505.log',515,1,175,493,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210505.log',515,1,176,500,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210505.log',515,1,177,507,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210505.log',515,1,178,514,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210505.log',515,1,185,527,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210505.log',515,1,187,539,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210505.log',515,1,188,545,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210505.log',515,1,191,563,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210505.log',515,1,205,606,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210505.log',515,1,206,615,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210505.log',515,1,207,622,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210505.log',515,1,208,630,'20210505','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210505.log',1048585,1,58,58,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210505.log',1048585,1,81,81,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210505.log',1048585,1,83,83,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210505.log',1048585,1,87,87,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210505.log',1048585,1,99,99,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210505.log',1048585,1,114,114,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,8,NULL),('usage_events_20210505.log',1048585,1,147,147,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210505.log',1048585,1,148,148,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210505.log',1048585,1,173,173,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210505.log',1048585,1,175,175,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210505.log',1048585,1,177,177,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210505.log',1048585,1,178,178,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210505.log',1048585,1,191,191,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210505.log',1048585,1,206,206,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210505.log',1048585,1,208,208,'20210505','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210506.log',256,1,NULL,1,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210506.log',259,1,NULL,13,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210506.log',515,1,8,33,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210506.log',515,1,49,116,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210506.log',515,1,76,286,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210506.log',515,1,78,288,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210506.log',515,1,91,295,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210506.log',515,1,100,306,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210506.log',515,1,113,307,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210506.log',515,1,114,308,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210506.log',515,1,148,394,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210506.log',515,1,151,414,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20210506.log',515,1,152,423,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210506.log',515,1,169,461,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210506.log',515,1,173,479,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,80),('usage_events_20210506.log',515,1,174,486,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210506.log',515,1,175,493,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210506.log',515,1,177,507,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210506.log',515,1,185,527,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210506.log',515,1,187,539,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210506.log',515,1,203,589,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210506.log',515,1,205,606,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210506.log',515,1,206,615,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210506.log',515,1,207,622,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,98),('usage_events_20210506.log',515,1,208,630,'20210506','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210506.log',1048585,1,8,8,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210506.log',1048585,1,47,47,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210506.log',1048585,1,49,49,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210506.log',1048585,1,78,78,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210506.log',1048585,1,83,83,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210506.log',1048585,1,91,91,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210506.log',1048585,1,99,99,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210506.log',1048585,1,114,114,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210506.log',1048585,1,134,134,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210506.log',1048585,1,148,148,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210506.log',1048585,1,150,150,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210506.log',1048585,1,151,151,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210506.log',1048585,1,152,152,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210506.log',1048585,1,173,173,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210506.log',1048585,1,174,174,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210506.log',1048585,1,176,176,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210506.log',1048585,1,177,177,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210506.log',1048585,1,203,203,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210506.log',1048585,1,206,206,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210506.log',1048585,1,207,207,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210506.log',1048585,1,208,208,'20210506','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210507.log',256,1,NULL,1,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210507.log',515,1,49,116,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210507.log',515,1,53,120,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210507.log',515,1,58,137,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210507.log',515,1,59,138,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210507.log',515,1,81,283,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210507.log',515,1,76,286,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210507.log',515,1,78,288,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210507.log',515,1,86,290,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210507.log',515,1,99,305,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210507.log',515,1,114,308,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210507.log',515,1,133,318,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210507.log',515,1,137,343,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210507.log',515,1,141,361,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20210507.log',515,1,148,394,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210507.log',515,1,152,423,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210507.log',515,1,169,461,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',16,1,259,11,78),('usage_events_20210507.log',515,1,173,479,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210507.log',515,1,175,493,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210507.log',515,1,176,500,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210507.log',515,1,190,556,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210507.log',515,1,191,563,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20210507.log',515,1,205,606,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210507.log',515,1,206,615,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210507.log',515,1,207,622,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210507.log',515,1,208,630,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210507.log',515,1,209,637,'20210507','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210507.log',1048585,1,53,53,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210507.log',1048585,1,58,58,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210507.log',1048585,1,78,78,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210507.log',1048585,1,81,81,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210507.log',1048585,1,86,86,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210507.log',1048585,1,114,114,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210507.log',1048585,1,133,133,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210507.log',1048585,1,141,141,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210507.log',1048585,1,147,147,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210507.log',1048585,1,151,151,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210507.log',1048585,1,175,175,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210507.log',1048585,1,176,176,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210507.log',1048585,1,204,204,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210507.log',1048585,1,206,206,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210507.log',1048585,1,207,207,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210507.log',1048585,1,208,208,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210507.log',1048585,1,209,209,'20210507','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210508.log',256,1,NULL,1,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210508.log',259,1,NULL,1,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210508.log',259,1,NULL,2,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210508.log',259,1,NULL,4,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210508.log',259,1,NULL,7,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210508.log',259,1,NULL,11,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210508.log',259,1,NULL,13,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210508.log',515,1,4,19,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210508.log',515,1,8,33,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210508.log',515,1,49,116,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210508.log',515,1,55,134,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210508.log',515,1,59,138,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210508.log',515,1,82,284,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210508.log',515,1,78,288,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210508.log',515,1,87,291,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210508.log',515,1,139,351,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210508.log',515,1,173,479,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210508.log',515,1,175,493,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20210508.log',515,1,187,539,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210508.log',515,1,204,597,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210508.log',515,1,205,606,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210508.log',515,1,206,615,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210508.log',515,1,207,622,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210508.log',515,1,210,644,'20210508','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210508.log',1048585,1,4,4,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210508.log',1048585,1,6,6,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210508.log',1048585,1,8,8,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',22,1,259,1,NULL),('usage_events_20210508.log',1048585,1,78,78,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210508.log',1048585,1,147,147,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210508.log',1048585,1,152,152,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210508.log',1048585,1,169,169,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210508.log',1048585,1,173,173,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210508.log',1048585,1,175,175,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210508.log',1048585,1,187,187,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210508.log',1048585,1,190,190,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210508.log',1048585,1,204,204,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210508.log',1048585,1,205,205,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210508.log',1048585,1,206,206,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210508.log',1048585,1,207,207,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210508.log',1048585,1,209,209,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210508.log',1048585,1,210,210,'20210508','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210509.log',256,1,NULL,1,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210509.log',259,1,NULL,1,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210509.log',259,1,NULL,13,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210509.log',515,1,4,19,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210509.log',515,1,8,33,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',8,1,259,1,7),('usage_events_20210509.log',515,1,19,52,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210509.log',515,1,81,283,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210509.log',515,1,83,285,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210509.log',515,1,76,286,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210509.log',515,1,78,288,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210509.log',515,1,89,293,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210509.log',515,1,99,305,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210509.log',515,1,113,307,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210509.log',515,1,142,367,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210509.log',515,1,147,387,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210509.log',515,1,169,461,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210509.log',515,1,171,470,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210509.log',515,1,174,486,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,81),('usage_events_20210509.log',515,1,175,493,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210509.log',515,1,176,500,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210509.log',515,1,177,507,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210509.log',515,1,178,514,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210509.log',515,1,188,545,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210509.log',515,1,190,556,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210509.log',515,1,204,597,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210509.log',515,1,205,606,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210509.log',515,1,206,615,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210509.log',515,1,207,622,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210509.log',515,1,208,630,'20210509','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210509.log',1048585,1,8,8,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,1,NULL),('usage_events_20210509.log',1048585,1,19,19,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210509.log',1048585,1,34,34,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210509.log',1048585,1,78,78,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210509.log',1048585,1,83,83,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210509.log',1048585,1,89,89,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210509.log',1048585,1,169,169,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210509.log',1048585,1,171,171,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210509.log',1048585,1,177,177,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210509.log',1048585,1,178,178,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210509.log',1048585,1,185,185,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210509.log',1048585,1,186,186,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210509.log',1048585,1,190,190,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210509.log',1048585,1,204,204,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210509.log',1048585,1,205,205,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210509.log',1048585,1,206,206,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210509.log',1048585,1,207,207,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210509.log',1048585,1,208,208,'20210509','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210510.log',256,1,NULL,1,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210510.log',259,1,NULL,12,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210510.log',259,1,NULL,13,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210510.log',515,1,4,19,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210510.log',515,1,40,94,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210510.log',515,1,46,114,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210510.log',515,1,99,305,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210510.log',515,1,137,343,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210510.log',515,1,148,394,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210510.log',515,1,152,423,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210510.log',515,1,169,461,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210510.log',515,1,171,470,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210510.log',515,1,173,479,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210510.log',515,1,174,486,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210510.log',515,1,175,493,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210510.log',515,1,178,514,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210510.log',515,1,185,527,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210510.log',515,1,186,533,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210510.log',515,1,187,539,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210510.log',515,1,190,556,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210510.log',515,1,191,563,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210510.log',515,1,193,569,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210510.log',515,1,205,606,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210510.log',515,1,206,615,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210510.log',515,1,207,622,'20210510','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210510.log',1048585,1,40,40,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210510.log',1048585,1,99,99,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210510.log',1048585,1,169,169,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210510.log',1048585,1,171,171,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210510.log',1048585,1,175,175,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210510.log',1048585,1,178,178,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210510.log',1048585,1,185,185,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210510.log',1048585,1,186,186,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210510.log',1048585,1,190,190,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210510.log',1048585,1,193,193,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210510.log',1048585,1,205,205,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210510.log',1048585,1,206,206,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210510.log',1048585,1,207,207,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210510.log',1048585,1,210,210,'20210510','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210511.log',256,1,NULL,1,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210511.log',515,1,81,283,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210511.log',515,1,99,305,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210511.log',515,1,114,308,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210511.log',515,1,142,367,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210511.log',515,1,151,414,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210511.log',515,1,169,461,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210511.log',515,1,171,470,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210511.log',515,1,173,479,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210511.log',515,1,178,514,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210511.log',515,1,205,606,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210511.log',515,1,206,615,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210511.log',515,1,207,622,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210511.log',515,1,209,637,'20210511','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210511.log',1048585,1,58,58,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210511.log',1048585,1,81,81,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210511.log',1048585,1,87,87,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210511.log',1048585,1,114,114,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210511.log',1048585,1,151,151,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210511.log',1048585,1,173,173,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210511.log',1048585,1,178,178,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210511.log',1048585,1,206,206,'20210511','202105',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210512.log',515,1,32,80,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210512.log',515,1,84,289,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210512.log',515,1,133,318,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210512.log',515,1,149,401,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210512.log',515,1,173,479,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210512.log',515,1,174,486,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210512.log',515,1,177,507,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210512.log',515,1,178,514,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210512.log',515,1,204,597,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210512.log',515,1,205,606,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210512.log',515,1,207,622,'20210512','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210512.log',1048585,1,78,78,'20210512','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210512.log',1048585,1,173,173,'20210512','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210512.log',1048585,1,177,177,'20210512','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210513.log',256,1,NULL,1,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210513.log',259,1,NULL,8,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210513.log',515,1,114,308,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210513.log',515,1,137,343,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210513.log',515,1,141,361,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210513.log',515,1,148,394,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210513.log',515,1,150,407,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210513.log',515,1,173,479,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210513.log',515,1,174,486,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210513.log',515,1,205,606,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210513.log',515,1,206,615,'20210513','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,97),('usage_events_20210513.log',1048585,1,83,83,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210513.log',1048585,1,137,137,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210513.log',1048585,1,141,141,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210513.log',1048585,1,148,148,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210513.log',1048585,1,150,150,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210513.log',1048585,1,171,171,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210513.log',1048585,1,173,173,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210513.log',1048585,1,174,174,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210513.log',1048585,1,177,177,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210513.log',1048585,1,203,203,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210513.log',1048585,1,206,206,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210513.log',1048585,1,207,207,'20210513','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210514.log',515,1,54,133,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210514.log',515,1,78,288,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210514.log',515,1,137,343,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210514.log',515,1,147,387,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210514.log',515,1,148,394,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210514.log',515,1,150,407,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210514.log',515,1,169,461,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210514.log',515,1,174,486,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210514.log',515,1,178,514,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210514.log',515,1,189,551,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210514.log',515,1,205,606,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210514.log',515,1,206,615,'20210514','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,97),('usage_events_20210514.log',1048585,1,54,54,'20210514','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210514.log',1048585,1,83,83,'20210514','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210514.log',1048585,1,150,150,'20210514','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210514.log',1048585,1,152,152,'20210514','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210514.log',1048585,1,171,171,'20210514','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210514.log',1048585,1,205,205,'20210514','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210515.log',259,1,NULL,3,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210515.log',515,1,87,291,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210515.log',515,1,91,295,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210515.log',515,1,99,305,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20210515.log',515,1,125,310,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210515.log',515,1,147,387,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210515.log',515,1,148,394,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210515.log',515,1,150,407,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210515.log',515,1,177,507,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210515.log',515,1,189,551,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210515.log',515,1,190,556,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210515.log',515,1,203,589,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210515.log',515,1,205,606,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210515.log',515,1,206,615,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210515.log',515,1,210,644,'20210515','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210515.log',1048585,1,33,33,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210515.log',1048585,1,87,87,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210515.log',1048585,1,89,89,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210515.log',1048585,1,169,169,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210515.log',1048585,1,174,174,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210515.log',1048585,1,177,177,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210515.log',1048585,1,206,206,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210515.log',1048585,1,208,208,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210515.log',1048585,1,210,210,'20210515','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210516.log',259,1,NULL,5,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210516.log',515,1,51,118,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,26),('usage_events_20210516.log',515,1,53,120,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210516.log',515,1,54,133,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210516.log',515,1,59,138,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210516.log',515,1,82,284,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,45),('usage_events_20210516.log',515,1,78,288,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210516.log',515,1,86,290,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210516.log',515,1,114,308,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210516.log',515,1,137,343,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210516.log',515,1,148,394,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',15,1,259,10,73),('usage_events_20210516.log',515,1,169,461,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210516.log',515,1,171,470,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210516.log',515,1,176,500,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210516.log',515,1,187,539,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210516.log',515,1,193,569,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210516.log',515,1,206,615,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210516.log',515,1,207,622,'20210516','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210516.log',1048585,1,51,51,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210516.log',1048585,1,53,53,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210516.log',1048585,1,54,54,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210516.log',1048585,1,78,78,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210516.log',1048585,1,82,82,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210516.log',1048585,1,86,86,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210516.log',1048585,1,148,148,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210516.log',1048585,1,169,169,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210516.log',1048585,1,171,171,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210516.log',1048585,1,187,187,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210516.log',1048585,1,193,193,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210516.log',1048585,1,206,206,'20210516','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210517.log',256,1,NULL,1,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210517.log',515,1,20,53,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,2,11),('usage_events_20210517.log',515,1,34,82,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210517.log',515,1,49,116,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210517.log',515,1,54,133,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210517.log',515,1,78,288,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210517.log',515,1,87,291,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210517.log',515,1,99,305,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210517.log',515,1,114,308,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210517.log',515,1,142,367,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210517.log',515,1,148,394,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210517.log',515,1,150,407,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210517.log',515,1,152,423,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,77),('usage_events_20210517.log',515,1,171,470,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210517.log',515,1,173,479,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210517.log',515,1,175,493,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210517.log',515,1,185,527,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210517.log',515,1,189,551,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210517.log',515,1,190,556,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210517.log',515,1,193,569,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210517.log',515,1,205,606,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210517.log',515,1,206,615,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210517.log',515,1,207,622,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210517.log',515,1,209,637,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210517.log',515,1,210,644,'20210517','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210517.log',1048585,1,20,20,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20210517.log',1048585,1,34,34,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210517.log',1048585,1,49,49,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210517.log',1048585,1,54,54,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210517.log',1048585,1,78,78,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210517.log',1048585,1,91,91,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210517.log',1048585,1,99,99,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210517.log',1048585,1,100,100,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210517.log',1048585,1,114,114,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210517.log',1048585,1,142,142,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210517.log',1048585,1,150,150,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210517.log',1048585,1,169,169,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210517.log',1048585,1,171,171,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210517.log',1048585,1,173,173,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210517.log',1048585,1,176,176,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210517.log',1048585,1,185,185,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210517.log',1048585,1,193,193,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210517.log',1048585,1,206,206,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210517.log',1048585,1,207,207,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210517.log',1048585,1,209,209,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210517.log',1048585,1,210,210,'20210517','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210518.log',256,1,NULL,1,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210518.log',259,1,NULL,6,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210518.log',515,1,8,33,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210518.log',515,1,49,116,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210518.log',515,1,81,283,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210518.log',515,1,82,284,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210518.log',515,1,78,288,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210518.log',515,1,86,290,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210518.log',515,1,91,295,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210518.log',515,1,99,305,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210518.log',515,1,115,309,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210518.log',515,1,135,330,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210518.log',515,1,137,343,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210518.log',515,1,142,367,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210518.log',515,1,148,394,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210518.log',515,1,149,401,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210518.log',515,1,150,407,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210518.log',515,1,152,423,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210518.log',515,1,171,470,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210518.log',515,1,173,479,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210518.log',515,1,175,493,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210518.log',515,1,176,500,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210518.log',515,1,177,507,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210518.log',515,1,178,514,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210518.log',515,1,187,539,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210518.log',515,1,188,545,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210518.log',515,1,189,551,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210518.log',515,1,206,615,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',12,1,259,13,97),('usage_events_20210518.log',515,1,207,622,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210518.log',515,1,209,637,'20210518','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210518.log',1048585,1,56,56,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210518.log',1048585,1,58,58,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210518.log',1048585,1,81,81,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210518.log',1048585,1,91,91,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210518.log',1048585,1,114,114,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210518.log',1048585,1,142,142,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210518.log',1048585,1,148,148,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210518.log',1048585,1,171,171,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210518.log',1048585,1,173,173,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210518.log',1048585,1,176,176,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210518.log',1048585,1,178,178,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210518.log',1048585,1,206,206,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210518.log',1048585,1,207,207,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210518.log',1048585,1,209,209,'20210518','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210519.log',256,1,NULL,1,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,1,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,2,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,3,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,4,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,5,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,6,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,7,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,8,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,9,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,10,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,11,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,12,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210519.log',259,1,NULL,13,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210519.log',515,1,1,3,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210519.log',515,1,20,53,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20210519.log',515,1,50,117,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20210519.log',515,1,54,133,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210519.log',515,1,55,134,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210519.log',515,1,56,135,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210519.log',515,1,83,285,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210519.log',515,1,76,286,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210519.log',515,1,78,288,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210519.log',515,1,91,295,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210519.log',515,1,99,305,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210519.log',515,1,115,309,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210519.log',515,1,141,361,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210519.log',515,1,146,379,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210519.log',515,1,147,387,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210519.log',515,1,148,394,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210519.log',515,1,150,407,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210519.log',515,1,169,461,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210519.log',515,1,173,479,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210519.log',515,1,176,500,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210519.log',515,1,178,514,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210519.log',515,1,186,533,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,12,87),('usage_events_20210519.log',515,1,187,539,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210519.log',515,1,190,556,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210519.log',515,1,204,597,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210519.log',515,1,205,606,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210519.log',515,1,206,615,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210519.log',515,1,207,622,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210519.log',515,1,209,637,'20210519','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,100),('usage_events_20210519.log',1048585,1,1,1,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210519.log',1048585,1,4,4,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210519.log',1048585,1,5,5,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210519.log',1048585,1,6,6,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210519.log',1048585,1,7,7,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210519.log',1048585,1,8,8,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210519.log',1048585,1,14,14,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210519.log',1048585,1,20,20,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,2,NULL),('usage_events_20210519.log',1048585,1,21,21,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210519.log',1048585,1,22,22,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210519.log',1048585,1,33,33,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210519.log',1048585,1,40,40,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210519.log',1048585,1,50,50,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210519.log',1048585,1,54,54,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210519.log',1048585,1,56,56,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210519.log',1048585,1,76,76,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210519.log',1048585,1,78,78,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210519.log',1048585,1,83,83,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210519.log',1048585,1,91,91,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210519.log',1048585,1,99,99,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210519.log',1048585,1,141,141,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210519.log',1048585,1,147,147,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210519.log',1048585,1,148,148,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210519.log',1048585,1,150,150,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210519.log',1048585,1,169,169,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210519.log',1048585,1,173,173,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210519.log',1048585,1,176,176,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210519.log',1048585,1,178,178,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,11,NULL),('usage_events_20210519.log',1048585,1,186,186,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210519.log',1048585,1,203,203,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210519.log',1048585,1,204,204,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210519.log',1048585,1,205,205,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210519.log',1048585,1,206,206,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210519.log',1048585,1,207,207,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210519.log',1048585,1,208,208,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210519.log',1048585,1,209,209,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210519.log',1048585,1,210,210,'20210519','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210520.log',256,1,NULL,1,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210520.log',259,1,NULL,12,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210520.log',259,1,NULL,13,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210520.log',515,1,20,53,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210520.log',515,1,49,116,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210520.log',515,1,51,118,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210520.log',515,1,53,120,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210520.log',515,1,81,283,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210520.log',515,1,78,288,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210520.log',515,1,84,289,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210520.log',515,1,86,290,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,51),('usage_events_20210520.log',515,1,91,295,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210520.log',515,1,99,305,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210520.log',515,1,100,306,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210520.log',515,1,137,343,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210520.log',515,1,142,367,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210520.log',515,1,148,394,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210520.log',515,1,149,401,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210520.log',515,1,150,407,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210520.log',515,1,151,414,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210520.log',515,1,169,461,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210520.log',515,1,171,470,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210520.log',515,1,175,493,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210520.log',515,1,176,500,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210520.log',515,1,178,514,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210520.log',515,1,185,527,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210520.log',515,1,186,533,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20210520.log',515,1,187,539,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210520.log',515,1,189,551,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210520.log',515,1,190,556,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210520.log',515,1,191,563,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210520.log',515,1,205,606,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210520.log',515,1,206,615,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210520.log',515,1,207,622,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210520.log',515,1,208,630,'20210520','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210520.log',1048585,1,8,8,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210520.log',1048585,1,14,14,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210520.log',1048585,1,50,50,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210520.log',1048585,1,53,53,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210520.log',1048585,1,78,78,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210520.log',1048585,1,86,86,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210520.log',1048585,1,87,87,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210520.log',1048585,1,148,148,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210520.log',1048585,1,149,149,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210520.log',1048585,1,150,150,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210520.log',1048585,1,169,169,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210520.log',1048585,1,171,171,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210520.log',1048585,1,175,175,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210520.log',1048585,1,176,176,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210520.log',1048585,1,178,178,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210520.log',1048585,1,185,185,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210520.log',1048585,1,186,186,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210520.log',1048585,1,190,190,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210520.log',1048585,1,191,191,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210520.log',1048585,1,193,193,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210520.log',1048585,1,206,206,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210520.log',1048585,1,207,207,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210520.log',1048585,1,208,208,'20210520','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210521.log',515,1,8,33,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210521.log',515,1,20,53,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,2,11),('usage_events_20210521.log',515,1,33,81,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210521.log',515,1,53,120,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210521.log',515,1,56,135,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210521.log',515,1,78,288,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210521.log',515,1,87,291,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210521.log',515,1,91,295,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210521.log',515,1,99,305,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210521.log',515,1,137,343,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210521.log',515,1,148,394,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210521.log',515,1,150,407,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210521.log',515,1,152,423,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210521.log',515,1,169,461,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20210521.log',515,1,171,470,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210521.log',515,1,173,479,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210521.log',515,1,174,486,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210521.log',515,1,175,493,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210521.log',515,1,177,507,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210521.log',515,1,178,514,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210521.log',515,1,193,569,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210521.log',515,1,203,589,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210521.log',515,1,205,606,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210521.log',515,1,206,615,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210521.log',515,1,207,622,'20210521','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210521.log',1048585,1,8,8,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210521.log',1048585,1,47,47,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210521.log',1048585,1,56,56,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210521.log',1048585,1,58,58,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210521.log',1048585,1,78,78,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210521.log',1048585,1,79,79,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210521.log',1048585,1,89,89,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210521.log',1048585,1,90,90,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210521.log',1048585,1,148,148,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210521.log',1048585,1,150,150,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210521.log',1048585,1,151,151,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210521.log',1048585,1,152,152,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210521.log',1048585,1,171,171,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210521.log',1048585,1,173,173,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210521.log',1048585,1,175,175,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210521.log',1048585,1,177,177,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210521.log',1048585,1,178,178,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210521.log',1048585,1,193,193,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210521.log',1048585,1,203,203,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210521.log',1048585,1,204,204,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210521.log',1048585,1,205,205,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210521.log',1048585,1,206,206,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210521.log',1048585,1,207,207,'20210521','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210522.log',515,1,4,19,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210522.log',515,1,22,57,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20210522.log',515,1,47,115,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210522.log',515,1,51,118,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210522.log',515,1,54,133,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210522.log',515,1,81,283,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210522.log',515,1,78,288,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210522.log',515,1,89,293,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210522.log',515,1,99,305,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210522.log',515,1,135,330,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210522.log',515,1,137,343,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210522.log',515,1,139,351,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210522.log',515,1,148,394,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210522.log',515,1,150,407,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210522.log',515,1,152,423,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210522.log',515,1,169,461,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210522.log',515,1,173,479,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210522.log',515,1,174,486,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210522.log',515,1,177,507,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210522.log',515,1,178,514,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210522.log',515,1,185,527,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210522.log',515,1,186,533,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210522.log',515,1,191,563,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210522.log',515,1,193,569,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210522.log',515,1,203,589,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210522.log',515,1,204,597,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210522.log',515,1,205,606,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210522.log',515,1,206,615,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210522.log',515,1,207,622,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210522.log',515,1,208,630,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210522.log',515,1,209,637,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210522.log',515,1,210,644,'20210522','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210522.log',1048585,1,4,4,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210522.log',1048585,1,5,5,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210522.log',1048585,1,47,47,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210522.log',1048585,1,53,53,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210522.log',1048585,1,54,54,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210522.log',1048585,1,78,78,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210522.log',1048585,1,81,81,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210522.log',1048585,1,86,86,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210522.log',1048585,1,99,99,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210522.log',1048585,1,136,136,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210522.log',1048585,1,139,139,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210522.log',1048585,1,152,152,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210522.log',1048585,1,176,176,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210522.log',1048585,1,188,188,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210522.log',1048585,1,191,191,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210522.log',1048585,1,193,193,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210522.log',1048585,1,206,206,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210522.log',1048585,1,207,207,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210522.log',1048585,1,208,208,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210522.log',1048585,1,209,209,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210522.log',1048585,1,210,210,'20210522','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210523.log',256,1,NULL,1,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210523.log',515,1,14,51,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210523.log',515,1,56,135,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210523.log',515,1,78,288,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210523.log',515,1,86,290,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210523.log',515,1,91,295,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210523.log',515,1,113,307,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210523.log',515,1,137,343,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210523.log',515,1,148,394,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210523.log',515,1,149,401,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210523.log',515,1,151,414,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210523.log',515,1,169,461,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210523.log',515,1,171,470,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210523.log',515,1,173,479,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210523.log',515,1,174,486,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210523.log',515,1,177,507,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210523.log',515,1,178,514,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210523.log',515,1,185,527,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210523.log',515,1,186,533,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210523.log',515,1,187,539,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210523.log',515,1,188,545,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210523.log',515,1,189,551,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210523.log',515,1,190,556,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210523.log',515,1,191,563,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20210523.log',515,1,193,569,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210523.log',515,1,205,606,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210523.log',515,1,206,615,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210523.log',515,1,208,630,'20210523','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210523.log',1048585,1,14,14,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210523.log',1048585,1,47,47,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210523.log',1048585,1,54,54,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210523.log',1048585,1,56,56,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210523.log',1048585,1,58,58,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210523.log',1048585,1,86,86,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210523.log',1048585,1,90,90,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210523.log',1048585,1,133,133,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210523.log',1048585,1,137,137,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210523.log',1048585,1,171,171,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210523.log',1048585,1,173,173,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210523.log',1048585,1,177,177,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210523.log',1048585,1,185,185,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210523.log',1048585,1,186,186,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210523.log',1048585,1,190,190,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210523.log',1048585,1,206,206,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210523.log',1048585,1,207,207,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210523.log',1048585,1,208,208,'20210523','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210524.log',256,1,NULL,1,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210524.log',259,1,NULL,12,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210524.log',515,1,8,33,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,1,7),('usage_events_20210524.log',515,1,28,68,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,15),('usage_events_20210524.log',515,1,49,116,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210524.log',515,1,52,119,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210524.log',515,1,56,135,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210524.log',515,1,81,283,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210524.log',515,1,78,288,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210524.log',515,1,86,290,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210524.log',515,1,89,293,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210524.log',515,1,99,305,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210524.log',515,1,100,306,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210524.log',515,1,113,307,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210524.log',515,1,114,308,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210524.log',515,1,125,310,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210524.log',515,1,137,343,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210524.log',515,1,141,361,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210524.log',515,1,146,379,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210524.log',515,1,147,387,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210524.log',515,1,149,401,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210524.log',515,1,150,407,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210524.log',515,1,169,461,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210524.log',515,1,171,470,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210524.log',515,1,174,486,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210524.log',515,1,175,493,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210524.log',515,1,178,514,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,85),('usage_events_20210524.log',515,1,185,527,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210524.log',515,1,190,556,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210524.log',515,1,191,563,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20210524.log',515,1,193,569,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210524.log',515,1,205,606,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,96),('usage_events_20210524.log',515,1,206,615,'20210524','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210524.log',1048585,1,8,8,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210524.log',1048585,1,78,78,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210524.log',1048585,1,86,86,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210524.log',1048585,1,89,89,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210524.log',1048585,1,99,99,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210524.log',1048585,1,100,100,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210524.log',1048585,1,113,113,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210524.log',1048585,1,137,137,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210524.log',1048585,1,141,141,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210524.log',1048585,1,146,146,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210524.log',1048585,1,149,149,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210524.log',1048585,1,171,171,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210524.log',1048585,1,173,173,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210524.log',1048585,1,175,175,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210524.log',1048585,1,176,176,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210524.log',1048585,1,178,178,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210524.log',1048585,1,185,185,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210524.log',1048585,1,190,190,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210524.log',1048585,1,191,191,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210524.log',1048585,1,193,193,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210524.log',1048585,1,204,204,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210524.log',1048585,1,206,206,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210524.log',1048585,1,207,207,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210524.log',1048585,1,209,209,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210524.log',1048585,1,210,210,'20210524','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210525.log',256,1,NULL,1,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210525.log',259,1,NULL,7,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210525.log',259,1,NULL,13,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210525.log',515,1,8,33,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,1,7),('usage_events_20210525.log',515,1,31,79,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210525.log',515,1,50,117,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210525.log',515,1,58,137,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210525.log',515,1,81,283,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210525.log',515,1,78,288,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210525.log',515,1,87,291,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210525.log',515,1,89,293,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210525.log',515,1,99,305,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210525.log',515,1,100,306,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210525.log',515,1,113,307,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210525.log',515,1,114,308,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210525.log',515,1,115,309,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210525.log',515,1,134,324,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210525.log',515,1,146,379,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210525.log',515,1,149,401,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210525.log',515,1,150,407,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210525.log',515,1,151,414,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210525.log',515,1,169,461,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210525.log',515,1,171,470,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210525.log',515,1,174,486,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210525.log',515,1,175,493,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210525.log',515,1,178,514,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210525.log',515,1,187,539,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210525.log',515,1,189,551,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210525.log',515,1,190,556,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210525.log',515,1,204,597,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210525.log',515,1,206,615,'20210525','202105',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210525.log',1048585,1,8,8,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210525.log',1048585,1,49,49,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210525.log',1048585,1,58,58,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210525.log',1048585,1,59,59,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210525.log',1048585,1,78,78,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,7,NULL),('usage_events_20210525.log',1048585,1,87,87,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210525.log',1048585,1,89,89,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210525.log',1048585,1,113,113,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210525.log',1048585,1,134,134,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210525.log',1048585,1,146,146,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210525.log',1048585,1,148,148,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210525.log',1048585,1,150,150,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210525.log',1048585,1,152,152,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210525.log',1048585,1,169,169,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210525.log',1048585,1,171,171,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210525.log',1048585,1,173,173,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210525.log',1048585,1,175,175,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210525.log',1048585,1,187,187,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210525.log',1048585,1,190,190,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210525.log',1048585,1,191,191,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210525.log',1048585,1,193,193,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210525.log',1048585,1,204,204,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210525.log',1048585,1,206,206,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210525.log',1048585,1,207,207,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210525.log',1048585,1,209,209,'20210525','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210526.log',256,1,NULL,1,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210526.log',259,1,NULL,13,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210526.log',515,1,47,115,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20210526.log',515,1,54,133,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210526.log',515,1,85,281,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20210526.log',515,1,81,283,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210526.log',515,1,82,284,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210526.log',515,1,78,288,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210526.log',515,1,86,290,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210526.log',515,1,99,305,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210526.log',515,1,113,307,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210526.log',515,1,139,351,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210526.log',515,1,141,361,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,69),('usage_events_20210526.log',515,1,148,394,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210526.log',515,1,150,407,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210526.log',515,1,151,414,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210526.log',515,1,169,461,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210526.log',515,1,171,470,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210526.log',515,1,173,479,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210526.log',515,1,175,493,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210526.log',515,1,176,500,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210526.log',515,1,178,514,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210526.log',515,1,187,539,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,88),('usage_events_20210526.log',515,1,189,551,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210526.log',515,1,193,569,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210526.log',515,1,205,606,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210526.log',515,1,206,615,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210526.log',515,1,208,630,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210526.log',515,1,209,637,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,100),('usage_events_20210526.log',515,1,210,644,'20210526','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210526.log',1048585,1,31,31,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210526.log',1048585,1,47,47,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210526.log',1048585,1,50,50,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210526.log',1048585,1,54,54,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210526.log',1048585,1,58,58,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210526.log',1048585,1,78,78,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210526.log',1048585,1,81,81,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20210526.log',1048585,1,83,83,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210526.log',1048585,1,85,85,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210526.log',1048585,1,113,113,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210526.log',1048585,1,139,139,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210526.log',1048585,1,141,141,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210526.log',1048585,1,146,146,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210526.log',1048585,1,148,148,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210526.log',1048585,1,149,149,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210526.log',1048585,1,150,150,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210526.log',1048585,1,151,151,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210526.log',1048585,1,169,169,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210526.log',1048585,1,171,171,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210526.log',1048585,1,173,173,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210526.log',1048585,1,176,176,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210526.log',1048585,1,178,178,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210526.log',1048585,1,187,187,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210526.log',1048585,1,206,206,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210526.log',1048585,1,209,209,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210526.log',1048585,1,210,210,'20210526','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210527.log',256,1,NULL,1,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210527.log',259,1,NULL,10,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210527.log',515,1,8,33,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210527.log',515,1,35,83,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20210527.log',515,1,53,120,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210527.log',515,1,58,137,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20210527.log',515,1,81,283,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210527.log',515,1,78,288,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',26,1,259,7,49),('usage_events_20210527.log',515,1,91,295,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210527.log',515,1,99,305,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210527.log',515,1,113,307,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210527.log',515,1,114,308,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210527.log',515,1,125,310,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210527.log',515,1,142,367,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210527.log',515,1,147,387,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20210527.log',515,1,148,394,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',16,1,259,10,73),('usage_events_20210527.log',515,1,149,401,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210527.log',515,1,150,407,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,75),('usage_events_20210527.log',515,1,169,461,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210527.log',515,1,171,470,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210527.log',515,1,173,479,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210527.log',515,1,175,493,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210527.log',515,1,177,507,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210527.log',515,1,178,514,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210527.log',515,1,185,527,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210527.log',515,1,186,533,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,87),('usage_events_20210527.log',515,1,188,545,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210527.log',515,1,205,606,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210527.log',515,1,206,615,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210527.log',515,1,207,622,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210527.log',515,1,208,630,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210527.log',515,1,209,637,'20210527','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210527.log',1048585,1,4,4,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210527.log',1048585,1,8,8,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20210527.log',1048585,1,35,35,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210527.log',1048585,1,51,51,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210527.log',1048585,1,53,53,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210527.log',1048585,1,58,58,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,5,NULL),('usage_events_20210527.log',1048585,1,78,78,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210527.log',1048585,1,114,114,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210527.log',1048585,1,148,148,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,10,NULL),('usage_events_20210527.log',1048585,1,149,149,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210527.log',1048585,1,150,150,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210527.log',1048585,1,169,169,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210527.log',1048585,1,171,171,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210527.log',1048585,1,173,173,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210527.log',1048585,1,177,177,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210527.log',1048585,1,178,178,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210527.log',1048585,1,185,185,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210527.log',1048585,1,186,186,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210527.log',1048585,1,191,191,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210527.log',1048585,1,193,193,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210527.log',1048585,1,203,203,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210527.log',1048585,1,206,206,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210527.log',1048585,1,208,208,'20210527','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210528.log',256,1,NULL,1,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210528.log',259,1,NULL,11,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210528.log',259,1,NULL,12,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210528.log',515,1,50,117,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210528.log',515,1,56,135,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210528.log',515,1,58,137,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210528.log',515,1,81,283,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,44),('usage_events_20210528.log',515,1,78,288,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210528.log',515,1,86,290,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210528.log',515,1,91,295,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210528.log',515,1,99,305,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210528.log',515,1,100,306,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210528.log',515,1,115,309,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210528.log',515,1,137,343,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210528.log',515,1,146,379,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210528.log',515,1,147,387,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210528.log',515,1,148,394,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210528.log',515,1,150,407,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210528.log',515,1,151,414,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210528.log',515,1,169,461,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,78),('usage_events_20210528.log',515,1,174,486,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210528.log',515,1,177,507,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210528.log',515,1,186,533,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210528.log',515,1,190,556,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210528.log',515,1,193,569,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210528.log',515,1,205,606,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,96),('usage_events_20210528.log',515,1,206,615,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210528.log',515,1,207,622,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210528.log',515,1,208,630,'20210528','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210528.log',1048585,1,56,56,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210528.log',1048585,1,58,58,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210528.log',1048585,1,87,87,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210528.log',1048585,1,91,91,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210528.log',1048585,1,149,149,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210528.log',1048585,1,151,151,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210528.log',1048585,1,152,152,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210528.log',1048585,1,169,169,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210528.log',1048585,1,176,176,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210528.log',1048585,1,177,177,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210528.log',1048585,1,191,191,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210528.log',1048585,1,193,193,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210528.log',1048585,1,203,203,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210528.log',1048585,1,206,206,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',13,1,259,13,NULL),('usage_events_20210528.log',1048585,1,207,207,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210528.log',1048585,1,208,208,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210528.log',1048585,1,210,210,'20210528','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210529.log',256,1,NULL,1,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210529.log',259,1,NULL,11,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210529.log',259,1,NULL,12,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210529.log',515,1,8,33,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210529.log',515,1,47,115,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210529.log',515,1,49,116,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210529.log',515,1,51,118,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210529.log',515,1,53,120,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210529.log',515,1,78,288,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210529.log',515,1,87,291,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210529.log',515,1,99,305,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210529.log',515,1,115,309,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210529.log',515,1,125,310,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210529.log',515,1,135,330,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210529.log',515,1,139,351,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210529.log',515,1,148,394,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210529.log',515,1,149,401,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210529.log',515,1,150,407,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210529.log',515,1,169,461,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210529.log',515,1,171,470,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210529.log',515,1,175,493,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210529.log',515,1,177,507,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210529.log',515,1,191,563,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210529.log',515,1,205,606,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210529.log',515,1,206,615,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210529.log',515,1,207,622,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210529.log',515,1,208,630,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210529.log',515,1,210,644,'20210529','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210529.log',1048585,1,8,8,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210529.log',1048585,1,47,47,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210529.log',1048585,1,49,49,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210529.log',1048585,1,54,54,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210529.log',1048585,1,58,58,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210529.log',1048585,1,78,78,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210529.log',1048585,1,99,99,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210529.log',1048585,1,125,125,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210529.log',1048585,1,139,139,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210529.log',1048585,1,148,148,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210529.log',1048585,1,169,169,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210529.log',1048585,1,171,171,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210529.log',1048585,1,173,173,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210529.log',1048585,1,175,175,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210529.log',1048585,1,177,177,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210529.log',1048585,1,191,191,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210529.log',1048585,1,193,193,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210529.log',1048585,1,206,206,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210529.log',1048585,1,207,207,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210529.log',1048585,1,208,208,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210529.log',1048585,1,210,210,'20210529','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210530.log',256,1,NULL,1,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210530.log',515,1,20,53,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210530.log',515,1,32,80,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210530.log',515,1,35,83,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210530.log',515,1,57,136,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210530.log',515,1,59,138,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210530.log',515,1,78,288,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210530.log',515,1,137,343,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210530.log',515,1,147,387,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210530.log',515,1,148,394,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210530.log',515,1,150,407,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210530.log',515,1,169,461,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',11,1,259,11,78),('usage_events_20210530.log',515,1,173,479,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210530.log',515,1,175,493,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210530.log',515,1,176,500,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210530.log',515,1,177,507,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210530.log',515,1,190,556,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210530.log',515,1,191,563,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210530.log',515,1,204,597,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210530.log',515,1,205,606,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210530.log',515,1,206,615,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210530.log',515,1,210,644,'20210530','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210530.log',1048585,1,20,20,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210530.log',1048585,1,78,78,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210530.log',1048585,1,148,148,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210530.log',1048585,1,149,149,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210530.log',1048585,1,150,150,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210530.log',1048585,1,152,152,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210530.log',1048585,1,169,169,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210530.log',1048585,1,173,173,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210530.log',1048585,1,186,186,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,12,NULL),('usage_events_20210530.log',1048585,1,191,191,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210530.log',1048585,1,206,206,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210530.log',1048585,1,210,210,'20210530','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210531.log',256,1,NULL,1,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,1,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,2,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,3,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,4,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,5,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,6,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,7,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,8,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,9,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,10,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,11,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,12,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210531.log',259,1,NULL,13,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210531.log',515,1,1,3,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210531.log',515,1,6,31,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20210531.log',515,1,31,79,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210531.log',515,1,59,138,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210531.log',515,1,85,281,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210531.log',515,1,79,282,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210531.log',515,1,81,283,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210531.log',515,1,82,284,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,45),('usage_events_20210531.log',515,1,78,288,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',13,1,259,7,49),('usage_events_20210531.log',515,1,99,305,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210531.log',515,1,113,307,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210531.log',515,1,114,308,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210531.log',515,1,134,324,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210531.log',515,1,139,351,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210531.log',515,1,142,367,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210531.log',515,1,148,394,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210531.log',515,1,149,401,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210531.log',515,1,150,407,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210531.log',515,1,151,414,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,76),('usage_events_20210531.log',515,1,169,461,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210531.log',515,1,171,470,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210531.log',515,1,173,479,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210531.log',515,1,174,486,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210531.log',515,1,175,493,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20210531.log',515,1,177,507,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210531.log',515,1,178,514,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210531.log',515,1,186,533,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210531.log',515,1,189,551,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210531.log',515,1,193,569,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210531.log',515,1,204,597,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210531.log',515,1,205,606,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210531.log',515,1,206,615,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210531.log',515,1,207,622,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210531.log',515,1,208,630,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210531.log',515,1,209,637,'20210531','202105',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210531.log',1048585,1,1,1,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210531.log',1048585,1,4,4,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210531.log',1048585,1,5,5,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210531.log',1048585,1,6,6,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20210531.log',1048585,1,7,7,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210531.log',1048585,1,8,8,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210531.log',1048585,1,14,14,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210531.log',1048585,1,20,20,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210531.log',1048585,1,21,21,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210531.log',1048585,1,22,22,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210531.log',1048585,1,33,33,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210531.log',1048585,1,40,40,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210531.log',1048585,1,59,59,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210531.log',1048585,1,77,77,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210531.log',1048585,1,78,78,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210531.log',1048585,1,100,100,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210531.log',1048585,1,114,114,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210531.log',1048585,1,134,134,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210531.log',1048585,1,139,139,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210531.log',1048585,1,148,148,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210531.log',1048585,1,150,150,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210531.log',1048585,1,151,151,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210531.log',1048585,1,169,169,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210531.log',1048585,1,171,171,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210531.log',1048585,1,173,173,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210531.log',1048585,1,175,175,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210531.log',1048585,1,177,177,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210531.log',1048585,1,178,178,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210531.log',1048585,1,186,186,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,12,NULL),('usage_events_20210531.log',1048585,1,189,189,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210531.log',1048585,1,190,190,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210531.log',1048585,1,191,191,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210531.log',1048585,1,193,193,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210531.log',1048585,1,203,203,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210531.log',1048585,1,204,204,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210531.log',1048585,1,205,205,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210531.log',1048585,1,206,206,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210531.log',1048585,1,207,207,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210531.log',1048585,1,208,208,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210531.log',1048585,1,209,209,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210531.log',1048585,1,210,210,'20210531','202105',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210601.log',259,1,NULL,4,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210601.log',259,1,NULL,7,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210601.log',259,1,NULL,10,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210601.log',515,1,31,79,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210601.log',515,1,35,83,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20210601.log',515,1,53,120,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,28),('usage_events_20210601.log',515,1,85,281,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210601.log',515,1,81,283,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210601.log',515,1,82,284,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,6,45),('usage_events_20210601.log',515,1,78,288,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',15,1,259,7,49),('usage_events_20210601.log',515,1,84,289,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210601.log',515,1,87,291,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210601.log',515,1,99,305,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210601.log',515,1,100,306,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210601.log',515,1,113,307,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210601.log',515,1,141,361,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210601.log',515,1,148,394,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210601.log',515,1,150,407,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210601.log',515,1,152,423,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210601.log',515,1,169,461,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210601.log',515,1,171,470,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210601.log',515,1,173,479,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210601.log',515,1,174,486,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210601.log',515,1,175,493,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210601.log',515,1,178,514,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210601.log',515,1,187,539,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210601.log',515,1,190,556,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210601.log',515,1,193,569,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210601.log',515,1,204,597,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210601.log',515,1,205,606,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210601.log',515,1,206,615,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210601.log',515,1,207,622,'20210601','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210601.log',1048585,1,31,31,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210601.log',1048585,1,53,53,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210601.log',1048585,1,78,78,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,7,NULL),('usage_events_20210601.log',1048585,1,81,81,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210601.log',1048585,1,86,86,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210601.log',1048585,1,87,87,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210601.log',1048585,1,89,89,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210601.log',1048585,1,134,134,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210601.log',1048585,1,141,141,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210601.log',1048585,1,148,148,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210601.log',1048585,1,149,149,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210601.log',1048585,1,150,150,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210601.log',1048585,1,152,152,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210601.log',1048585,1,169,169,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210601.log',1048585,1,171,171,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210601.log',1048585,1,173,173,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210601.log',1048585,1,174,174,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210601.log',1048585,1,178,178,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210601.log',1048585,1,187,187,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210601.log',1048585,1,190,190,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210601.log',1048585,1,193,193,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210601.log',1048585,1,206,206,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210601.log',1048585,1,207,207,'20210601','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210602.log',256,1,NULL,1,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210602.log',259,1,NULL,12,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210602.log',259,1,NULL,13,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210602.log',515,1,8,33,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210602.log',515,1,19,52,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210602.log',515,1,49,116,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210602.log',515,1,51,118,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210602.log',515,1,53,120,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,4,28),('usage_events_20210602.log',515,1,82,284,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210602.log',515,1,78,288,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',14,1,259,7,49),('usage_events_20210602.log',515,1,87,291,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210602.log',515,1,91,295,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210602.log',515,1,99,305,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210602.log',515,1,125,310,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210602.log',515,1,137,343,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210602.log',515,1,142,367,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210602.log',515,1,147,387,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210602.log',515,1,148,394,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210602.log',515,1,149,401,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210602.log',515,1,150,407,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210602.log',515,1,169,461,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210602.log',515,1,171,470,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210602.log',515,1,175,493,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210602.log',515,1,178,514,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210602.log',515,1,185,527,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210602.log',515,1,190,556,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210602.log',515,1,191,563,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210602.log',515,1,193,569,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210602.log',515,1,204,597,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210602.log',515,1,205,606,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,96),('usage_events_20210602.log',515,1,206,615,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210602.log',515,1,207,622,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210602.log',515,1,208,630,'20210602','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210602.log',1048585,1,28,28,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210602.log',1048585,1,49,49,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210602.log',1048585,1,51,51,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210602.log',1048585,1,53,53,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210602.log',1048585,1,76,76,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210602.log',1048585,1,78,78,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,7,NULL),('usage_events_20210602.log',1048585,1,137,137,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210602.log',1048585,1,142,142,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210602.log',1048585,1,147,147,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210602.log',1048585,1,149,149,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210602.log',1048585,1,171,171,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210602.log',1048585,1,175,175,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210602.log',1048585,1,177,177,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210602.log',1048585,1,178,178,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210602.log',1048585,1,185,185,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210602.log',1048585,1,191,191,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210602.log',1048585,1,193,193,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210602.log',1048585,1,206,206,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210602.log',1048585,1,208,208,'20210602','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210603.log',259,1,NULL,13,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210603.log',515,1,32,80,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20210603.log',515,1,34,82,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210603.log',515,1,49,116,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210603.log',515,1,50,117,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210603.log',515,1,53,120,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210603.log',515,1,85,281,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210603.log',515,1,79,282,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210603.log',515,1,82,284,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210603.log',515,1,83,285,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210603.log',515,1,78,288,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',13,1,259,7,49),('usage_events_20210603.log',515,1,86,290,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210603.log',515,1,99,305,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210603.log',515,1,114,308,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210603.log',515,1,135,330,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210603.log',515,1,142,367,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210603.log',515,1,148,394,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210603.log',515,1,152,423,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210603.log',515,1,169,461,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210603.log',515,1,173,479,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20210603.log',515,1,174,486,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210603.log',515,1,175,493,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210603.log',515,1,176,500,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210603.log',515,1,185,527,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210603.log',515,1,187,539,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210603.log',515,1,203,589,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210603.log',515,1,204,597,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210603.log',515,1,205,606,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210603.log',515,1,206,615,'20210603','202106',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210603.log',1048585,1,32,32,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210603.log',1048585,1,51,51,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210603.log',1048585,1,53,53,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210603.log',1048585,1,78,78,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210603.log',1048585,1,82,82,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210603.log',1048585,1,83,83,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210603.log',1048585,1,85,85,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210603.log',1048585,1,88,88,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210603.log',1048585,1,91,91,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210603.log',1048585,1,99,99,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210603.log',1048585,1,142,142,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210603.log',1048585,1,148,148,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210603.log',1048585,1,150,150,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210603.log',1048585,1,152,152,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210603.log',1048585,1,169,169,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210603.log',1048585,1,173,173,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210603.log',1048585,1,175,175,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210603.log',1048585,1,176,176,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210603.log',1048585,1,186,186,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210603.log',1048585,1,205,205,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210603.log',1048585,1,206,206,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210603.log',1048585,1,207,207,'20210603','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210604.log',256,1,NULL,1,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210604.log',259,1,NULL,9,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210604.log',515,1,5,30,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210604.log',515,1,14,51,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210604.log',515,1,20,53,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210604.log',515,1,53,120,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210604.log',515,1,57,136,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210604.log',515,1,83,285,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210604.log',515,1,77,287,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210604.log',515,1,78,288,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210604.log',515,1,84,289,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210604.log',515,1,91,295,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210604.log',515,1,99,305,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210604.log',515,1,100,306,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210604.log',515,1,137,343,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210604.log',515,1,139,351,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210604.log',515,1,142,367,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,70),('usage_events_20210604.log',515,1,147,387,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210604.log',515,1,148,394,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210604.log',515,1,149,401,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210604.log',515,1,150,407,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210604.log',515,1,152,423,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210604.log',515,1,169,461,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210604.log',515,1,171,470,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210604.log',515,1,176,500,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210604.log',515,1,177,507,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210604.log',515,1,178,514,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210604.log',515,1,186,533,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20210604.log',515,1,187,539,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210604.log',515,1,188,545,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210604.log',515,1,189,551,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210604.log',515,1,190,556,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210604.log',515,1,204,597,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210604.log',515,1,205,606,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,96),('usage_events_20210604.log',515,1,206,615,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210604.log',515,1,208,630,'20210604','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,99),('usage_events_20210604.log',1048585,1,8,8,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210604.log',1048585,1,20,20,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210604.log',1048585,1,58,58,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210604.log',1048585,1,77,77,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210604.log',1048585,1,81,81,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210604.log',1048585,1,137,137,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210604.log',1048585,1,139,139,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210604.log',1048585,1,142,142,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210604.log',1048585,1,147,147,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210604.log',1048585,1,148,148,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210604.log',1048585,1,149,149,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210604.log',1048585,1,150,150,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210604.log',1048585,1,152,152,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210604.log',1048585,1,171,171,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210604.log',1048585,1,173,173,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210604.log',1048585,1,177,177,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210604.log',1048585,1,204,204,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210604.log',1048585,1,206,206,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210604.log',1048585,1,207,207,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210604.log',1048585,1,209,209,'20210604','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210605.log',259,1,NULL,10,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210605.log',515,1,14,51,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210605.log',515,1,22,57,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20210605.log',515,1,32,80,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210605.log',515,1,33,81,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210605.log',515,1,49,116,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210605.log',515,1,50,117,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210605.log',515,1,52,119,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210605.log',515,1,53,120,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210605.log',515,1,85,281,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210605.log',515,1,78,288,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210605.log',515,1,87,291,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210605.log',515,1,88,292,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210605.log',515,1,99,305,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210605.log',515,1,134,324,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210605.log',515,1,142,367,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210605.log',515,1,150,407,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210605.log',515,1,169,461,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210605.log',515,1,171,470,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210605.log',515,1,174,486,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210605.log',515,1,176,500,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210605.log',515,1,178,514,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210605.log',515,1,190,556,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210605.log',515,1,203,589,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210605.log',515,1,205,606,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210605.log',515,1,206,615,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210605.log',515,1,207,622,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210605.log',515,1,210,644,'20210605','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210605.log',1048585,1,20,20,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210605.log',1048585,1,33,33,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210605.log',1048585,1,49,49,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210605.log',1048585,1,52,52,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210605.log',1048585,1,53,53,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210605.log',1048585,1,76,76,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210605.log',1048585,1,77,77,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210605.log',1048585,1,78,78,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210605.log',1048585,1,88,88,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210605.log',1048585,1,89,89,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210605.log',1048585,1,100,100,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210605.log',1048585,1,148,148,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210605.log',1048585,1,152,152,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210605.log',1048585,1,171,171,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210605.log',1048585,1,176,176,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210605.log',1048585,1,178,178,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210605.log',1048585,1,210,210,'20210605','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210606.log',256,1,NULL,1,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210606.log',515,1,8,33,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210606.log',515,1,35,83,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210606.log',515,1,53,120,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210606.log',515,1,57,136,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210606.log',515,1,78,288,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210606.log',515,1,86,290,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210606.log',515,1,89,293,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210606.log',515,1,125,310,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210606.log',515,1,133,318,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210606.log',515,1,135,330,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210606.log',515,1,137,343,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20210606.log',515,1,139,351,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20210606.log',515,1,142,367,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210606.log',515,1,148,394,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210606.log',515,1,150,407,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210606.log',515,1,169,461,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210606.log',515,1,173,479,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210606.log',515,1,178,514,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210606.log',515,1,186,533,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210606.log',515,1,187,539,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210606.log',515,1,190,556,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210606.log',515,1,205,606,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210606.log',515,1,206,615,'20210606','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210606.log',1048585,1,78,78,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210606.log',1048585,1,86,86,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210606.log',1048585,1,89,89,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210606.log',1048585,1,125,125,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210606.log',1048585,1,133,133,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210606.log',1048585,1,137,137,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210606.log',1048585,1,139,139,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210606.log',1048585,1,169,169,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210606.log',1048585,1,173,173,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210606.log',1048585,1,178,178,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210606.log',1048585,1,206,206,'20210606','202106',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210607.log',256,1,NULL,1,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210607.log',259,1,NULL,13,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210607.log',515,1,49,116,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210607.log',515,1,59,138,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20210607.log',515,1,82,284,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210607.log',515,1,78,288,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20210607.log',515,1,86,290,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,51),('usage_events_20210607.log',515,1,99,305,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210607.log',515,1,113,307,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210607.log',515,1,114,308,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210607.log',515,1,115,309,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210607.log',515,1,148,394,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210607.log',515,1,149,401,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210607.log',515,1,150,407,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210607.log',515,1,151,414,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210607.log',515,1,169,461,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210607.log',515,1,171,470,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210607.log',515,1,173,479,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,80),('usage_events_20210607.log',515,1,174,486,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210607.log',515,1,176,500,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210607.log',515,1,178,514,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,85),('usage_events_20210607.log',515,1,187,539,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210607.log',515,1,189,551,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210607.log',515,1,190,556,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210607.log',515,1,193,569,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210607.log',515,1,204,597,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210607.log',515,1,205,606,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210607.log',515,1,206,615,'20210607','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210607.log',1048585,1,31,31,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20210607.log',1048585,1,49,49,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210607.log',1048585,1,59,59,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210607.log',1048585,1,78,78,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210607.log',1048585,1,83,83,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210607.log',1048585,1,151,151,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210607.log',1048585,1,152,152,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210607.log',1048585,1,169,169,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210607.log',1048585,1,171,171,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210607.log',1048585,1,173,173,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210607.log',1048585,1,176,176,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210607.log',1048585,1,178,178,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',13,1,259,11,NULL),('usage_events_20210607.log',1048585,1,188,188,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210607.log',1048585,1,190,190,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210607.log',1048585,1,193,193,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210607.log',1048585,1,203,203,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210607.log',1048585,1,204,204,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210607.log',1048585,1,206,206,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210607.log',1048585,1,207,207,'20210607','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210608.log',256,1,NULL,1,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210608.log',259,1,NULL,11,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210608.log',259,1,NULL,13,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210608.log',515,1,19,52,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20210608.log',515,1,31,79,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210608.log',515,1,50,117,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210608.log',515,1,53,120,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210608.log',515,1,81,283,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210608.log',515,1,82,284,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210608.log',515,1,83,285,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210608.log',515,1,78,288,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210608.log',515,1,91,295,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210608.log',515,1,133,318,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210608.log',515,1,137,343,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210608.log',515,1,147,387,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210608.log',515,1,148,394,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210608.log',515,1,169,461,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210608.log',515,1,171,470,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210608.log',515,1,175,493,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210608.log',515,1,176,500,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210608.log',515,1,185,527,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210608.log',515,1,186,533,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210608.log',515,1,187,539,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210608.log',515,1,190,556,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210608.log',515,1,203,589,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210608.log',515,1,205,606,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210608.log',515,1,206,615,'20210608','202106',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210608.log',1048585,1,19,19,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210608.log',1048585,1,50,50,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210608.log',1048585,1,78,78,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210608.log',1048585,1,81,81,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210608.log',1048585,1,83,83,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210608.log',1048585,1,147,147,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210608.log',1048585,1,152,152,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210608.log',1048585,1,169,169,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210608.log',1048585,1,171,171,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210608.log',1048585,1,175,175,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210608.log',1048585,1,176,176,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210608.log',1048585,1,185,185,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210608.log',1048585,1,187,187,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210608.log',1048585,1,190,190,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210608.log',1048585,1,203,203,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210608.log',1048585,1,204,204,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210608.log',1048585,1,206,206,'20210608','202106',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210609.log',515,1,22,57,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20210609.log',515,1,51,118,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210609.log',515,1,53,120,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210609.log',515,1,56,135,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210609.log',515,1,58,137,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210609.log',515,1,59,138,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20210609.log',515,1,85,281,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,41),('usage_events_20210609.log',515,1,78,288,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210609.log',515,1,87,291,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210609.log',515,1,99,305,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210609.log',515,1,100,306,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,58),('usage_events_20210609.log',515,1,115,309,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210609.log',515,1,133,318,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210609.log',515,1,134,324,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210609.log',515,1,137,343,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210609.log',515,1,139,351,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210609.log',515,1,142,367,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210609.log',515,1,148,394,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210609.log',515,1,149,401,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210609.log',515,1,150,407,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210609.log',515,1,169,461,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210609.log',515,1,171,470,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210609.log',515,1,175,493,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20210609.log',515,1,176,500,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210609.log',515,1,187,539,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,88),('usage_events_20210609.log',515,1,188,545,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210609.log',515,1,191,563,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210609.log',515,1,204,597,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210609.log',515,1,205,606,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210609.log',515,1,206,615,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210609.log',515,1,207,622,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210609.log',515,1,208,630,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210609.log',515,1,209,637,'20210609','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210609.log',1048585,1,34,34,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210609.log',1048585,1,47,47,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210609.log',1048585,1,53,53,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210609.log',1048585,1,56,56,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210609.log',1048585,1,58,58,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,5,NULL),('usage_events_20210609.log',1048585,1,78,78,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210609.log',1048585,1,82,82,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210609.log',1048585,1,85,85,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210609.log',1048585,1,87,87,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210609.log',1048585,1,100,100,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210609.log',1048585,1,115,115,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210609.log',1048585,1,139,139,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210609.log',1048585,1,142,142,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210609.log',1048585,1,149,149,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210609.log',1048585,1,150,150,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210609.log',1048585,1,152,152,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210609.log',1048585,1,171,171,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210609.log',1048585,1,173,173,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210609.log',1048585,1,175,175,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210609.log',1048585,1,176,176,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210609.log',1048585,1,187,187,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210609.log',1048585,1,191,191,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210609.log',1048585,1,193,193,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210609.log',1048585,1,204,204,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210609.log',1048585,1,205,205,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210609.log',1048585,1,206,206,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210609.log',1048585,1,207,207,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210609.log',1048585,1,209,209,'20210609','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210610.log',256,1,NULL,1,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210610.log',259,1,NULL,5,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210610.log',259,1,NULL,7,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210610.log',259,1,NULL,12,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210610.log',515,1,1,3,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210610.log',515,1,49,116,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210610.log',515,1,52,119,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210610.log',515,1,58,137,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210610.log',515,1,59,138,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210610.log',515,1,85,281,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210610.log',515,1,82,284,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210610.log',515,1,78,288,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210610.log',515,1,84,289,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210610.log',515,1,87,291,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20210610.log',515,1,89,293,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210610.log',515,1,99,305,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210610.log',515,1,113,307,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210610.log',515,1,134,324,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210610.log',515,1,148,394,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210610.log',515,1,169,461,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210610.log',515,1,171,470,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,79),('usage_events_20210610.log',515,1,173,479,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210610.log',515,1,174,486,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210610.log',515,1,175,493,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,82),('usage_events_20210610.log',515,1,176,500,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210610.log',515,1,178,514,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210610.log',515,1,186,533,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210610.log',515,1,190,556,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210610.log',515,1,193,569,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210610.log',515,1,205,606,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210610.log',515,1,206,615,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210610.log',515,1,207,622,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210610.log',515,1,208,630,'20210610','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210610.log',1048585,1,49,49,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210610.log',1048585,1,51,51,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210610.log',1048585,1,58,58,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210610.log',1048585,1,59,59,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210610.log',1048585,1,78,78,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210610.log',1048585,1,84,84,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,6,NULL),('usage_events_20210610.log',1048585,1,87,87,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210610.log',1048585,1,99,99,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210610.log',1048585,1,113,113,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210610.log',1048585,1,125,125,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210610.log',1048585,1,134,134,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210610.log',1048585,1,147,147,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210610.log',1048585,1,148,148,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,10,NULL),('usage_events_20210610.log',1048585,1,152,152,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210610.log',1048585,1,169,169,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210610.log',1048585,1,171,171,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210610.log',1048585,1,173,173,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210610.log',1048585,1,175,175,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20210610.log',1048585,1,190,190,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210610.log',1048585,1,204,204,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210610.log',1048585,1,206,206,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210610.log',1048585,1,207,207,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210610.log',1048585,1,209,209,'20210610','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210611.log',256,1,NULL,1,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210611.log',259,1,NULL,9,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210611.log',259,1,NULL,10,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210611.log',515,1,7,32,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210611.log',515,1,14,51,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210611.log',515,1,40,94,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210611.log',515,1,49,116,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210611.log',515,1,53,120,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210611.log',515,1,58,137,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210611.log',515,1,59,138,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210611.log',515,1,77,287,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210611.log',515,1,78,288,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210611.log',515,1,90,294,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20210611.log',515,1,91,295,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210611.log',515,1,99,305,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210611.log',515,1,142,367,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210611.log',515,1,148,394,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210611.log',515,1,150,407,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210611.log',515,1,151,414,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20210611.log',515,1,169,461,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210611.log',515,1,174,486,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210611.log',515,1,175,493,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20210611.log',515,1,190,556,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210611.log',515,1,193,569,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210611.log',515,1,205,606,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210611.log',515,1,206,615,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210611.log',515,1,207,622,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210611.log',515,1,208,630,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210611.log',515,1,209,637,'20210611','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210611.log',1048585,1,53,53,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210611.log',1048585,1,58,58,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210611.log',1048585,1,77,77,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210611.log',1048585,1,78,78,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210611.log',1048585,1,90,90,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210611.log',1048585,1,135,135,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210611.log',1048585,1,136,136,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20210611.log',1048585,1,142,142,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210611.log',1048585,1,148,148,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210611.log',1048585,1,149,149,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210611.log',1048585,1,151,151,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210611.log',1048585,1,152,152,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210611.log',1048585,1,169,169,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210611.log',1048585,1,173,173,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210611.log',1048585,1,175,175,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210611.log',1048585,1,203,203,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210611.log',1048585,1,204,204,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210611.log',1048585,1,205,205,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210611.log',1048585,1,206,206,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210611.log',1048585,1,207,207,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210611.log',1048585,1,208,208,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210611.log',1048585,1,209,209,'20210611','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210612.log',256,1,NULL,1,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,1,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,2,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,3,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,4,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,5,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,6,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,7,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,8,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,9,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,10,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,11,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,12,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210612.log',259,1,NULL,13,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210612.log',515,1,1,3,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210612.log',515,1,8,33,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210612.log',515,1,35,83,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,20),('usage_events_20210612.log',515,1,51,118,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210612.log',515,1,53,120,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210612.log',515,1,56,135,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210612.log',515,1,79,282,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210612.log',515,1,78,288,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210612.log',515,1,99,305,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210612.log',515,1,141,361,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210612.log',515,1,148,394,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210612.log',515,1,149,401,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210612.log',515,1,169,461,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210612.log',515,1,171,470,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210612.log',515,1,173,479,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210612.log',515,1,174,486,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,81),('usage_events_20210612.log',515,1,175,493,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210612.log',515,1,187,539,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210612.log',515,1,190,556,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210612.log',515,1,191,563,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210612.log',515,1,204,597,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210612.log',515,1,205,606,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210612.log',515,1,206,615,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210612.log',515,1,207,622,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210612.log',515,1,208,630,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210612.log',515,1,209,637,'20210612','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210612.log',1048585,1,1,1,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210612.log',1048585,1,4,4,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210612.log',1048585,1,5,5,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210612.log',1048585,1,6,6,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210612.log',1048585,1,7,7,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210612.log',1048585,1,8,8,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20210612.log',1048585,1,14,14,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210612.log',1048585,1,20,20,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210612.log',1048585,1,21,21,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210612.log',1048585,1,22,22,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210612.log',1048585,1,40,40,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210612.log',1048585,1,56,56,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210612.log',1048585,1,78,78,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,7,NULL),('usage_events_20210612.log',1048585,1,89,89,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210612.log',1048585,1,149,149,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210612.log',1048585,1,169,169,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210612.log',1048585,1,171,171,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210612.log',1048585,1,173,173,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210612.log',1048585,1,174,174,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210612.log',1048585,1,186,186,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210612.log',1048585,1,190,190,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210612.log',1048585,1,191,191,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210612.log',1048585,1,203,203,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210612.log',1048585,1,204,204,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210612.log',1048585,1,205,205,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210612.log',1048585,1,206,206,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210612.log',1048585,1,207,207,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210612.log',1048585,1,208,208,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210612.log',1048585,1,209,209,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210612.log',1048585,1,210,210,'20210612','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210613.log',256,1,NULL,1,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210613.log',515,1,8,33,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210613.log',515,1,33,81,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210613.log',515,1,47,115,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210613.log',515,1,51,118,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210613.log',515,1,56,135,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210613.log',515,1,58,137,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210613.log',515,1,85,281,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210613.log',515,1,81,283,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210613.log',515,1,78,288,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210613.log',515,1,87,291,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210613.log',515,1,91,295,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210613.log',515,1,139,351,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210613.log',515,1,149,401,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210613.log',515,1,150,407,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210613.log',515,1,169,461,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210613.log',515,1,171,470,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210613.log',515,1,173,479,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210613.log',515,1,174,486,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210613.log',515,1,175,493,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210613.log',515,1,176,500,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210613.log',515,1,187,539,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210613.log',515,1,190,556,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210613.log',515,1,191,563,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210613.log',515,1,204,597,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210613.log',515,1,205,606,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210613.log',515,1,206,615,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210613.log',515,1,208,630,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210613.log',515,1,209,637,'20210613','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210613.log',1048585,1,47,47,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210613.log',1048585,1,51,51,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210613.log',1048585,1,58,58,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210613.log',1048585,1,78,78,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210613.log',1048585,1,81,81,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210613.log',1048585,1,87,87,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210613.log',1048585,1,91,91,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210613.log',1048585,1,139,139,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210613.log',1048585,1,149,149,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210613.log',1048585,1,150,150,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210613.log',1048585,1,169,169,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210613.log',1048585,1,173,173,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210613.log',1048585,1,174,174,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210613.log',1048585,1,175,175,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210613.log',1048585,1,177,177,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210613.log',1048585,1,190,190,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210613.log',1048585,1,193,193,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210613.log',1048585,1,206,206,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210613.log',1048585,1,208,208,'20210613','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210614.log',256,1,NULL,1,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210614.log',259,1,NULL,7,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210614.log',515,1,49,116,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210614.log',515,1,51,118,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210614.log',515,1,54,133,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210614.log',515,1,56,135,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210614.log',515,1,58,137,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210614.log',515,1,85,281,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210614.log',515,1,78,288,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210614.log',515,1,89,293,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210614.log',515,1,114,308,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210614.log',515,1,133,318,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210614.log',515,1,134,324,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210614.log',515,1,139,351,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210614.log',515,1,141,361,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210614.log',515,1,148,394,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210614.log',515,1,149,401,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210614.log',515,1,169,461,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210614.log',515,1,171,470,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210614.log',515,1,175,493,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210614.log',515,1,176,500,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210614.log',515,1,185,527,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210614.log',515,1,190,556,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210614.log',515,1,191,563,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210614.log',515,1,204,597,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210614.log',515,1,205,606,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210614.log',515,1,206,615,'20210614','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210614.log',1048585,1,54,54,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210614.log',1048585,1,58,58,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210614.log',1048585,1,77,77,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210614.log',1048585,1,81,81,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210614.log',1048585,1,85,85,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210614.log',1048585,1,89,89,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210614.log',1048585,1,114,114,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210614.log',1048585,1,133,133,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210614.log',1048585,1,134,134,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210614.log',1048585,1,139,139,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210614.log',1048585,1,150,150,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210614.log',1048585,1,152,152,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210614.log',1048585,1,175,175,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210614.log',1048585,1,191,191,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210614.log',1048585,1,204,204,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210614.log',1048585,1,206,206,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210614.log',1048585,1,209,209,'20210614','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210615.log',259,1,NULL,12,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210615.log',259,1,NULL,13,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210615.log',515,1,5,30,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210615.log',515,1,31,79,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210615.log',515,1,51,118,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210615.log',515,1,83,285,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210615.log',515,1,78,288,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210615.log',515,1,86,290,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210615.log',515,1,91,295,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210615.log',515,1,99,305,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,8,57),('usage_events_20210615.log',515,1,125,310,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20210615.log',515,1,133,318,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210615.log',515,1,139,351,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210615.log',515,1,150,407,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210615.log',515,1,169,461,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210615.log',515,1,171,470,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210615.log',515,1,174,486,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210615.log',515,1,175,493,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210615.log',515,1,177,507,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210615.log',515,1,188,545,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210615.log',515,1,190,556,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210615.log',515,1,193,569,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210615.log',515,1,203,589,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210615.log',515,1,205,606,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210615.log',515,1,206,615,'20210615','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210615.log',1048585,1,5,5,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210615.log',1048585,1,46,46,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210615.log',1048585,1,51,51,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210615.log',1048585,1,78,78,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210615.log',1048585,1,81,81,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210615.log',1048585,1,83,83,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210615.log',1048585,1,91,91,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210615.log',1048585,1,99,99,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210615.log',1048585,1,125,125,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210615.log',1048585,1,150,150,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210615.log',1048585,1,151,151,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210615.log',1048585,1,152,152,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210615.log',1048585,1,171,171,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210615.log',1048585,1,174,174,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210615.log',1048585,1,176,176,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210615.log',1048585,1,177,177,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210615.log',1048585,1,188,188,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210615.log',1048585,1,193,193,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210615.log',1048585,1,203,203,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210615.log',1048585,1,205,205,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210615.log',1048585,1,206,206,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210615.log',1048585,1,210,210,'20210615','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210616.log',256,1,NULL,1,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210616.log',259,1,NULL,10,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210616.log',515,1,7,32,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210616.log',515,1,21,54,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20210616.log',515,1,31,79,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20210616.log',515,1,49,116,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210616.log',515,1,53,120,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210616.log',515,1,54,133,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210616.log',515,1,82,284,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210616.log',515,1,78,288,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',18,1,259,7,49),('usage_events_20210616.log',515,1,84,289,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210616.log',515,1,87,291,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210616.log',515,1,99,305,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210616.log',515,1,136,336,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210616.log',515,1,141,361,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210616.log',515,1,146,379,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210616.log',515,1,148,394,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210616.log',515,1,169,461,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20210616.log',515,1,173,479,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210616.log',515,1,174,486,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210616.log',515,1,175,493,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210616.log',515,1,178,514,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210616.log',515,1,186,533,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210616.log',515,1,187,539,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210616.log',515,1,190,556,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210616.log',515,1,193,569,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210616.log',515,1,205,606,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210616.log',515,1,206,615,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210616.log',515,1,208,630,'20210616','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210616.log',1048585,1,53,53,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210616.log',1048585,1,54,54,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210616.log',1048585,1,58,58,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210616.log',1048585,1,78,78,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210616.log',1048585,1,82,82,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210616.log',1048585,1,87,87,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210616.log',1048585,1,141,141,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210616.log',1048585,1,148,148,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,10,NULL),('usage_events_20210616.log',1048585,1,149,149,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210616.log',1048585,1,171,171,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210616.log',1048585,1,173,173,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210616.log',1048585,1,174,174,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210616.log',1048585,1,175,175,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210616.log',1048585,1,178,178,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210616.log',1048585,1,191,191,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210616.log',1048585,1,193,193,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210616.log',1048585,1,205,205,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210616.log',1048585,1,206,206,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210616.log',1048585,1,207,207,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210616.log',1048585,1,208,208,'20210616','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210617.log',256,1,NULL,1,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210617.log',515,1,49,116,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20210617.log',515,1,53,120,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210617.log',515,1,78,288,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210617.log',515,1,87,291,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210617.log',515,1,89,293,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210617.log',515,1,99,305,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210617.log',515,1,114,308,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210617.log',515,1,133,318,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210617.log',515,1,136,336,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210617.log',515,1,137,343,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210617.log',515,1,146,379,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210617.log',515,1,147,387,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210617.log',515,1,148,394,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210617.log',515,1,150,407,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,75),('usage_events_20210617.log',515,1,169,461,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210617.log',515,1,171,470,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210617.log',515,1,174,486,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210617.log',515,1,175,493,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210617.log',515,1,176,500,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210617.log',515,1,178,514,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210617.log',515,1,190,556,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210617.log',515,1,193,569,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210617.log',515,1,204,597,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210617.log',515,1,205,606,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210617.log',515,1,206,615,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210617.log',515,1,207,622,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210617.log',515,1,209,637,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210617.log',515,1,210,644,'20210617','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210617.log',1048585,1,32,32,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210617.log',1048585,1,49,49,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210617.log',1048585,1,53,53,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210617.log',1048585,1,58,58,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210617.log',1048585,1,59,59,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210617.log',1048585,1,78,78,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210617.log',1048585,1,87,87,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210617.log',1048585,1,89,89,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210617.log',1048585,1,136,136,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210617.log',1048585,1,137,137,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210617.log',1048585,1,148,148,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210617.log',1048585,1,150,150,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,10,NULL),('usage_events_20210617.log',1048585,1,169,169,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210617.log',1048585,1,171,171,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210617.log',1048585,1,174,174,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210617.log',1048585,1,177,177,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210617.log',1048585,1,178,178,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210617.log',1048585,1,185,185,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210617.log',1048585,1,186,186,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210617.log',1048585,1,187,187,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210617.log',1048585,1,188,188,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210617.log',1048585,1,189,189,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210617.log',1048585,1,190,190,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210617.log',1048585,1,191,191,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210617.log',1048585,1,193,193,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210617.log',1048585,1,204,204,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210617.log',1048585,1,206,206,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210617.log',1048585,1,207,207,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210617.log',1048585,1,208,208,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210617.log',1048585,1,209,209,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210617.log',1048585,1,210,210,'20210617','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210618.log',256,1,NULL,1,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210618.log',259,1,NULL,4,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210618.log',259,1,NULL,5,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210618.log',259,1,NULL,11,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210618.log',515,1,6,31,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210618.log',515,1,49,116,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,4,24),('usage_events_20210618.log',515,1,56,135,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210618.log',515,1,58,137,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20210618.log',515,1,79,282,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210618.log',515,1,81,283,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210618.log',515,1,76,286,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210618.log',515,1,77,287,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210618.log',515,1,78,288,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210618.log',515,1,86,290,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210618.log',515,1,91,295,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210618.log',515,1,115,309,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210618.log',515,1,137,343,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210618.log',515,1,139,351,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210618.log',515,1,142,367,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210618.log',515,1,148,394,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210618.log',515,1,149,401,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210618.log',515,1,169,461,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210618.log',515,1,171,470,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210618.log',515,1,173,479,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210618.log',515,1,174,486,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210618.log',515,1,175,493,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210618.log',515,1,176,500,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210618.log',515,1,190,556,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210618.log',515,1,191,563,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,92),('usage_events_20210618.log',515,1,193,569,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210618.log',515,1,203,589,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,94),('usage_events_20210618.log',515,1,204,597,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210618.log',515,1,205,606,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210618.log',515,1,206,615,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210618.log',515,1,207,622,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210618.log',515,1,208,630,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210618.log',515,1,210,644,'20210618','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210618.log',1048585,1,14,14,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210618.log',1048585,1,49,49,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,4,NULL),('usage_events_20210618.log',1048585,1,58,58,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20210618.log',1048585,1,76,76,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210618.log',1048585,1,79,79,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210618.log',1048585,1,81,81,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210618.log',1048585,1,137,137,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210618.log',1048585,1,148,148,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210618.log',1048585,1,152,152,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210618.log',1048585,1,173,173,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210618.log',1048585,1,175,175,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210618.log',1048585,1,176,176,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210618.log',1048585,1,187,187,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210618.log',1048585,1,191,191,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210618.log',1048585,1,193,193,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210618.log',1048585,1,203,203,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210618.log',1048585,1,206,206,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210618.log',1048585,1,207,207,'20210618','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210619.log',256,1,NULL,1,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210619.log',259,1,NULL,7,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210619.log',515,1,32,80,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210619.log',515,1,49,116,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210619.log',515,1,53,120,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210619.log',515,1,58,137,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210619.log',515,1,59,138,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210619.log',515,1,85,281,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210619.log',515,1,78,288,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210619.log',515,1,90,294,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20210619.log',515,1,91,295,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210619.log',515,1,99,305,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210619.log',515,1,114,308,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210619.log',515,1,137,343,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210619.log',515,1,149,401,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210619.log',515,1,150,407,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210619.log',515,1,151,414,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210619.log',515,1,171,470,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210619.log',515,1,175,493,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210619.log',515,1,176,500,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210619.log',515,1,177,507,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210619.log',515,1,178,514,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210619.log',515,1,186,533,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,12,87),('usage_events_20210619.log',515,1,191,563,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210619.log',515,1,193,569,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210619.log',515,1,203,589,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210619.log',515,1,205,606,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210619.log',515,1,206,615,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210619.log',515,1,208,630,'20210619','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,99),('usage_events_20210619.log',1048585,1,49,49,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210619.log',1048585,1,58,58,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210619.log',1048585,1,78,78,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210619.log',1048585,1,90,90,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210619.log',1048585,1,91,91,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,7,NULL),('usage_events_20210619.log',1048585,1,99,99,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210619.log',1048585,1,114,114,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210619.log',1048585,1,151,151,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210619.log',1048585,1,152,152,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210619.log',1048585,1,171,171,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210619.log',1048585,1,175,175,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210619.log',1048585,1,176,176,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210619.log',1048585,1,177,177,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210619.log',1048585,1,186,186,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210619.log',1048585,1,191,191,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210619.log',1048585,1,193,193,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210619.log',1048585,1,209,209,'20210619','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210620.log',256,1,NULL,1,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210620.log',515,1,8,33,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210620.log',515,1,34,82,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,3,19),('usage_events_20210620.log',515,1,49,116,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,4,24),('usage_events_20210620.log',515,1,53,120,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210620.log',515,1,55,134,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210620.log',515,1,59,138,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210620.log',515,1,78,288,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20210620.log',515,1,87,291,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210620.log',515,1,99,305,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210620.log',515,1,113,307,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210620.log',515,1,148,394,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210620.log',515,1,149,401,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210620.log',515,1,150,407,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210620.log',515,1,171,470,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210620.log',515,1,176,500,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210620.log',515,1,193,569,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210620.log',515,1,205,606,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210620.log',515,1,206,615,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210620.log',515,1,207,622,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210620.log',515,1,208,630,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210620.log',515,1,209,637,'20210620','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210620.log',1048585,1,8,8,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210620.log',1048585,1,49,49,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210620.log',1048585,1,78,78,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20210620.log',1048585,1,87,87,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210620.log',1048585,1,149,149,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210620.log',1048585,1,152,152,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210620.log',1048585,1,171,171,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210620.log',1048585,1,175,175,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210620.log',1048585,1,176,176,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210620.log',1048585,1,193,193,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210620.log',1048585,1,204,204,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210620.log',1048585,1,205,205,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210620.log',1048585,1,207,207,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210620.log',1048585,1,209,209,'20210620','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210621.log',256,1,NULL,1,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210621.log',259,1,NULL,11,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210621.log',515,1,1,3,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210621.log',515,1,6,31,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210621.log',515,1,32,80,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210621.log',515,1,33,81,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210621.log',515,1,34,82,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20210621.log',515,1,58,137,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210621.log',515,1,79,282,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210621.log',515,1,82,284,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210621.log',515,1,83,285,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210621.log',515,1,78,288,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210621.log',515,1,87,291,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20210621.log',515,1,115,309,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210621.log',515,1,136,336,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210621.log',515,1,137,343,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210621.log',515,1,139,351,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210621.log',515,1,142,367,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210621.log',515,1,148,394,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20210621.log',515,1,149,401,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210621.log',515,1,150,407,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210621.log',515,1,169,461,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20210621.log',515,1,171,470,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210621.log',515,1,173,479,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210621.log',515,1,175,493,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210621.log',515,1,176,500,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210621.log',515,1,177,507,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210621.log',515,1,178,514,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210621.log',515,1,185,527,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210621.log',515,1,190,556,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210621.log',515,1,204,597,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210621.log',515,1,205,606,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210621.log',515,1,206,615,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210621.log',515,1,207,622,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210621.log',515,1,208,630,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210621.log',515,1,209,637,'20210621','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,100),('usage_events_20210621.log',1048585,1,6,6,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210621.log',1048585,1,32,32,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210621.log',1048585,1,58,58,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210621.log',1048585,1,76,76,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210621.log',1048585,1,78,78,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210621.log',1048585,1,79,79,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210621.log',1048585,1,81,81,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210621.log',1048585,1,100,100,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210621.log',1048585,1,115,115,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210621.log',1048585,1,137,137,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210621.log',1048585,1,139,139,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210621.log',1048585,1,148,148,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210621.log',1048585,1,149,149,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210621.log',1048585,1,169,169,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210621.log',1048585,1,171,171,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210621.log',1048585,1,175,175,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210621.log',1048585,1,176,176,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210621.log',1048585,1,203,203,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210621.log',1048585,1,205,205,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210621.log',1048585,1,206,206,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210621.log',1048585,1,207,207,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210621.log',1048585,1,208,208,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210621.log',1048585,1,209,209,'20210621','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210622.log',256,1,NULL,1,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',49,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,1,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,2,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,3,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,4,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,5,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,6,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,7,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,8,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,9,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,10,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,11,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',25,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,12,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210622.log',259,1,NULL,13,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210622.log',515,1,1,3,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210622.log',515,1,7,32,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210622.log',515,1,8,33,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210622.log',515,1,14,51,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210622.log',515,1,32,80,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210622.log',515,1,33,81,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20210622.log',515,1,34,82,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210622.log',515,1,35,83,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210622.log',515,1,49,116,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210622.log',515,1,53,120,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210622.log',515,1,58,137,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210622.log',515,1,83,285,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210622.log',515,1,78,288,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20210622.log',515,1,84,289,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210622.log',515,1,86,290,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210622.log',515,1,87,291,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210622.log',515,1,114,308,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210622.log',515,1,146,379,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210622.log',515,1,148,394,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210622.log',515,1,149,401,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210622.log',515,1,150,407,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210622.log',515,1,169,461,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210622.log',515,1,171,470,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210622.log',515,1,173,479,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210622.log',515,1,175,493,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210622.log',515,1,178,514,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210622.log',515,1,186,533,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210622.log',515,1,187,539,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210622.log',515,1,204,597,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210622.log',515,1,205,606,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210622.log',515,1,206,615,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210622.log',515,1,207,622,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210622.log',515,1,208,630,'20210622','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210622.log',1048585,1,1,1,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210622.log',1048585,1,4,4,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210622.log',1048585,1,5,5,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210622.log',1048585,1,6,6,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210622.log',1048585,1,7,7,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210622.log',1048585,1,8,8,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210622.log',1048585,1,14,14,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210622.log',1048585,1,19,19,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210622.log',1048585,1,20,20,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210622.log',1048585,1,21,21,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210622.log',1048585,1,22,22,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210622.log',1048585,1,40,40,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210622.log',1048585,1,53,53,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210622.log',1048585,1,58,58,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210622.log',1048585,1,78,78,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210622.log',1048585,1,83,83,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210622.log',1048585,1,86,86,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210622.log',1048585,1,133,133,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210622.log',1048585,1,134,134,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210622.log',1048585,1,135,135,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210622.log',1048585,1,136,136,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210622.log',1048585,1,137,137,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210622.log',1048585,1,139,139,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210622.log',1048585,1,141,141,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210622.log',1048585,1,142,142,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210622.log',1048585,1,146,146,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL);
INSERT INTO `metrics` VALUES ('usage_events_20210622.log',1048585,1,147,147,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210622.log',1048585,1,148,148,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210622.log',1048585,1,149,149,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210622.log',1048585,1,150,150,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210622.log',1048585,1,151,151,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210622.log',1048585,1,152,152,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210622.log',1048585,1,169,169,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210622.log',1048585,1,171,171,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210622.log',1048585,1,173,173,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,11,NULL),('usage_events_20210622.log',1048585,1,174,174,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210622.log',1048585,1,175,175,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210622.log',1048585,1,176,176,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210622.log',1048585,1,177,177,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210622.log',1048585,1,178,178,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210622.log',1048585,1,185,185,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210622.log',1048585,1,187,187,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210622.log',1048585,1,189,189,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210622.log',1048585,1,193,193,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210622.log',1048585,1,203,203,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210622.log',1048585,1,204,204,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210622.log',1048585,1,205,205,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210622.log',1048585,1,206,206,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210622.log',1048585,1,207,207,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210622.log',1048585,1,208,208,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210622.log',1048585,1,209,209,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210622.log',1048585,1,210,210,'20210622','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210623.log',256,1,NULL,1,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',48,NULL,NULL,NULL,NULL),('usage_events_20210623.log',259,1,NULL,9,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210623.log',259,1,NULL,10,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210623.log',259,1,NULL,13,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210623.log',515,1,5,30,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210623.log',515,1,8,33,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210623.log',515,1,34,82,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',153,1,259,3,19),('usage_events_20210623.log',515,1,49,116,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210623.log',515,1,53,120,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210623.log',515,1,54,133,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210623.log',515,1,79,282,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210623.log',515,1,76,286,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210623.log',515,1,77,287,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210623.log',515,1,78,288,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210623.log',515,1,86,290,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210623.log',515,1,90,294,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210623.log',515,1,99,305,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210623.log',515,1,113,307,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,59),('usage_events_20210623.log',515,1,115,309,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210623.log',515,1,125,310,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210623.log',515,1,133,318,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210623.log',515,1,134,324,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,64),('usage_events_20210623.log',515,1,135,330,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210623.log',515,1,136,336,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210623.log',515,1,137,343,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,67),('usage_events_20210623.log',515,1,139,351,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20210623.log',515,1,141,361,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210623.log',515,1,142,367,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210623.log',515,1,146,379,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210623.log',515,1,147,387,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210623.log',515,1,148,394,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210623.log',515,1,149,401,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210623.log',515,1,150,407,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210623.log',515,1,151,414,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210623.log',515,1,152,423,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210623.log',515,1,169,461,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210623.log',515,1,171,470,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210623.log',515,1,173,479,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,80),('usage_events_20210623.log',515,1,174,486,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210623.log',515,1,175,493,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210623.log',515,1,176,500,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210623.log',515,1,177,507,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210623.log',515,1,178,514,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210623.log',515,1,190,556,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210623.log',515,1,191,563,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210623.log',515,1,193,569,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210623.log',515,1,204,597,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210623.log',515,1,205,606,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210623.log',515,1,206,615,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210623.log',515,1,207,622,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210623.log',515,1,209,637,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210623.log',515,1,210,644,'20210623','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210623.log',1048585,1,8,8,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210623.log',1048585,1,76,76,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210623.log',1048585,1,77,77,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210623.log',1048585,1,78,78,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210623.log',1048585,1,79,79,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210623.log',1048585,1,99,99,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210623.log',1048585,1,113,113,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210623.log',1048585,1,133,133,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210623.log',1048585,1,134,134,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210623.log',1048585,1,135,135,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210623.log',1048585,1,136,136,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210623.log',1048585,1,137,137,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210623.log',1048585,1,139,139,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210623.log',1048585,1,141,141,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210623.log',1048585,1,142,142,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210623.log',1048585,1,146,146,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210623.log',1048585,1,147,147,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210623.log',1048585,1,148,148,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210623.log',1048585,1,149,149,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210623.log',1048585,1,150,150,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210623.log',1048585,1,151,151,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210623.log',1048585,1,152,152,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210623.log',1048585,1,169,169,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20210623.log',1048585,1,171,171,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210623.log',1048585,1,173,173,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210623.log',1048585,1,174,174,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210623.log',1048585,1,175,175,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210623.log',1048585,1,176,176,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210623.log',1048585,1,177,177,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210623.log',1048585,1,178,178,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210623.log',1048585,1,190,190,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210623.log',1048585,1,193,193,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210623.log',1048585,1,203,203,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210623.log',1048585,1,204,204,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210623.log',1048585,1,205,205,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210623.log',1048585,1,206,206,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210623.log',1048585,1,207,207,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210623.log',1048585,1,208,208,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210623.log',1048585,1,209,209,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210623.log',1048585,1,210,210,'20210623','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210624.log',256,1,NULL,1,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',19,NULL,NULL,NULL,NULL),('usage_events_20210624.log',259,1,NULL,11,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210624.log',259,1,NULL,12,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210624.log',259,1,NULL,13,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210624.log',515,1,53,120,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210624.log',515,1,54,133,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210624.log',515,1,79,282,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210624.log',515,1,82,284,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210624.log',515,1,77,287,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210624.log',515,1,78,288,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210624.log',515,1,89,293,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210624.log',515,1,91,295,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210624.log',515,1,113,307,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210624.log',515,1,125,310,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210624.log',515,1,134,324,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210624.log',515,1,135,330,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210624.log',515,1,137,343,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210624.log',515,1,142,367,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210624.log',515,1,147,387,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210624.log',515,1,148,394,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210624.log',515,1,150,407,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,75),('usage_events_20210624.log',515,1,151,414,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210624.log',515,1,169,461,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210624.log',515,1,187,539,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210624.log',515,1,193,569,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210624.log',515,1,205,606,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210624.log',515,1,206,615,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210624.log',515,1,207,622,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210624.log',515,1,209,637,'20210624','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210624.log',1048585,1,53,53,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210624.log',1048585,1,84,84,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210624.log',1048585,1,85,85,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210624.log',1048585,1,100,100,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210624.log',1048585,1,115,115,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210624.log',1048585,1,135,135,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210624.log',1048585,1,136,136,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210624.log',1048585,1,137,137,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210624.log',1048585,1,142,142,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210624.log',1048585,1,148,148,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210624.log',1048585,1,151,151,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210624.log',1048585,1,173,173,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210624.log',1048585,1,175,175,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210624.log',1048585,1,187,187,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210624.log',1048585,1,191,191,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210624.log',1048585,1,193,193,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210624.log',1048585,1,203,203,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210624.log',1048585,1,206,206,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210624.log',1048585,1,207,207,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210624.log',1048585,1,209,209,'20210624','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210625.log',256,1,NULL,1,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210625.log',259,1,NULL,13,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210625.log',515,1,20,53,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210625.log',515,1,22,57,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,13),('usage_events_20210625.log',515,1,40,94,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210625.log',515,1,47,115,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210625.log',515,1,53,120,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210625.log',515,1,58,137,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210625.log',515,1,82,284,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210625.log',515,1,78,288,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210625.log',515,1,84,289,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210625.log',515,1,99,305,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210625.log',515,1,114,308,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210625.log',515,1,137,343,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210625.log',515,1,142,367,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210625.log',515,1,148,394,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210625.log',515,1,169,461,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210625.log',515,1,171,470,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210625.log',515,1,174,486,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210625.log',515,1,178,514,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210625.log',515,1,187,539,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210625.log',515,1,190,556,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210625.log',515,1,203,589,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210625.log',515,1,205,606,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210625.log',515,1,206,615,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210625.log',515,1,208,630,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210625.log',515,1,209,637,'20210625','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210625.log',1048585,1,40,40,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210625.log',1048585,1,51,51,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210625.log',1048585,1,53,53,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210625.log',1048585,1,58,58,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210625.log',1048585,1,78,78,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210625.log',1048585,1,137,137,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210625.log',1048585,1,149,149,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210625.log',1048585,1,150,150,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210625.log',1048585,1,171,171,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210625.log',1048585,1,177,177,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210625.log',1048585,1,193,193,'20210625','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210626.log',256,1,NULL,1,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,1,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,2,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,3,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,4,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,5,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,6,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,7,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,8,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,9,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,10,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,11,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,12,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210626.log',259,1,NULL,13,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210626.log',515,1,1,3,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210626.log',515,1,35,83,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210626.log',515,1,54,133,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210626.log',515,1,81,283,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210626.log',515,1,82,284,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210626.log',515,1,83,285,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210626.log',515,1,77,287,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210626.log',515,1,78,288,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210626.log',515,1,137,343,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210626.log',515,1,148,394,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210626.log',515,1,149,401,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210626.log',515,1,150,407,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210626.log',515,1,171,470,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210626.log',515,1,174,486,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210626.log',515,1,185,527,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210626.log',515,1,186,533,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20210626.log',515,1,187,539,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210626.log',515,1,189,551,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,90),('usage_events_20210626.log',515,1,191,563,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210626.log',515,1,203,589,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210626.log',515,1,204,597,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210626.log',515,1,205,606,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210626.log',515,1,206,615,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210626.log',515,1,207,622,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210626.log',515,1,208,630,'20210626','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210626.log',1048585,1,1,1,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210626.log',1048585,1,4,4,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210626.log',1048585,1,5,5,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210626.log',1048585,1,6,6,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210626.log',1048585,1,7,7,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210626.log',1048585,1,8,8,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210626.log',1048585,1,14,14,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210626.log',1048585,1,19,19,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210626.log',1048585,1,20,20,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210626.log',1048585,1,21,21,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210626.log',1048585,1,22,22,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210626.log',1048585,1,40,40,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210626.log',1048585,1,47,47,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210626.log',1048585,1,78,78,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210626.log',1048585,1,81,81,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210626.log',1048585,1,148,148,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210626.log',1048585,1,149,149,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210626.log',1048585,1,150,150,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210626.log',1048585,1,169,169,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210626.log',1048585,1,171,171,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210626.log',1048585,1,174,174,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210626.log',1048585,1,175,175,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210626.log',1048585,1,176,176,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210626.log',1048585,1,186,186,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210626.log',1048585,1,203,203,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210626.log',1048585,1,204,204,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210626.log',1048585,1,205,205,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210626.log',1048585,1,206,206,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210626.log',1048585,1,207,207,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210626.log',1048585,1,208,208,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210626.log',1048585,1,209,209,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210626.log',1048585,1,210,210,'20210626','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210627.log',256,1,NULL,1,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210627.log',259,1,NULL,4,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210627.log',515,1,8,33,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210627.log',515,1,14,51,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210627.log',515,1,46,114,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210627.log',515,1,53,120,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210627.log',515,1,56,135,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210627.log',515,1,57,136,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,32),('usage_events_20210627.log',515,1,59,138,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210627.log',515,1,77,287,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210627.log',515,1,91,295,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210627.log',515,1,99,305,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',6,1,259,8,57),('usage_events_20210627.log',515,1,141,361,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210627.log',515,1,148,394,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210627.log',515,1,175,493,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210627.log',515,1,185,527,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210627.log',515,1,188,545,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,89),('usage_events_20210627.log',515,1,189,551,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210627.log',515,1,190,556,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210627.log',515,1,191,563,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210627.log',515,1,193,569,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210627.log',515,1,204,597,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210627.log',515,1,205,606,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210627.log',515,1,206,615,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210627.log',515,1,207,622,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210627.log',515,1,208,630,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210627.log',515,1,209,637,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210627.log',515,1,210,644,'20210627','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210627.log',1048585,1,8,8,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210627.log',1048585,1,50,50,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210627.log',1048585,1,53,53,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210627.log',1048585,1,82,82,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210627.log',1048585,1,141,141,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210627.log',1048585,1,142,142,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210627.log',1048585,1,175,175,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210627.log',1048585,1,177,177,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210627.log',1048585,1,186,186,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210627.log',1048585,1,188,188,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210627.log',1048585,1,193,193,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210627.log',1048585,1,206,206,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210627.log',1048585,1,207,207,'20210627','202106',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210628.log',256,1,NULL,1,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210628.log',259,1,NULL,1,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210628.log',259,1,NULL,2,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210628.log',259,1,NULL,7,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210628.log',259,1,NULL,11,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210628.log',259,1,NULL,13,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210628.log',515,1,14,51,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210628.log',515,1,33,81,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210628.log',515,1,56,135,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210628.log',515,1,81,283,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210628.log',515,1,78,288,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210628.log',515,1,84,289,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,50),('usage_events_20210628.log',515,1,86,290,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210628.log',515,1,91,295,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210628.log',515,1,99,305,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210628.log',515,1,133,318,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210628.log',515,1,134,324,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210628.log',515,1,135,330,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210628.log',515,1,136,336,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210628.log',515,1,137,343,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210628.log',515,1,139,351,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210628.log',515,1,141,361,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210628.log',515,1,142,367,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210628.log',515,1,146,379,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210628.log',515,1,147,387,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210628.log',515,1,148,394,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210628.log',515,1,149,401,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210628.log',515,1,150,407,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210628.log',515,1,151,414,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210628.log',515,1,152,423,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210628.log',515,1,169,461,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210628.log',515,1,171,470,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210628.log',515,1,173,479,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210628.log',515,1,174,486,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210628.log',515,1,175,493,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210628.log',515,1,176,500,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210628.log',515,1,177,507,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210628.log',515,1,178,514,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210628.log',515,1,190,556,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210628.log',515,1,204,597,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210628.log',515,1,205,606,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210628.log',515,1,206,615,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210628.log',515,1,207,622,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210628.log',515,1,208,630,'20210628','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210628.log',1048585,1,4,4,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210628.log',1048585,1,6,6,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210628.log',1048585,1,46,46,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210628.log',1048585,1,59,59,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210628.log',1048585,1,78,78,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210628.log',1048585,1,86,86,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210628.log',1048585,1,91,91,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210628.log',1048585,1,133,133,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210628.log',1048585,1,134,134,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210628.log',1048585,1,139,139,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210628.log',1048585,1,142,142,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210628.log',1048585,1,150,150,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210628.log',1048585,1,152,152,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210628.log',1048585,1,169,169,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210628.log',1048585,1,171,171,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210628.log',1048585,1,173,173,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210628.log',1048585,1,174,174,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210628.log',1048585,1,175,175,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210628.log',1048585,1,203,203,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210628.log',1048585,1,205,205,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210628.log',1048585,1,206,206,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210628.log',1048585,1,207,207,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210628.log',1048585,1,208,208,'20210628','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210629.log',256,1,NULL,1,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210629.log',259,1,NULL,9,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210629.log',515,1,6,31,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210629.log',515,1,31,79,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20210629.log',515,1,33,81,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210629.log',515,1,56,135,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210629.log',515,1,83,285,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210629.log',515,1,77,287,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210629.log',515,1,78,288,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210629.log',515,1,133,318,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210629.log',515,1,134,324,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210629.log',515,1,135,330,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210629.log',515,1,137,343,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210629.log',515,1,139,351,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210629.log',515,1,142,367,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210629.log',515,1,148,394,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210629.log',515,1,149,401,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210629.log',515,1,150,407,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210629.log',515,1,169,461,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210629.log',515,1,171,470,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210629.log',515,1,173,479,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210629.log',515,1,174,486,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210629.log',515,1,178,514,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210629.log',515,1,186,533,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210629.log',515,1,190,556,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210629.log',515,1,193,569,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210629.log',515,1,204,597,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210629.log',515,1,206,615,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210629.log',515,1,207,622,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210629.log',515,1,208,630,'20210629','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210629.log',1048585,1,6,6,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210629.log',1048585,1,77,77,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210629.log',1048585,1,78,78,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210629.log',1048585,1,133,133,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210629.log',1048585,1,134,134,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210629.log',1048585,1,135,135,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210629.log',1048585,1,136,136,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210629.log',1048585,1,137,137,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210629.log',1048585,1,139,139,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210629.log',1048585,1,141,141,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210629.log',1048585,1,142,142,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210629.log',1048585,1,148,148,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210629.log',1048585,1,149,149,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210629.log',1048585,1,152,152,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210629.log',1048585,1,169,169,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210629.log',1048585,1,171,171,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20210629.log',1048585,1,173,173,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210629.log',1048585,1,175,175,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210629.log',1048585,1,178,178,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210629.log',1048585,1,185,185,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210629.log',1048585,1,187,187,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210629.log',1048585,1,193,193,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210629.log',1048585,1,203,203,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210629.log',1048585,1,204,204,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210629.log',1048585,1,206,206,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210629.log',1048585,1,207,207,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210629.log',1048585,1,209,209,'20210629','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210630.log',256,1,NULL,1,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210630.log',259,1,NULL,11,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210630.log',515,1,4,19,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210630.log',515,1,14,51,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210630.log',515,1,35,83,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210630.log',515,1,47,115,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,23),('usage_events_20210630.log',515,1,53,120,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210630.log',515,1,54,133,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210630.log',515,1,85,281,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210630.log',515,1,78,288,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20210630.log',515,1,86,290,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210630.log',515,1,87,291,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210630.log',515,1,91,295,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210630.log',515,1,133,318,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210630.log',515,1,134,324,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210630.log',515,1,135,330,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210630.log',515,1,136,336,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210630.log',515,1,137,343,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210630.log',515,1,139,351,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210630.log',515,1,141,361,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210630.log',515,1,142,367,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210630.log',515,1,146,379,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210630.log',515,1,147,387,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210630.log',515,1,148,394,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210630.log',515,1,149,401,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210630.log',515,1,150,407,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210630.log',515,1,151,414,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210630.log',515,1,152,423,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210630.log',515,1,169,461,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210630.log',515,1,171,470,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210630.log',515,1,173,479,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210630.log',515,1,174,486,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210630.log',515,1,175,493,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210630.log',515,1,176,500,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210630.log',515,1,177,507,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210630.log',515,1,178,514,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210630.log',515,1,185,527,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210630.log',515,1,187,539,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210630.log',515,1,190,556,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210630.log',515,1,191,563,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210630.log',515,1,193,569,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210630.log',515,1,204,597,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,95),('usage_events_20210630.log',515,1,205,606,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210630.log',515,1,206,615,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210630.log',515,1,208,630,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210630.log',515,1,209,637,'20210630','202106',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210630.log',1048585,1,47,47,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210630.log',1048585,1,78,78,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20210630.log',1048585,1,85,85,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210630.log',1048585,1,86,86,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210630.log',1048585,1,87,87,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210630.log',1048585,1,91,91,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210630.log',1048585,1,100,100,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210630.log',1048585,1,134,134,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210630.log',1048585,1,146,146,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210630.log',1048585,1,149,149,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210630.log',1048585,1,150,150,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210630.log',1048585,1,151,151,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210630.log',1048585,1,169,169,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210630.log',1048585,1,171,171,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210630.log',1048585,1,173,173,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210630.log',1048585,1,177,177,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210630.log',1048585,1,178,178,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210630.log',1048585,1,185,185,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210630.log',1048585,1,188,188,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210630.log',1048585,1,193,193,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210630.log',1048585,1,204,204,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210630.log',1048585,1,205,205,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210630.log',1048585,1,206,206,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210630.log',1048585,1,207,207,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210630.log',1048585,1,208,208,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210630.log',1048585,1,210,210,'20210630','202106',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210701.log',256,1,NULL,1,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210701.log',259,1,NULL,11,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210701.log',515,1,14,51,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210701.log',515,1,47,115,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20210701.log',515,1,53,120,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210701.log',515,1,58,137,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210701.log',515,1,78,288,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210701.log',515,1,84,289,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210701.log',515,1,87,291,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20210701.log',515,1,114,308,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210701.log',515,1,137,343,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210701.log',515,1,148,394,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210701.log',515,1,149,401,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210701.log',515,1,150,407,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210701.log',515,1,151,414,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210701.log',515,1,169,461,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210701.log',515,1,173,479,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210701.log',515,1,174,486,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210701.log',515,1,175,493,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210701.log',515,1,189,551,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210701.log',515,1,190,556,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210701.log',515,1,193,569,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210701.log',515,1,203,589,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210701.log',515,1,205,606,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210701.log',515,1,206,615,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210701.log',515,1,208,630,'20210701','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210701.log',1048585,1,53,53,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210701.log',1048585,1,58,58,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20210701.log',1048585,1,78,78,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210701.log',1048585,1,87,87,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210701.log',1048585,1,137,137,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210701.log',1048585,1,148,148,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210701.log',1048585,1,149,149,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210701.log',1048585,1,151,151,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210701.log',1048585,1,171,171,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210701.log',1048585,1,174,174,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210701.log',1048585,1,175,175,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210701.log',1048585,1,186,186,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210701.log',1048585,1,187,187,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210701.log',1048585,1,190,190,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210701.log',1048585,1,203,203,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210701.log',1048585,1,206,206,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,13,NULL),('usage_events_20210701.log',1048585,1,208,208,'20210701','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210702.log',256,1,NULL,1,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,1,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,2,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,3,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,4,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,5,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,6,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,7,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,8,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,9,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,10,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,11,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,12,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210702.log',259,1,NULL,13,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210702.log',515,1,1,3,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210702.log',515,1,19,52,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210702.log',515,1,32,80,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210702.log',515,1,33,81,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,18),('usage_events_20210702.log',515,1,35,83,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20210702.log',515,1,53,120,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210702.log',515,1,54,133,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210702.log',515,1,81,283,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210702.log',515,1,78,288,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210702.log',515,1,87,291,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210702.log',515,1,89,293,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210702.log',515,1,99,305,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210702.log',515,1,114,308,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210702.log',515,1,137,343,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210702.log',515,1,142,367,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210702.log',515,1,148,394,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210702.log',515,1,187,539,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210702.log',515,1,193,569,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210702.log',515,1,204,597,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210702.log',515,1,205,606,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,96),('usage_events_20210702.log',515,1,206,615,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210702.log',515,1,208,630,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210702.log',515,1,209,637,'20210702','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210702.log',1048585,1,1,1,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210702.log',1048585,1,4,4,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210702.log',1048585,1,5,5,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210702.log',1048585,1,6,6,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210702.log',1048585,1,7,7,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210702.log',1048585,1,8,8,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210702.log',1048585,1,14,14,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210702.log',1048585,1,19,19,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210702.log',1048585,1,20,20,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210702.log',1048585,1,21,21,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210702.log',1048585,1,22,22,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210702.log',1048585,1,33,33,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210702.log',1048585,1,40,40,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210702.log',1048585,1,54,54,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210702.log',1048585,1,78,78,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210702.log',1048585,1,87,87,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210702.log',1048585,1,114,114,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210702.log',1048585,1,125,125,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210702.log',1048585,1,137,137,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210702.log',1048585,1,139,139,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210702.log',1048585,1,169,169,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210702.log',1048585,1,173,173,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210702.log',1048585,1,187,187,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210702.log',1048585,1,190,190,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210702.log',1048585,1,193,193,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210702.log',1048585,1,203,203,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210702.log',1048585,1,204,204,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210702.log',1048585,1,205,205,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210702.log',1048585,1,206,206,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210702.log',1048585,1,207,207,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210702.log',1048585,1,208,208,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210702.log',1048585,1,209,209,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210702.log',1048585,1,210,210,'20210702','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210703.log',256,1,NULL,1,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210703.log',515,1,33,81,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210703.log',515,1,49,116,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210703.log',515,1,52,119,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210703.log',515,1,56,135,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210703.log',515,1,82,284,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210703.log',515,1,78,288,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210703.log',515,1,84,289,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210703.log',515,1,87,291,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210703.log',515,1,91,295,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210703.log',515,1,99,305,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210703.log',515,1,125,310,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210703.log',515,1,137,343,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210703.log',515,1,142,367,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210703.log',515,1,147,387,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210703.log',515,1,169,461,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210703.log',515,1,171,470,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210703.log',515,1,175,493,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210703.log',515,1,178,514,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210703.log',515,1,186,533,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210703.log',515,1,187,539,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210703.log',515,1,188,545,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,89),('usage_events_20210703.log',515,1,190,556,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210703.log',515,1,193,569,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210703.log',515,1,205,606,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210703.log',515,1,206,615,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210703.log',515,1,207,622,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210703.log',515,1,208,630,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210703.log',515,1,209,637,'20210703','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210703.log',1048585,1,33,33,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210703.log',1048585,1,52,52,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210703.log',1048585,1,58,58,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210703.log',1048585,1,78,78,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210703.log',1048585,1,91,91,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210703.log',1048585,1,100,100,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210703.log',1048585,1,147,147,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210703.log',1048585,1,171,171,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210703.log',1048585,1,175,175,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210703.log',1048585,1,189,189,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210703.log',1048585,1,191,191,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210703.log',1048585,1,204,204,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210703.log',1048585,1,206,206,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210703.log',1048585,1,207,207,'20210703','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210704.log',256,1,NULL,1,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210704.log',515,1,33,81,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210704.log',515,1,35,83,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210704.log',515,1,54,133,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,29),('usage_events_20210704.log',515,1,58,137,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210704.log',515,1,59,138,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210704.log',515,1,77,287,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',10,1,259,6,48),('usage_events_20210704.log',515,1,78,288,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210704.log',515,1,88,292,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210704.log',515,1,90,294,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210704.log',515,1,99,305,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210704.log',515,1,133,318,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210704.log',515,1,134,324,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210704.log',515,1,150,407,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210704.log',515,1,169,461,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210704.log',515,1,171,470,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210704.log',515,1,174,486,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210704.log',515,1,175,493,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210704.log',515,1,178,514,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210704.log',515,1,186,533,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210704.log',515,1,187,539,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210704.log',515,1,190,556,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210704.log',515,1,205,606,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,96),('usage_events_20210704.log',515,1,206,615,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210704.log',515,1,207,622,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210704.log',515,1,208,630,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210704.log',515,1,209,637,'20210704','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210704.log',1048585,1,35,35,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210704.log',1048585,1,54,54,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210704.log',1048585,1,58,58,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210704.log',1048585,1,77,77,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210704.log',1048585,1,99,99,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210704.log',1048585,1,133,133,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210704.log',1048585,1,150,150,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210704.log',1048585,1,171,171,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210704.log',1048585,1,175,175,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210704.log',1048585,1,178,178,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210704.log',1048585,1,187,187,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210704.log',1048585,1,207,207,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210704.log',1048585,1,208,208,'20210704','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210705.log',256,1,NULL,1,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',17,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,1,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,2,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,3,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,4,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,5,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,6,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,7,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,8,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,9,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,10,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,11,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,12,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210705.log',259,1,NULL,13,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210705.log',515,1,1,3,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210705.log',515,1,4,19,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210705.log',515,1,8,33,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210705.log',515,1,20,53,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210705.log',515,1,33,81,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210705.log',515,1,59,138,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210705.log',515,1,82,284,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210705.log',515,1,77,287,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210705.log',515,1,78,288,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210705.log',515,1,84,289,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210705.log',515,1,86,290,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210705.log',515,1,87,291,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210705.log',515,1,115,309,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210705.log',515,1,135,330,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,65),('usage_events_20210705.log',515,1,137,343,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210705.log',515,1,142,367,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',10,1,259,9,70),('usage_events_20210705.log',515,1,148,394,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210705.log',515,1,150,407,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210705.log',515,1,152,423,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210705.log',515,1,169,461,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210705.log',515,1,171,470,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20210705.log',515,1,173,479,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210705.log',515,1,176,500,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210705.log',515,1,178,514,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210705.log',515,1,189,551,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210705.log',515,1,190,556,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,12,91),('usage_events_20210705.log',515,1,193,569,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210705.log',515,1,204,597,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210705.log',515,1,205,606,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,96),('usage_events_20210705.log',515,1,206,615,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210705.log',515,1,207,622,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210705.log',515,1,208,630,'20210705','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210705.log',1048585,1,1,1,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210705.log',1048585,1,4,4,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20210705.log',1048585,1,5,5,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210705.log',1048585,1,6,6,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210705.log',1048585,1,7,7,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210705.log',1048585,1,8,8,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,1,NULL),('usage_events_20210705.log',1048585,1,14,14,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210705.log',1048585,1,19,19,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210705.log',1048585,1,20,20,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210705.log',1048585,1,21,21,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210705.log',1048585,1,22,22,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210705.log',1048585,1,40,40,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210705.log',1048585,1,47,47,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210705.log',1048585,1,58,58,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210705.log',1048585,1,77,77,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210705.log',1048585,1,78,78,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210705.log',1048585,1,86,86,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210705.log',1048585,1,135,135,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210705.log',1048585,1,137,137,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20210705.log',1048585,1,142,142,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210705.log',1048585,1,147,147,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210705.log',1048585,1,148,148,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210705.log',1048585,1,150,150,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210705.log',1048585,1,169,169,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210705.log',1048585,1,171,171,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210705.log',1048585,1,173,173,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210705.log',1048585,1,190,190,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210705.log',1048585,1,193,193,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210705.log',1048585,1,203,203,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210705.log',1048585,1,204,204,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210705.log',1048585,1,205,205,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210705.log',1048585,1,206,206,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210705.log',1048585,1,207,207,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210705.log',1048585,1,208,208,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210705.log',1048585,1,209,209,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210705.log',1048585,1,210,210,'20210705','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210706.log',256,1,NULL,1,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210706.log',259,1,NULL,11,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210706.log',515,1,8,33,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210706.log',515,1,19,52,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210706.log',515,1,33,81,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210706.log',515,1,49,116,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210706.log',515,1,78,288,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210706.log',515,1,84,289,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210706.log',515,1,99,305,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210706.log',515,1,114,308,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210706.log',515,1,115,309,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210706.log',515,1,134,324,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210706.log',515,1,137,343,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210706.log',515,1,142,367,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210706.log',515,1,148,394,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210706.log',515,1,150,407,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210706.log',515,1,152,423,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210706.log',515,1,169,461,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,78),('usage_events_20210706.log',515,1,171,470,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210706.log',515,1,173,479,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210706.log',515,1,174,486,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210706.log',515,1,175,493,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210706.log',515,1,177,507,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210706.log',515,1,178,514,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210706.log',515,1,186,533,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210706.log',515,1,205,606,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210706.log',515,1,206,615,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210706.log',515,1,207,622,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210706.log',515,1,208,630,'20210706','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210706.log',1048585,1,8,8,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210706.log',1048585,1,49,49,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210706.log',1048585,1,58,58,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210706.log',1048585,1,78,78,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210706.log',1048585,1,82,82,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210706.log',1048585,1,84,84,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210706.log',1048585,1,86,86,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210706.log',1048585,1,135,135,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210706.log',1048585,1,137,137,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210706.log',1048585,1,150,150,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210706.log',1048585,1,169,169,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210706.log',1048585,1,171,171,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210706.log',1048585,1,173,173,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210706.log',1048585,1,175,175,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210706.log',1048585,1,177,177,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210706.log',1048585,1,186,186,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210706.log',1048585,1,205,205,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210706.log',1048585,1,206,206,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210706.log',1048585,1,207,207,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210706.log',1048585,1,208,208,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210706.log',1048585,1,210,210,'20210706','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210707.log',256,1,NULL,1,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210707.log',259,1,NULL,13,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210707.log',515,1,31,79,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,16),('usage_events_20210707.log',515,1,47,115,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210707.log',515,1,49,116,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210707.log',515,1,79,282,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210707.log',515,1,78,288,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210707.log',515,1,115,309,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210707.log',515,1,139,351,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210707.log',515,1,142,367,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,70),('usage_events_20210707.log',515,1,147,387,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210707.log',515,1,148,394,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210707.log',515,1,151,414,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210707.log',515,1,169,461,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210707.log',515,1,171,470,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210707.log',515,1,175,493,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210707.log',515,1,176,500,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210707.log',515,1,178,514,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210707.log',515,1,185,527,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210707.log',515,1,186,533,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210707.log',515,1,187,539,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210707.log',515,1,190,556,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210707.log',515,1,193,569,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210707.log',515,1,205,606,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,96),('usage_events_20210707.log',515,1,206,615,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210707.log',515,1,207,622,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210707.log',515,1,208,630,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210707.log',515,1,209,637,'20210707','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210707.log',1048585,1,47,47,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210707.log',1048585,1,58,58,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,5,NULL),('usage_events_20210707.log',1048585,1,78,78,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210707.log',1048585,1,79,79,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210707.log',1048585,1,86,86,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210707.log',1048585,1,139,139,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210707.log',1048585,1,142,142,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210707.log',1048585,1,147,147,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210707.log',1048585,1,149,149,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210707.log',1048585,1,151,151,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210707.log',1048585,1,169,169,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210707.log',1048585,1,171,171,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210707.log',1048585,1,175,175,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210707.log',1048585,1,185,185,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210707.log',1048585,1,186,186,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210707.log',1048585,1,191,191,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210707.log',1048585,1,193,193,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210707.log',1048585,1,206,206,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210707.log',1048585,1,207,207,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210707.log',1048585,1,208,208,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210707.log',1048585,1,209,209,'20210707','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210708.log',256,1,NULL,1,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,1,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,2,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,3,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,4,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,5,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,6,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,7,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,8,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,9,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,10,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,11,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,12,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210708.log',259,1,NULL,13,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210708.log',515,1,1,3,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210708.log',515,1,35,83,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,20),('usage_events_20210708.log',515,1,46,114,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210708.log',515,1,49,116,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210708.log',515,1,59,138,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210708.log',515,1,82,284,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210708.log',515,1,77,287,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210708.log',515,1,78,288,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210708.log',515,1,86,290,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210708.log',515,1,99,305,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20210708.log',515,1,133,318,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210708.log',515,1,142,367,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,70),('usage_events_20210708.log',515,1,148,394,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210708.log',515,1,169,461,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210708.log',515,1,171,470,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210708.log',515,1,175,493,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210708.log',515,1,178,514,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210708.log',515,1,186,533,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20210708.log',515,1,187,539,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210708.log',515,1,191,563,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20210708.log',515,1,205,606,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210708.log',515,1,206,615,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210708.log',515,1,207,622,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210708.log',515,1,209,637,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210708.log',515,1,210,644,'20210708','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210708.log',1048585,1,1,1,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210708.log',1048585,1,4,4,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210708.log',1048585,1,5,5,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210708.log',1048585,1,6,6,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210708.log',1048585,1,7,7,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210708.log',1048585,1,8,8,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,1,NULL),('usage_events_20210708.log',1048585,1,14,14,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210708.log',1048585,1,19,19,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210708.log',1048585,1,20,20,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210708.log',1048585,1,21,21,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210708.log',1048585,1,22,22,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210708.log',1048585,1,40,40,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210708.log',1048585,1,49,49,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210708.log',1048585,1,77,77,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210708.log',1048585,1,133,133,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210708.log',1048585,1,137,137,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210708.log',1048585,1,142,142,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210708.log',1048585,1,147,147,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210708.log',1048585,1,151,151,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210708.log',1048585,1,152,152,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210708.log',1048585,1,169,169,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210708.log',1048585,1,171,171,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210708.log',1048585,1,186,186,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210708.log',1048585,1,191,191,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210708.log',1048585,1,193,193,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210708.log',1048585,1,203,203,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210708.log',1048585,1,204,204,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210708.log',1048585,1,205,205,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210708.log',1048585,1,206,206,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210708.log',1048585,1,207,207,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210708.log',1048585,1,208,208,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210708.log',1048585,1,209,209,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210708.log',1048585,1,210,210,'20210708','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210709.log',256,1,NULL,1,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',16,NULL,NULL,NULL,NULL),('usage_events_20210709.log',259,1,NULL,13,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210709.log',515,1,32,80,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210709.log',515,1,33,81,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210709.log',515,1,49,116,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210709.log',515,1,56,135,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210709.log',515,1,58,137,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210709.log',515,1,81,283,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210709.log',515,1,77,287,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210709.log',515,1,78,288,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210709.log',515,1,99,305,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210709.log',515,1,115,309,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210709.log',515,1,137,343,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210709.log',515,1,142,367,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210709.log',515,1,150,407,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210709.log',515,1,169,461,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210709.log',515,1,171,470,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210709.log',515,1,173,479,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210709.log',515,1,175,493,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,82),('usage_events_20210709.log',515,1,186,533,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210709.log',515,1,187,539,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210709.log',515,1,190,556,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20210709.log',515,1,205,606,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210709.log',515,1,206,615,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210709.log',515,1,207,622,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210709.log',515,1,208,630,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210709.log',515,1,209,637,'20210709','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210709.log',1048585,1,20,20,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210709.log',1048585,1,54,54,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210709.log',1048585,1,56,56,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210709.log',1048585,1,58,58,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210709.log',1048585,1,149,149,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210709.log',1048585,1,150,150,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210709.log',1048585,1,152,152,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210709.log',1048585,1,169,169,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210709.log',1048585,1,175,175,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210709.log',1048585,1,186,186,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210709.log',1048585,1,190,190,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210709.log',1048585,1,193,193,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210709.log',1048585,1,206,206,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210709.log',1048585,1,207,207,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210709.log',1048585,1,208,208,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210709.log',1048585,1,209,209,'20210709','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210710.log',256,1,NULL,1,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210710.log',515,1,33,81,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210710.log',515,1,49,116,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210710.log',515,1,51,118,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210710.log',515,1,77,287,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210710.log',515,1,78,288,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210710.log',515,1,99,305,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210710.log',515,1,139,351,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210710.log',515,1,142,367,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210710.log',515,1,146,379,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210710.log',515,1,169,461,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210710.log',515,1,171,470,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210710.log',515,1,175,493,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210710.log',515,1,178,514,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210710.log',515,1,193,569,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210710.log',515,1,204,597,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210710.log',515,1,205,606,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210710.log',515,1,206,615,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210710.log',515,1,207,622,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210710.log',515,1,208,630,'20210710','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210710.log',1048585,1,33,33,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210710.log',1048585,1,51,51,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210710.log',1048585,1,54,54,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210710.log',1048585,1,133,133,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210710.log',1048585,1,134,134,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210710.log',1048585,1,135,135,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210710.log',1048585,1,136,136,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210710.log',1048585,1,137,137,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210710.log',1048585,1,139,139,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210710.log',1048585,1,141,141,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210710.log',1048585,1,142,142,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210710.log',1048585,1,146,146,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210710.log',1048585,1,147,147,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210710.log',1048585,1,148,148,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210710.log',1048585,1,149,149,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210710.log',1048585,1,150,150,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210710.log',1048585,1,151,151,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210710.log',1048585,1,152,152,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210710.log',1048585,1,169,169,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210710.log',1048585,1,171,171,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210710.log',1048585,1,173,173,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210710.log',1048585,1,174,174,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210710.log',1048585,1,175,175,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210710.log',1048585,1,176,176,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210710.log',1048585,1,177,177,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210710.log',1048585,1,178,178,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210710.log',1048585,1,186,186,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210710.log',1048585,1,193,193,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210710.log',1048585,1,204,204,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210710.log',1048585,1,207,207,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210710.log',1048585,1,208,208,'20210710','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210711.log',256,1,NULL,1,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,1,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,2,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,3,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,4,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,5,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,6,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,7,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,8,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,9,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,10,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,11,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,12,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210711.log',259,1,NULL,13,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210711.log',515,1,1,3,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210711.log',515,1,5,30,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210711.log',515,1,34,82,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210711.log',515,1,54,133,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210711.log',515,1,77,287,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210711.log',515,1,78,288,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210711.log',515,1,87,291,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210711.log',515,1,99,305,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210711.log',515,1,115,309,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210711.log',515,1,135,330,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210711.log',515,1,136,336,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210711.log',515,1,142,367,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210711.log',515,1,147,387,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210711.log',515,1,150,407,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210711.log',515,1,171,470,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210711.log',515,1,173,479,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210711.log',515,1,175,493,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210711.log',515,1,190,556,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210711.log',515,1,204,597,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210711.log',515,1,205,606,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,96),('usage_events_20210711.log',515,1,206,615,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210711.log',515,1,207,622,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210711.log',515,1,208,630,'20210711','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210711.log',1048585,1,1,1,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210711.log',1048585,1,4,4,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210711.log',1048585,1,5,5,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210711.log',1048585,1,6,6,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210711.log',1048585,1,7,7,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210711.log',1048585,1,8,8,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210711.log',1048585,1,14,14,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210711.log',1048585,1,19,19,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210711.log',1048585,1,20,20,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210711.log',1048585,1,21,21,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210711.log',1048585,1,22,22,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210711.log',1048585,1,34,34,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210711.log',1048585,1,40,40,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210711.log',1048585,1,78,78,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210711.log',1048585,1,99,99,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210711.log',1048585,1,142,142,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210711.log',1048585,1,150,150,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210711.log',1048585,1,169,169,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210711.log',1048585,1,171,171,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210711.log',1048585,1,175,175,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210711.log',1048585,1,203,203,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210711.log',1048585,1,204,204,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210711.log',1048585,1,205,205,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210711.log',1048585,1,206,206,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210711.log',1048585,1,207,207,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210711.log',1048585,1,208,208,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210711.log',1048585,1,209,209,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210711.log',1048585,1,210,210,'20210711','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210712.log',256,1,NULL,1,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210712.log',259,1,NULL,7,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210712.log',515,1,51,118,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210712.log',515,1,56,135,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210712.log',515,1,59,138,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,5,34),('usage_events_20210712.log',515,1,85,281,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210712.log',515,1,82,284,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210712.log',515,1,77,287,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210712.log',515,1,78,288,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210712.log',515,1,84,289,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210712.log',515,1,90,294,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,55),('usage_events_20210712.log',515,1,91,295,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210712.log',515,1,114,308,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,60),('usage_events_20210712.log',515,1,134,324,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210712.log',515,1,137,343,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210712.log',515,1,148,394,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210712.log',515,1,149,401,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210712.log',515,1,151,414,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210712.log',515,1,169,461,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210712.log',515,1,171,470,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210712.log',515,1,176,500,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210712.log',515,1,178,514,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210712.log',515,1,186,533,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210712.log',515,1,189,551,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210712.log',515,1,190,556,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210712.log',515,1,191,563,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210712.log',515,1,193,569,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210712.log',515,1,203,589,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210712.log',515,1,205,606,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210712.log',515,1,206,615,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210712.log',515,1,207,622,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,98),('usage_events_20210712.log',515,1,208,630,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210712.log',515,1,210,644,'20210712','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210712.log',1048585,1,56,56,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210712.log',1048585,1,78,78,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210712.log',1048585,1,82,82,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210712.log',1048585,1,90,90,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20210712.log',1048585,1,91,91,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210712.log',1048585,1,134,134,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210712.log',1048585,1,137,137,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210712.log',1048585,1,139,139,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210712.log',1048585,1,149,149,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210712.log',1048585,1,151,151,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210712.log',1048585,1,171,171,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210712.log',1048585,1,176,176,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210712.log',1048585,1,178,178,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210712.log',1048585,1,186,186,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210712.log',1048585,1,191,191,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210712.log',1048585,1,203,203,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210712.log',1048585,1,206,206,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210712.log',1048585,1,207,207,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210712.log',1048585,1,208,208,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210712.log',1048585,1,210,210,'20210712','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210713.log',256,1,NULL,1,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210713.log',515,1,53,120,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210713.log',515,1,59,138,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20210713.log',515,1,77,287,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210713.log',515,1,78,288,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210713.log',515,1,86,290,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210713.log',515,1,89,293,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210713.log',515,1,99,305,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210713.log',515,1,133,318,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210713.log',515,1,137,343,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210713.log',515,1,142,367,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210713.log',515,1,150,407,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210713.log',515,1,152,423,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210713.log',515,1,171,470,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210713.log',515,1,173,479,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210713.log',515,1,174,486,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210713.log',515,1,175,493,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210713.log',515,1,176,500,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210713.log',515,1,178,514,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210713.log',515,1,186,533,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210713.log',515,1,187,539,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210713.log',515,1,189,551,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210713.log',515,1,190,556,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210713.log',515,1,193,569,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210713.log',515,1,204,597,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210713.log',515,1,205,606,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210713.log',515,1,206,615,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210713.log',515,1,207,622,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210713.log',515,1,208,630,'20210713','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210713.log',1048585,1,31,31,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210713.log',1048585,1,51,51,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210713.log',1048585,1,78,78,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20210713.log',1048585,1,86,86,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210713.log',1048585,1,89,89,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210713.log',1048585,1,99,99,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210713.log',1048585,1,137,137,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210713.log',1048585,1,142,142,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210713.log',1048585,1,150,150,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210713.log',1048585,1,151,151,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210713.log',1048585,1,171,171,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210713.log',1048585,1,173,173,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210713.log',1048585,1,176,176,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210713.log',1048585,1,193,193,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210713.log',1048585,1,204,204,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210713.log',1048585,1,206,206,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210713.log',1048585,1,207,207,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210713.log',1048585,1,208,208,'20210713','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210714.log',256,1,NULL,1,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,1,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,2,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,3,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,4,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,5,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,6,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,7,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,8,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,9,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,10,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,11,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,12,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210714.log',259,1,NULL,13,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210714.log',515,1,1,3,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210714.log',515,1,20,53,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210714.log',515,1,33,81,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,18),('usage_events_20210714.log',515,1,49,116,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210714.log',515,1,59,138,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210714.log',515,1,81,283,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210714.log',515,1,82,284,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,45),('usage_events_20210714.log',515,1,77,287,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210714.log',515,1,78,288,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210714.log',515,1,89,293,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210714.log',515,1,113,307,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210714.log',515,1,114,308,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210714.log',515,1,115,309,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210714.log',515,1,133,318,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210714.log',515,1,134,324,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210714.log',515,1,135,330,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,65),('usage_events_20210714.log',515,1,137,343,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210714.log',515,1,139,351,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210714.log',515,1,148,394,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210714.log',515,1,149,401,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210714.log',515,1,150,407,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210714.log',515,1,169,461,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210714.log',515,1,171,470,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210714.log',515,1,174,486,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210714.log',515,1,175,493,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210714.log',515,1,178,514,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210714.log',515,1,185,527,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210714.log',515,1,190,556,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210714.log',515,1,193,569,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210714.log',515,1,204,597,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210714.log',515,1,205,606,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210714.log',515,1,206,615,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',17,1,259,13,97),('usage_events_20210714.log',515,1,207,622,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210714.log',515,1,208,630,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210714.log',515,1,209,637,'20210714','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210714.log',1048585,1,1,1,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210714.log',1048585,1,4,4,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210714.log',1048585,1,5,5,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210714.log',1048585,1,6,6,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210714.log',1048585,1,7,7,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210714.log',1048585,1,8,8,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210714.log',1048585,1,14,14,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210714.log',1048585,1,19,19,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210714.log',1048585,1,20,20,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210714.log',1048585,1,21,21,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210714.log',1048585,1,22,22,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210714.log',1048585,1,40,40,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210714.log',1048585,1,54,54,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210714.log',1048585,1,78,78,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210714.log',1048585,1,81,81,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210714.log',1048585,1,82,82,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210714.log',1048585,1,87,87,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210714.log',1048585,1,115,115,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210714.log',1048585,1,133,133,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210714.log',1048585,1,135,135,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210714.log',1048585,1,146,146,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210714.log',1048585,1,147,147,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210714.log',1048585,1,148,148,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210714.log',1048585,1,149,149,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210714.log',1048585,1,150,150,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210714.log',1048585,1,151,151,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210714.log',1048585,1,152,152,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210714.log',1048585,1,169,169,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210714.log',1048585,1,171,171,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210714.log',1048585,1,175,175,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210714.log',1048585,1,190,190,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210714.log',1048585,1,191,191,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210714.log',1048585,1,193,193,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210714.log',1048585,1,203,203,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210714.log',1048585,1,204,204,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210714.log',1048585,1,205,205,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210714.log',1048585,1,206,206,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210714.log',1048585,1,207,207,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210714.log',1048585,1,208,208,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210714.log',1048585,1,209,209,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210714.log',1048585,1,210,210,'20210714','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210715.log',256,1,NULL,1,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210715.log',259,1,NULL,13,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210715.log',515,1,8,33,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210715.log',515,1,34,82,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,3,19),('usage_events_20210715.log',515,1,50,117,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210715.log',515,1,53,120,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210715.log',515,1,59,138,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210715.log',515,1,81,283,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210715.log',515,1,83,285,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,46),('usage_events_20210715.log',515,1,77,287,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210715.log',515,1,78,288,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210715.log',515,1,86,290,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210715.log',515,1,87,291,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210715.log',515,1,99,305,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210715.log',515,1,114,308,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210715.log',515,1,134,324,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210715.log',515,1,142,367,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210715.log',515,1,148,394,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210715.log',515,1,151,414,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210715.log',515,1,152,423,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210715.log',515,1,169,461,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210715.log',515,1,171,470,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210715.log',515,1,173,479,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210715.log',515,1,174,486,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210715.log',515,1,175,493,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210715.log',515,1,178,514,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210715.log',515,1,186,533,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210715.log',515,1,193,569,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210715.log',515,1,204,597,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210715.log',515,1,205,606,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210715.log',515,1,206,615,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210715.log',515,1,207,622,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210715.log',515,1,208,630,'20210715','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210715.log',1048585,1,20,20,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210715.log',1048585,1,34,34,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,3,NULL),('usage_events_20210715.log',1048585,1,53,53,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,4,NULL),('usage_events_20210715.log',1048585,1,56,56,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210715.log',1048585,1,58,58,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210715.log',1048585,1,83,83,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210715.log',1048585,1,86,86,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210715.log',1048585,1,133,133,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210715.log',1048585,1,135,135,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210715.log',1048585,1,137,137,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210715.log',1048585,1,148,148,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210715.log',1048585,1,150,150,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210715.log',1048585,1,151,151,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210715.log',1048585,1,152,152,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210715.log',1048585,1,169,169,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210715.log',1048585,1,171,171,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210715.log',1048585,1,173,173,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210715.log',1048585,1,174,174,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210715.log',1048585,1,175,175,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210715.log',1048585,1,176,176,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210715.log',1048585,1,177,177,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210715.log',1048585,1,178,178,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210715.log',1048585,1,191,191,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210715.log',1048585,1,193,193,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210715.log',1048585,1,205,205,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210715.log',1048585,1,206,206,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210715.log',1048585,1,207,207,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210715.log',1048585,1,208,208,'20210715','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210716.log',256,1,NULL,1,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210716.log',259,1,NULL,10,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210716.log',259,1,NULL,13,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210716.log',515,1,20,53,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210716.log',515,1,34,82,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210716.log',515,1,53,120,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210716.log',515,1,59,138,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20210716.log',515,1,82,284,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210716.log',515,1,77,287,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210716.log',515,1,78,288,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210716.log',515,1,137,343,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210716.log',515,1,169,461,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210716.log',515,1,171,470,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210716.log',515,1,175,493,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210716.log',515,1,178,514,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210716.log',515,1,185,527,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210716.log',515,1,189,551,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210716.log',515,1,190,556,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210716.log',515,1,191,563,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,92),('usage_events_20210716.log',515,1,193,569,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210716.log',515,1,205,606,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210716.log',515,1,206,615,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',16,1,259,13,97),('usage_events_20210716.log',515,1,207,622,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210716.log',515,1,208,630,'20210716','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210716.log',1048585,1,20,20,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210716.log',1048585,1,53,53,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210716.log',1048585,1,78,78,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210716.log',1048585,1,137,137,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210716.log',1048585,1,147,147,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210716.log',1048585,1,151,151,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210716.log',1048585,1,152,152,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210716.log',1048585,1,169,169,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210716.log',1048585,1,171,171,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210716.log',1048585,1,175,175,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210716.log',1048585,1,191,191,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210716.log',1048585,1,193,193,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210716.log',1048585,1,205,205,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210716.log',1048585,1,206,206,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210716.log',1048585,1,207,207,'20210716','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210717.log',256,1,NULL,1,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,1,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,2,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,3,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,4,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,5,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,6,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,7,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,8,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,9,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,10,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,11,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,12,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210717.log',259,1,NULL,13,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210717.log',515,1,1,3,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210717.log',515,1,8,33,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210717.log',515,1,57,136,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210717.log',515,1,81,283,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210717.log',515,1,76,286,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210717.log',515,1,77,287,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210717.log',515,1,78,288,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210717.log',515,1,99,305,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,8,57),('usage_events_20210717.log',515,1,139,351,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210717.log',515,1,146,379,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210717.log',515,1,148,394,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210717.log',515,1,149,401,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210717.log',515,1,152,423,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210717.log',515,1,169,461,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210717.log',515,1,171,470,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210717.log',515,1,173,479,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210717.log',515,1,178,514,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,85),('usage_events_20210717.log',515,1,189,551,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210717.log',515,1,190,556,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210717.log',515,1,191,563,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210717.log',515,1,193,569,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210717.log',515,1,205,606,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210717.log',515,1,206,615,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210717.log',515,1,208,630,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210717.log',515,1,209,637,'20210717','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210717.log',1048585,1,1,1,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210717.log',1048585,1,4,4,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210717.log',1048585,1,5,5,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210717.log',1048585,1,6,6,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210717.log',1048585,1,7,7,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20210717.log',1048585,1,8,8,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210717.log',1048585,1,14,14,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210717.log',1048585,1,19,19,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210717.log',1048585,1,20,20,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210717.log',1048585,1,21,21,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210717.log',1048585,1,22,22,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210717.log',1048585,1,40,40,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210717.log',1048585,1,53,53,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210717.log',1048585,1,57,57,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210717.log',1048585,1,58,58,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210717.log',1048585,1,78,78,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210717.log',1048585,1,81,81,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210717.log',1048585,1,91,91,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210717.log',1048585,1,99,99,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210717.log',1048585,1,137,137,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210717.log',1048585,1,139,139,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210717.log',1048585,1,146,146,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210717.log',1048585,1,149,149,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210717.log',1048585,1,150,150,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210717.log',1048585,1,152,152,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210717.log',1048585,1,169,169,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210717.log',1048585,1,171,171,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210717.log',1048585,1,173,173,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210717.log',1048585,1,191,191,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210717.log',1048585,1,193,193,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210717.log',1048585,1,203,203,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210717.log',1048585,1,204,204,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210717.log',1048585,1,205,205,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210717.log',1048585,1,206,206,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210717.log',1048585,1,207,207,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210717.log',1048585,1,208,208,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210717.log',1048585,1,209,209,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210717.log',1048585,1,210,210,'20210717','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210718.log',256,1,NULL,1,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210718.log',259,1,NULL,11,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210718.log',259,1,NULL,13,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210718.log',515,1,33,81,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210718.log',515,1,81,283,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210718.log',515,1,82,284,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210718.log',515,1,77,287,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210718.log',515,1,78,288,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210718.log',515,1,86,290,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210718.log',515,1,87,291,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210718.log',515,1,139,351,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210718.log',515,1,150,407,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210718.log',515,1,169,461,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210718.log',515,1,173,479,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210718.log',515,1,175,493,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210718.log',515,1,178,514,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210718.log',515,1,185,527,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210718.log',515,1,186,533,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210718.log',515,1,187,539,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210718.log',515,1,190,556,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20210718.log',515,1,191,563,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210718.log',515,1,193,569,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20210718.log',515,1,204,597,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210718.log',515,1,205,606,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210718.log',515,1,206,615,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210718.log',515,1,207,622,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210718.log',515,1,208,630,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,99),('usage_events_20210718.log',515,1,209,637,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210718.log',515,1,210,644,'20210718','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210718.log',1048585,1,47,47,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210718.log',1048585,1,58,58,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210718.log',1048585,1,78,78,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210718.log',1048585,1,81,81,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210718.log',1048585,1,86,86,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210718.log',1048585,1,150,150,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210718.log',1048585,1,151,151,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210718.log',1048585,1,152,152,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210718.log',1048585,1,173,173,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210718.log',1048585,1,175,175,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210718.log',1048585,1,185,185,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210718.log',1048585,1,186,186,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210718.log',1048585,1,187,187,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210718.log',1048585,1,188,188,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210718.log',1048585,1,189,189,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210718.log',1048585,1,190,190,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210718.log',1048585,1,191,191,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210718.log',1048585,1,193,193,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210718.log',1048585,1,204,204,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210718.log',1048585,1,206,206,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210718.log',1048585,1,207,207,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210718.log',1048585,1,209,209,'20210718','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210719.log',256,1,NULL,1,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210719.log',259,1,NULL,13,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210719.log',515,1,47,115,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,23),('usage_events_20210719.log',515,1,49,116,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210719.log',515,1,58,137,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210719.log',515,1,77,287,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,48),('usage_events_20210719.log',515,1,78,288,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210719.log',515,1,87,291,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210719.log',515,1,91,295,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210719.log',515,1,114,308,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210719.log',515,1,147,387,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210719.log',515,1,148,394,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210719.log',515,1,169,461,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210719.log',515,1,171,470,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210719.log',515,1,173,479,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210719.log',515,1,175,493,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210719.log',515,1,178,514,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210719.log',515,1,185,527,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210719.log',515,1,188,545,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210719.log',515,1,193,569,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210719.log',515,1,204,597,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210719.log',515,1,205,606,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210719.log',515,1,206,615,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210719.log',515,1,208,630,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,99),('usage_events_20210719.log',515,1,209,637,'20210719','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210719.log',1048585,1,47,47,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210719.log',1048585,1,58,58,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210719.log',1048585,1,78,78,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,7,NULL),('usage_events_20210719.log',1048585,1,87,87,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210719.log',1048585,1,134,134,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210719.log',1048585,1,137,137,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210719.log',1048585,1,139,139,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210719.log',1048585,1,142,142,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210719.log',1048585,1,171,171,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210719.log',1048585,1,173,173,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210719.log',1048585,1,175,175,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210719.log',1048585,1,176,176,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210719.log',1048585,1,185,185,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210719.log',1048585,1,186,186,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210719.log',1048585,1,187,187,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210719.log',1048585,1,190,190,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210719.log',1048585,1,191,191,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210719.log',1048585,1,204,204,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210719.log',1048585,1,205,205,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210719.log',1048585,1,206,206,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210719.log',1048585,1,207,207,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210719.log',1048585,1,208,208,'20210719','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210720.log',256,1,NULL,1,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,1,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,2,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,3,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,4,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,5,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,6,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,7,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,8,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,9,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,10,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,11,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,12,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210720.log',259,1,NULL,13,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210720.log',515,1,1,3,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210720.log',515,1,34,82,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20210720.log',515,1,59,138,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20210720.log',515,1,82,284,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210720.log',515,1,78,288,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210720.log',515,1,86,290,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210720.log',515,1,99,305,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,8,57),('usage_events_20210720.log',515,1,169,461,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210720.log',515,1,171,470,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210720.log',515,1,173,479,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210720.log',515,1,175,493,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210720.log',515,1,178,514,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210720.log',515,1,190,556,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210720.log',515,1,191,563,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210720.log',515,1,205,606,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210720.log',515,1,206,615,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210720.log',515,1,208,630,'20210720','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210720.log',1048585,1,1,1,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210720.log',1048585,1,4,4,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210720.log',1048585,1,5,5,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210720.log',1048585,1,6,6,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210720.log',1048585,1,7,7,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210720.log',1048585,1,8,8,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210720.log',1048585,1,14,14,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210720.log',1048585,1,19,19,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210720.log',1048585,1,20,20,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210720.log',1048585,1,21,21,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210720.log',1048585,1,22,22,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210720.log',1048585,1,34,34,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20210720.log',1048585,1,40,40,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210720.log',1048585,1,78,78,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20210720.log',1048585,1,82,82,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210720.log',1048585,1,86,86,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210720.log',1048585,1,99,99,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210720.log',1048585,1,169,169,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210720.log',1048585,1,171,171,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210720.log',1048585,1,173,173,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210720.log',1048585,1,175,175,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210720.log',1048585,1,185,185,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210720.log',1048585,1,186,186,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,12,NULL),('usage_events_20210720.log',1048585,1,203,203,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210720.log',1048585,1,204,204,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210720.log',1048585,1,205,205,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210720.log',1048585,1,206,206,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210720.log',1048585,1,207,207,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210720.log',1048585,1,208,208,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210720.log',1048585,1,209,209,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210720.log',1048585,1,210,210,'20210720','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210721.log',256,1,NULL,1,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210721.log',515,1,35,83,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,20),('usage_events_20210721.log',515,1,49,116,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210721.log',515,1,82,284,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210721.log',515,1,76,286,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210721.log',515,1,78,288,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210721.log',515,1,86,290,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210721.log',515,1,87,291,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20210721.log',515,1,89,293,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210721.log',515,1,99,305,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210721.log',515,1,134,324,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210721.log',515,1,137,343,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210721.log',515,1,139,351,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210721.log',515,1,142,367,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210721.log',515,1,148,394,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210721.log',515,1,149,401,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210721.log',515,1,150,407,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210721.log',515,1,169,461,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210721.log',515,1,171,470,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210721.log',515,1,173,479,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210721.log',515,1,174,486,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210721.log',515,1,175,493,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,82),('usage_events_20210721.log',515,1,178,514,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210721.log',515,1,185,527,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210721.log',515,1,187,539,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210721.log',515,1,190,556,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210721.log',515,1,193,569,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210721.log',515,1,205,606,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210721.log',515,1,206,615,'20210721','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210721.log',1048585,1,76,76,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210721.log',1048585,1,78,78,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210721.log',1048585,1,87,87,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210721.log',1048585,1,134,134,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210721.log',1048585,1,148,148,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210721.log',1048585,1,149,149,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210721.log',1048585,1,150,150,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210721.log',1048585,1,171,171,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210721.log',1048585,1,173,173,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210721.log',1048585,1,190,190,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210721.log',1048585,1,193,193,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210721.log',1048585,1,203,203,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210721.log',1048585,1,205,205,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210721.log',1048585,1,206,206,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210721.log',1048585,1,207,207,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210721.log',1048585,1,208,208,'20210721','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210722.log',256,1,NULL,1,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210722.log',259,1,NULL,13,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210722.log',515,1,31,79,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210722.log',515,1,47,115,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210722.log',515,1,49,116,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210722.log',515,1,53,120,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210722.log',515,1,58,137,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210722.log',515,1,81,283,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210722.log',515,1,78,288,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210722.log',515,1,89,293,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210722.log',515,1,91,295,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210722.log',515,1,99,305,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210722.log',515,1,133,318,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210722.log',515,1,134,324,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210722.log',515,1,137,343,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210722.log',515,1,146,379,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210722.log',515,1,150,407,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210722.log',515,1,152,423,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210722.log',515,1,171,470,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210722.log',515,1,173,479,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210722.log',515,1,175,493,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210722.log',515,1,186,533,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210722.log',515,1,187,539,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210722.log',515,1,189,551,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210722.log',515,1,205,606,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210722.log',515,1,206,615,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210722.log',515,1,207,622,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210722.log',515,1,208,630,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210722.log',515,1,209,637,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210722.log',515,1,210,644,'20210722','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210722.log',1048585,1,53,53,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210722.log',1048585,1,58,58,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210722.log',1048585,1,78,78,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210722.log',1048585,1,133,133,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210722.log',1048585,1,134,134,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210722.log',1048585,1,135,135,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210722.log',1048585,1,136,136,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210722.log',1048585,1,137,137,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210722.log',1048585,1,139,139,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210722.log',1048585,1,141,141,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210722.log',1048585,1,142,142,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210722.log',1048585,1,146,146,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210722.log',1048585,1,147,147,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210722.log',1048585,1,149,149,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210722.log',1048585,1,150,150,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210722.log',1048585,1,151,151,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210722.log',1048585,1,152,152,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210722.log',1048585,1,169,169,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210722.log',1048585,1,171,171,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210722.log',1048585,1,173,173,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210722.log',1048585,1,175,175,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210722.log',1048585,1,176,176,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210722.log',1048585,1,187,187,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210722.log',1048585,1,189,189,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210722.log',1048585,1,190,190,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210722.log',1048585,1,205,205,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210722.log',1048585,1,206,206,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210722.log',1048585,1,207,207,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210722.log',1048585,1,208,208,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210722.log',1048585,1,209,209,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210722.log',1048585,1,210,210,'20210722','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210723.log',256,1,NULL,1,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210723.log',259,1,NULL,1,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210723.log',259,1,NULL,2,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210723.log',259,1,NULL,7,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210723.log',259,1,NULL,11,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210723.log',259,1,NULL,13,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210723.log',515,1,19,52,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210723.log',515,1,49,116,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210723.log',515,1,51,118,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210723.log',515,1,53,120,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210723.log',515,1,58,137,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210723.log',515,1,82,284,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210723.log',515,1,78,288,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210723.log',515,1,87,291,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20210723.log',515,1,91,295,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210723.log',515,1,133,318,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,63),('usage_events_20210723.log',515,1,134,324,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210723.log',515,1,135,330,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210723.log',515,1,136,336,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210723.log',515,1,137,343,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210723.log',515,1,139,351,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210723.log',515,1,141,361,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210723.log',515,1,142,367,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210723.log',515,1,146,379,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210723.log',515,1,147,387,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210723.log',515,1,148,394,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210723.log',515,1,149,401,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210723.log',515,1,150,407,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210723.log',515,1,151,414,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210723.log',515,1,152,423,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210723.log',515,1,169,461,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20210723.log',515,1,171,470,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20210723.log',515,1,173,479,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210723.log',515,1,174,486,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210723.log',515,1,175,493,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210723.log',515,1,176,500,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210723.log',515,1,177,507,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210723.log',515,1,178,514,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210723.log',515,1,205,606,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,96),('usage_events_20210723.log',515,1,206,615,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210723.log',515,1,207,622,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210723.log',515,1,208,630,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210723.log',515,1,209,637,'20210723','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210723.log',1048585,1,4,4,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210723.log',1048585,1,6,6,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210723.log',1048585,1,19,19,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210723.log',1048585,1,53,53,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210723.log',1048585,1,58,58,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210723.log',1048585,1,78,78,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210723.log',1048585,1,91,91,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210723.log',1048585,1,135,135,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210723.log',1048585,1,136,136,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210723.log',1048585,1,148,148,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210723.log',1048585,1,150,150,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210723.log',1048585,1,169,169,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210723.log',1048585,1,171,171,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210723.log',1048585,1,173,173,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210723.log',1048585,1,174,174,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210723.log',1048585,1,175,175,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210723.log',1048585,1,176,176,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210723.log',1048585,1,177,177,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210723.log',1048585,1,178,178,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210723.log',1048585,1,191,191,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210723.log',1048585,1,205,205,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210723.log',1048585,1,206,206,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210723.log',1048585,1,207,207,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210723.log',1048585,1,209,209,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210723.log',1048585,1,210,210,'20210723','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210724.log',256,1,NULL,1,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210724.log',515,1,5,30,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210724.log',515,1,19,52,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20210724.log',515,1,47,115,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210724.log',515,1,49,116,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210724.log',515,1,51,118,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210724.log',515,1,58,137,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210724.log',515,1,85,281,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20210724.log',515,1,83,285,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210724.log',515,1,78,288,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210724.log',515,1,113,307,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210724.log',515,1,114,308,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210724.log',515,1,139,351,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20210724.log',515,1,141,361,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210724.log',515,1,151,414,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210724.log',515,1,169,461,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210724.log',515,1,171,470,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210724.log',515,1,173,479,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210724.log',515,1,175,493,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210724.log',515,1,177,507,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210724.log',515,1,187,539,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210724.log',515,1,190,556,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210724.log',515,1,203,589,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210724.log',515,1,204,597,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210724.log',515,1,205,606,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210724.log',515,1,206,615,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,97),('usage_events_20210724.log',515,1,208,630,'20210724','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210724.log',1048585,1,7,7,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210724.log',1048585,1,47,47,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210724.log',1048585,1,53,53,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210724.log',1048585,1,83,83,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210724.log',1048585,1,85,85,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210724.log',1048585,1,139,139,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210724.log',1048585,1,149,149,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210724.log',1048585,1,169,169,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210724.log',1048585,1,173,173,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210724.log',1048585,1,175,175,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210724.log',1048585,1,203,203,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210724.log',1048585,1,204,204,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210724.log',1048585,1,205,205,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210724.log',1048585,1,206,206,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210724.log',1048585,1,208,208,'20210724','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210725.log',256,1,NULL,1,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210725.log',515,1,8,33,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210725.log',515,1,59,138,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',196,1,259,5,34),('usage_events_20210725.log',515,1,85,281,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,41),('usage_events_20210725.log',515,1,78,288,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210725.log',515,1,87,291,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210725.log',515,1,90,294,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210725.log',515,1,99,305,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210725.log',515,1,133,318,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20210725.log',515,1,142,367,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210725.log',515,1,148,394,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210725.log',515,1,169,461,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210725.log',515,1,171,470,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210725.log',515,1,175,493,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210725.log',515,1,178,514,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210725.log',515,1,190,556,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210725.log',515,1,205,606,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210725.log',515,1,206,615,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210725.log',515,1,207,622,'20210725','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210725.log',1048585,1,8,8,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210725.log',1048585,1,85,85,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210725.log',1048585,1,100,100,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210725.log',1048585,1,142,142,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210725.log',1048585,1,149,149,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210725.log',1048585,1,152,152,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210725.log',1048585,1,171,171,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210725.log',1048585,1,193,193,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210725.log',1048585,1,206,206,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210725.log',1048585,1,207,207,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210725.log',1048585,1,209,209,'20210725','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210726.log',256,1,NULL,1,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,1,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,2,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,3,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,4,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,5,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,6,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,7,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,8,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,9,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,10,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,11,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,12,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210726.log',259,1,NULL,13,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210726.log',515,1,1,3,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210726.log',515,1,47,115,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210726.log',515,1,49,116,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210726.log',515,1,53,120,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210726.log',515,1,55,134,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210726.log',515,1,59,138,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210726.log',515,1,82,284,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210726.log',515,1,78,288,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210726.log',515,1,87,291,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210726.log',515,1,99,305,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210726.log',515,1,114,308,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210726.log',515,1,137,343,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210726.log',515,1,139,351,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210726.log',515,1,169,461,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210726.log',515,1,171,470,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210726.log',515,1,173,479,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210726.log',515,1,175,493,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210726.log',515,1,178,514,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210726.log',515,1,190,556,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210726.log',515,1,191,563,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210726.log',515,1,193,569,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210726.log',515,1,204,597,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210726.log',515,1,205,606,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210726.log',515,1,206,615,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210726.log',515,1,207,622,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210726.log',515,1,208,630,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210726.log',515,1,209,637,'20210726','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210726.log',1048585,1,1,1,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210726.log',1048585,1,4,4,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210726.log',1048585,1,5,5,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210726.log',1048585,1,6,6,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210726.log',1048585,1,7,7,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210726.log',1048585,1,8,8,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210726.log',1048585,1,14,14,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210726.log',1048585,1,19,19,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210726.log',1048585,1,20,20,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210726.log',1048585,1,21,21,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210726.log',1048585,1,22,22,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210726.log',1048585,1,40,40,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210726.log',1048585,1,47,47,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210726.log',1048585,1,55,55,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210726.log',1048585,1,58,58,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210726.log',1048585,1,78,78,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210726.log',1048585,1,83,83,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210726.log',1048585,1,87,87,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210726.log',1048585,1,99,99,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210726.log',1048585,1,114,114,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210726.log',1048585,1,115,115,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210726.log',1048585,1,139,139,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210726.log',1048585,1,148,148,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210726.log',1048585,1,152,152,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210726.log',1048585,1,169,169,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210726.log',1048585,1,171,171,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210726.log',1048585,1,173,173,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210726.log',1048585,1,174,174,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210726.log',1048585,1,175,175,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210726.log',1048585,1,191,191,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210726.log',1048585,1,193,193,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210726.log',1048585,1,203,203,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210726.log',1048585,1,204,204,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210726.log',1048585,1,205,205,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210726.log',1048585,1,206,206,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210726.log',1048585,1,207,207,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210726.log',1048585,1,208,208,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210726.log',1048585,1,209,209,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210726.log',1048585,1,210,210,'20210726','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210727.log',256,1,NULL,1,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210727.log',259,1,NULL,4,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210727.log',515,1,46,114,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210727.log',515,1,49,116,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210727.log',515,1,51,118,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210727.log',515,1,56,135,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210727.log',515,1,78,288,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210727.log',515,1,113,307,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210727.log',515,1,136,336,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210727.log',515,1,137,343,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210727.log',515,1,141,361,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210727.log',515,1,150,407,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210727.log',515,1,152,423,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210727.log',515,1,169,461,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210727.log',515,1,171,470,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210727.log',515,1,177,507,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210727.log',515,1,185,527,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210727.log',515,1,186,533,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210727.log',515,1,190,556,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',10,1,259,12,91),('usage_events_20210727.log',515,1,191,563,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210727.log',515,1,203,589,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210727.log',515,1,204,597,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210727.log',515,1,205,606,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,96),('usage_events_20210727.log',515,1,206,615,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210727.log',515,1,207,622,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210727.log',515,1,209,637,'20210727','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210727.log',1048585,1,51,51,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210727.log',1048585,1,53,53,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210727.log',1048585,1,56,56,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210727.log',1048585,1,58,58,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210727.log',1048585,1,78,78,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210727.log',1048585,1,139,139,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210727.log',1048585,1,146,146,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210727.log',1048585,1,169,169,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210727.log',1048585,1,171,171,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210727.log',1048585,1,190,190,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210727.log',1048585,1,204,204,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210727.log',1048585,1,207,207,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210727.log',1048585,1,209,209,'20210727','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210728.log',256,1,NULL,1,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210728.log',259,1,NULL,12,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210728.log',515,1,59,138,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210728.log',515,1,81,283,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210728.log',515,1,78,288,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210728.log',515,1,113,307,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210728.log',515,1,137,343,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210728.log',515,1,139,351,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210728.log',515,1,142,367,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20210728.log',515,1,147,387,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210728.log',515,1,148,394,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210728.log',515,1,169,461,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210728.log',515,1,171,470,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210728.log',515,1,173,479,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210728.log',515,1,185,527,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210728.log',515,1,186,533,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210728.log',515,1,190,556,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20210728.log',515,1,193,569,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,93),('usage_events_20210728.log',515,1,205,606,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210728.log',515,1,206,615,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210728.log',515,1,207,622,'20210728','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210728.log',1048585,1,81,81,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210728.log',1048585,1,135,135,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210728.log',1048585,1,142,142,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210728.log',1048585,1,148,148,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210728.log',1048585,1,169,169,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210728.log',1048585,1,173,173,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210728.log',1048585,1,190,190,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210728.log',1048585,1,191,191,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210728.log',1048585,1,193,193,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,12,NULL),('usage_events_20210728.log',1048585,1,206,206,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210728.log',1048585,1,207,207,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210728.log',1048585,1,208,208,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210728.log',1048585,1,210,210,'20210728','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210729.log',256,1,NULL,1,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210729.log',259,1,NULL,1,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210729.log',259,1,NULL,2,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210729.log',259,1,NULL,7,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210729.log',259,1,NULL,9,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210729.log',259,1,NULL,11,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210729.log',259,1,NULL,13,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210729.log',515,1,49,116,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210729.log',515,1,50,117,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210729.log',515,1,52,119,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210729.log',515,1,58,137,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210729.log',515,1,81,283,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,44),('usage_events_20210729.log',515,1,82,284,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210729.log',515,1,78,288,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210729.log',515,1,89,293,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210729.log',515,1,99,305,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,57),('usage_events_20210729.log',515,1,115,309,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210729.log',515,1,125,310,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210729.log',515,1,133,318,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210729.log',515,1,135,330,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,65),('usage_events_20210729.log',515,1,148,394,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210729.log',515,1,150,407,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210729.log',515,1,151,414,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210729.log',515,1,169,461,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210729.log',515,1,171,470,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210729.log',515,1,173,479,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210729.log',515,1,175,493,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210729.log',515,1,176,500,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,83),('usage_events_20210729.log',515,1,178,514,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210729.log',515,1,185,527,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210729.log',515,1,190,556,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210729.log',515,1,191,563,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210729.log',515,1,193,569,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210729.log',515,1,203,589,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210729.log',515,1,204,597,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210729.log',515,1,205,606,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,96),('usage_events_20210729.log',515,1,206,615,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210729.log',515,1,207,622,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210729.log',515,1,208,630,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210729.log',515,1,209,637,'20210729','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210729.log',1048585,1,4,4,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210729.log',1048585,1,6,6,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210729.log',1048585,1,19,19,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210729.log',1048585,1,20,20,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210729.log',1048585,1,40,40,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210729.log',1048585,1,49,49,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210729.log',1048585,1,50,50,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210729.log',1048585,1,51,51,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210729.log',1048585,1,58,58,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210729.log',1048585,1,78,78,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210729.log',1048585,1,81,81,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210729.log',1048585,1,135,135,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210729.log',1048585,1,137,137,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210729.log',1048585,1,139,139,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210729.log',1048585,1,150,150,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210729.log',1048585,1,151,151,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210729.log',1048585,1,169,169,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210729.log',1048585,1,171,171,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210729.log',1048585,1,173,173,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210729.log',1048585,1,174,174,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210729.log',1048585,1,175,175,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210729.log',1048585,1,176,176,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210729.log',1048585,1,185,185,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210729.log',1048585,1,190,190,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210729.log',1048585,1,204,204,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210729.log',1048585,1,205,205,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210729.log',1048585,1,206,206,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210729.log',1048585,1,207,207,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210729.log',1048585,1,209,209,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210729.log',1048585,1,210,210,'20210729','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210730.log',256,1,NULL,1,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,1,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,2,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,3,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,4,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,5,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,6,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,7,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,8,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,9,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,10,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,11,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,12,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',259,1,NULL,13,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210730.log',515,1,1,3,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210730.log',515,1,4,19,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210730.log',515,1,5,30,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210730.log',515,1,6,31,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210730.log',515,1,7,32,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210730.log',515,1,8,33,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210730.log',515,1,14,51,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210730.log',515,1,19,52,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210730.log',515,1,20,53,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210730.log',515,1,21,54,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20210730.log',515,1,22,57,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20210730.log',515,1,28,68,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20210730.log',515,1,31,79,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210730.log',515,1,32,80,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20210730.log',515,1,33,81,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210730.log',515,1,34,82,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210730.log',515,1,35,83,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210730.log',515,1,40,94,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210730.log',515,1,46,114,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210730.log',515,1,47,115,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210730.log',515,1,49,116,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210730.log',515,1,50,117,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210730.log',515,1,51,118,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210730.log',515,1,52,119,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210730.log',515,1,53,120,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210730.log',515,1,54,133,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210730.log',515,1,55,134,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210730.log',515,1,56,135,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210730.log',515,1,57,136,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210730.log',515,1,58,137,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210730.log',515,1,59,138,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210730.log',515,1,85,281,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210730.log',515,1,79,282,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210730.log',515,1,81,283,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210730.log',515,1,82,284,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210730.log',515,1,83,285,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210730.log',515,1,76,286,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210730.log',515,1,77,287,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210730.log',515,1,78,288,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210730.log',515,1,84,289,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210730.log',515,1,86,290,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210730.log',515,1,87,291,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210730.log',515,1,88,292,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210730.log',515,1,89,293,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20210730.log',515,1,90,294,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210730.log',515,1,91,295,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210730.log',515,1,99,305,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210730.log',515,1,100,306,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210730.log',515,1,113,307,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',28,1,259,8,59),('usage_events_20210730.log',515,1,114,308,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,60),('usage_events_20210730.log',515,1,115,309,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210730.log',515,1,125,310,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20210730.log',515,1,133,318,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210730.log',515,1,134,324,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210730.log',515,1,135,330,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210730.log',515,1,136,336,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20210730.log',515,1,137,343,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210730.log',515,1,139,351,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210730.log',515,1,141,361,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210730.log',515,1,142,367,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210730.log',515,1,146,379,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210730.log',515,1,147,387,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,72),('usage_events_20210730.log',515,1,148,394,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210730.log',515,1,149,401,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210730.log',515,1,150,407,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',14,1,259,10,75),('usage_events_20210730.log',515,1,151,414,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20210730.log',515,1,152,423,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210730.log',515,1,169,461,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210730.log',515,1,171,470,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210730.log',515,1,173,479,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210730.log',515,1,174,486,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210730.log',515,1,175,493,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210730.log',515,1,176,500,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210730.log',515,1,177,507,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210730.log',515,1,178,514,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210730.log',515,1,185,527,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210730.log',515,1,186,533,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20210730.log',515,1,187,539,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210730.log',515,1,188,545,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210730.log',515,1,189,551,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210730.log',515,1,190,556,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210730.log',515,1,191,563,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210730.log',515,1,193,569,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210730.log',515,1,203,589,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210730.log',515,1,204,597,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210730.log',515,1,205,606,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210730.log',515,1,206,615,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210730.log',515,1,207,622,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210730.log',515,1,208,630,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,99),('usage_events_20210730.log',515,1,209,637,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210730.log',515,1,210,644,'20210730','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210730.log',1048585,1,58,58,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210730.log',1048585,1,78,78,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210730.log',1048585,1,83,83,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210730.log',1048585,1,84,84,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210730.log',1048585,1,87,87,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210730.log',1048585,1,91,91,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,7,NULL),('usage_events_20210730.log',1048585,1,114,114,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210730.log',1048585,1,146,146,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210730.log',1048585,1,147,147,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210730.log',1048585,1,148,148,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210730.log',1048585,1,150,150,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210730.log',1048585,1,151,151,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210730.log',1048585,1,171,171,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210730.log',1048585,1,173,173,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210730.log',1048585,1,186,186,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210730.log',1048585,1,187,187,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210730.log',1048585,1,193,193,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210730.log',1048585,1,206,206,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210730.log',1048585,1,207,207,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210730.log',1048585,1,210,210,'20210730','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210731.log',256,1,NULL,1,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210731.log',259,1,NULL,6,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210731.log',515,1,6,31,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210731.log',515,1,19,52,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210731.log',515,1,54,133,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210731.log',515,1,58,137,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210731.log',515,1,81,283,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210731.log',515,1,83,285,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210731.log',515,1,77,287,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210731.log',515,1,91,295,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210731.log',515,1,99,305,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',7,1,259,8,57),('usage_events_20210731.log',515,1,133,318,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210731.log',515,1,142,367,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210731.log',515,1,147,387,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210731.log',515,1,150,407,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210731.log',515,1,169,461,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210731.log',515,1,173,479,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210731.log',515,1,175,493,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210731.log',515,1,177,507,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210731.log',515,1,186,533,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210731.log',515,1,193,569,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210731.log',515,1,204,597,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210731.log',515,1,205,606,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210731.log',515,1,206,615,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210731.log',515,1,207,622,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210731.log',515,1,208,630,'20210731','202107',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,99),('usage_events_20210731.log',1048585,1,19,19,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210731.log',1048585,1,81,81,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210731.log',1048585,1,83,83,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210731.log',1048585,1,87,87,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210731.log',1048585,1,133,133,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210731.log',1048585,1,150,150,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210731.log',1048585,1,171,171,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210731.log',1048585,1,173,173,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210731.log',1048585,1,175,175,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210731.log',1048585,1,177,177,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210731.log',1048585,1,185,185,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210731.log',1048585,1,186,186,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210731.log',1048585,1,187,187,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210731.log',1048585,1,188,188,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210731.log',1048585,1,189,189,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210731.log',1048585,1,190,190,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210731.log',1048585,1,191,191,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210731.log',1048585,1,193,193,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210731.log',1048585,1,203,203,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210731.log',1048585,1,204,204,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210731.log',1048585,1,205,205,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210731.log',1048585,1,207,207,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210731.log',1048585,1,208,208,'20210731','202107',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210801.log',256,1,NULL,1,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,1,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,2,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,3,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,4,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,5,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,6,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,7,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,8,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,9,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,10,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,11,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,12,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210801.log',259,1,NULL,13,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210801.log',515,1,1,3,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210801.log',515,1,31,79,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210801.log',515,1,33,81,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210801.log',515,1,58,137,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210801.log',515,1,83,285,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210801.log',515,1,77,287,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210801.log',515,1,78,288,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210801.log',515,1,114,308,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210801.log',515,1,136,336,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210801.log',515,1,137,343,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210801.log',515,1,139,351,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,68),('usage_events_20210801.log',515,1,142,367,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210801.log',515,1,147,387,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210801.log',515,1,149,401,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210801.log',515,1,151,414,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210801.log',515,1,152,423,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210801.log',515,1,169,461,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210801.log',515,1,171,470,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210801.log',515,1,173,479,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210801.log',515,1,175,493,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210801.log',515,1,176,500,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210801.log',515,1,178,514,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210801.log',515,1,190,556,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210801.log',515,1,203,589,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210801.log',515,1,205,606,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210801.log',515,1,206,615,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210801.log',515,1,207,622,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210801.log',515,1,208,630,'20210801','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210801.log',1048585,1,1,1,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210801.log',1048585,1,4,4,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210801.log',1048585,1,5,5,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210801.log',1048585,1,6,6,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210801.log',1048585,1,7,7,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210801.log',1048585,1,8,8,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210801.log',1048585,1,14,14,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210801.log',1048585,1,19,19,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210801.log',1048585,1,20,20,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210801.log',1048585,1,21,21,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210801.log',1048585,1,22,22,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210801.log',1048585,1,40,40,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210801.log',1048585,1,58,58,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210801.log',1048585,1,77,77,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210801.log',1048585,1,78,78,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210801.log',1048585,1,83,83,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210801.log',1048585,1,89,89,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210801.log',1048585,1,133,133,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210801.log',1048585,1,151,151,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210801.log',1048585,1,169,169,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210801.log',1048585,1,171,171,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210801.log',1048585,1,173,173,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210801.log',1048585,1,176,176,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210801.log',1048585,1,190,190,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210801.log',1048585,1,203,203,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210801.log',1048585,1,204,204,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210801.log',1048585,1,205,205,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210801.log',1048585,1,206,206,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210801.log',1048585,1,207,207,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210801.log',1048585,1,208,208,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210801.log',1048585,1,209,209,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210801.log',1048585,1,210,210,'20210801','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210802.log',256,1,NULL,1,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210802.log',259,1,NULL,13,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210802.log',259,1,NULL,14,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210802.log',515,1,49,116,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210802.log',515,1,58,137,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210802.log',515,1,82,284,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210802.log',515,1,78,288,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210802.log',515,1,87,291,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210802.log',515,1,91,295,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210802.log',515,1,99,305,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210802.log',515,1,114,308,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,60),('usage_events_20210802.log',515,1,137,343,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210802.log',515,1,139,351,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210802.log',515,1,149,401,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210802.log',515,1,151,414,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210802.log',515,1,169,461,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210802.log',515,1,171,470,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210802.log',515,1,175,493,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210802.log',515,1,177,507,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210802.log',515,1,178,514,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210802.log',515,1,185,527,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210802.log',515,1,186,533,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210802.log',515,1,190,556,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210802.log',515,1,193,569,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210802.log',515,1,203,589,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210802.log',515,1,205,606,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210802.log',515,1,206,615,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210802.log',515,1,207,622,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210802.log',515,1,208,630,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210802.log',515,1,210,644,'20210802','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210802.log',1048585,1,51,51,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210802.log',1048585,1,58,58,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210802.log',1048585,1,78,78,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20210802.log',1048585,1,82,82,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210802.log',1048585,1,87,87,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210802.log',1048585,1,99,99,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210802.log',1048585,1,137,137,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210802.log',1048585,1,149,149,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210802.log',1048585,1,150,150,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210802.log',1048585,1,151,151,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210802.log',1048585,1,171,171,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210802.log',1048585,1,185,185,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210802.log',1048585,1,186,186,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210802.log',1048585,1,190,190,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210802.log',1048585,1,193,193,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210802.log',1048585,1,203,203,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210802.log',1048585,1,205,205,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210802.log',1048585,1,206,206,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210802.log',1048585,1,207,207,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210802.log',1048585,1,209,209,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210802.log',1048585,1,210,210,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210802.log',1048585,1,213,213,'20210802','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,NULL,NULL,NULL),('usage_events_20210803.log',256,1,NULL,1,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210803.log',515,1,20,53,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210803.log',515,1,33,81,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210803.log',515,1,56,135,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210803.log',515,1,79,282,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210803.log',515,1,78,288,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210803.log',515,1,91,295,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210803.log',515,1,99,305,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210803.log',515,1,137,343,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210803.log',515,1,142,367,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210803.log',515,1,147,387,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210803.log',515,1,150,407,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210803.log',515,1,151,414,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210803.log',515,1,169,461,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210803.log',515,1,171,470,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210803.log',515,1,176,500,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210803.log',515,1,177,507,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210803.log',515,1,178,514,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210803.log',515,1,187,539,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210803.log',515,1,190,556,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210803.log',515,1,191,563,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210803.log',515,1,193,569,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210803.log',515,1,205,606,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,96),('usage_events_20210803.log',515,1,206,615,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210803.log',515,1,207,622,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210803.log',515,1,208,630,'20210803','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210803.log',1048585,1,20,20,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210803.log',1048585,1,33,33,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210803.log',1048585,1,54,54,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210803.log',1048585,1,78,78,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210803.log',1048585,1,85,85,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210803.log',1048585,1,91,91,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210803.log',1048585,1,99,99,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210803.log',1048585,1,148,148,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210803.log',1048585,1,150,150,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210803.log',1048585,1,151,151,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210803.log',1048585,1,169,169,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210803.log',1048585,1,178,178,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210803.log',1048585,1,187,187,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210803.log',1048585,1,206,206,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210803.log',1048585,1,207,207,'20210803','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210804.log',256,1,NULL,1,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210804.log',515,1,47,115,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210804.log',515,1,50,117,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,25),('usage_events_20210804.log',515,1,58,137,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210804.log',515,1,83,285,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210804.log',515,1,78,288,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210804.log',515,1,84,289,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210804.log',515,1,89,293,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210804.log',515,1,91,295,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210804.log',515,1,114,308,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210804.log',515,1,137,343,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210804.log',515,1,142,367,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210804.log',515,1,147,387,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210804.log',515,1,148,394,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210804.log',515,1,149,401,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210804.log',515,1,150,407,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210804.log',515,1,169,461,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210804.log',515,1,171,470,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210804.log',515,1,175,493,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210804.log',515,1,186,533,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210804.log',515,1,189,551,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210804.log',515,1,190,556,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210804.log',515,1,191,563,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210804.log',515,1,204,597,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210804.log',515,1,205,606,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210804.log',515,1,206,615,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210804.log',515,1,207,622,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210804.log',515,1,208,630,'20210804','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210804.log',1048585,1,6,6,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210804.log',1048585,1,47,47,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210804.log',1048585,1,50,50,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210804.log',1048585,1,53,53,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210804.log',1048585,1,78,78,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210804.log',1048585,1,83,83,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210804.log',1048585,1,89,89,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210804.log',1048585,1,147,147,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210804.log',1048585,1,149,149,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210804.log',1048585,1,152,152,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210804.log',1048585,1,169,169,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',24,1,259,11,NULL),('usage_events_20210804.log',1048585,1,173,173,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210804.log',1048585,1,175,175,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210804.log',1048585,1,186,186,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210804.log',1048585,1,204,204,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210804.log',1048585,1,206,206,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210804.log',1048585,1,207,207,'20210804','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210805.log',256,1,NULL,1,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,1,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,2,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,3,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,4,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,5,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,6,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,7,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,8,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,9,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,10,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,11,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,12,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,13,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210805.log',259,1,NULL,14,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210805.log',515,1,1,3,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210805.log',515,1,31,79,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210805.log',515,1,46,114,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210805.log',515,1,58,137,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210805.log',515,1,59,138,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210805.log',515,1,82,284,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210805.log',515,1,78,288,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210805.log',515,1,99,305,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,8,57),('usage_events_20210805.log',515,1,115,309,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210805.log',515,1,133,318,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210805.log',515,1,134,324,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210805.log',515,1,141,361,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210805.log',515,1,142,367,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210805.log',515,1,147,387,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20210805.log',515,1,148,394,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210805.log',515,1,150,407,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210805.log',515,1,169,461,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210805.log',515,1,171,470,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210805.log',515,1,173,479,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210805.log',515,1,174,486,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210805.log',515,1,175,493,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210805.log',515,1,186,533,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,87),('usage_events_20210805.log',515,1,187,539,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210805.log',515,1,190,556,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210805.log',515,1,191,563,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210805.log',515,1,204,597,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210805.log',515,1,205,606,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210805.log',515,1,206,615,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210805.log',515,1,207,622,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210805.log',515,1,208,630,'20210805','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210805.log',1048585,1,1,1,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210805.log',1048585,1,4,4,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210805.log',1048585,1,5,5,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210805.log',1048585,1,6,6,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210805.log',1048585,1,7,7,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210805.log',1048585,1,8,8,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210805.log',1048585,1,14,14,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210805.log',1048585,1,19,19,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210805.log',1048585,1,20,20,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210805.log',1048585,1,21,21,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210805.log',1048585,1,22,22,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210805.log',1048585,1,40,40,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210805.log',1048585,1,53,53,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210805.log',1048585,1,58,58,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210805.log',1048585,1,133,133,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210805.log',1048585,1,137,137,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210805.log',1048585,1,142,142,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210805.log',1048585,1,147,147,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210805.log',1048585,1,148,148,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210805.log',1048585,1,169,169,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210805.log',1048585,1,171,171,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210805.log',1048585,1,173,173,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210805.log',1048585,1,174,174,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210805.log',1048585,1,175,175,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210805.log',1048585,1,176,176,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210805.log',1048585,1,177,177,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210805.log',1048585,1,178,178,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210805.log',1048585,1,186,186,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210805.log',1048585,1,190,190,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210805.log',1048585,1,191,191,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210805.log',1048585,1,204,204,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210805.log',1048585,1,207,207,'20210805','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210806.log',256,1,NULL,1,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210806.log',259,1,NULL,10,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210806.log',515,1,34,82,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20210806.log',515,1,49,116,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210806.log',515,1,58,137,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210806.log',515,1,82,284,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210806.log',515,1,78,288,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210806.log',515,1,90,294,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210806.log',515,1,99,305,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210806.log',515,1,114,308,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210806.log',515,1,150,407,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210806.log',515,1,169,461,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210806.log',515,1,175,493,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210806.log',515,1,186,533,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210806.log',515,1,189,551,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210806.log',515,1,193,569,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210806.log',515,1,205,606,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210806.log',515,1,206,615,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210806.log',515,1,207,622,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210806.log',515,1,208,630,'20210806','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,99),('usage_events_20210806.log',1048585,1,34,34,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210806.log',1048585,1,58,58,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210806.log',1048585,1,78,78,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210806.log',1048585,1,82,82,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210806.log',1048585,1,90,90,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210806.log',1048585,1,134,134,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210806.log',1048585,1,150,150,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210806.log',1048585,1,152,152,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210806.log',1048585,1,169,169,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210806.log',1048585,1,186,186,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210806.log',1048585,1,205,205,'20210806','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210807.log',256,1,NULL,1,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,1,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,2,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,3,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,4,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,5,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,6,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,7,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,8,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,9,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,10,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,11,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,12,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,13,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210807.log',259,1,NULL,14,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210807.log',515,1,1,3,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210807.log',515,1,53,120,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210807.log',515,1,76,286,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210807.log',515,1,78,288,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210807.log',515,1,87,291,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210807.log',515,1,115,309,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,61),('usage_events_20210807.log',515,1,125,310,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210807.log',515,1,139,351,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210807.log',515,1,147,387,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210807.log',515,1,150,407,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210807.log',515,1,151,414,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210807.log',515,1,169,461,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210807.log',515,1,171,470,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210807.log',515,1,173,479,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210807.log',515,1,175,493,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210807.log',515,1,176,500,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20210807.log',515,1,186,533,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210807.log',515,1,187,539,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210807.log',515,1,190,556,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210807.log',515,1,191,563,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210807.log',515,1,193,569,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210807.log',515,1,205,606,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210807.log',515,1,206,615,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210807.log',515,1,207,622,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210807.log',515,1,208,630,'20210807','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210807.log',1048585,1,1,1,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210807.log',1048585,1,4,4,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210807.log',1048585,1,5,5,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210807.log',1048585,1,6,6,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210807.log',1048585,1,7,7,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210807.log',1048585,1,8,8,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210807.log',1048585,1,14,14,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210807.log',1048585,1,19,19,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210807.log',1048585,1,20,20,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210807.log',1048585,1,21,21,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210807.log',1048585,1,22,22,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210807.log',1048585,1,40,40,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210807.log',1048585,1,53,53,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210807.log',1048585,1,78,78,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210807.log',1048585,1,87,87,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210807.log',1048585,1,91,91,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210807.log',1048585,1,139,139,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210807.log',1048585,1,147,147,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210807.log',1048585,1,151,151,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210807.log',1048585,1,169,169,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210807.log',1048585,1,171,171,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210807.log',1048585,1,173,173,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210807.log',1048585,1,174,174,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210807.log',1048585,1,175,175,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210807.log',1048585,1,176,176,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210807.log',1048585,1,177,177,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210807.log',1048585,1,178,178,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210807.log',1048585,1,190,190,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210807.log',1048585,1,191,191,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210807.log',1048585,1,206,206,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210807.log',1048585,1,207,207,'20210807','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210808.log',256,1,NULL,1,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210808.log',259,1,NULL,13,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210808.log',515,1,53,120,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210808.log',515,1,58,137,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20210808.log',515,1,78,288,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210808.log',515,1,87,291,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210808.log',515,1,114,308,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210808.log',515,1,136,336,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210808.log',515,1,137,343,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210808.log',515,1,147,387,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210808.log',515,1,148,394,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210808.log',515,1,171,470,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210808.log',515,1,173,479,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210808.log',515,1,174,486,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210808.log',515,1,175,493,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210808.log',515,1,187,539,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210808.log',515,1,191,563,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210808.log',515,1,193,569,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210808.log',515,1,203,589,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210808.log',515,1,206,615,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210808.log',515,1,208,630,'20210808','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210808.log',1048585,1,58,58,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210808.log',1048585,1,76,76,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210808.log',1048585,1,78,78,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210808.log',1048585,1,87,87,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210808.log',1048585,1,91,91,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210808.log',1048585,1,134,134,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210808.log',1048585,1,147,147,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210808.log',1048585,1,149,149,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210808.log',1048585,1,151,151,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210808.log',1048585,1,171,171,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210808.log',1048585,1,173,173,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210808.log',1048585,1,186,186,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210808.log',1048585,1,193,193,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210808.log',1048585,1,206,206,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210808.log',1048585,1,207,207,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210808.log',1048585,1,209,209,'20210808','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210809.log',256,1,NULL,1,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210809.log',515,1,54,133,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210809.log',515,1,58,137,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210809.log',515,1,78,288,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210809.log',515,1,87,291,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210809.log',515,1,89,293,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210809.log',515,1,91,295,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210809.log',515,1,137,343,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210809.log',515,1,142,367,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210809.log',515,1,146,379,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210809.log',515,1,147,387,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210809.log',515,1,151,414,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210809.log',515,1,169,461,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210809.log',515,1,171,470,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210809.log',515,1,173,479,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210809.log',515,1,174,486,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210809.log',515,1,175,493,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210809.log',515,1,177,507,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210809.log',515,1,178,514,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,85),('usage_events_20210809.log',515,1,186,533,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210809.log',515,1,187,539,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210809.log',515,1,193,569,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210809.log',515,1,204,597,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210809.log',515,1,205,606,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210809.log',515,1,206,615,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210809.log',515,1,207,622,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210809.log',515,1,208,630,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210809.log',515,1,210,644,'20210809','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210809.log',1048585,1,34,34,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210809.log',1048585,1,78,78,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210809.log',1048585,1,81,81,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210809.log',1048585,1,87,87,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210809.log',1048585,1,91,91,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210809.log',1048585,1,151,151,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210809.log',1048585,1,171,171,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210809.log',1048585,1,177,177,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210809.log',1048585,1,178,178,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210809.log',1048585,1,193,193,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210809.log',1048585,1,204,204,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210809.log',1048585,1,207,207,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210809.log',1048585,1,208,208,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210809.log',1048585,1,209,209,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210809.log',1048585,1,210,210,'20210809','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210810.log',256,1,NULL,1,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210810.log',259,1,NULL,14,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210810.log',515,1,53,120,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210810.log',515,1,54,133,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210810.log',515,1,58,137,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,5,33),('usage_events_20210810.log',515,1,82,284,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210810.log',515,1,83,285,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210810.log',515,1,78,288,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210810.log',515,1,86,290,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210810.log',515,1,137,343,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210810.log',515,1,139,351,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210810.log',515,1,148,394,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210810.log',515,1,149,401,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210810.log',515,1,150,407,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210810.log',515,1,169,461,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210810.log',515,1,174,486,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210810.log',515,1,187,539,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210810.log',515,1,190,556,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210810.log',515,1,193,569,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210810.log',515,1,205,606,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210810.log',515,1,206,615,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210810.log',515,1,207,622,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210810.log',515,1,208,630,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,99),('usage_events_20210810.log',515,1,209,637,'20210810','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210810.log',1048585,1,77,77,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210810.log',1048585,1,78,78,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210810.log',1048585,1,82,82,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210810.log',1048585,1,137,137,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210810.log',1048585,1,139,139,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210810.log',1048585,1,148,148,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210810.log',1048585,1,150,150,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210810.log',1048585,1,152,152,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210810.log',1048585,1,185,185,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210810.log',1048585,1,187,187,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210810.log',1048585,1,193,193,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210810.log',1048585,1,206,206,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210810.log',1048585,1,207,207,'20210810','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210811.log',256,1,NULL,1,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,1,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,2,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,3,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,4,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,5,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,6,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,7,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,8,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,9,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,10,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,11,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,12,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,13,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210811.log',259,1,NULL,14,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210811.log',515,1,14,51,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210811.log',515,1,31,79,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210811.log',515,1,51,118,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210811.log',515,1,54,133,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210811.log',515,1,58,137,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20210811.log',515,1,76,286,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210811.log',515,1,86,290,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,51),('usage_events_20210811.log',515,1,89,293,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210811.log',515,1,99,305,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210811.log',515,1,114,308,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210811.log',515,1,139,351,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210811.log',515,1,147,387,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210811.log',515,1,148,394,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210811.log',515,1,151,414,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210811.log',515,1,169,461,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210811.log',515,1,171,470,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210811.log',515,1,173,479,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210811.log',515,1,174,486,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210811.log',515,1,175,493,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210811.log',515,1,185,527,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210811.log',515,1,186,533,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210811.log',515,1,189,551,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210811.log',515,1,190,556,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210811.log',515,1,193,569,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,93),('usage_events_20210811.log',515,1,205,606,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210811.log',515,1,206,615,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210811.log',515,1,207,622,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210811.log',515,1,208,630,'20210811','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210811.log',1048585,1,4,4,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210811.log',1048585,1,6,6,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210811.log',1048585,1,19,19,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210811.log',1048585,1,28,28,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210811.log',1048585,1,58,58,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210811.log',1048585,1,59,59,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210811.log',1048585,1,76,76,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210811.log',1048585,1,78,78,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210811.log',1048585,1,86,86,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210811.log',1048585,1,87,87,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210811.log',1048585,1,89,89,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210811.log',1048585,1,171,171,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210811.log',1048585,1,173,173,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210811.log',1048585,1,174,174,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210811.log',1048585,1,175,175,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210811.log',1048585,1,190,190,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210811.log',1048585,1,193,193,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210811.log',1048585,1,205,205,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210811.log',1048585,1,206,206,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210811.log',1048585,1,207,207,'20210811','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210812.log',256,1,NULL,1,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210812.log',259,1,NULL,12,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210812.log',259,1,NULL,14,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210812.log',515,1,49,116,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210812.log',515,1,53,120,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210812.log',515,1,58,137,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210812.log',515,1,59,138,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210812.log',515,1,85,281,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210812.log',515,1,82,284,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210812.log',515,1,83,285,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210812.log',515,1,78,288,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210812.log',515,1,89,293,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210812.log',515,1,99,305,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210812.log',515,1,133,318,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210812.log',515,1,137,343,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210812.log',515,1,150,407,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210812.log',515,1,173,479,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210812.log',515,1,174,486,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210812.log',515,1,175,493,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20210812.log',515,1,178,514,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210812.log',515,1,186,533,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210812.log',515,1,189,551,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210812.log',515,1,193,569,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210812.log',515,1,205,606,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210812.log',515,1,206,615,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',17,1,259,13,97),('usage_events_20210812.log',515,1,207,622,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210812.log',515,1,208,630,'20210812','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,99),('usage_events_20210812.log',1048585,1,1,1,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210812.log',1048585,1,4,4,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210812.log',1048585,1,5,5,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210812.log',1048585,1,6,6,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210812.log',1048585,1,7,7,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210812.log',1048585,1,8,8,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210812.log',1048585,1,35,35,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210812.log',1048585,1,40,40,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210812.log',1048585,1,53,53,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210812.log',1048585,1,83,83,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210812.log',1048585,1,146,146,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210812.log',1048585,1,147,147,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210812.log',1048585,1,148,148,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210812.log',1048585,1,149,149,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210812.log',1048585,1,150,150,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210812.log',1048585,1,151,151,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210812.log',1048585,1,152,152,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210812.log',1048585,1,169,169,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210812.log',1048585,1,171,171,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210812.log',1048585,1,173,173,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210812.log',1048585,1,174,174,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210812.log',1048585,1,175,175,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210812.log',1048585,1,176,176,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210812.log',1048585,1,177,177,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210812.log',1048585,1,178,178,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210812.log',1048585,1,185,185,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210812.log',1048585,1,186,186,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210812.log',1048585,1,187,187,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210812.log',1048585,1,188,188,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210812.log',1048585,1,189,189,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210812.log',1048585,1,190,190,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210812.log',1048585,1,191,191,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210812.log',1048585,1,193,193,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210812.log',1048585,1,203,203,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210812.log',1048585,1,204,204,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210812.log',1048585,1,205,205,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210812.log',1048585,1,206,206,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,13,NULL),('usage_events_20210812.log',1048585,1,207,207,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210812.log',1048585,1,208,208,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210812.log',1048585,1,209,209,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210812.log',1048585,1,210,210,'20210812','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210813.log',256,1,NULL,1,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210813.log',515,1,32,80,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210813.log',515,1,49,116,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210813.log',515,1,56,135,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210813.log',515,1,59,138,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210813.log',515,1,81,283,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210813.log',515,1,82,284,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210813.log',515,1,86,290,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210813.log',515,1,87,291,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210813.log',515,1,91,295,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210813.log',515,1,99,305,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210813.log',515,1,125,310,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210813.log',515,1,142,367,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,70),('usage_events_20210813.log',515,1,146,379,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210813.log',515,1,169,461,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210813.log',515,1,171,470,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210813.log',515,1,173,479,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210813.log',515,1,178,514,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210813.log',515,1,186,533,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210813.log',515,1,187,539,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210813.log',515,1,189,551,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210813.log',515,1,190,556,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210813.log',515,1,193,569,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210813.log',515,1,204,597,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210813.log',515,1,205,606,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210813.log',515,1,206,615,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210813.log',515,1,207,622,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210813.log',515,1,208,630,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210813.log',515,1,210,644,'20210813','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210813.log',1048585,1,1,1,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210813.log',1048585,1,4,4,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210813.log',1048585,1,5,5,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210813.log',1048585,1,6,6,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210813.log',1048585,1,7,7,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210813.log',1048585,1,8,8,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210813.log',1048585,1,32,32,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210813.log',1048585,1,40,40,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210813.log',1048585,1,49,49,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210813.log',1048585,1,58,58,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210813.log',1048585,1,78,78,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210813.log',1048585,1,81,81,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210813.log',1048585,1,86,86,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210813.log',1048585,1,87,87,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210813.log',1048585,1,135,135,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210813.log',1048585,1,142,142,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,9,NULL),('usage_events_20210813.log',1048585,1,146,146,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210813.log',1048585,1,147,147,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210813.log',1048585,1,148,148,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210813.log',1048585,1,149,149,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210813.log',1048585,1,150,150,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210813.log',1048585,1,151,151,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210813.log',1048585,1,152,152,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210813.log',1048585,1,169,169,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210813.log',1048585,1,171,171,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210813.log',1048585,1,173,173,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210813.log',1048585,1,175,175,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210813.log',1048585,1,204,204,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210813.log',1048585,1,205,205,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210813.log',1048585,1,206,206,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210813.log',1048585,1,207,207,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210813.log',1048585,1,208,208,'20210813','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210814.log',256,1,NULL,1,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,1,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,2,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,3,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,4,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,5,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,6,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,7,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,8,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,9,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,10,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,11,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,12,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,13,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210814.log',259,1,NULL,14,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210814.log',515,1,1,3,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210814.log',515,1,7,32,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210814.log',515,1,19,52,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210814.log',515,1,20,53,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210814.log',515,1,49,116,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210814.log',515,1,58,137,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210814.log',515,1,59,138,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210814.log',515,1,85,281,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210814.log',515,1,82,284,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210814.log',515,1,77,287,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210814.log',515,1,78,288,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210814.log',515,1,87,291,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210814.log',515,1,91,295,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210814.log',515,1,99,305,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210814.log',515,1,139,351,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210814.log',515,1,148,394,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210814.log',515,1,169,461,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210814.log',515,1,171,470,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210814.log',515,1,173,479,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210814.log',515,1,177,507,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210814.log',515,1,187,539,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210814.log',515,1,189,551,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210814.log',515,1,206,615,'20210814','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210814.log',1048585,1,1,1,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210814.log',1048585,1,4,4,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210814.log',1048585,1,5,5,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210814.log',1048585,1,6,6,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210814.log',1048585,1,7,7,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210814.log',1048585,1,8,8,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210814.log',1048585,1,14,14,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210814.log',1048585,1,19,19,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210814.log',1048585,1,20,20,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210814.log',1048585,1,21,21,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210814.log',1048585,1,22,22,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210814.log',1048585,1,40,40,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210814.log',1048585,1,53,53,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210814.log',1048585,1,78,78,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210814.log',1048585,1,137,137,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210814.log',1048585,1,139,139,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210814.log',1048585,1,148,148,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210814.log',1048585,1,149,149,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210814.log',1048585,1,169,169,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210814.log',1048585,1,171,171,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210814.log',1048585,1,173,173,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210814.log',1048585,1,174,174,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210814.log',1048585,1,175,175,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210814.log',1048585,1,176,176,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210814.log',1048585,1,177,177,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210814.log',1048585,1,178,178,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210814.log',1048585,1,185,185,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210814.log',1048585,1,186,186,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210814.log',1048585,1,187,187,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210814.log',1048585,1,188,188,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210814.log',1048585,1,189,189,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210814.log',1048585,1,190,190,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210814.log',1048585,1,191,191,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210814.log',1048585,1,193,193,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210814.log',1048585,1,203,203,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210814.log',1048585,1,204,204,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210814.log',1048585,1,205,205,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210814.log',1048585,1,206,206,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210814.log',1048585,1,207,207,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210814.log',1048585,1,208,208,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210814.log',1048585,1,209,209,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210814.log',1048585,1,210,210,'20210814','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210815.log',256,1,NULL,1,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210815.log',515,1,31,79,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210815.log',515,1,47,115,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210815.log',515,1,49,116,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210815.log',515,1,52,119,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210815.log',515,1,53,120,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210815.log',515,1,56,135,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210815.log',515,1,58,137,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210815.log',515,1,78,288,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210815.log',515,1,139,351,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20210815.log',515,1,141,361,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210815.log',515,1,148,394,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210815.log',515,1,149,401,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210815.log',515,1,150,407,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210815.log',515,1,173,479,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210815.log',515,1,177,507,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210815.log',515,1,178,514,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210815.log',515,1,186,533,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210815.log',515,1,187,539,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210815.log',515,1,190,556,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210815.log',515,1,204,597,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,95),('usage_events_20210815.log',515,1,205,606,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210815.log',515,1,206,615,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210815.log',515,1,207,622,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210815.log',515,1,208,630,'20210815','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210815.log',1048585,1,31,31,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210815.log',1048585,1,53,53,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210815.log',1048585,1,56,56,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210815.log',1048585,1,58,58,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210815.log',1048585,1,59,59,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210815.log',1048585,1,78,78,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210815.log',1048585,1,99,99,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210815.log',1048585,1,100,100,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210815.log',1048585,1,113,113,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210815.log',1048585,1,114,114,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210815.log',1048585,1,115,115,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210815.log',1048585,1,125,125,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210815.log',1048585,1,139,139,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,9,NULL),('usage_events_20210815.log',1048585,1,148,148,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,10,NULL),('usage_events_20210815.log',1048585,1,150,150,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210815.log',1048585,1,173,173,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210815.log',1048585,1,176,176,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210815.log',1048585,1,177,177,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210815.log',1048585,1,185,185,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210815.log',1048585,1,187,187,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210815.log',1048585,1,190,190,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210815.log',1048585,1,193,193,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210815.log',1048585,1,206,206,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210815.log',1048585,1,207,207,'20210815','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210816.log',256,1,NULL,1,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',25,NULL,NULL,NULL,NULL),('usage_events_20210816.log',259,1,NULL,12,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210816.log',259,1,NULL,13,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210816.log',259,1,NULL,14,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',24,NULL,NULL,NULL,NULL),('usage_events_20210816.log',515,1,8,33,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210816.log',515,1,21,54,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20210816.log',515,1,49,116,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210816.log',515,1,82,284,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210816.log',515,1,78,288,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,49),('usage_events_20210816.log',515,1,89,293,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210816.log',515,1,99,305,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210816.log',515,1,113,307,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210816.log',515,1,148,394,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210816.log',515,1,150,407,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210816.log',515,1,152,423,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210816.log',515,1,169,461,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210816.log',515,1,171,470,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210816.log',515,1,173,479,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210816.log',515,1,175,493,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210816.log',515,1,177,507,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210816.log',515,1,178,514,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210816.log',515,1,187,539,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210816.log',515,1,189,551,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210816.log',515,1,190,556,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210816.log',515,1,193,569,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210816.log',515,1,204,597,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210816.log',515,1,205,606,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210816.log',515,1,206,615,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',12,1,259,13,97),('usage_events_20210816.log',515,1,207,622,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210816.log',515,1,208,630,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210816.log',515,1,214,686,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,102),('usage_events_20210816.log',515,1,215,687,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210816.log',515,1,216,688,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210816.log',515,1,219,690,'20210816','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210816.log',1048585,1,8,8,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210816.log',1048585,1,78,78,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210816.log',1048585,1,89,89,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210816.log',1048585,1,113,113,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210816.log',1048585,1,133,133,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,134,134,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,135,135,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,136,136,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,137,137,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,139,139,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,141,141,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,142,142,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210816.log',1048585,1,148,148,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210816.log',1048585,1,150,150,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210816.log',1048585,1,152,152,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210816.log',1048585,1,171,171,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210816.log',1048585,1,173,173,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210816.log',1048585,1,177,177,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210816.log',1048585,1,178,178,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210816.log',1048585,1,187,187,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210816.log',1048585,1,190,190,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210816.log',1048585,1,193,193,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210816.log',1048585,1,203,203,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210816.log',1048585,1,204,204,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210816.log',1048585,1,206,206,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210816.log',1048585,1,207,207,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210816.log',1048585,1,208,208,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210816.log',1048585,1,214,214,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20210816.log',1048585,1,215,215,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210816.log',1048585,1,219,219,'20210816','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210817.log',256,1,NULL,1,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,1,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,2,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,4,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,7,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,11,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,12,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,13,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210817.log',259,1,NULL,14,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210817.log',515,1,20,53,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210817.log',515,1,21,54,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20210817.log',515,1,31,79,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,3,16),('usage_events_20210817.log',515,1,53,120,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210817.log',515,1,56,135,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210817.log',515,1,78,288,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210817.log',515,1,87,291,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210817.log',515,1,91,295,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210817.log',515,1,99,305,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210817.log',515,1,142,367,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,70),('usage_events_20210817.log',515,1,147,387,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210817.log',515,1,148,394,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210817.log',515,1,171,470,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210817.log',515,1,173,479,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210817.log',515,1,178,514,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210817.log',515,1,187,539,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210817.log',515,1,193,569,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210817.log',515,1,204,597,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,95),('usage_events_20210817.log',515,1,205,606,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210817.log',515,1,206,615,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210817.log',515,1,208,630,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210817.log',515,1,218,689,'20210817','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,105),('usage_events_20210817.log',1048585,1,4,4,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210817.log',1048585,1,6,6,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210817.log',1048585,1,14,14,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210817.log',1048585,1,19,19,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210817.log',1048585,1,20,20,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210817.log',1048585,1,21,21,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210817.log',1048585,1,22,22,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210817.log',1048585,1,31,31,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,3,NULL),('usage_events_20210817.log',1048585,1,59,59,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210817.log',1048585,1,78,78,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210817.log',1048585,1,87,87,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210817.log',1048585,1,137,137,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210817.log',1048585,1,142,142,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,9,NULL),('usage_events_20210817.log',1048585,1,171,171,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210817.log',1048585,1,173,173,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210817.log',1048585,1,193,193,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210817.log',1048585,1,209,209,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210817.log',1048585,1,216,216,'20210817','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210818.log',256,1,NULL,1,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20210818.log',259,1,NULL,12,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210818.log',259,1,NULL,14,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210818.log',515,1,8,33,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210818.log',515,1,14,51,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210818.log',515,1,56,135,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210818.log',515,1,77,287,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210818.log',515,1,78,288,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210818.log',515,1,84,289,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210818.log',515,1,87,291,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210818.log',515,1,89,293,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210818.log',515,1,114,308,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210818.log',515,1,137,343,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210818.log',515,1,142,367,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210818.log',515,1,147,387,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210818.log',515,1,148,394,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20210818.log',515,1,149,401,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210818.log',515,1,150,407,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210818.log',515,1,169,461,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210818.log',515,1,171,470,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20210818.log',515,1,173,479,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210818.log',515,1,175,493,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210818.log',515,1,178,514,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210818.log',515,1,187,539,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210818.log',515,1,190,556,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210818.log',515,1,193,569,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210818.log',515,1,203,589,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210818.log',515,1,205,606,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210818.log',515,1,206,615,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210818.log',515,1,207,622,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210818.log',515,1,208,630,'20210818','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210818.log',1048585,1,32,32,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210818.log',1048585,1,34,34,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210818.log',1048585,1,46,46,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210818.log',1048585,1,78,78,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210818.log',1048585,1,87,87,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210818.log',1048585,1,89,89,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210818.log',1048585,1,99,99,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210818.log',1048585,1,137,137,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210818.log',1048585,1,142,142,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210818.log',1048585,1,147,147,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210818.log',1048585,1,148,148,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210818.log',1048585,1,149,149,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210818.log',1048585,1,152,152,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210818.log',1048585,1,171,171,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210818.log',1048585,1,173,173,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210818.log',1048585,1,175,175,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210818.log',1048585,1,176,176,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210818.log',1048585,1,187,187,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210818.log',1048585,1,190,190,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210818.log',1048585,1,193,193,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210818.log',1048585,1,203,203,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210818.log',1048585,1,206,206,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210818.log',1048585,1,207,207,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210818.log',1048585,1,209,209,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210818.log',1048585,1,215,215,'20210818','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210819.log',256,1,NULL,1,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210819.log',259,1,NULL,8,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210819.log',259,1,NULL,14,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210819.log',515,1,33,81,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,3,18),('usage_events_20210819.log',515,1,50,117,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210819.log',515,1,53,120,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210819.log',515,1,54,133,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210819.log',515,1,58,137,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210819.log',515,1,85,281,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210819.log',515,1,82,284,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210819.log',515,1,78,288,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210819.log',515,1,99,305,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210819.log',515,1,114,308,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210819.log',515,1,142,367,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210819.log',515,1,146,379,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210819.log',515,1,151,414,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,76),('usage_events_20210819.log',515,1,169,461,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210819.log',515,1,171,470,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210819.log',515,1,174,486,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210819.log',515,1,175,493,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210819.log',515,1,178,514,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210819.log',515,1,190,556,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210819.log',515,1,193,569,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210819.log',515,1,203,589,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210819.log',515,1,204,597,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210819.log',515,1,205,606,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210819.log',515,1,206,615,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210819.log',515,1,207,622,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210819.log',515,1,208,630,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210819.log',515,1,209,637,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210819.log',515,1,210,644,'20210819','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210819.log',1048585,1,46,46,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210819.log',1048585,1,47,47,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210819.log',1048585,1,49,49,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210819.log',1048585,1,50,50,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210819.log',1048585,1,51,51,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210819.log',1048585,1,52,52,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210819.log',1048585,1,53,53,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210819.log',1048585,1,78,78,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210819.log',1048585,1,89,89,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210819.log',1048585,1,114,114,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210819.log',1048585,1,115,115,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210819.log',1048585,1,146,146,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210819.log',1048585,1,151,151,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210819.log',1048585,1,152,152,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210819.log',1048585,1,169,169,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210819.log',1048585,1,171,171,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210819.log',1048585,1,175,175,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210819.log',1048585,1,176,176,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210819.log',1048585,1,186,186,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210819.log',1048585,1,190,190,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210819.log',1048585,1,204,204,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210819.log',1048585,1,206,206,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210819.log',1048585,1,207,207,'20210819','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210820.log',256,1,NULL,1,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,1,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,2,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,3,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,4,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,5,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,6,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,7,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,8,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,9,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,10,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,11,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,12,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,13,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210820.log',259,1,NULL,14,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210820.log',515,1,1,3,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210820.log',515,1,20,53,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210820.log',515,1,58,137,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210820.log',515,1,78,288,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210820.log',515,1,87,291,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210820.log',515,1,99,305,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210820.log',515,1,137,343,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210820.log',515,1,139,351,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210820.log',515,1,142,367,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210820.log',515,1,148,394,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210820.log',515,1,169,461,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210820.log',515,1,171,470,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210820.log',515,1,173,479,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210820.log',515,1,175,493,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210820.log',515,1,185,527,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210820.log',515,1,186,533,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210820.log',515,1,193,569,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210820.log',515,1,204,597,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210820.log',515,1,205,606,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210820.log',515,1,206,615,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210820.log',515,1,207,622,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210820.log',515,1,209,637,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210820.log',515,1,214,686,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210820.log',515,1,215,687,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210820.log',515,1,218,689,'20210820','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,105),('usage_events_20210820.log',1048585,1,1,1,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210820.log',1048585,1,4,4,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210820.log',1048585,1,5,5,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210820.log',1048585,1,6,6,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210820.log',1048585,1,7,7,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210820.log',1048585,1,8,8,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210820.log',1048585,1,14,14,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210820.log',1048585,1,19,19,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210820.log',1048585,1,20,20,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210820.log',1048585,1,21,21,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210820.log',1048585,1,22,22,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210820.log',1048585,1,28,28,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210820.log',1048585,1,31,31,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210820.log',1048585,1,33,33,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210820.log',1048585,1,35,35,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210820.log',1048585,1,40,40,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210820.log',1048585,1,47,47,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210820.log',1048585,1,78,78,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210820.log',1048585,1,137,137,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210820.log',1048585,1,139,139,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210820.log',1048585,1,142,142,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210820.log',1048585,1,148,148,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210820.log',1048585,1,149,149,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210820.log',1048585,1,169,169,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,11,NULL),('usage_events_20210820.log',1048585,1,171,171,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210820.log',1048585,1,173,173,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210820.log',1048585,1,176,176,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210820.log',1048585,1,185,185,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210820.log',1048585,1,186,186,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210820.log',1048585,1,189,189,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',38,1,259,12,NULL),('usage_events_20210820.log',1048585,1,191,191,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210820.log',1048585,1,193,193,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210820.log',1048585,1,203,203,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210820.log',1048585,1,204,204,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210820.log',1048585,1,205,205,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210820.log',1048585,1,206,206,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210820.log',1048585,1,207,207,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210820.log',1048585,1,209,209,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210820.log',1048585,1,214,214,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210820.log',1048585,1,215,215,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210820.log',1048585,1,216,216,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210820.log',1048585,1,218,218,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210820.log',1048585,1,219,219,'20210820','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210821.log',256,1,NULL,1,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210821.log',259,1,NULL,9,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210821.log',259,1,NULL,13,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210821.log',259,1,NULL,14,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210821.log',515,1,5,30,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210821.log',515,1,56,135,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210821.log',515,1,78,288,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210821.log',515,1,86,290,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210821.log',515,1,90,294,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20210821.log',515,1,99,305,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210821.log',515,1,113,307,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210821.log',515,1,114,308,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210821.log',515,1,133,318,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210821.log',515,1,135,330,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210821.log',515,1,139,351,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210821.log',515,1,148,394,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210821.log',515,1,149,401,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210821.log',515,1,150,407,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210821.log',515,1,169,461,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210821.log',515,1,171,470,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210821.log',515,1,174,486,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210821.log',515,1,178,514,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210821.log',515,1,185,527,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210821.log',515,1,186,533,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210821.log',515,1,187,539,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210821.log',515,1,188,545,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210821.log',515,1,189,551,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210821.log',515,1,190,556,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210821.log',515,1,191,563,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210821.log',515,1,193,569,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210821.log',515,1,205,606,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210821.log',515,1,206,615,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210821.log',515,1,214,686,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210821.log',515,1,218,689,'20210821','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,105),('usage_events_20210821.log',1048585,1,46,46,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210821.log',1048585,1,50,50,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210821.log',1048585,1,51,51,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210821.log',1048585,1,54,54,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210821.log',1048585,1,55,55,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210821.log',1048585,1,56,56,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210821.log',1048585,1,57,57,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210821.log',1048585,1,58,58,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210821.log',1048585,1,74,74,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210821.log',1048585,1,78,78,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210821.log',1048585,1,139,139,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210821.log',1048585,1,147,147,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210821.log',1048585,1,148,148,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210821.log',1048585,1,150,150,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210821.log',1048585,1,169,169,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210821.log',1048585,1,188,188,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210821.log',1048585,1,206,206,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210821.log',1048585,1,207,207,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210821.log',1048585,1,208,208,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210821.log',1048585,1,209,209,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210821.log',1048585,1,210,210,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210821.log',1048585,1,214,214,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210821.log',1048585,1,218,218,'20210821','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210822.log',256,1,NULL,1,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,1,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,2,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,3,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,4,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,5,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,6,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,7,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,8,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,9,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,10,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,11,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,12,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,13,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210822.log',259,1,NULL,14,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210822.log',515,1,1,3,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210822.log',515,1,54,133,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210822.log',515,1,81,283,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210822.log',515,1,82,284,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,45),('usage_events_20210822.log',515,1,88,292,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,53),('usage_events_20210822.log',515,1,89,293,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,54),('usage_events_20210822.log',515,1,91,295,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210822.log',515,1,134,324,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210822.log',515,1,135,330,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210822.log',515,1,137,343,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210822.log',515,1,148,394,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210822.log',515,1,149,401,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210822.log',515,1,169,461,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',14,1,259,11,78),('usage_events_20210822.log',515,1,171,470,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20210822.log',515,1,174,486,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210822.log',515,1,175,493,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210822.log',515,1,178,514,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210822.log',515,1,190,556,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210822.log',515,1,206,615,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210822.log',515,1,207,622,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210822.log',515,1,208,630,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210822.log',515,1,218,689,'20210822','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210822.log',1048585,1,1,1,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210822.log',1048585,1,4,4,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210822.log',1048585,1,5,5,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210822.log',1048585,1,6,6,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210822.log',1048585,1,7,7,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210822.log',1048585,1,8,8,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210822.log',1048585,1,14,14,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210822.log',1048585,1,19,19,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210822.log',1048585,1,20,20,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210822.log',1048585,1,21,21,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210822.log',1048585,1,22,22,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210822.log',1048585,1,40,40,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210822.log',1048585,1,53,53,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210822.log',1048585,1,76,76,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210822.log',1048585,1,77,77,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210822.log',1048585,1,79,79,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210822.log',1048585,1,81,81,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210822.log',1048585,1,82,82,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210822.log',1048585,1,83,83,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210822.log',1048585,1,84,84,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210822.log',1048585,1,89,89,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210822.log',1048585,1,146,146,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210822.log',1048585,1,169,169,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210822.log',1048585,1,171,171,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210822.log',1048585,1,173,173,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210822.log',1048585,1,177,177,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210822.log',1048585,1,188,188,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210822.log',1048585,1,190,190,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210822.log',1048585,1,206,206,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210822.log',1048585,1,207,207,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210822.log',1048585,1,208,208,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210822.log',1048585,1,214,214,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210822.log',1048585,1,215,215,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210822.log',1048585,1,216,216,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210822.log',1048585,1,218,218,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,14,NULL),('usage_events_20210822.log',1048585,1,219,219,'20210822','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210823.log',256,1,NULL,1,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210823.log',515,1,32,80,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210823.log',515,1,33,81,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,3,18),('usage_events_20210823.log',515,1,58,137,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210823.log',515,1,81,283,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,44),('usage_events_20210823.log',515,1,78,288,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210823.log',515,1,84,289,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210823.log',515,1,89,293,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210823.log',515,1,113,307,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210823.log',515,1,114,308,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20210823.log',515,1,137,343,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210823.log',515,1,139,351,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210823.log',515,1,142,367,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210823.log',515,1,147,387,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210823.log',515,1,150,407,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210823.log',515,1,169,461,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210823.log',515,1,171,470,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210823.log',515,1,173,479,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210823.log',515,1,174,486,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210823.log',515,1,175,493,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210823.log',515,1,178,514,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210823.log',515,1,186,533,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210823.log',515,1,187,539,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210823.log',515,1,191,563,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210823.log',515,1,206,615,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210823.log',515,1,207,622,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210823.log',515,1,208,630,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210823.log',515,1,218,689,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,105),('usage_events_20210823.log',515,1,219,690,'20210823','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210823.log',1048585,1,7,7,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210823.log',1048585,1,32,32,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,3,NULL),('usage_events_20210823.log',1048585,1,34,34,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210823.log',1048585,1,58,58,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210823.log',1048585,1,77,77,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210823.log',1048585,1,78,78,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210823.log',1048585,1,81,81,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210823.log',1048585,1,114,114,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210823.log',1048585,1,137,137,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210823.log',1048585,1,147,147,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210823.log',1048585,1,151,151,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210823.log',1048585,1,171,171,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210823.log',1048585,1,190,190,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210823.log',1048585,1,191,191,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210823.log',1048585,1,193,193,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210823.log',1048585,1,206,206,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210823.log',1048585,1,207,207,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210823.log',1048585,1,208,208,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210823.log',1048585,1,209,209,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210823.log',1048585,1,214,214,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210823.log',1048585,1,218,218,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210823.log',1048585,1,219,219,'20210823','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210824.log',256,1,NULL,1,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210824.log',259,1,NULL,13,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210824.log',515,1,5,30,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210824.log',515,1,33,81,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210824.log',515,1,53,120,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210824.log',515,1,58,137,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210824.log',515,1,79,282,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20210824.log',515,1,81,283,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210824.log',515,1,82,284,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210824.log',515,1,78,288,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210824.log',515,1,148,394,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210824.log',515,1,149,401,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210824.log',515,1,169,461,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,78),('usage_events_20210824.log',515,1,171,470,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210824.log',515,1,173,479,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210824.log',515,1,176,500,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210824.log',515,1,185,527,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210824.log',515,1,186,533,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210824.log',515,1,190,556,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210824.log',515,1,193,569,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210824.log',515,1,205,606,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,96),('usage_events_20210824.log',515,1,206,615,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210824.log',515,1,207,622,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210824.log',515,1,208,630,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210824.log',515,1,214,686,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210824.log',515,1,218,689,'20210824','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210824.log',1048585,1,5,5,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210824.log',1048585,1,46,46,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210824.log',1048585,1,47,47,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210824.log',1048585,1,49,49,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210824.log',1048585,1,51,51,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210824.log',1048585,1,52,52,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210824.log',1048585,1,53,53,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210824.log',1048585,1,58,58,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210824.log',1048585,1,59,59,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210824.log',1048585,1,78,78,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210824.log',1048585,1,81,81,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210824.log',1048585,1,85,85,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210824.log',1048585,1,86,86,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210824.log',1048585,1,87,87,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210824.log',1048585,1,88,88,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210824.log',1048585,1,89,89,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210824.log',1048585,1,90,90,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210824.log',1048585,1,91,91,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210824.log',1048585,1,136,136,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210824.log',1048585,1,137,137,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210824.log',1048585,1,149,149,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210824.log',1048585,1,169,169,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210824.log',1048585,1,171,171,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210824.log',1048585,1,173,173,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210824.log',1048585,1,176,176,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210824.log',1048585,1,190,190,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210824.log',1048585,1,193,193,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210824.log',1048585,1,204,204,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210824.log',1048585,1,205,205,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210824.log',1048585,1,206,206,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210824.log',1048585,1,207,207,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210824.log',1048585,1,218,218,'20210824','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210825.log',256,1,NULL,1,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20210825.log',259,1,NULL,13,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210825.log',515,1,6,31,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210825.log',515,1,49,116,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210825.log',515,1,76,286,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210825.log',515,1,78,288,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210825.log',515,1,87,291,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210825.log',515,1,91,295,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210825.log',515,1,114,308,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20210825.log',515,1,142,367,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210825.log',515,1,149,401,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210825.log',515,1,150,407,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210825.log',515,1,169,461,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',16,1,259,11,78),('usage_events_20210825.log',515,1,171,470,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210825.log',515,1,174,486,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210825.log',515,1,176,500,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210825.log',515,1,177,507,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210825.log',515,1,178,514,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210825.log',515,1,185,527,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210825.log',515,1,186,533,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210825.log',515,1,187,539,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210825.log',515,1,189,551,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210825.log',515,1,191,563,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210825.log',515,1,193,569,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210825.log',515,1,205,606,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210825.log',515,1,206,615,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',14,1,259,13,97),('usage_events_20210825.log',515,1,207,622,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20210825.log',515,1,208,630,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210825.log',515,1,209,637,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210825.log',515,1,214,686,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210825.log',515,1,218,689,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,14,105),('usage_events_20210825.log',515,1,219,690,'20210825','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210825.log',1048585,1,6,6,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210825.log',1048585,1,59,59,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210825.log',1048585,1,78,78,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210825.log',1048585,1,85,85,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210825.log',1048585,1,86,86,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210825.log',1048585,1,87,87,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210825.log',1048585,1,88,88,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210825.log',1048585,1,89,89,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210825.log',1048585,1,90,90,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210825.log',1048585,1,91,91,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210825.log',1048585,1,114,114,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210825.log',1048585,1,142,142,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210825.log',1048585,1,149,149,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210825.log',1048585,1,169,169,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210825.log',1048585,1,171,171,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210825.log',1048585,1,175,175,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210825.log',1048585,1,176,176,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210825.log',1048585,1,177,177,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210825.log',1048585,1,187,187,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210825.log',1048585,1,190,190,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210825.log',1048585,1,193,193,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210825.log',1048585,1,206,206,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210825.log',1048585,1,207,207,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210825.log',1048585,1,209,209,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210825.log',1048585,1,214,214,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210825.log',1048585,1,215,215,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210825.log',1048585,1,216,216,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210825.log',1048585,1,218,218,'20210825','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210826.log',256,1,NULL,1,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,1,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,2,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,3,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,4,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,5,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,6,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,7,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,8,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,9,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,10,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,11,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,12,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,13,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210826.log',259,1,NULL,14,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210826.log',515,1,1,3,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210826.log',515,1,7,32,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210826.log',515,1,28,68,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20210826.log',515,1,40,94,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,21),('usage_events_20210826.log',515,1,59,138,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210826.log',515,1,82,284,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,45),('usage_events_20210826.log',515,1,78,288,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210826.log',515,1,87,291,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210826.log',515,1,100,306,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210826.log',515,1,137,343,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210826.log',515,1,147,387,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210826.log',515,1,148,394,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210826.log',515,1,151,414,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210826.log',515,1,173,479,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210826.log',515,1,174,486,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210826.log',515,1,175,493,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210826.log',515,1,178,514,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210826.log',515,1,187,539,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210826.log',515,1,190,556,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210826.log',515,1,204,597,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210826.log',515,1,205,606,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20210826.log',515,1,206,615,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210826.log',515,1,207,622,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210826.log',515,1,208,630,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210826.log',515,1,215,687,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210826.log',515,1,218,689,'20210826','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210826.log',1048585,1,1,1,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210826.log',1048585,1,4,4,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210826.log',1048585,1,5,5,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210826.log',1048585,1,6,6,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210826.log',1048585,1,7,7,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210826.log',1048585,1,8,8,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210826.log',1048585,1,14,14,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210826.log',1048585,1,19,19,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210826.log',1048585,1,20,20,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210826.log',1048585,1,21,21,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210826.log',1048585,1,22,22,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210826.log',1048585,1,40,40,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210826.log',1048585,1,53,53,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210826.log',1048585,1,78,78,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210826.log',1048585,1,82,82,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210826.log',1048585,1,86,86,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210826.log',1048585,1,99,99,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210826.log',1048585,1,100,100,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210826.log',1048585,1,113,113,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210826.log',1048585,1,114,114,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210826.log',1048585,1,115,115,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210826.log',1048585,1,125,125,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210826.log',1048585,1,133,133,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210826.log',1048585,1,134,134,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210826.log',1048585,1,135,135,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210826.log',1048585,1,136,136,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210826.log',1048585,1,137,137,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210826.log',1048585,1,139,139,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210826.log',1048585,1,141,141,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210826.log',1048585,1,142,142,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210826.log',1048585,1,151,151,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210826.log',1048585,1,169,169,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210826.log',1048585,1,171,171,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210826.log',1048585,1,173,173,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210826.log',1048585,1,177,177,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210826.log',1048585,1,190,190,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210826.log',1048585,1,193,193,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210826.log',1048585,1,204,204,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210826.log',1048585,1,205,205,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210826.log',1048585,1,206,206,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210826.log',1048585,1,207,207,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20210826.log',1048585,1,209,209,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210826.log',1048585,1,214,214,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210826.log',1048585,1,215,215,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210826.log',1048585,1,216,216,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210826.log',1048585,1,218,218,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20210826.log',1048585,1,219,219,'20210826','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210827.log',256,1,NULL,1,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',27,NULL,NULL,NULL,NULL),('usage_events_20210827.log',259,1,NULL,13,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210827.log',259,1,NULL,14,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20210827.log',515,1,7,32,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210827.log',515,1,8,33,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210827.log',515,1,53,120,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210827.log',515,1,54,133,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210827.log',515,1,56,135,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20210827.log',515,1,59,138,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210827.log',515,1,78,288,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210827.log',515,1,146,379,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210827.log',515,1,147,387,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210827.log',515,1,148,394,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210827.log',515,1,150,407,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210827.log',515,1,169,461,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210827.log',515,1,171,470,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210827.log',515,1,173,479,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210827.log',515,1,174,486,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,81),('usage_events_20210827.log',515,1,175,493,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210827.log',515,1,177,507,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210827.log',515,1,178,514,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210827.log',515,1,186,533,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210827.log',515,1,189,551,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210827.log',515,1,191,563,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210827.log',515,1,193,569,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210827.log',515,1,204,597,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210827.log',515,1,205,606,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210827.log',515,1,206,615,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210827.log',515,1,207,622,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,98),('usage_events_20210827.log',515,1,209,637,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210827.log',515,1,216,688,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210827.log',515,1,218,689,'20210827','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,14,105),('usage_events_20210827.log',1048585,1,7,7,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210827.log',1048585,1,28,28,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210827.log',1048585,1,31,31,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210827.log',1048585,1,32,32,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210827.log',1048585,1,33,33,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210827.log',1048585,1,34,34,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210827.log',1048585,1,35,35,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210827.log',1048585,1,78,78,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210827.log',1048585,1,134,134,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210827.log',1048585,1,141,141,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210827.log',1048585,1,142,142,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210827.log',1048585,1,147,147,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210827.log',1048585,1,148,148,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210827.log',1048585,1,150,150,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210827.log',1048585,1,152,152,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210827.log',1048585,1,171,171,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210827.log',1048585,1,173,173,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210827.log',1048585,1,175,175,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210827.log',1048585,1,177,177,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210827.log',1048585,1,186,186,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210827.log',1048585,1,193,193,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210827.log',1048585,1,206,206,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210827.log',1048585,1,207,207,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210827.log',1048585,1,209,209,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210827.log',1048585,1,216,216,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210827.log',1048585,1,218,218,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210827.log',1048585,1,219,219,'20210827','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20210828.log',256,1,NULL,1,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210828.log',259,1,NULL,14,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210828.log',515,1,7,32,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20210828.log',515,1,34,82,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,19),('usage_events_20210828.log',515,1,47,115,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210828.log',515,1,86,290,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210828.log',515,1,89,293,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210828.log',515,1,137,343,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210828.log',515,1,139,351,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210828.log',515,1,147,387,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210828.log',515,1,149,401,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210828.log',515,1,171,470,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210828.log',515,1,174,486,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210828.log',515,1,175,493,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210828.log',515,1,176,500,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210828.log',515,1,177,507,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210828.log',515,1,178,514,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210828.log',515,1,186,533,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210828.log',515,1,190,556,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',8,1,259,12,91),('usage_events_20210828.log',515,1,204,597,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210828.log',515,1,205,606,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210828.log',515,1,206,615,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210828.log',515,1,207,622,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210828.log',515,1,208,630,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210828.log',515,1,215,687,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210828.log',515,1,216,688,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210828.log',515,1,218,689,'20210828','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,14,105),('usage_events_20210828.log',1048585,1,34,34,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210828.log',1048585,1,46,46,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210828.log',1048585,1,47,47,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210828.log',1048585,1,49,49,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210828.log',1048585,1,50,50,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210828.log',1048585,1,51,51,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210828.log',1048585,1,52,52,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210828.log',1048585,1,53,53,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210828.log',1048585,1,86,86,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210828.log',1048585,1,133,133,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210828.log',1048585,1,137,137,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210828.log',1048585,1,147,147,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210828.log',1048585,1,149,149,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210828.log',1048585,1,171,171,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210828.log',1048585,1,178,178,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210828.log',1048585,1,190,190,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210828.log',1048585,1,206,206,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210828.log',1048585,1,207,207,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210828.log',1048585,1,208,208,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210828.log',1048585,1,210,210,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210828.log',1048585,1,216,216,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210828.log',1048585,1,218,218,'20210828','202108',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,14,NULL),('usage_events_20210829.log',256,1,NULL,1,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,1,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,2,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,3,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,4,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,5,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,6,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,7,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,8,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,9,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,10,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,11,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,12,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,13,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210829.log',259,1,NULL,14,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210829.log',515,1,1,3,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210829.log',515,1,32,80,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210829.log',515,1,56,135,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210829.log',515,1,58,137,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210829.log',515,1,81,283,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210829.log',515,1,78,288,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210829.log',515,1,91,295,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210829.log',515,1,99,305,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210829.log',515,1,113,307,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210829.log',515,1,114,308,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210829.log',515,1,125,310,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210829.log',515,1,133,318,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210829.log',515,1,137,343,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210829.log',515,1,139,351,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210829.log',515,1,147,387,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20210829.log',515,1,151,414,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210829.log',515,1,169,461,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,78),('usage_events_20210829.log',515,1,174,486,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210829.log',515,1,185,527,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210829.log',515,1,186,533,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210829.log',515,1,193,569,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210829.log',515,1,203,589,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,94),('usage_events_20210829.log',515,1,205,606,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210829.log',515,1,206,615,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,97),('usage_events_20210829.log',515,1,207,622,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210829.log',515,1,208,630,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,99),('usage_events_20210829.log',515,1,215,687,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210829.log',515,1,218,689,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,105),('usage_events_20210829.log',515,1,219,690,'20210829','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,106),('usage_events_20210829.log',1048585,1,1,1,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210829.log',1048585,1,4,4,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210829.log',1048585,1,5,5,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210829.log',1048585,1,6,6,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210829.log',1048585,1,7,7,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210829.log',1048585,1,8,8,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210829.log',1048585,1,14,14,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210829.log',1048585,1,19,19,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210829.log',1048585,1,20,20,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210829.log',1048585,1,21,21,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210829.log',1048585,1,22,22,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,2,NULL),('usage_events_20210829.log',1048585,1,40,40,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210829.log',1048585,1,56,56,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210829.log',1048585,1,78,78,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210829.log',1048585,1,81,81,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210829.log',1048585,1,82,82,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210829.log',1048585,1,86,86,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210829.log',1048585,1,114,114,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210829.log',1048585,1,125,125,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210829.log',1048585,1,133,133,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210829.log',1048585,1,137,137,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210829.log',1048585,1,139,139,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210829.log',1048585,1,147,147,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210829.log',1048585,1,148,148,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210829.log',1048585,1,151,151,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210829.log',1048585,1,152,152,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210829.log',1048585,1,169,169,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210829.log',1048585,1,171,171,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210829.log',1048585,1,173,173,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210829.log',1048585,1,185,185,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210829.log',1048585,1,186,186,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210829.log',1048585,1,193,193,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210829.log',1048585,1,203,203,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210829.log',1048585,1,205,205,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210829.log',1048585,1,207,207,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210829.log',1048585,1,208,208,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210829.log',1048585,1,214,214,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210829.log',1048585,1,215,215,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210829.log',1048585,1,216,216,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210829.log',1048585,1,218,218,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210829.log',1048585,1,219,219,'20210829','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210830.log',256,1,NULL,1,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210830.log',259,1,NULL,4,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210830.log',259,1,NULL,5,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210830.log',259,1,NULL,7,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210830.log',259,1,NULL,13,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210830.log',259,1,NULL,14,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210830.log',515,1,6,31,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210830.log',515,1,7,32,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20210830.log',515,1,49,116,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210830.log',515,1,54,133,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210830.log',515,1,58,137,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210830.log',515,1,59,138,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,34),('usage_events_20210830.log',515,1,78,288,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210830.log',515,1,91,295,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210830.log',515,1,99,305,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,8,57),('usage_events_20210830.log',515,1,115,309,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210830.log',515,1,139,351,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210830.log',515,1,146,379,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210830.log',515,1,148,394,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,10,73),('usage_events_20210830.log',515,1,150,407,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210830.log',515,1,151,414,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210830.log',515,1,152,423,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210830.log',515,1,169,461,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210830.log',515,1,173,479,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210830.log',515,1,174,486,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',13,1,259,11,81),('usage_events_20210830.log',515,1,175,493,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210830.log',515,1,185,527,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210830.log',515,1,186,533,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210830.log',515,1,189,551,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210830.log',515,1,193,569,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210830.log',515,1,203,589,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210830.log',515,1,204,597,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210830.log',515,1,205,606,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210830.log',515,1,206,615,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210830.log',515,1,208,630,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210830.log',515,1,209,637,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210830.log',515,1,214,686,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210830.log',515,1,218,689,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',7,1,259,14,105),('usage_events_20210830.log',515,1,219,690,'20210830','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210830.log',1048585,1,7,7,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,1,NULL),('usage_events_20210830.log',1048585,1,49,49,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210830.log',1048585,1,53,53,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210830.log',1048585,1,59,59,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210830.log',1048585,1,78,78,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210830.log',1048585,1,91,91,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210830.log',1048585,1,99,99,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210830.log',1048585,1,139,139,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210830.log',1048585,1,146,146,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210830.log',1048585,1,148,148,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210830.log',1048585,1,152,152,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210830.log',1048585,1,171,171,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210830.log',1048585,1,173,173,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210830.log',1048585,1,185,185,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210830.log',1048585,1,186,186,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210830.log',1048585,1,190,190,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210830.log',1048585,1,193,193,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210830.log',1048585,1,204,204,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210830.log',1048585,1,206,206,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210830.log',1048585,1,207,207,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210830.log',1048585,1,208,208,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210830.log',1048585,1,215,215,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210830.log',1048585,1,218,218,'20210830','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210831.log',256,1,NULL,1,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210831.log',259,1,NULL,5,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210831.log',515,1,7,32,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210831.log',515,1,51,118,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210831.log',515,1,53,120,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210831.log',515,1,56,135,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,31),('usage_events_20210831.log',515,1,58,137,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210831.log',515,1,59,138,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210831.log',515,1,82,284,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210831.log',515,1,86,290,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210831.log',515,1,91,295,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210831.log',515,1,113,307,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210831.log',515,1,115,309,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210831.log',515,1,133,318,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,63),('usage_events_20210831.log',515,1,137,343,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210831.log',515,1,139,351,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210831.log',515,1,142,367,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210831.log',515,1,148,394,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210831.log',515,1,169,461,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',12,1,259,11,78),('usage_events_20210831.log',515,1,173,479,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210831.log',515,1,174,486,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,81),('usage_events_20210831.log',515,1,175,493,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210831.log',515,1,178,514,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,85),('usage_events_20210831.log',515,1,186,533,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210831.log',515,1,187,539,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210831.log',515,1,189,551,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210831.log',515,1,190,556,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210831.log',515,1,193,569,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210831.log',515,1,203,589,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210831.log',515,1,205,606,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210831.log',515,1,206,615,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210831.log',515,1,208,630,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210831.log',515,1,214,686,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210831.log',515,1,216,688,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,104),('usage_events_20210831.log',515,1,218,689,'20210831','202108',2,NULL,NULL,NULL,'ojs::counter',9,1,259,14,105),('usage_events_20210831.log',1048585,1,7,7,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210831.log',1048585,1,51,51,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210831.log',1048585,1,53,53,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210831.log',1048585,1,54,54,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210831.log',1048585,1,56,56,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,5,NULL),('usage_events_20210831.log',1048585,1,58,58,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210831.log',1048585,1,86,86,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210831.log',1048585,1,91,91,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210831.log',1048585,1,113,113,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210831.log',1048585,1,133,133,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,9,NULL),('usage_events_20210831.log',1048585,1,134,134,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210831.log',1048585,1,137,137,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210831.log',1048585,1,148,148,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210831.log',1048585,1,152,152,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210831.log',1048585,1,169,169,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210831.log',1048585,1,173,173,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210831.log',1048585,1,174,174,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210831.log',1048585,1,175,175,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,11,NULL),('usage_events_20210831.log',1048585,1,177,177,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210831.log',1048585,1,178,178,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210831.log',1048585,1,190,190,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210831.log',1048585,1,191,191,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210831.log',1048585,1,203,203,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210831.log',1048585,1,205,205,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210831.log',1048585,1,206,206,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210831.log',1048585,1,207,207,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210831.log',1048585,1,209,209,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210831.log',1048585,1,216,216,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210831.log',1048585,1,218,218,'20210831','202108',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210901.log',256,1,NULL,1,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',18,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,1,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,2,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,3,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,4,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,5,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,6,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,7,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,8,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,9,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,10,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,11,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,12,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,13,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210901.log',259,1,NULL,14,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210901.log',515,1,1,3,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210901.log',515,1,40,94,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210901.log',515,1,53,120,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210901.log',515,1,54,133,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210901.log',515,1,58,137,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210901.log',515,1,78,288,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210901.log',515,1,84,289,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210901.log',515,1,86,290,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,51),('usage_events_20210901.log',515,1,148,394,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210901.log',515,1,150,407,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210901.log',515,1,151,414,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210901.log',515,1,169,461,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210901.log',515,1,171,470,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210901.log',515,1,173,479,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210901.log',515,1,174,486,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',58,1,259,11,81),('usage_events_20210901.log',515,1,175,493,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210901.log',515,1,178,514,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,85),('usage_events_20210901.log',515,1,185,527,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210901.log',515,1,188,545,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210901.log',515,1,190,556,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210901.log',515,1,205,606,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,96),('usage_events_20210901.log',515,1,206,615,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210901.log',515,1,207,622,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210901.log',515,1,208,630,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210901.log',515,1,215,687,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210901.log',515,1,216,688,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,104),('usage_events_20210901.log',515,1,218,689,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,14,105),('usage_events_20210901.log',515,1,219,690,'20210901','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,106),('usage_events_20210901.log',1048585,1,1,1,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210901.log',1048585,1,4,4,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210901.log',1048585,1,5,5,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210901.log',1048585,1,6,6,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210901.log',1048585,1,7,7,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210901.log',1048585,1,8,8,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210901.log',1048585,1,14,14,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210901.log',1048585,1,19,19,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210901.log',1048585,1,20,20,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210901.log',1048585,1,21,21,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210901.log',1048585,1,22,22,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210901.log',1048585,1,40,40,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210901.log',1048585,1,54,54,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210901.log',1048585,1,56,56,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210901.log',1048585,1,58,58,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210901.log',1048585,1,78,78,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210901.log',1048585,1,86,86,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210901.log',1048585,1,89,89,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210901.log',1048585,1,152,152,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210901.log',1048585,1,169,169,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210901.log',1048585,1,171,171,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210901.log',1048585,1,173,173,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210901.log',1048585,1,174,174,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210901.log',1048585,1,185,185,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210901.log',1048585,1,190,190,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,12,NULL),('usage_events_20210901.log',1048585,1,204,204,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210901.log',1048585,1,205,205,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210901.log',1048585,1,206,206,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210901.log',1048585,1,207,207,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210901.log',1048585,1,208,208,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210901.log',1048585,1,209,209,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210901.log',1048585,1,214,214,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210901.log',1048585,1,215,215,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210901.log',1048585,1,216,216,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20210901.log',1048585,1,218,218,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,14,NULL),('usage_events_20210901.log',1048585,1,219,219,'20210901','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210902.log',256,1,NULL,1,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210902.log',259,1,NULL,11,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210902.log',259,1,NULL,13,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210902.log',515,1,6,31,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20210902.log',515,1,20,53,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,11),('usage_events_20210902.log',515,1,49,116,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210902.log',515,1,54,133,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210902.log',515,1,58,137,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210902.log',515,1,82,284,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',12,1,259,6,45),('usage_events_20210902.log',515,1,78,288,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210902.log',515,1,91,295,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210902.log',515,1,100,306,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210902.log',515,1,139,351,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210902.log',515,1,142,367,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210902.log',515,1,148,394,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210902.log',515,1,149,401,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,74),('usage_events_20210902.log',515,1,150,407,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210902.log',515,1,151,414,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,76),('usage_events_20210902.log',515,1,169,461,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,11,78),('usage_events_20210902.log',515,1,171,470,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210902.log',515,1,174,486,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,81),('usage_events_20210902.log',515,1,175,493,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210902.log',515,1,178,514,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210902.log',515,1,185,527,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210902.log',515,1,186,533,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210902.log',515,1,187,539,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,88),('usage_events_20210902.log',515,1,189,551,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210902.log',515,1,190,556,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210902.log',515,1,193,569,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210902.log',515,1,205,606,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210902.log',515,1,206,615,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210902.log',515,1,207,622,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210902.log',515,1,208,630,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210902.log',515,1,209,637,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210902.log',515,1,218,689,'20210902','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,14,105),('usage_events_20210902.log',1048585,1,6,6,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210902.log',1048585,1,8,8,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210902.log',1048585,1,20,20,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20210902.log',1048585,1,54,54,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210902.log',1048585,1,58,58,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210902.log',1048585,1,78,78,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210902.log',1048585,1,82,82,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210902.log',1048585,1,88,88,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210902.log',1048585,1,91,91,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210902.log',1048585,1,133,133,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210902.log',1048585,1,139,139,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210902.log',1048585,1,149,149,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210902.log',1048585,1,171,171,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210902.log',1048585,1,178,178,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210902.log',1048585,1,185,185,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210902.log',1048585,1,186,186,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210902.log',1048585,1,187,187,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210902.log',1048585,1,190,190,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210902.log',1048585,1,193,193,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,12,NULL),('usage_events_20210902.log',1048585,1,206,206,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210902.log',1048585,1,207,207,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210902.log',1048585,1,214,214,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210902.log',1048585,1,218,218,'20210902','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210903.log',256,1,NULL,1,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210903.log',259,1,NULL,7,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210903.log',259,1,NULL,9,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210903.log',259,1,NULL,10,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210903.log',515,1,5,30,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210903.log',515,1,6,31,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210903.log',515,1,8,33,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210903.log',515,1,51,118,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210903.log',515,1,58,137,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210903.log',515,1,59,138,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210903.log',515,1,82,284,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',10,1,259,6,45),('usage_events_20210903.log',515,1,77,287,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210903.log',515,1,78,288,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210903.log',515,1,86,290,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210903.log',515,1,87,291,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210903.log',515,1,91,295,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210903.log',515,1,99,305,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210903.log',515,1,134,324,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,64),('usage_events_20210903.log',515,1,136,336,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210903.log',515,1,146,379,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210903.log',515,1,147,387,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210903.log',515,1,148,394,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210903.log',515,1,150,407,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210903.log',515,1,169,461,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210903.log',515,1,171,470,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210903.log',515,1,174,486,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210903.log',515,1,175,493,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210903.log',515,1,176,500,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210903.log',515,1,178,514,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210903.log',515,1,187,539,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,88),('usage_events_20210903.log',515,1,189,551,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,90),('usage_events_20210903.log',515,1,190,556,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210903.log',515,1,193,569,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210903.log',515,1,204,597,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210903.log',515,1,206,615,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210903.log',515,1,207,622,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210903.log',515,1,208,630,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210903.log',515,1,215,687,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,103),('usage_events_20210903.log',515,1,218,689,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210903.log',515,1,219,690,'20210903','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210903.log',1048585,1,8,8,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210903.log',1048585,1,51,51,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210903.log',1048585,1,59,59,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210903.log',1048585,1,77,77,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210903.log',1048585,1,78,78,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210903.log',1048585,1,82,82,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20210903.log',1048585,1,87,87,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210903.log',1048585,1,114,114,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210903.log',1048585,1,134,134,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210903.log',1048585,1,146,146,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210903.log',1048585,1,147,147,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,10,NULL),('usage_events_20210903.log',1048585,1,150,150,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210903.log',1048585,1,151,151,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210903.log',1048585,1,152,152,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210903.log',1048585,1,171,171,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210903.log',1048585,1,175,175,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210903.log',1048585,1,176,176,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210903.log',1048585,1,178,178,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210903.log',1048585,1,193,193,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210903.log',1048585,1,206,206,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210903.log',1048585,1,207,207,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210903.log',1048585,1,216,216,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210903.log',1048585,1,218,218,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20210903.log',1048585,1,219,219,'20210903','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210904.log',256,1,NULL,1,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,1,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,2,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,3,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,4,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,5,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,6,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,7,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,8,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,9,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,12,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210904.log',259,1,NULL,14,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210904.log',515,1,22,57,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,13),('usage_events_20210904.log',515,1,32,80,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210904.log',515,1,49,116,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210904.log',515,1,58,137,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210904.log',515,1,82,284,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,6,45),('usage_events_20210904.log',515,1,78,288,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210904.log',515,1,91,295,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,56),('usage_events_20210904.log',515,1,139,351,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,68),('usage_events_20210904.log',515,1,147,387,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210904.log',515,1,148,394,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210904.log',515,1,149,401,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210904.log',515,1,150,407,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210904.log',515,1,151,414,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20210904.log',515,1,169,461,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210904.log',515,1,171,470,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210904.log',515,1,173,479,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,80),('usage_events_20210904.log',515,1,174,486,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210904.log',515,1,175,493,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210904.log',515,1,187,539,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,12,88),('usage_events_20210904.log',515,1,190,556,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,91),('usage_events_20210904.log',515,1,203,589,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210904.log',515,1,205,606,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210904.log',515,1,206,615,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,97),('usage_events_20210904.log',515,1,207,622,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210904.log',515,1,216,688,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,14,104),('usage_events_20210904.log',515,1,218,689,'20210904','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210904.log',1048585,1,22,22,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,2,NULL),('usage_events_20210904.log',1048585,1,32,32,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210904.log',1048585,1,51,51,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210904.log',1048585,1,59,59,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210904.log',1048585,1,78,78,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210904.log',1048585,1,82,82,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20210904.log',1048585,1,91,91,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210904.log',1048585,1,139,139,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210904.log',1048585,1,141,141,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210904.log',1048585,1,149,149,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210904.log',1048585,1,150,150,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210904.log',1048585,1,151,151,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210904.log',1048585,1,173,173,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210904.log',1048585,1,174,174,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210904.log',1048585,1,175,175,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210904.log',1048585,1,178,178,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210904.log',1048585,1,187,187,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210904.log',1048585,1,190,190,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210904.log',1048585,1,193,193,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210904.log',1048585,1,203,203,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210904.log',1048585,1,205,205,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210904.log',1048585,1,207,207,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210904.log',1048585,1,214,214,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210904.log',1048585,1,215,215,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210904.log',1048585,1,216,216,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,14,NULL),('usage_events_20210904.log',1048585,1,218,218,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20210904.log',1048585,1,219,219,'20210904','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210905.log',256,1,NULL,1,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,1,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,2,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,3,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,4,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,5,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,6,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,7,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,8,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,9,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,10,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,11,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,12,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,13,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210905.log',259,1,NULL,14,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210905.log',515,1,1,3,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210905.log',515,1,31,79,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210905.log',515,1,54,133,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210905.log',515,1,58,137,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210905.log',515,1,59,138,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210905.log',515,1,78,288,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210905.log',515,1,89,293,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210905.log',515,1,91,295,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,56),('usage_events_20210905.log',515,1,100,306,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210905.log',515,1,115,309,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210905.log',515,1,148,394,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210905.log',515,1,149,401,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210905.log',515,1,169,461,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210905.log',515,1,171,470,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210905.log',515,1,173,479,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210905.log',515,1,174,486,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210905.log',515,1,175,493,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210905.log',515,1,186,533,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210905.log',515,1,187,539,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210905.log',515,1,190,556,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210905.log',515,1,191,563,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20210905.log',515,1,203,589,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210905.log',515,1,205,606,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210905.log',515,1,206,615,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210905.log',515,1,207,622,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210905.log',515,1,215,687,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210905.log',515,1,216,688,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,104),('usage_events_20210905.log',515,1,218,689,'20210905','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,105),('usage_events_20210905.log',1048585,1,1,1,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210905.log',1048585,1,4,4,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210905.log',1048585,1,5,5,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210905.log',1048585,1,6,6,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210905.log',1048585,1,7,7,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210905.log',1048585,1,8,8,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210905.log',1048585,1,14,14,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210905.log',1048585,1,19,19,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210905.log',1048585,1,20,20,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210905.log',1048585,1,21,21,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210905.log',1048585,1,22,22,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210905.log',1048585,1,31,31,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210905.log',1048585,1,40,40,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210905.log',1048585,1,57,57,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210905.log',1048585,1,59,59,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210905.log',1048585,1,78,78,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210905.log',1048585,1,91,91,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210905.log',1048585,1,100,100,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210905.log',1048585,1,115,115,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210905.log',1048585,1,134,134,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210905.log',1048585,1,148,148,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210905.log',1048585,1,149,149,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210905.log',1048585,1,151,151,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210905.log',1048585,1,152,152,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210905.log',1048585,1,169,169,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210905.log',1048585,1,171,171,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210905.log',1048585,1,173,173,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210905.log',1048585,1,174,174,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210905.log',1048585,1,176,176,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210905.log',1048585,1,178,178,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210905.log',1048585,1,186,186,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,12,NULL),('usage_events_20210905.log',1048585,1,191,191,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210905.log',1048585,1,203,203,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210905.log',1048585,1,206,206,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210905.log',1048585,1,207,207,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210905.log',1048585,1,214,214,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210905.log',1048585,1,215,215,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210905.log',1048585,1,216,216,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,14,NULL),('usage_events_20210905.log',1048585,1,218,218,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210905.log',1048585,1,219,219,'20210905','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210906.log',256,1,NULL,1,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',17,NULL,NULL,NULL,NULL),('usage_events_20210906.log',259,1,NULL,7,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210906.log',259,1,NULL,10,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210906.log',259,1,NULL,13,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210906.log',515,1,34,82,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20210906.log',515,1,54,133,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210906.log',515,1,56,135,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210906.log',515,1,58,137,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,33),('usage_events_20210906.log',515,1,85,281,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210906.log',515,1,78,288,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210906.log',515,1,91,295,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,56),('usage_events_20210906.log',515,1,114,308,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210906.log',515,1,137,343,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210906.log',515,1,139,351,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210906.log',515,1,142,367,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210906.log',515,1,147,387,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210906.log',515,1,148,394,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210906.log',515,1,149,401,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210906.log',515,1,150,407,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210906.log',515,1,169,461,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',14,1,259,11,78),('usage_events_20210906.log',515,1,171,470,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210906.log',515,1,173,479,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210906.log',515,1,174,486,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210906.log',515,1,175,493,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210906.log',515,1,177,507,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210906.log',515,1,178,514,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210906.log',515,1,186,533,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20210906.log',515,1,189,551,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210906.log',515,1,190,556,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210906.log',515,1,203,589,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210906.log',515,1,204,597,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210906.log',515,1,205,606,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210906.log',515,1,206,615,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210906.log',515,1,207,622,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,98),('usage_events_20210906.log',515,1,209,637,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210906.log',515,1,216,688,'20210906','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,104),('usage_events_20210906.log',1048585,1,54,54,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210906.log',1048585,1,56,56,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210906.log',1048585,1,58,58,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210906.log',1048585,1,78,78,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210906.log',1048585,1,85,85,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210906.log',1048585,1,91,91,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210906.log',1048585,1,115,115,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210906.log',1048585,1,139,139,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210906.log',1048585,1,142,142,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210906.log',1048585,1,150,150,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210906.log',1048585,1,169,169,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210906.log',1048585,1,171,171,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210906.log',1048585,1,173,173,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210906.log',1048585,1,177,177,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210906.log',1048585,1,186,186,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210906.log',1048585,1,190,190,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210906.log',1048585,1,193,193,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210906.log',1048585,1,204,204,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210906.log',1048585,1,206,206,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,13,NULL),('usage_events_20210906.log',1048585,1,207,207,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210906.log',1048585,1,209,209,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210906.log',1048585,1,216,216,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,14,NULL),('usage_events_20210906.log',1048585,1,218,218,'20210906','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210907.log',256,1,NULL,1,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210907.log',259,1,NULL,13,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210907.log',259,1,NULL,14,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210907.log',515,1,4,19,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210907.log',515,1,58,137,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210907.log',515,1,59,138,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20210907.log',515,1,85,281,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210907.log',515,1,83,285,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210907.log',515,1,78,288,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210907.log',515,1,84,289,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210907.log',515,1,86,290,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210907.log',515,1,87,291,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210907.log',515,1,89,293,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210907.log',515,1,91,295,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,56),('usage_events_20210907.log',515,1,99,305,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210907.log',515,1,113,307,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210907.log',515,1,133,318,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210907.log',515,1,135,330,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210907.log',515,1,137,343,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210907.log',515,1,148,394,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210907.log',515,1,150,407,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210907.log',515,1,151,414,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210907.log',515,1,169,461,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210907.log',515,1,174,486,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210907.log',515,1,176,500,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210907.log',515,1,178,514,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210907.log',515,1,186,533,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210907.log',515,1,187,539,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210907.log',515,1,188,545,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210907.log',515,1,190,556,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210907.log',515,1,193,569,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210907.log',515,1,204,597,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210907.log',515,1,205,606,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210907.log',515,1,206,615,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210907.log',515,1,207,622,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210907.log',515,1,208,630,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210907.log',515,1,214,686,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210907.log',515,1,216,688,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210907.log',515,1,219,690,'20210907','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,106),('usage_events_20210907.log',1048585,1,4,4,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210907.log',1048585,1,77,77,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210907.log',1048585,1,78,78,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210907.log',1048585,1,84,84,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210907.log',1048585,1,87,87,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210907.log',1048585,1,89,89,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210907.log',1048585,1,133,133,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210907.log',1048585,1,137,137,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210907.log',1048585,1,148,148,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210907.log',1048585,1,149,149,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210907.log',1048585,1,150,150,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210907.log',1048585,1,151,151,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210907.log',1048585,1,152,152,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210907.log',1048585,1,171,171,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210907.log',1048585,1,186,186,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210907.log',1048585,1,187,187,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210907.log',1048585,1,190,190,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210907.log',1048585,1,193,193,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,12,NULL),('usage_events_20210907.log',1048585,1,204,204,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210907.log',1048585,1,206,206,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210907.log',1048585,1,207,207,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210907.log',1048585,1,215,215,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210907.log',1048585,1,216,216,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210907.log',1048585,1,218,218,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210907.log',1048585,1,219,219,'20210907','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210908.log',256,1,NULL,1,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,1,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,2,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,3,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,4,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,5,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,6,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,7,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,8,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,9,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,10,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,11,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,12,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,13,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210908.log',259,1,NULL,14,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20210908.log',515,1,1,3,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210908.log',515,1,49,116,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210908.log',515,1,53,120,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210908.log',515,1,58,137,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,5,33),('usage_events_20210908.log',515,1,78,288,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20210908.log',515,1,91,295,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,56),('usage_events_20210908.log',515,1,99,305,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20210908.log',515,1,113,307,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210908.log',515,1,114,308,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210908.log',515,1,139,351,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210908.log',515,1,141,361,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210908.log',515,1,142,367,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210908.log',515,1,147,387,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210908.log',515,1,148,394,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210908.log',515,1,169,461,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210908.log',515,1,174,486,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210908.log',515,1,175,493,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210908.log',515,1,178,514,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210908.log',515,1,188,545,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210908.log',515,1,190,556,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210908.log',515,1,203,589,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,94),('usage_events_20210908.log',515,1,205,606,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210908.log',515,1,206,615,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20210908.log',515,1,207,622,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210908.log',515,1,208,630,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210908.log',515,1,214,686,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,102),('usage_events_20210908.log',515,1,216,688,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210908.log',515,1,218,689,'20210908','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210908.log',1048585,1,1,1,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210908.log',1048585,1,4,4,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210908.log',1048585,1,5,5,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210908.log',1048585,1,6,6,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210908.log',1048585,1,7,7,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210908.log',1048585,1,8,8,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210908.log',1048585,1,14,14,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210908.log',1048585,1,19,19,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210908.log',1048585,1,20,20,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210908.log',1048585,1,21,21,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210908.log',1048585,1,22,22,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210908.log',1048585,1,40,40,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210908.log',1048585,1,58,58,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210908.log',1048585,1,139,139,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210908.log',1048585,1,141,141,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210908.log',1048585,1,148,148,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210908.log',1048585,1,149,149,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210908.log',1048585,1,169,169,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210908.log',1048585,1,171,171,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210908.log',1048585,1,173,173,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210908.log',1048585,1,185,185,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210908.log',1048585,1,186,186,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210908.log',1048585,1,190,190,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210908.log',1048585,1,193,193,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210908.log',1048585,1,203,203,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210908.log',1048585,1,207,207,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210908.log',1048585,1,214,214,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,14,NULL),('usage_events_20210908.log',1048585,1,215,215,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210908.log',1048585,1,216,216,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210908.log',1048585,1,218,218,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,14,NULL),('usage_events_20210908.log',1048585,1,219,219,'20210908','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210909.log',256,1,NULL,1,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210909.log',259,1,NULL,13,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210909.log',259,1,NULL,14,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210909.log',515,1,7,32,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210909.log',515,1,14,51,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,9),('usage_events_20210909.log',515,1,31,79,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210909.log',515,1,50,117,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,25),('usage_events_20210909.log',515,1,53,120,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210909.log',515,1,58,137,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210909.log',515,1,79,282,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210909.log',515,1,81,283,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210909.log',515,1,78,288,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,7,49),('usage_events_20210909.log',515,1,87,291,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20210909.log',515,1,99,305,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20210909.log',515,1,125,310,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210909.log',515,1,133,318,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210909.log',515,1,135,330,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210909.log',515,1,147,387,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,72),('usage_events_20210909.log',515,1,148,394,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210909.log',515,1,150,407,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210909.log',515,1,151,414,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210909.log',515,1,169,461,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210909.log',515,1,171,470,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210909.log',515,1,174,486,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,81),('usage_events_20210909.log',515,1,175,493,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210909.log',515,1,178,514,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210909.log',515,1,187,539,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210909.log',515,1,190,556,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210909.log',515,1,191,563,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210909.log',515,1,203,589,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210909.log',515,1,204,597,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210909.log',515,1,205,606,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210909.log',515,1,206,615,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210909.log',515,1,207,622,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210909.log',515,1,218,689,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,14,105),('usage_events_20210909.log',515,1,219,690,'20210909','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210909.log',1048585,1,7,7,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210909.log',1048585,1,47,47,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210909.log',1048585,1,50,50,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210909.log',1048585,1,53,53,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210909.log',1048585,1,78,78,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210909.log',1048585,1,81,81,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210909.log',1048585,1,84,84,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210909.log',1048585,1,86,86,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210909.log',1048585,1,87,87,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210909.log',1048585,1,125,125,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210909.log',1048585,1,133,133,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210909.log',1048585,1,147,147,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210909.log',1048585,1,148,148,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210909.log',1048585,1,149,149,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210909.log',1048585,1,150,150,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210909.log',1048585,1,152,152,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210909.log',1048585,1,169,169,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210909.log',1048585,1,171,171,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210909.log',1048585,1,178,178,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210909.log',1048585,1,204,204,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210909.log',1048585,1,206,206,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210909.log',1048585,1,207,207,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210909.log',1048585,1,218,218,'20210909','202109',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,14,NULL),('usage_events_20210910.log',256,1,NULL,1,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210910.log',259,1,NULL,12,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210910.log',259,1,NULL,14,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20210910.log',515,1,32,80,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210910.log',515,1,49,116,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210910.log',515,1,53,120,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210910.log',515,1,58,137,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210910.log',515,1,59,138,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,34),('usage_events_20210910.log',515,1,81,283,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210910.log',515,1,77,287,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210910.log',515,1,78,288,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210910.log',515,1,84,289,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,50),('usage_events_20210910.log',515,1,86,290,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,51),('usage_events_20210910.log',515,1,91,295,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210910.log',515,1,135,330,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210910.log',515,1,147,387,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210910.log',515,1,148,394,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210910.log',515,1,150,407,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210910.log',515,1,151,414,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210910.log',515,1,169,461,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,78),('usage_events_20210910.log',515,1,171,470,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210910.log',515,1,173,479,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210910.log',515,1,174,486,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,81),('usage_events_20210910.log',515,1,175,493,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210910.log',515,1,176,500,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210910.log',515,1,177,507,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210910.log',515,1,178,514,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210910.log',515,1,187,539,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210910.log',515,1,188,545,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210910.log',515,1,190,556,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210910.log',515,1,191,563,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210910.log',515,1,193,569,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,93),('usage_events_20210910.log',515,1,205,606,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,96),('usage_events_20210910.log',515,1,206,615,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210910.log',515,1,207,622,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,98),('usage_events_20210910.log',515,1,210,644,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210910.log',515,1,214,686,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210910.log',515,1,216,688,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,104),('usage_events_20210910.log',515,1,218,689,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,14,105),('usage_events_20210910.log',515,1,219,690,'20210910','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210910.log',1048585,1,53,53,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210910.log',1048585,1,58,58,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,5,NULL),('usage_events_20210910.log',1048585,1,81,81,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210910.log',1048585,1,84,84,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210910.log',1048585,1,86,86,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210910.log',1048585,1,147,147,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210910.log',1048585,1,150,150,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210910.log',1048585,1,151,151,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210910.log',1048585,1,169,169,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210910.log',1048585,1,171,171,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210910.log',1048585,1,175,175,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210910.log',1048585,1,176,176,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210910.log',1048585,1,190,190,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210910.log',1048585,1,193,193,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210910.log',1048585,1,204,204,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210910.log',1048585,1,206,206,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210910.log',1048585,1,207,207,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210910.log',1048585,1,209,209,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210910.log',1048585,1,216,216,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210910.log',1048585,1,218,218,'20210910','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20210911.log',256,1,NULL,1,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',14,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,1,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,2,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,3,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,4,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,5,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,6,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,7,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,8,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,9,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,10,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,11,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,12,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,13,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210911.log',259,1,NULL,14,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210911.log',515,1,1,3,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210911.log',515,1,5,30,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210911.log',515,1,20,53,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210911.log',515,1,32,80,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210911.log',515,1,53,120,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210911.log',515,1,56,135,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210911.log',515,1,79,282,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210911.log',515,1,77,287,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210911.log',515,1,78,288,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210911.log',515,1,91,295,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210911.log',515,1,114,308,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210911.log',515,1,115,309,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,61),('usage_events_20210911.log',515,1,134,324,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210911.log',515,1,139,351,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210911.log',515,1,141,361,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210911.log',515,1,146,379,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210911.log',515,1,148,394,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20210911.log',515,1,151,414,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210911.log',515,1,152,423,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210911.log',515,1,169,461,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210911.log',515,1,173,479,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,80),('usage_events_20210911.log',515,1,175,493,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210911.log',515,1,178,514,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210911.log',515,1,187,539,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210911.log',515,1,189,551,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210911.log',515,1,204,597,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20210911.log',515,1,205,606,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210911.log',515,1,206,615,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20210911.log',515,1,207,622,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210911.log',515,1,208,630,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210911.log',515,1,214,686,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210911.log',515,1,216,688,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,104),('usage_events_20210911.log',515,1,218,689,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,105),('usage_events_20210911.log',515,1,219,690,'20210911','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210911.log',1048585,1,1,1,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210911.log',1048585,1,4,4,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210911.log',1048585,1,5,5,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210911.log',1048585,1,6,6,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210911.log',1048585,1,7,7,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210911.log',1048585,1,8,8,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210911.log',1048585,1,14,14,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210911.log',1048585,1,19,19,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210911.log',1048585,1,20,20,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210911.log',1048585,1,21,21,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210911.log',1048585,1,22,22,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210911.log',1048585,1,31,31,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210911.log',1048585,1,40,40,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210911.log',1048585,1,53,53,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210911.log',1048585,1,78,78,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210911.log',1048585,1,91,91,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210911.log',1048585,1,115,115,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210911.log',1048585,1,141,141,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210911.log',1048585,1,146,146,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210911.log',1048585,1,148,148,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210911.log',1048585,1,151,151,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210911.log',1048585,1,152,152,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210911.log',1048585,1,169,169,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210911.log',1048585,1,171,171,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210911.log',1048585,1,173,173,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210911.log',1048585,1,175,175,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210911.log',1048585,1,178,178,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210911.log',1048585,1,193,193,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210911.log',1048585,1,204,204,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210911.log',1048585,1,205,205,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210911.log',1048585,1,206,206,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210911.log',1048585,1,207,207,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210911.log',1048585,1,208,208,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210911.log',1048585,1,214,214,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210911.log',1048585,1,215,215,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210911.log',1048585,1,216,216,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210911.log',1048585,1,218,218,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210911.log',1048585,1,219,219,'20210911','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210912.log',256,1,NULL,1,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210912.log',259,1,NULL,13,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210912.log',259,1,NULL,14,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210912.log',515,1,6,31,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,5),('usage_events_20210912.log',515,1,32,80,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20210912.log',515,1,53,120,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,28),('usage_events_20210912.log',515,1,54,133,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210912.log',515,1,85,281,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20210912.log',515,1,78,288,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210912.log',515,1,84,289,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210912.log',515,1,87,291,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210912.log',515,1,89,293,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210912.log',515,1,91,295,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210912.log',515,1,114,308,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210912.log',515,1,115,309,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20210912.log',515,1,137,343,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210912.log',515,1,142,367,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,70),('usage_events_20210912.log',515,1,148,394,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210912.log',515,1,169,461,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210912.log',515,1,171,470,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210912.log',515,1,175,493,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210912.log',515,1,176,500,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210912.log',515,1,177,507,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,84),('usage_events_20210912.log',515,1,178,514,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210912.log',515,1,185,527,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210912.log',515,1,186,533,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210912.log',515,1,187,539,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210912.log',515,1,191,563,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210912.log',515,1,204,597,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210912.log',515,1,206,615,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210912.log',515,1,207,622,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210912.log',515,1,208,630,'20210912','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210912.log',1048585,1,53,53,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210912.log',1048585,1,77,77,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210912.log',1048585,1,78,78,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210912.log',1048585,1,89,89,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210912.log',1048585,1,90,90,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210912.log',1048585,1,114,114,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210912.log',1048585,1,148,148,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210912.log',1048585,1,149,149,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210912.log',1048585,1,150,150,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210912.log',1048585,1,151,151,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210912.log',1048585,1,152,152,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210912.log',1048585,1,169,169,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210912.log',1048585,1,171,171,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210912.log',1048585,1,173,173,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210912.log',1048585,1,174,174,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210912.log',1048585,1,175,175,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210912.log',1048585,1,176,176,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210912.log',1048585,1,178,178,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210912.log',1048585,1,191,191,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210912.log',1048585,1,204,204,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210912.log',1048585,1,206,206,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210912.log',1048585,1,207,207,'20210912','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210913.log',256,1,NULL,1,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210913.log',259,1,NULL,5,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210913.log',259,1,NULL,10,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210913.log',259,1,NULL,12,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210913.log',515,1,7,32,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210913.log',515,1,50,117,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210913.log',515,1,53,120,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210913.log',515,1,58,137,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210913.log',515,1,79,282,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20210913.log',515,1,81,283,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210913.log',515,1,83,285,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20210913.log',515,1,77,287,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,48),('usage_events_20210913.log',515,1,78,288,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210913.log',515,1,84,289,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210913.log',515,1,91,295,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20210913.log',515,1,99,305,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210913.log',515,1,113,307,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20210913.log',515,1,125,310,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210913.log',515,1,133,318,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210913.log',515,1,134,324,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210913.log',515,1,135,330,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20210913.log',515,1,137,343,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210913.log',515,1,139,351,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210913.log',515,1,148,394,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210913.log',515,1,149,401,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210913.log',515,1,150,407,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210913.log',515,1,152,423,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,77),('usage_events_20210913.log',515,1,171,470,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,79),('usage_events_20210913.log',515,1,173,479,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210913.log',515,1,174,486,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210913.log',515,1,175,493,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210913.log',515,1,178,514,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210913.log',515,1,185,527,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210913.log',515,1,186,533,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20210913.log',515,1,190,556,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210913.log',515,1,193,569,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210913.log',515,1,204,597,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210913.log',515,1,205,606,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210913.log',515,1,206,615,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20210913.log',515,1,208,630,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210913.log',515,1,209,637,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210913.log',515,1,215,687,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210913.log',515,1,216,688,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210913.log',515,1,218,689,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,105),('usage_events_20210913.log',515,1,219,690,'20210913','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210913.log',1048585,1,7,7,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210913.log',1048585,1,50,50,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210913.log',1048585,1,58,58,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210913.log',1048585,1,81,81,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210913.log',1048585,1,83,83,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210913.log',1048585,1,91,91,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210913.log',1048585,1,125,125,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210913.log',1048585,1,133,133,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210913.log',1048585,1,134,134,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210913.log',1048585,1,135,135,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210913.log',1048585,1,136,136,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210913.log',1048585,1,137,137,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210913.log',1048585,1,139,139,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210913.log',1048585,1,141,141,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210913.log',1048585,1,142,142,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210913.log',1048585,1,146,146,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210913.log',1048585,1,147,147,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210913.log',1048585,1,148,148,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210913.log',1048585,1,149,149,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210913.log',1048585,1,150,150,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210913.log',1048585,1,152,152,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210913.log',1048585,1,171,171,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210913.log',1048585,1,173,173,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210913.log',1048585,1,175,175,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210913.log',1048585,1,177,177,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210913.log',1048585,1,178,178,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210913.log',1048585,1,187,187,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210913.log',1048585,1,190,190,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210913.log',1048585,1,193,193,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210913.log',1048585,1,203,203,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210913.log',1048585,1,204,204,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210913.log',1048585,1,206,206,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,13,NULL),('usage_events_20210913.log',1048585,1,214,214,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210913.log',1048585,1,215,215,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210913.log',1048585,1,216,216,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210913.log',1048585,1,218,218,'20210913','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210914.log',256,1,NULL,1,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,1,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,2,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,3,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,4,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,5,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,6,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,7,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,8,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,9,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,10,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,11,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,12,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,13,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210914.log',259,1,NULL,14,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210914.log',515,1,1,3,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210914.log',515,1,4,19,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210914.log',515,1,33,81,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210914.log',515,1,46,114,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210914.log',515,1,53,120,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,4,28),('usage_events_20210914.log',515,1,54,133,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210914.log',515,1,56,135,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210914.log',515,1,58,137,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210914.log',515,1,81,283,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210914.log',515,1,82,284,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,45),('usage_events_20210914.log',515,1,78,288,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20210914.log',515,1,99,305,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210914.log',515,1,114,308,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210914.log',515,1,115,309,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210914.log',515,1,133,318,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20210914.log',515,1,135,330,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210914.log',515,1,136,336,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20210914.log',515,1,142,367,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210914.log',515,1,147,387,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210914.log',515,1,148,394,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20210914.log',515,1,152,423,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210914.log',515,1,169,461,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210914.log',515,1,171,470,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210914.log',515,1,173,479,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210914.log',515,1,174,486,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20210914.log',515,1,175,493,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20210914.log',515,1,177,507,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210914.log',515,1,185,527,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210914.log',515,1,187,539,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210914.log',515,1,190,556,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210914.log',515,1,193,569,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210914.log',515,1,204,597,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210914.log',515,1,205,606,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210914.log',515,1,206,615,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210914.log',515,1,208,630,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,99),('usage_events_20210914.log',515,1,214,686,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210914.log',515,1,216,688,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,104),('usage_events_20210914.log',515,1,218,689,'20210914','202109',2,NULL,NULL,NULL,'ojs::counter',12,1,259,14,105),('usage_events_20210914.log',1048585,1,1,1,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210914.log',1048585,1,4,4,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210914.log',1048585,1,5,5,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210914.log',1048585,1,6,6,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210914.log',1048585,1,7,7,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210914.log',1048585,1,8,8,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210914.log',1048585,1,14,14,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210914.log',1048585,1,19,19,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210914.log',1048585,1,20,20,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210914.log',1048585,1,21,21,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210914.log',1048585,1,22,22,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210914.log',1048585,1,40,40,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210914.log',1048585,1,53,53,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210914.log',1048585,1,56,56,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210914.log',1048585,1,78,78,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210914.log',1048585,1,81,81,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,6,NULL),('usage_events_20210914.log',1048585,1,115,115,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210914.log',1048585,1,133,133,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210914.log',1048585,1,134,134,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210914.log',1048585,1,136,136,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210914.log',1048585,1,151,151,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210914.log',1048585,1,152,152,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210914.log',1048585,1,169,169,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210914.log',1048585,1,171,171,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210914.log',1048585,1,173,173,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210914.log',1048585,1,176,176,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210914.log',1048585,1,190,190,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20210914.log',1048585,1,193,193,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210914.log',1048585,1,206,206,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210914.log',1048585,1,207,207,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210914.log',1048585,1,208,208,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210914.log',1048585,1,214,214,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210914.log',1048585,1,215,215,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210914.log',1048585,1,216,216,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210914.log',1048585,1,218,218,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',12,1,259,14,NULL),('usage_events_20210914.log',1048585,1,219,219,'20210914','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210915.log',256,1,NULL,1,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20210915.log',259,1,NULL,4,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210915.log',259,1,NULL,8,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210915.log',259,1,NULL,13,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210915.log',515,1,19,52,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210915.log',515,1,20,53,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210915.log',515,1,49,116,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210915.log',515,1,51,118,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210915.log',515,1,53,120,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20210915.log',515,1,56,135,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210915.log',515,1,58,137,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210915.log',515,1,82,284,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210915.log',515,1,78,288,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',13,1,259,7,49),('usage_events_20210915.log',515,1,86,290,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210915.log',515,1,87,291,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20210915.log',515,1,99,305,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20210915.log',515,1,114,308,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,60),('usage_events_20210915.log',515,1,133,318,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20210915.log',515,1,137,343,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210915.log',515,1,139,351,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210915.log',515,1,142,367,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210915.log',515,1,148,394,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210915.log',515,1,152,423,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210915.log',515,1,169,461,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',15,1,259,11,78),('usage_events_20210915.log',515,1,171,470,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,79),('usage_events_20210915.log',515,1,173,479,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210915.log',515,1,175,493,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210915.log',515,1,176,500,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210915.log',515,1,177,507,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210915.log',515,1,178,514,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210915.log',515,1,185,527,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210915.log',515,1,187,539,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210915.log',515,1,191,563,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210915.log',515,1,204,597,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,95),('usage_events_20210915.log',515,1,205,606,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210915.log',515,1,206,615,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',15,1,259,13,97),('usage_events_20210915.log',515,1,207,622,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,98),('usage_events_20210915.log',515,1,208,630,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210915.log',515,1,216,688,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210915.log',515,1,218,689,'20210915','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,14,105),('usage_events_20210915.log',1048585,1,46,46,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210915.log',1048585,1,49,49,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210915.log',1048585,1,51,51,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210915.log',1048585,1,53,53,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210915.log',1048585,1,78,78,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210915.log',1048585,1,81,81,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210915.log',1048585,1,87,87,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210915.log',1048585,1,91,91,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210915.log',1048585,1,113,113,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210915.log',1048585,1,114,114,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,8,NULL),('usage_events_20210915.log',1048585,1,133,133,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210915.log',1048585,1,137,137,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210915.log',1048585,1,152,152,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210915.log',1048585,1,169,169,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210915.log',1048585,1,171,171,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210915.log',1048585,1,173,173,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210915.log',1048585,1,175,175,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210915.log',1048585,1,176,176,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210915.log',1048585,1,177,177,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210915.log',1048585,1,187,187,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210915.log',1048585,1,203,203,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210915.log',1048585,1,204,204,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210915.log',1048585,1,206,206,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210915.log',1048585,1,207,207,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,13,NULL),('usage_events_20210915.log',1048585,1,216,216,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210915.log',1048585,1,218,218,'20210915','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,14,NULL),('usage_events_20210916.log',256,1,NULL,1,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,1,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,2,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,3,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,4,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,5,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,6,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,7,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,8,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,9,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,10,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,11,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,12,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,13,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210916.log',259,1,NULL,14,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210916.log',515,1,1,3,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210916.log',515,1,46,114,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210916.log',515,1,49,116,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210916.log',515,1,53,120,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,28),('usage_events_20210916.log',515,1,54,133,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210916.log',515,1,58,137,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210916.log',515,1,76,286,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210916.log',515,1,77,287,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210916.log',515,1,78,288,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210916.log',515,1,84,289,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210916.log',515,1,87,291,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210916.log',515,1,91,295,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',34,1,259,7,56),('usage_events_20210916.log',515,1,113,307,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,59),('usage_events_20210916.log',515,1,114,308,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210916.log',515,1,137,343,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210916.log',515,1,139,351,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210916.log',515,1,142,367,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210916.log',515,1,147,387,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20210916.log',515,1,148,394,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210916.log',515,1,149,401,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210916.log',515,1,169,461,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,11,78),('usage_events_20210916.log',515,1,173,479,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210916.log',515,1,174,486,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210916.log',515,1,175,493,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,82),('usage_events_20210916.log',515,1,176,500,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210916.log',515,1,178,514,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210916.log',515,1,187,539,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210916.log',515,1,189,551,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210916.log',515,1,190,556,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20210916.log',515,1,193,569,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210916.log',515,1,203,589,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,94),('usage_events_20210916.log',515,1,204,597,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210916.log',515,1,205,606,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210916.log',515,1,206,615,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210916.log',515,1,207,622,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,98),('usage_events_20210916.log',515,1,208,630,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20210916.log',515,1,209,637,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210916.log',515,1,214,686,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210916.log',515,1,215,687,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,103),('usage_events_20210916.log',515,1,218,689,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210916.log',515,1,219,690,'20210916','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210916.log',1048585,1,1,1,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210916.log',1048585,1,4,4,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210916.log',1048585,1,6,6,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210916.log',1048585,1,7,7,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210916.log',1048585,1,8,8,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210916.log',1048585,1,14,14,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210916.log',1048585,1,19,19,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210916.log',1048585,1,20,20,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210916.log',1048585,1,40,40,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210916.log',1048585,1,46,46,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210916.log',1048585,1,49,49,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210916.log',1048585,1,53,53,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,4,NULL),('usage_events_20210916.log',1048585,1,54,54,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210916.log',1048585,1,58,58,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210916.log',1048585,1,59,59,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210916.log',1048585,1,77,77,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210916.log',1048585,1,78,78,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210916.log',1048585,1,82,82,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210916.log',1048585,1,91,91,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',29,1,259,7,NULL),('usage_events_20210916.log',1048585,1,137,137,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210916.log',1048585,1,147,147,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210916.log',1048585,1,148,148,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210916.log',1048585,1,149,149,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210916.log',1048585,1,151,151,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210916.log',1048585,1,169,169,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210916.log',1048585,1,171,171,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210916.log',1048585,1,173,173,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210916.log',1048585,1,175,175,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210916.log',1048585,1,176,176,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210916.log',1048585,1,187,187,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210916.log',1048585,1,190,190,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210916.log',1048585,1,193,193,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210916.log',1048585,1,203,203,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210916.log',1048585,1,206,206,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210916.log',1048585,1,207,207,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210916.log',1048585,1,214,214,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210916.log',1048585,1,215,215,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210916.log',1048585,1,216,216,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210916.log',1048585,1,218,218,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,14,NULL),('usage_events_20210916.log',1048585,1,219,219,'20210916','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210917.log',256,1,NULL,1,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20210917.log',515,1,6,31,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20210917.log',515,1,35,83,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210917.log',515,1,46,114,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210917.log',515,1,49,116,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210917.log',515,1,50,117,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20210917.log',515,1,51,118,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210917.log',515,1,53,120,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210917.log',515,1,54,133,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210917.log',515,1,58,137,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210917.log',515,1,82,284,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210917.log',515,1,78,288,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',12,1,259,7,49),('usage_events_20210917.log',515,1,86,290,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210917.log',515,1,99,305,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210917.log',515,1,137,343,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210917.log',515,1,142,367,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210917.log',515,1,148,394,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20210917.log',515,1,169,461,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',16,1,259,11,78),('usage_events_20210917.log',515,1,171,470,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210917.log',515,1,173,479,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210917.log',515,1,174,486,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210917.log',515,1,175,493,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20210917.log',515,1,176,500,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210917.log',515,1,187,539,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,88),('usage_events_20210917.log',515,1,188,545,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210917.log',515,1,190,556,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210917.log',515,1,203,589,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,94),('usage_events_20210917.log',515,1,205,606,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210917.log',515,1,206,615,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,97),('usage_events_20210917.log',515,1,208,630,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210917.log',515,1,210,644,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210917.log',515,1,215,687,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210917.log',515,1,216,688,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,14,104),('usage_events_20210917.log',515,1,218,689,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210917.log',515,1,219,690,'20210917','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210917.log',1048585,1,5,5,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210917.log',1048585,1,21,21,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210917.log',1048585,1,22,22,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210917.log',1048585,1,34,34,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210917.log',1048585,1,46,46,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210917.log',1048585,1,49,49,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210917.log',1048585,1,50,50,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210917.log',1048585,1,53,53,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,4,NULL),('usage_events_20210917.log',1048585,1,54,54,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210917.log',1048585,1,58,58,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210917.log',1048585,1,59,59,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210917.log',1048585,1,78,78,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',10,1,259,7,NULL),('usage_events_20210917.log',1048585,1,137,137,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210917.log',1048585,1,148,148,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210917.log',1048585,1,149,149,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210917.log',1048585,1,152,152,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210917.log',1048585,1,169,169,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210917.log',1048585,1,171,171,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210917.log',1048585,1,173,173,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210917.log',1048585,1,175,175,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210917.log',1048585,1,176,176,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210917.log',1048585,1,177,177,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210917.log',1048585,1,187,187,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210917.log',1048585,1,190,190,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210917.log',1048585,1,191,191,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210917.log',1048585,1,203,203,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210917.log',1048585,1,206,206,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210917.log',1048585,1,207,207,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210917.log',1048585,1,210,210,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210917.log',1048585,1,215,215,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210917.log',1048585,1,216,216,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210917.log',1048585,1,218,218,'20210917','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20210918.log',256,1,NULL,1,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20210918.log',515,1,8,33,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210918.log',515,1,33,81,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210918.log',515,1,49,116,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210918.log',515,1,56,135,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210918.log',515,1,57,136,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20210918.log',515,1,58,137,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210918.log',515,1,81,283,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210918.log',515,1,82,284,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210918.log',515,1,78,288,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210918.log',515,1,87,291,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210918.log',515,1,99,305,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210918.log',515,1,114,308,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210918.log',515,1,133,318,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210918.log',515,1,141,361,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210918.log',515,1,142,367,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,9,70),('usage_events_20210918.log',515,1,148,394,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20210918.log',515,1,150,407,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210918.log',515,1,171,470,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210918.log',515,1,173,479,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210918.log',515,1,175,493,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210918.log',515,1,177,507,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210918.log',515,1,178,514,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210918.log',515,1,186,533,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210918.log',515,1,187,539,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210918.log',515,1,193,569,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210918.log',515,1,204,597,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210918.log',515,1,205,606,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210918.log',515,1,206,615,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210918.log',515,1,207,622,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210918.log',515,1,208,630,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210918.log',515,1,218,689,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,105),('usage_events_20210918.log',515,1,219,690,'20210918','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,106),('usage_events_20210918.log',1048585,1,7,7,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210918.log',1048585,1,33,33,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210918.log',1048585,1,49,49,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210918.log',1048585,1,56,56,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210918.log',1048585,1,57,57,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210918.log',1048585,1,58,58,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210918.log',1048585,1,78,78,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,7,NULL),('usage_events_20210918.log',1048585,1,81,81,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210918.log',1048585,1,114,114,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210918.log',1048585,1,133,133,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210918.log',1048585,1,141,141,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210918.log',1048585,1,148,148,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210918.log',1048585,1,150,150,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210918.log',1048585,1,151,151,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210918.log',1048585,1,206,206,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210918.log',1048585,1,207,207,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210918.log',1048585,1,218,218,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210918.log',1048585,1,219,219,'20210918','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210919.log',256,1,NULL,1,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,1,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,2,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,3,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,4,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,5,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,6,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,7,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,8,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,9,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,10,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,11,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,12,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,13,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210919.log',259,1,NULL,14,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210919.log',515,1,1,3,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210919.log',515,1,51,118,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210919.log',515,1,52,119,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210919.log',515,1,53,120,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210919.log',515,1,56,135,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,31),('usage_events_20210919.log',515,1,58,137,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20210919.log',515,1,79,282,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,43),('usage_events_20210919.log',515,1,81,283,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210919.log',515,1,82,284,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210919.log',515,1,78,288,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210919.log',515,1,87,291,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210919.log',515,1,89,293,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20210919.log',515,1,115,309,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210919.log',515,1,135,330,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210919.log',515,1,148,394,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210919.log',515,1,169,461,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210919.log',515,1,171,470,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,79),('usage_events_20210919.log',515,1,174,486,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20210919.log',515,1,175,493,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210919.log',515,1,176,500,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210919.log',515,1,177,507,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,84),('usage_events_20210919.log',515,1,185,527,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,86),('usage_events_20210919.log',515,1,186,533,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210919.log',515,1,187,539,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210919.log',515,1,190,556,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210919.log',515,1,193,569,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210919.log',515,1,205,606,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210919.log',515,1,206,615,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20210919.log',515,1,207,622,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,98),('usage_events_20210919.log',515,1,218,689,'20210919','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,14,105),('usage_events_20210919.log',1048585,1,1,1,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210919.log',1048585,1,4,4,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210919.log',1048585,1,5,5,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210919.log',1048585,1,6,6,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210919.log',1048585,1,7,7,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210919.log',1048585,1,8,8,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210919.log',1048585,1,14,14,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210919.log',1048585,1,19,19,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210919.log',1048585,1,20,20,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210919.log',1048585,1,21,21,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210919.log',1048585,1,22,22,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210919.log',1048585,1,40,40,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210919.log',1048585,1,56,56,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210919.log',1048585,1,58,58,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,5,NULL),('usage_events_20210919.log',1048585,1,78,78,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210919.log',1048585,1,87,87,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210919.log',1048585,1,89,89,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210919.log',1048585,1,90,90,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210919.log',1048585,1,133,133,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210919.log',1048585,1,135,135,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210919.log',1048585,1,147,147,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210919.log',1048585,1,148,148,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210919.log',1048585,1,152,152,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210919.log',1048585,1,169,169,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210919.log',1048585,1,171,171,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210919.log',1048585,1,173,173,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210919.log',1048585,1,177,177,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210919.log',1048585,1,190,190,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210919.log',1048585,1,193,193,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210919.log',1048585,1,204,204,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210919.log',1048585,1,206,206,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210919.log',1048585,1,207,207,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210919.log',1048585,1,214,214,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210919.log',1048585,1,215,215,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210919.log',1048585,1,216,216,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210919.log',1048585,1,218,218,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210919.log',1048585,1,219,219,'20210919','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210920.log',256,1,NULL,1,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210920.log',259,1,NULL,7,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210920.log',259,1,NULL,13,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210920.log',515,1,31,79,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20210920.log',515,1,35,83,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,20),('usage_events_20210920.log',515,1,49,116,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210920.log',515,1,58,137,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210920.log',515,1,59,138,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210920.log',515,1,82,284,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210920.log',515,1,78,288,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210920.log',515,1,114,308,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20210920.log',515,1,125,310,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,62),('usage_events_20210920.log',515,1,134,324,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20210920.log',515,1,141,361,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210920.log',515,1,147,387,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210920.log',515,1,148,394,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210920.log',515,1,150,407,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20210920.log',515,1,152,423,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210920.log',515,1,169,461,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210920.log',515,1,171,470,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20210920.log',515,1,175,493,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210920.log',515,1,177,507,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210920.log',515,1,178,514,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210920.log',515,1,187,539,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210920.log',515,1,190,556,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210920.log',515,1,191,563,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,92),('usage_events_20210920.log',515,1,203,589,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210920.log',515,1,204,597,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210920.log',515,1,205,606,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210920.log',515,1,206,615,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',21,1,259,13,97),('usage_events_20210920.log',515,1,207,622,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210920.log',515,1,208,630,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210920.log',515,1,214,686,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210920.log',515,1,216,688,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210920.log',515,1,218,689,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,105),('usage_events_20210920.log',515,1,219,690,'20210920','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210920.log',1048585,1,31,31,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20210920.log',1048585,1,78,78,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210920.log',1048585,1,99,99,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210920.log',1048585,1,125,125,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210920.log',1048585,1,134,134,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210920.log',1048585,1,148,148,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210920.log',1048585,1,171,171,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210920.log',1048585,1,190,190,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210920.log',1048585,1,191,191,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,12,NULL),('usage_events_20210920.log',1048585,1,203,203,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210920.log',1048585,1,204,204,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210920.log',1048585,1,206,206,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',15,1,259,13,NULL),('usage_events_20210920.log',1048585,1,207,207,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210920.log',1048585,1,209,209,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210920.log',1048585,1,216,216,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210920.log',1048585,1,219,219,'20210920','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210921.log',256,1,NULL,1,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',12,NULL,NULL,NULL,NULL),('usage_events_20210921.log',259,1,NULL,6,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210921.log',515,1,49,116,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,24),('usage_events_20210921.log',515,1,51,118,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210921.log',515,1,55,134,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,30),('usage_events_20210921.log',515,1,58,137,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,5,33),('usage_events_20210921.log',515,1,82,284,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,45),('usage_events_20210921.log',515,1,77,287,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,48),('usage_events_20210921.log',515,1,78,288,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210921.log',515,1,91,295,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,56),('usage_events_20210921.log',515,1,115,309,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210921.log',515,1,125,310,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210921.log',515,1,148,394,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210921.log',515,1,149,401,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210921.log',515,1,150,407,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210921.log',515,1,152,423,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210921.log',515,1,169,461,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210921.log',515,1,171,470,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210921.log',515,1,174,486,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,81),('usage_events_20210921.log',515,1,175,493,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210921.log',515,1,176,500,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,83),('usage_events_20210921.log',515,1,186,533,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20210921.log',515,1,187,539,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,88),('usage_events_20210921.log',515,1,190,556,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210921.log',515,1,191,563,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210921.log',515,1,193,569,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210921.log',515,1,205,606,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210921.log',515,1,206,615,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',17,1,259,13,97),('usage_events_20210921.log',515,1,207,622,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210921.log',515,1,208,630,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210921.log',515,1,209,637,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210921.log',515,1,210,644,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,101),('usage_events_20210921.log',515,1,215,687,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20210921.log',515,1,218,689,'20210921','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,14,105),('usage_events_20210921.log',1048585,1,49,49,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210921.log',1048585,1,51,51,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210921.log',1048585,1,53,53,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210921.log',1048585,1,77,77,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210921.log',1048585,1,78,78,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210921.log',1048585,1,91,91,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210921.log',1048585,1,100,100,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210921.log',1048585,1,115,115,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210921.log',1048585,1,142,142,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210921.log',1048585,1,150,150,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210921.log',1048585,1,152,152,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210921.log',1048585,1,169,169,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20210921.log',1048585,1,171,171,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210921.log',1048585,1,173,173,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210921.log',1048585,1,174,174,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210921.log',1048585,1,175,175,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210921.log',1048585,1,176,176,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210921.log',1048585,1,186,186,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210921.log',1048585,1,187,187,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210921.log',1048585,1,190,190,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210921.log',1048585,1,191,191,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210921.log',1048585,1,193,193,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210921.log',1048585,1,205,205,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210921.log',1048585,1,206,206,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,13,NULL),('usage_events_20210921.log',1048585,1,207,207,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210921.log',1048585,1,208,208,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210921.log',1048585,1,209,209,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210921.log',1048585,1,216,216,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210921.log',1048585,1,218,218,'20210921','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210922.log',256,1,NULL,1,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',18,NULL,NULL,NULL,NULL),('usage_events_20210922.log',515,1,7,32,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,6),('usage_events_20210922.log',515,1,8,33,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20210922.log',515,1,19,52,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210922.log',515,1,49,116,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20210922.log',515,1,51,118,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20210922.log',515,1,79,282,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210922.log',515,1,82,284,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20210922.log',515,1,83,285,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210922.log',515,1,78,288,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20210922.log',515,1,84,289,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,50),('usage_events_20210922.log',515,1,86,290,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210922.log',515,1,91,295,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210922.log',515,1,99,305,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,8,57),('usage_events_20210922.log',515,1,100,306,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210922.log',515,1,139,351,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20210922.log',515,1,141,361,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20210922.log',515,1,142,367,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210922.log',515,1,146,379,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210922.log',515,1,147,387,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210922.log',515,1,148,394,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',14,1,259,10,73),('usage_events_20210922.log',515,1,149,401,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210922.log',515,1,169,461,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20210922.log',515,1,171,470,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,79),('usage_events_20210922.log',515,1,173,479,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,80),('usage_events_20210922.log',515,1,174,486,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,81),('usage_events_20210922.log',515,1,175,493,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210922.log',515,1,177,507,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210922.log',515,1,178,514,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210922.log',515,1,187,539,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20210922.log',515,1,189,551,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210922.log',515,1,190,556,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20210922.log',515,1,203,589,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210922.log',515,1,205,606,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,96),('usage_events_20210922.log',515,1,206,615,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,97),('usage_events_20210922.log',515,1,207,622,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210922.log',515,1,214,686,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210922.log',515,1,218,689,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,14,105),('usage_events_20210922.log',515,1,219,690,'20210922','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,14,106),('usage_events_20210922.log',1048585,1,8,8,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210922.log',1048585,1,78,78,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210922.log',1048585,1,79,79,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210922.log',1048585,1,83,83,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210922.log',1048585,1,84,84,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210922.log',1048585,1,86,86,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210922.log',1048585,1,87,87,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210922.log',1048585,1,100,100,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210922.log',1048585,1,115,115,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210922.log',1048585,1,141,141,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210922.log',1048585,1,142,142,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210922.log',1048585,1,146,146,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210922.log',1048585,1,147,147,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210922.log',1048585,1,148,148,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,10,NULL),('usage_events_20210922.log',1048585,1,149,149,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210922.log',1048585,1,169,169,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210922.log',1048585,1,171,171,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210922.log',1048585,1,173,173,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210922.log',1048585,1,174,174,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210922.log',1048585,1,175,175,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210922.log',1048585,1,178,178,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210922.log',1048585,1,193,193,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210922.log',1048585,1,203,203,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210922.log',1048585,1,205,205,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210922.log',1048585,1,206,206,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210922.log',1048585,1,207,207,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210922.log',1048585,1,219,219,'20210922','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,14,NULL),('usage_events_20210923.log',256,1,NULL,1,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210923.log',259,1,NULL,1,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210923.log',259,1,NULL,2,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210923.log',259,1,NULL,4,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210923.log',259,1,NULL,7,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210923.log',259,1,NULL,11,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210923.log',259,1,NULL,13,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210923.log',259,1,NULL,14,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,NULL,NULL,NULL,NULL),('usage_events_20210923.log',515,1,5,30,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210923.log',515,1,8,33,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210923.log',515,1,33,81,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20210923.log',515,1,46,114,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20210923.log',515,1,49,116,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210923.log',515,1,51,118,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210923.log',515,1,58,137,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210923.log',515,1,59,138,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210923.log',515,1,81,283,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,44),('usage_events_20210923.log',515,1,82,284,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,45),('usage_events_20210923.log',515,1,76,286,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,47),('usage_events_20210923.log',515,1,78,288,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,7,49),('usage_events_20210923.log',515,1,84,289,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210923.log',515,1,87,291,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210923.log',515,1,89,293,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20210923.log',515,1,114,308,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20210923.log',515,1,136,336,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20210923.log',515,1,137,343,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20210923.log',515,1,141,361,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,69),('usage_events_20210923.log',515,1,149,401,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,74),('usage_events_20210923.log',515,1,150,407,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,75),('usage_events_20210923.log',515,1,151,414,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210923.log',515,1,152,423,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210923.log',515,1,169,461,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20210923.log',515,1,171,470,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210923.log',515,1,174,486,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210923.log',515,1,175,493,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210923.log',515,1,177,507,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,84),('usage_events_20210923.log',515,1,178,514,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,85),('usage_events_20210923.log',515,1,187,539,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210923.log',515,1,188,545,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210923.log',515,1,189,551,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210923.log',515,1,190,556,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20210923.log',515,1,205,606,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210923.log',515,1,206,615,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',14,1,259,13,97),('usage_events_20210923.log',515,1,207,622,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210923.log',515,1,208,630,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210923.log',515,1,216,688,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210923.log',515,1,218,689,'20210923','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,14,105),('usage_events_20210923.log',1048585,1,4,4,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210923.log',1048585,1,5,5,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210923.log',1048585,1,6,6,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210923.log',1048585,1,8,8,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210923.log',1048585,1,19,19,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210923.log',1048585,1,33,33,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210923.log',1048585,1,58,58,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210923.log',1048585,1,76,76,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210923.log',1048585,1,78,78,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20210923.log',1048585,1,87,87,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210923.log',1048585,1,89,89,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210923.log',1048585,1,136,136,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210923.log',1048585,1,137,137,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210923.log',1048585,1,141,141,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210923.log',1048585,1,149,149,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210923.log',1048585,1,150,150,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210923.log',1048585,1,151,151,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210923.log',1048585,1,152,152,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210923.log',1048585,1,169,169,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210923.log',1048585,1,171,171,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210923.log',1048585,1,173,173,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210923.log',1048585,1,175,175,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210923.log',1048585,1,177,177,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210923.log',1048585,1,178,178,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210923.log',1048585,1,188,188,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210923.log',1048585,1,190,190,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210923.log',1048585,1,193,193,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210923.log',1048585,1,206,206,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210923.log',1048585,1,207,207,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210923.log',1048585,1,216,216,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210923.log',1048585,1,218,218,'20210923','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20210924.log',256,1,NULL,1,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',19,NULL,NULL,NULL,NULL),('usage_events_20210924.log',259,1,NULL,9,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210924.log',259,1,NULL,13,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210924.log',259,1,NULL,14,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210924.log',515,1,1,3,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210924.log',515,1,8,33,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,7),('usage_events_20210924.log',515,1,19,52,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210924.log',515,1,47,115,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210924.log',515,1,51,118,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210924.log',515,1,79,282,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,43),('usage_events_20210924.log',515,1,82,284,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,6,45),('usage_events_20210924.log',515,1,76,286,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,47),('usage_events_20210924.log',515,1,78,288,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210924.log',515,1,91,295,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,56),('usage_events_20210924.log',515,1,99,305,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210924.log',515,1,114,308,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210924.log',515,1,125,310,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20210924.log',515,1,134,324,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210924.log',515,1,135,330,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,65),('usage_events_20210924.log',515,1,148,394,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210924.log',515,1,149,401,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20210924.log',515,1,169,461,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210924.log',515,1,171,470,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20210924.log',515,1,173,479,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210924.log',515,1,175,493,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210924.log',515,1,176,500,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210924.log',515,1,178,514,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210924.log',515,1,185,527,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210924.log',515,1,186,533,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210924.log',515,1,187,539,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20210924.log',515,1,189,551,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210924.log',515,1,190,556,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20210924.log',515,1,204,597,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210924.log',515,1,205,606,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210924.log',515,1,206,615,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210924.log',515,1,207,622,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20210924.log',515,1,208,630,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210924.log',515,1,218,689,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,105),('usage_events_20210924.log',515,1,219,690,'20210924','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,106),('usage_events_20210924.log',1048585,1,6,6,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210924.log',1048585,1,49,49,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210924.log',1048585,1,54,54,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210924.log',1048585,1,55,55,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210924.log',1048585,1,56,56,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210924.log',1048585,1,57,57,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210924.log',1048585,1,59,59,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210924.log',1048585,1,76,76,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20210924.log',1048585,1,78,78,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210924.log',1048585,1,79,79,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210924.log',1048585,1,81,81,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210924.log',1048585,1,82,82,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210924.log',1048585,1,85,85,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210924.log',1048585,1,86,86,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210924.log',1048585,1,87,87,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210924.log',1048585,1,88,88,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210924.log',1048585,1,89,89,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210924.log',1048585,1,90,90,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210924.log',1048585,1,91,91,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210924.log',1048585,1,114,114,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210924.log',1048585,1,125,125,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210924.log',1048585,1,133,133,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210924.log',1048585,1,134,134,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210924.log',1048585,1,135,135,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210924.log',1048585,1,136,136,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210924.log',1048585,1,137,137,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210924.log',1048585,1,141,141,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210924.log',1048585,1,142,142,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210924.log',1048585,1,146,146,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210924.log',1048585,1,147,147,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210924.log',1048585,1,148,148,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210924.log',1048585,1,149,149,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210924.log',1048585,1,150,150,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210924.log',1048585,1,151,151,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210924.log',1048585,1,152,152,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210924.log',1048585,1,169,169,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210924.log',1048585,1,173,173,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210924.log',1048585,1,187,187,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210924.log',1048585,1,190,190,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210924.log',1048585,1,206,206,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210924.log',1048585,1,207,207,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210924.log',1048585,1,218,218,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210924.log',1048585,1,219,219,'20210924','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210925.log',256,1,NULL,1,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,1,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,2,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,3,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,4,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,5,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,6,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,7,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,8,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,9,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,10,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,11,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,12,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,13,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210925.log',259,1,NULL,14,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210925.log',515,1,1,3,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210925.log',515,1,4,19,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210925.log',515,1,5,30,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20210925.log',515,1,53,120,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210925.log',515,1,55,134,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,5,30),('usage_events_20210925.log',515,1,81,283,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20210925.log',515,1,82,284,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,6,45),('usage_events_20210925.log',515,1,78,288,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20210925.log',515,1,86,290,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210925.log',515,1,87,291,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,52),('usage_events_20210925.log',515,1,91,295,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,56),('usage_events_20210925.log',515,1,99,305,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,57),('usage_events_20210925.log',515,1,100,306,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20210925.log',515,1,114,308,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210925.log',515,1,115,309,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20210925.log',515,1,133,318,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210925.log',515,1,134,324,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210925.log',515,1,137,343,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20210925.log',515,1,142,367,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210925.log',515,1,148,394,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210925.log',515,1,152,423,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210925.log',515,1,169,461,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210925.log',515,1,171,470,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210925.log',515,1,174,486,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20210925.log',515,1,185,527,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210925.log',515,1,186,533,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210925.log',515,1,189,551,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210925.log',515,1,191,563,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20210925.log',515,1,204,597,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210925.log',515,1,205,606,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210925.log',515,1,206,615,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,97),('usage_events_20210925.log',515,1,207,622,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210925.log',515,1,209,637,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210925.log',515,1,214,686,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,102),('usage_events_20210925.log',515,1,216,688,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210925.log',515,1,218,689,'20210925','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,14,105),('usage_events_20210925.log',1048585,1,1,1,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210925.log',1048585,1,4,4,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210925.log',1048585,1,5,5,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210925.log',1048585,1,6,6,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210925.log',1048585,1,7,7,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210925.log',1048585,1,8,8,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210925.log',1048585,1,14,14,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210925.log',1048585,1,19,19,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210925.log',1048585,1,20,20,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210925.log',1048585,1,21,21,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210925.log',1048585,1,22,22,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210925.log',1048585,1,34,34,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20210925.log',1048585,1,40,40,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210925.log',1048585,1,49,49,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210925.log',1048585,1,53,53,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210925.log',1048585,1,87,87,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210925.log',1048585,1,91,91,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210925.log',1048585,1,99,99,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210925.log',1048585,1,100,100,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20210925.log',1048585,1,114,114,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210925.log',1048585,1,134,134,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210925.log',1048585,1,141,141,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210925.log',1048585,1,150,150,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210925.log',1048585,1,152,152,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210925.log',1048585,1,169,169,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210925.log',1048585,1,171,171,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210925.log',1048585,1,173,173,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210925.log',1048585,1,176,176,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210925.log',1048585,1,187,187,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210925.log',1048585,1,191,191,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210925.log',1048585,1,205,205,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210925.log',1048585,1,206,206,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210925.log',1048585,1,207,207,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210925.log',1048585,1,210,210,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210925.log',1048585,1,214,214,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210925.log',1048585,1,215,215,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210925.log',1048585,1,216,216,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20210925.log',1048585,1,218,218,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20210925.log',1048585,1,219,219,'20210925','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210926.log',256,1,NULL,1,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',47,NULL,NULL,NULL,NULL),('usage_events_20210926.log',259,1,NULL,10,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210926.log',515,1,49,116,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,24),('usage_events_20210926.log',515,1,82,284,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210926.log',515,1,83,285,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,6,46),('usage_events_20210926.log',515,1,78,288,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210926.log',515,1,86,290,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210926.log',515,1,87,291,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210926.log',515,1,139,351,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210926.log',515,1,142,367,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210926.log',515,1,146,379,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,71),('usage_events_20210926.log',515,1,148,394,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,10,73),('usage_events_20210926.log',515,1,169,461,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20210926.log',515,1,171,470,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,79),('usage_events_20210926.log',515,1,173,479,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20210926.log',515,1,174,486,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,81),('usage_events_20210926.log',515,1,175,493,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,82),('usage_events_20210926.log',515,1,176,500,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20210926.log',515,1,177,507,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210926.log',515,1,190,556,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,91),('usage_events_20210926.log',515,1,191,563,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210926.log',515,1,193,569,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20210926.log',515,1,203,589,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210926.log',515,1,205,606,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20210926.log',515,1,206,615,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210926.log',515,1,208,630,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210926.log',515,1,209,637,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20210926.log',515,1,216,688,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210926.log',515,1,218,689,'20210926','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,105),('usage_events_20210926.log',1048585,1,49,49,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210926.log',1048585,1,51,51,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210926.log',1048585,1,78,78,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20210926.log',1048585,1,83,83,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210926.log',1048585,1,87,87,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210926.log',1048585,1,139,139,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210926.log',1048585,1,142,142,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20210926.log',1048585,1,148,148,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,10,NULL),('usage_events_20210926.log',1048585,1,169,169,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210926.log',1048585,1,171,171,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210926.log',1048585,1,173,173,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210926.log',1048585,1,174,174,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210926.log',1048585,1,175,175,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210926.log',1048585,1,176,176,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210926.log',1048585,1,190,190,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210926.log',1048585,1,191,191,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210926.log',1048585,1,193,193,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20210926.log',1048585,1,205,205,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210926.log',1048585,1,206,206,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20210926.log',1048585,1,207,207,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210926.log',1048585,1,209,209,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210926.log',1048585,1,210,210,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210926.log',1048585,1,218,218,'20210926','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210927.log',256,1,NULL,1,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',13,NULL,NULL,NULL,NULL),('usage_events_20210927.log',259,1,NULL,13,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210927.log',259,1,NULL,14,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210927.log',515,1,51,118,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,26),('usage_events_20210927.log',515,1,53,120,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,28),('usage_events_20210927.log',515,1,54,133,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20210927.log',515,1,56,135,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210927.log',515,1,58,137,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210927.log',515,1,59,138,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210927.log',515,1,85,281,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210927.log',515,1,82,284,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,45),('usage_events_20210927.log',515,1,83,285,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210927.log',515,1,77,287,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,48),('usage_events_20210927.log',515,1,78,288,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210927.log',515,1,86,290,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20210927.log',515,1,87,291,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20210927.log',515,1,99,305,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20210927.log',515,1,100,306,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,58),('usage_events_20210927.log',515,1,114,308,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20210927.log',515,1,134,324,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20210927.log',515,1,139,351,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210927.log',515,1,142,367,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210927.log',515,1,146,379,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20210927.log',515,1,148,394,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20210927.log',515,1,151,414,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210927.log',515,1,169,461,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210927.log',515,1,171,470,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20210927.log',515,1,175,493,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20210927.log',515,1,178,514,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20210927.log',515,1,185,527,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20210927.log',515,1,187,539,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,88),('usage_events_20210927.log',515,1,188,545,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20210927.log',515,1,189,551,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210927.log',515,1,190,556,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20210927.log',515,1,193,569,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210927.log',515,1,203,589,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,94),('usage_events_20210927.log',515,1,205,606,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,96),('usage_events_20210927.log',515,1,206,615,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',10,1,259,13,97),('usage_events_20210927.log',515,1,207,622,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20210927.log',515,1,208,630,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210927.log',515,1,209,637,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,100),('usage_events_20210927.log',515,1,210,644,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210927.log',515,1,214,686,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20210927.log',515,1,216,688,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,104),('usage_events_20210927.log',515,1,218,689,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',10,1,259,14,105),('usage_events_20210927.log',515,1,219,690,'20210927','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20210927.log',1048585,1,51,51,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210927.log',1048585,1,53,53,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20210927.log',1048585,1,54,54,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210927.log',1048585,1,56,56,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210927.log',1048585,1,58,58,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210927.log',1048585,1,78,78,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210927.log',1048585,1,82,82,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20210927.log',1048585,1,83,83,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210927.log',1048585,1,85,85,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210927.log',1048585,1,86,86,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210927.log',1048585,1,87,87,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210927.log',1048585,1,100,100,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210927.log',1048585,1,114,114,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,8,NULL),('usage_events_20210927.log',1048585,1,139,139,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210927.log',1048585,1,146,146,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210927.log',1048585,1,151,151,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210927.log',1048585,1,152,152,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210927.log',1048585,1,169,169,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210927.log',1048585,1,171,171,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210927.log',1048585,1,175,175,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,11,NULL),('usage_events_20210927.log',1048585,1,176,176,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210927.log',1048585,1,177,177,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210927.log',1048585,1,178,178,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210927.log',1048585,1,190,190,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210927.log',1048585,1,191,191,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210927.log',1048585,1,193,193,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210927.log',1048585,1,203,203,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210927.log',1048585,1,206,206,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210927.log',1048585,1,207,207,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210927.log',1048585,1,208,208,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210927.log',1048585,1,209,209,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20210927.log',1048585,1,216,216,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210927.log',1048585,1,218,218,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210927.log',1048585,1,219,219,'20210927','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210928.log',256,1,NULL,1,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',15,NULL,NULL,NULL,NULL),('usage_events_20210928.log',259,1,NULL,7,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210928.log',515,1,4,19,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210928.log',515,1,19,52,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20210928.log',515,1,20,53,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20210928.log',515,1,40,94,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20210928.log',515,1,47,115,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20210928.log',515,1,54,133,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,29),('usage_events_20210928.log',515,1,56,135,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210928.log',515,1,58,137,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20210928.log',515,1,85,281,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20210928.log',515,1,82,284,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210928.log',515,1,83,285,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20210928.log',515,1,78,288,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20210928.log',515,1,84,289,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20210928.log',515,1,87,291,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210928.log',515,1,99,305,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210928.log',515,1,114,308,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,60),('usage_events_20210928.log',515,1,133,318,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210928.log',515,1,137,343,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,67),('usage_events_20210928.log',515,1,142,367,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20210928.log',515,1,148,394,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210928.log',515,1,151,414,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20210928.log',515,1,152,423,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20210928.log',515,1,169,461,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20210928.log',515,1,171,470,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210928.log',515,1,173,479,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20210928.log',515,1,176,500,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210928.log',515,1,177,507,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20210928.log',515,1,178,514,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20210928.log',515,1,189,551,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20210928.log',515,1,190,556,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,91),('usage_events_20210928.log',515,1,193,569,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,93),('usage_events_20210928.log',515,1,205,606,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20210928.log',515,1,206,615,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',14,1,259,13,97),('usage_events_20210928.log',515,1,207,622,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,98),('usage_events_20210928.log',515,1,208,630,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',9,1,259,13,99),('usage_events_20210928.log',515,1,216,688,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20210928.log',515,1,218,689,'20210928','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,14,105),('usage_events_20210928.log',1048585,1,4,4,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20210928.log',1048585,1,6,6,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210928.log',1048585,1,20,20,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210928.log',1048585,1,40,40,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210928.log',1048585,1,54,54,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210928.log',1048585,1,56,56,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210928.log',1048585,1,57,57,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,5,NULL),('usage_events_20210928.log',1048585,1,78,78,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20210928.log',1048585,1,84,84,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210928.log',1048585,1,87,87,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210928.log',1048585,1,114,114,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,8,NULL),('usage_events_20210928.log',1048585,1,133,133,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210928.log',1048585,1,137,137,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210928.log',1048585,1,151,151,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20210928.log',1048585,1,169,169,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210928.log',1048585,1,171,171,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210928.log',1048585,1,173,173,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210928.log',1048585,1,176,176,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,11,NULL),('usage_events_20210928.log',1048585,1,177,177,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210928.log',1048585,1,178,178,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210928.log',1048585,1,186,186,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210928.log',1048585,1,190,190,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,12,NULL),('usage_events_20210928.log',1048585,1,193,193,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210928.log',1048585,1,204,204,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210928.log',1048585,1,206,206,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210928.log',1048585,1,207,207,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,13,NULL),('usage_events_20210928.log',1048585,1,208,208,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20210928.log',1048585,1,218,218,'20210928','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20210929.log',256,1,NULL,1,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,1,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,2,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,3,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,4,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,5,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,6,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,7,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,8,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,9,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,10,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,11,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,12,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,13,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210929.log',259,1,NULL,14,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20210929.log',515,1,1,3,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20210929.log',515,1,53,120,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20210929.log',515,1,56,135,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20210929.log',515,1,59,138,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20210929.log',515,1,79,282,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210929.log',515,1,82,284,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20210929.log',515,1,78,288,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,49),('usage_events_20210929.log',515,1,84,289,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20210929.log',515,1,86,290,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,51),('usage_events_20210929.log',515,1,87,291,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20210929.log',515,1,99,305,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210929.log',515,1,133,318,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,63),('usage_events_20210929.log',515,1,136,336,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,9,66),('usage_events_20210929.log',515,1,142,367,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20210929.log',515,1,147,387,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20210929.log',515,1,148,394,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20210929.log',515,1,152,423,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,77),('usage_events_20210929.log',515,1,169,461,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,78),('usage_events_20210929.log',515,1,171,470,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20210929.log',515,1,173,479,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',13,1,259,11,80),('usage_events_20210929.log',515,1,174,486,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210929.log',515,1,175,493,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20210929.log',515,1,178,514,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210929.log',515,1,187,539,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,88),('usage_events_20210929.log',515,1,190,556,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210929.log',515,1,191,563,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20210929.log',515,1,203,589,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210929.log',515,1,204,597,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210929.log',515,1,205,606,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,96),('usage_events_20210929.log',515,1,206,615,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20210929.log',515,1,207,622,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,98),('usage_events_20210929.log',515,1,208,630,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20210929.log',515,1,209,637,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20210929.log',515,1,210,644,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20210929.log',515,1,216,688,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,104),('usage_events_20210929.log',515,1,218,689,'20210929','202109',2,NULL,NULL,NULL,'ojs::counter',11,1,259,14,105),('usage_events_20210929.log',1048585,1,1,1,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210929.log',1048585,1,4,4,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210929.log',1048585,1,5,5,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210929.log',1048585,1,6,6,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210929.log',1048585,1,7,7,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210929.log',1048585,1,8,8,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210929.log',1048585,1,14,14,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210929.log',1048585,1,19,19,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210929.log',1048585,1,20,20,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210929.log',1048585,1,21,21,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210929.log',1048585,1,22,22,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20210929.log',1048585,1,40,40,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20210929.log',1048585,1,47,47,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20210929.log',1048585,1,53,53,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20210929.log',1048585,1,54,54,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210929.log',1048585,1,57,57,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210929.log',1048585,1,58,58,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210929.log',1048585,1,78,78,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20210929.log',1048585,1,79,79,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210929.log',1048585,1,83,83,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210929.log',1048585,1,86,86,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210929.log',1048585,1,87,87,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210929.log',1048585,1,99,99,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210929.log',1048585,1,133,133,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210929.log',1048585,1,136,136,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20210929.log',1048585,1,142,142,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20210929.log',1048585,1,150,150,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20210929.log',1048585,1,151,151,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20210929.log',1048585,1,152,152,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210929.log',1048585,1,169,169,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20210929.log',1048585,1,171,171,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210929.log',1048585,1,173,173,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20210929.log',1048585,1,175,175,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20210929.log',1048585,1,176,176,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210929.log',1048585,1,178,178,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210929.log',1048585,1,190,190,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20210929.log',1048585,1,207,207,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20210929.log',1048585,1,214,214,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210929.log',1048585,1,215,215,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210929.log',1048585,1,216,216,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20210929.log',1048585,1,218,218,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20210929.log',1048585,1,219,219,'20210929','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210930.log',256,1,NULL,1,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20210930.log',259,1,NULL,11,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20210930.log',259,1,NULL,14,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,NULL,NULL,NULL,NULL),('usage_events_20210930.log',515,1,4,19,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20210930.log',515,1,32,80,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20210930.log',515,1,49,116,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20210930.log',515,1,52,119,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20210930.log',515,1,58,137,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20210930.log',515,1,79,282,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20210930.log',515,1,81,283,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,6,44),('usage_events_20210930.log',515,1,82,284,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20210930.log',515,1,76,286,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20210930.log',515,1,78,288,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20210930.log',515,1,87,291,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,52),('usage_events_20210930.log',515,1,91,295,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,56),('usage_events_20210930.log',515,1,99,305,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20210930.log',515,1,133,318,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,63),('usage_events_20210930.log',515,1,134,324,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,64),('usage_events_20210930.log',515,1,135,330,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20210930.log',515,1,136,336,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20210930.log',515,1,137,343,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20210930.log',515,1,139,351,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20210930.log',515,1,141,361,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,69),('usage_events_20210930.log',515,1,142,367,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20210930.log',515,1,146,379,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,71),('usage_events_20210930.log',515,1,147,387,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20210930.log',515,1,148,394,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20210930.log',515,1,149,401,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20210930.log',515,1,150,407,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20210930.log',515,1,151,414,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,76),('usage_events_20210930.log',515,1,152,423,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,77),('usage_events_20210930.log',515,1,169,461,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,78),('usage_events_20210930.log',515,1,171,470,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,79),('usage_events_20210930.log',515,1,173,479,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,80),('usage_events_20210930.log',515,1,174,486,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,81),('usage_events_20210930.log',515,1,175,493,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20210930.log',515,1,176,500,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20210930.log',515,1,177,507,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20210930.log',515,1,178,514,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20210930.log',515,1,185,527,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20210930.log',515,1,186,533,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20210930.log',515,1,187,539,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',5,1,259,12,88),('usage_events_20210930.log',515,1,188,545,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,89),('usage_events_20210930.log',515,1,189,551,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,90),('usage_events_20210930.log',515,1,190,556,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20210930.log',515,1,191,563,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,92),('usage_events_20210930.log',515,1,193,569,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20210930.log',515,1,203,589,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20210930.log',515,1,204,597,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20210930.log',515,1,205,606,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20210930.log',515,1,206,615,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20210930.log',515,1,207,622,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,98),('usage_events_20210930.log',515,1,208,630,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20210930.log',515,1,209,637,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20210930.log',515,1,210,644,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20210930.log',515,1,216,688,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,104),('usage_events_20210930.log',515,1,218,689,'20210930','202109',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20210930.log',1048585,1,49,49,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,4,NULL),('usage_events_20210930.log',1048585,1,59,59,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20210930.log',1048585,1,78,78,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20210930.log',1048585,1,81,81,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20210930.log',1048585,1,87,87,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20210930.log',1048585,1,100,100,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210930.log',1048585,1,113,113,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20210930.log',1048585,1,134,134,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210930.log',1048585,1,137,137,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20210930.log',1048585,1,142,142,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',22,1,259,9,NULL),('usage_events_20210930.log',1048585,1,152,152,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20210930.log',1048585,1,171,171,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20210930.log',1048585,1,173,173,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20210930.log',1048585,1,175,175,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20210930.log',1048585,1,187,187,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20210930.log',1048585,1,190,190,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20210930.log',1048585,1,206,206,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20210930.log',1048585,1,207,207,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210930.log',1048585,1,210,210,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20210930.log',1048585,1,215,215,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20210930.log',1048585,1,216,216,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20210930.log',1048585,1,218,218,'20210930','202109',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,14,NULL),('usage_events_20211001.log',256,1,NULL,1,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',10,NULL,NULL,NULL,NULL),('usage_events_20211001.log',259,1,NULL,7,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211001.log',515,1,4,19,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,3),('usage_events_20211001.log',515,1,31,79,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20211001.log',515,1,32,80,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,17),('usage_events_20211001.log',515,1,49,116,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,24),('usage_events_20211001.log',515,1,53,120,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20211001.log',515,1,56,135,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,31),('usage_events_20211001.log',515,1,58,137,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,5,33),('usage_events_20211001.log',515,1,85,281,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20211001.log',515,1,82,284,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,45),('usage_events_20211001.log',515,1,83,285,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',28,1,259,6,46),('usage_events_20211001.log',515,1,78,288,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,7,49),('usage_events_20211001.log',515,1,87,291,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20211001.log',515,1,90,294,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20211001.log',515,1,114,308,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,8,60),('usage_events_20211001.log',515,1,115,309,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20211001.log',515,1,133,318,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,9,63),('usage_events_20211001.log',515,1,136,336,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20211001.log',515,1,137,343,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20211001.log',515,1,139,351,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20211001.log',515,1,142,367,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20211001.log',515,1,147,387,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,72),('usage_events_20211001.log',515,1,148,394,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20211001.log',515,1,149,401,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,74),('usage_events_20211001.log',515,1,151,414,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20211001.log',515,1,152,423,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20211001.log',515,1,169,461,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,78),('usage_events_20211001.log',515,1,171,470,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',11,1,259,11,79),('usage_events_20211001.log',515,1,174,486,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20211001.log',515,1,175,493,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20211001.log',515,1,176,500,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20211001.log',515,1,177,507,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,84),('usage_events_20211001.log',515,1,178,514,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,85),('usage_events_20211001.log',515,1,185,527,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20211001.log',515,1,186,533,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20211001.log',515,1,188,545,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,89),('usage_events_20211001.log',515,1,189,551,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20211001.log',515,1,190,556,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,12,91),('usage_events_20211001.log',515,1,191,563,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20211001.log',515,1,193,569,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',8,1,259,12,93),('usage_events_20211001.log',515,1,203,589,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,94),('usage_events_20211001.log',515,1,204,597,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20211001.log',515,1,205,606,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20211001.log',515,1,206,615,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,97),('usage_events_20211001.log',515,1,207,622,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20211001.log',515,1,208,630,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20211001.log',515,1,209,637,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20211001.log',515,1,210,644,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20211001.log',515,1,218,689,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,14,105),('usage_events_20211001.log',515,1,219,690,'20211001','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20211001.log',1048585,1,32,32,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20211001.log',1048585,1,49,49,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20211001.log',1048585,1,53,53,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20211001.log',1048585,1,56,56,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211001.log',1048585,1,78,78,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20211001.log',1048585,1,87,87,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211001.log',1048585,1,114,114,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,8,NULL),('usage_events_20211001.log',1048585,1,133,133,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211001.log',1048585,1,137,137,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20211001.log',1048585,1,147,147,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211001.log',1048585,1,149,149,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211001.log',1048585,1,152,152,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211001.log',1048585,1,169,169,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211001.log',1048585,1,171,171,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20211001.log',1048585,1,176,176,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211001.log',1048585,1,177,177,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20211001.log',1048585,1,178,178,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211001.log',1048585,1,186,186,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20211001.log',1048585,1,190,190,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20211001.log',1048585,1,191,191,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20211001.log',1048585,1,193,193,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20211001.log',1048585,1,203,203,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211001.log',1048585,1,206,206,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211001.log',1048585,1,207,207,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211001.log',1048585,1,208,208,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211001.log',1048585,1,216,216,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20211001.log',1048585,1,218,218,'20211001','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20211002.log',256,1,NULL,1,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,NULL,NULL,NULL,NULL),('usage_events_20211002.log',259,1,NULL,9,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211002.log',259,1,NULL,13,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20211002.log',259,1,NULL,14,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20211002.log',515,1,19,52,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,10),('usage_events_20211002.log',515,1,28,68,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,15),('usage_events_20211002.log',515,1,31,79,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20211002.log',515,1,32,80,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,3,17),('usage_events_20211002.log',515,1,34,82,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,19),('usage_events_20211002.log',515,1,40,94,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,21),('usage_events_20211002.log',515,1,46,114,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,22),('usage_events_20211002.log',515,1,53,120,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,4,28),('usage_events_20211002.log',515,1,79,282,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20211002.log',515,1,78,288,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20211002.log',515,1,84,289,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20211002.log',515,1,99,305,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20211002.log',515,1,114,308,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20211002.log',515,1,134,324,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20211002.log',515,1,135,330,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20211002.log',515,1,136,336,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20211002.log',515,1,137,343,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20211002.log',515,1,141,361,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20211002.log',515,1,142,367,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20211002.log',515,1,146,379,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20211002.log',515,1,147,387,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20211002.log',515,1,148,394,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,10,73),('usage_events_20211002.log',515,1,149,401,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20211002.log',515,1,150,407,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20211002.log',515,1,151,414,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20211002.log',515,1,169,461,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20211002.log',515,1,171,470,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,79),('usage_events_20211002.log',515,1,173,479,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20211002.log',515,1,174,486,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20211002.log',515,1,176,500,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20211002.log',515,1,177,507,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20211002.log',515,1,178,514,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20211002.log',515,1,185,527,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,86),('usage_events_20211002.log',515,1,186,533,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20211002.log',515,1,187,539,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20211002.log',515,1,189,551,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20211002.log',515,1,190,556,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20211002.log',515,1,191,563,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,92),('usage_events_20211002.log',515,1,193,569,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20211002.log',515,1,203,589,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20211002.log',515,1,204,597,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20211002.log',515,1,205,606,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20211002.log',515,1,206,615,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20211002.log',515,1,207,622,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20211002.log',515,1,208,630,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20211002.log',515,1,210,644,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20211002.log',515,1,214,686,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20211002.log',515,1,218,689,'20211002','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,105),('usage_events_20211002.log',1048585,1,28,28,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20211002.log',1048585,1,34,34,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20211002.log',1048585,1,46,46,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20211002.log',1048585,1,53,53,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20211002.log',1048585,1,54,54,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211002.log',1048585,1,55,55,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211002.log',1048585,1,56,56,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211002.log',1048585,1,57,57,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211002.log',1048585,1,59,59,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211002.log',1048585,1,78,78,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20211002.log',1048585,1,85,85,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211002.log',1048585,1,86,86,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211002.log',1048585,1,87,87,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211002.log',1048585,1,88,88,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211002.log',1048585,1,89,89,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211002.log',1048585,1,90,90,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211002.log',1048585,1,91,91,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211002.log',1048585,1,100,100,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20211002.log',1048585,1,114,114,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20211002.log',1048585,1,133,133,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211002.log',1048585,1,134,134,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211002.log',1048585,1,135,135,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211002.log',1048585,1,136,136,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211002.log',1048585,1,137,137,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20211002.log',1048585,1,141,141,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211002.log',1048585,1,142,142,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211002.log',1048585,1,146,146,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211002.log',1048585,1,147,147,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211002.log',1048585,1,148,148,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211002.log',1048585,1,149,149,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211002.log',1048585,1,150,150,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211002.log',1048585,1,151,151,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211002.log',1048585,1,152,152,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211002.log',1048585,1,169,169,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211002.log',1048585,1,173,173,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211002.log',1048585,1,177,177,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211002.log',1048585,1,191,191,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20211002.log',1048585,1,193,193,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,12,NULL),('usage_events_20211002.log',1048585,1,206,206,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211002.log',1048585,1,207,207,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211002.log',1048585,1,215,215,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,14,NULL),('usage_events_20211002.log',1048585,1,218,218,'20211002','202110',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20211003.log',256,1,NULL,1,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20211003.log',515,1,20,53,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,11),('usage_events_20211003.log',515,1,33,81,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20211003.log',515,1,49,116,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20211003.log',515,1,53,120,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,4,28),('usage_events_20211003.log',515,1,57,136,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,32),('usage_events_20211003.log',515,1,58,137,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20211003.log',515,1,59,138,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20211003.log',515,1,78,288,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,49),('usage_events_20211003.log',515,1,87,291,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20211003.log',515,1,89,293,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20211003.log',515,1,90,294,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,55),('usage_events_20211003.log',515,1,91,295,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20211003.log',515,1,100,306,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20211003.log',515,1,113,307,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20211003.log',515,1,114,308,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20211003.log',515,1,146,379,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20211003.log',515,1,148,394,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20211003.log',515,1,149,401,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20211003.log',515,1,152,423,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20211003.log',515,1,169,461,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,78),('usage_events_20211003.log',515,1,171,470,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20211003.log',515,1,173,479,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20211003.log',515,1,174,486,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20211003.log',515,1,176,500,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20211003.log',515,1,178,514,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20211003.log',515,1,187,539,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20211003.log',515,1,189,551,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20211003.log',515,1,190,556,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,91),('usage_events_20211003.log',515,1,204,597,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20211003.log',515,1,205,606,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20211003.log',515,1,206,615,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,97),('usage_events_20211003.log',515,1,207,622,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20211003.log',515,1,209,637,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20211003.log',515,1,216,688,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,104),('usage_events_20211003.log',515,1,218,689,'20211003','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,14,105),('usage_events_20211003.log',1048585,1,34,34,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20211003.log',1048585,1,53,53,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,4,NULL),('usage_events_20211003.log',1048585,1,57,57,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211003.log',1048585,1,59,59,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211003.log',1048585,1,90,90,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20211003.log',1048585,1,100,100,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20211003.log',1048585,1,114,114,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20211003.log',1048585,1,134,134,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211003.log',1048585,1,148,148,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211003.log',1048585,1,149,149,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211003.log',1048585,1,171,171,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20211003.log',1048585,1,173,173,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211003.log',1048585,1,190,190,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20211003.log',1048585,1,204,204,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211003.log',1048585,1,205,205,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211003.log',1048585,1,206,206,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20211003.log',1048585,1,207,207,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20211003.log',1048585,1,218,218,'20211003','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20211004.log',256,1,NULL,1,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,1,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,2,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,4,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,7,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,9,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,11,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,13,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211004.log',259,1,NULL,14,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',5,NULL,NULL,NULL,NULL),('usage_events_20211004.log',515,1,6,31,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20211004.log',515,1,47,115,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,23),('usage_events_20211004.log',515,1,50,117,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,25),('usage_events_20211004.log',515,1,58,137,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20211004.log',515,1,59,138,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20211004.log',515,1,78,288,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20211004.log',515,1,87,291,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20211004.log',515,1,89,293,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,54),('usage_events_20211004.log',515,1,99,305,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20211004.log',515,1,113,307,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20211004.log',515,1,114,308,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,60),('usage_events_20211004.log',515,1,115,309,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20211004.log',515,1,133,318,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,63),('usage_events_20211004.log',515,1,134,324,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20211004.log',515,1,135,330,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,65),('usage_events_20211004.log',515,1,136,336,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,66),('usage_events_20211004.log',515,1,137,343,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,9,67),('usage_events_20211004.log',515,1,139,351,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,68),('usage_events_20211004.log',515,1,141,361,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20211004.log',515,1,142,367,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,70),('usage_events_20211004.log',515,1,146,379,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,71),('usage_events_20211004.log',515,1,147,387,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20211004.log',515,1,148,394,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,73),('usage_events_20211004.log',515,1,149,401,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20211004.log',515,1,150,407,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20211004.log',515,1,151,414,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20211004.log',515,1,152,423,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20211004.log',515,1,169,461,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,11,78),('usage_events_20211004.log',515,1,171,470,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20211004.log',515,1,173,479,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20211004.log',515,1,174,486,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20211004.log',515,1,175,493,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,82),('usage_events_20211004.log',515,1,176,500,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,83),('usage_events_20211004.log',515,1,177,507,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,84),('usage_events_20211004.log',515,1,178,514,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20211004.log',515,1,185,527,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20211004.log',515,1,186,533,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,87),('usage_events_20211004.log',515,1,187,539,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20211004.log',515,1,188,545,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20211004.log',515,1,189,551,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20211004.log',515,1,190,556,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,12,91),('usage_events_20211004.log',515,1,191,563,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20211004.log',515,1,193,569,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20211004.log',515,1,203,589,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,94),('usage_events_20211004.log',515,1,204,597,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,95),('usage_events_20211004.log',515,1,205,606,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20211004.log',515,1,206,615,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20211004.log',515,1,207,622,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,98),('usage_events_20211004.log',515,1,208,630,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20211004.log',515,1,209,637,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,100),('usage_events_20211004.log',515,1,210,644,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,101),('usage_events_20211004.log',515,1,214,686,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20211004.log',515,1,218,689,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',19,1,259,14,105),('usage_events_20211004.log',515,1,219,690,'20211004','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,14,106),('usage_events_20211004.log',1048585,1,4,4,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211004.log',1048585,1,6,6,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211004.log',1048585,1,8,8,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211004.log',1048585,1,14,14,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20211004.log',1048585,1,19,19,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20211004.log',1048585,1,20,20,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20211004.log',1048585,1,34,34,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20211004.log',1048585,1,78,78,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20211004.log',1048585,1,87,87,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20211004.log',1048585,1,89,89,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211004.log',1048585,1,114,114,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20211004.log',1048585,1,115,115,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20211004.log',1048585,1,137,137,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20211004.log',1048585,1,141,141,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211004.log',1048585,1,142,142,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20211004.log',1048585,1,150,150,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211004.log',1048585,1,169,169,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,11,NULL),('usage_events_20211004.log',1048585,1,171,171,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211004.log',1048585,1,173,173,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211004.log',1048585,1,175,175,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211004.log',1048585,1,176,176,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211004.log',1048585,1,177,177,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20211004.log',1048585,1,178,178,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20211004.log',1048585,1,190,190,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20211004.log',1048585,1,204,204,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211004.log',1048585,1,206,206,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,13,NULL),('usage_events_20211004.log',1048585,1,207,207,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211004.log',1048585,1,209,209,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20211004.log',1048585,1,214,214,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20211004.log',1048585,1,216,216,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20211004.log',1048585,1,218,218,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',14,1,259,14,NULL),('usage_events_20211004.log',1048585,1,219,219,'20211004','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20211005.log',256,1,NULL,1,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,3,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,5,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,6,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,8,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,9,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,10,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,11,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,12,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,13,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',259,1,NULL,14,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211005.log',515,1,1,3,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20211005.log',515,1,21,54,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,2,12),('usage_events_20211005.log',515,1,31,79,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,16),('usage_events_20211005.log',515,1,33,81,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,3,18),('usage_events_20211005.log',515,1,49,116,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20211005.log',515,1,52,119,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,27),('usage_events_20211005.log',515,1,53,120,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20211005.log',515,1,58,137,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20211005.log',515,1,85,281,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,41),('usage_events_20211005.log',515,1,79,282,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,43),('usage_events_20211005.log',515,1,82,284,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,6,45),('usage_events_20211005.log',515,1,78,288,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',10,1,259,7,49),('usage_events_20211005.log',515,1,86,290,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20211005.log',515,1,87,291,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20211005.log',515,1,89,293,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,54),('usage_events_20211005.log',515,1,99,305,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,8,57),('usage_events_20211005.log',515,1,125,310,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20211005.log',515,1,134,324,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,64),('usage_events_20211005.log',515,1,137,343,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20211005.log',515,1,139,351,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20211005.log',515,1,142,367,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,9,70),('usage_events_20211005.log',515,1,148,394,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,10,73),('usage_events_20211005.log',515,1,149,401,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20211005.log',515,1,150,407,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20211005.log',515,1,151,414,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,76),('usage_events_20211005.log',515,1,169,461,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20211005.log',515,1,171,470,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,79),('usage_events_20211005.log',515,1,173,479,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,80),('usage_events_20211005.log',515,1,174,486,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20211005.log',515,1,176,500,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20211005.log',515,1,177,507,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20211005.log',515,1,178,514,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,11,85),('usage_events_20211005.log',515,1,185,527,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20211005.log',515,1,186,533,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20211005.log',515,1,187,539,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20211005.log',515,1,190,556,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,91),('usage_events_20211005.log',515,1,193,569,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20211005.log',515,1,204,597,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,95),('usage_events_20211005.log',515,1,205,606,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20211005.log',515,1,206,615,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,13,97),('usage_events_20211005.log',515,1,208,630,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20211005.log',515,1,209,637,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,100),('usage_events_20211005.log',515,1,214,686,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,102),('usage_events_20211005.log',515,1,218,689,'20211005','202110',2,NULL,NULL,NULL,'ojs::counter',9,1,259,14,105),('usage_events_20211005.log',1048585,1,1,1,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211005.log',1048585,1,5,5,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211005.log',1048585,1,6,6,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211005.log',1048585,1,7,7,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211005.log',1048585,1,21,21,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20211005.log',1048585,1,22,22,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20211005.log',1048585,1,31,31,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,3,NULL),('usage_events_20211005.log',1048585,1,40,40,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,1,NULL),('usage_events_20211005.log',1048585,1,49,49,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20211005.log',1048585,1,52,52,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20211005.log',1048585,1,54,54,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211005.log',1048585,1,55,55,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211005.log',1048585,1,56,56,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211005.log',1048585,1,57,57,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211005.log',1048585,1,58,58,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211005.log',1048585,1,59,59,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,5,NULL),('usage_events_20211005.log',1048585,1,77,77,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20211005.log',1048585,1,78,78,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,7,NULL),('usage_events_20211005.log',1048585,1,85,85,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,7,NULL),('usage_events_20211005.log',1048585,1,86,86,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211005.log',1048585,1,87,87,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20211005.log',1048585,1,88,88,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211005.log',1048585,1,89,89,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20211005.log',1048585,1,90,90,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211005.log',1048585,1,91,91,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211005.log',1048585,1,113,113,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,8,NULL),('usage_events_20211005.log',1048585,1,133,133,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211005.log',1048585,1,134,134,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,9,NULL),('usage_events_20211005.log',1048585,1,135,135,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211005.log',1048585,1,136,136,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211005.log',1048585,1,137,137,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211005.log',1048585,1,141,141,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211005.log',1048585,1,142,142,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',11,1,259,9,NULL),('usage_events_20211005.log',1048585,1,146,146,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211005.log',1048585,1,147,147,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211005.log',1048585,1,148,148,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211005.log',1048585,1,149,149,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211005.log',1048585,1,150,150,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20211005.log',1048585,1,151,151,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,10,NULL),('usage_events_20211005.log',1048585,1,152,152,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211005.log',1048585,1,171,171,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20211005.log',1048585,1,177,177,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211005.log',1048585,1,190,190,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20211005.log',1048585,1,193,193,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,12,NULL),('usage_events_20211005.log',1048585,1,204,204,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20211005.log',1048585,1,205,205,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211005.log',1048585,1,206,206,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20211005.log',1048585,1,208,208,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211005.log',1048585,1,215,215,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20211005.log',1048585,1,218,218,'20211005','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20211006.log',256,1,NULL,1,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20211006.log',259,1,NULL,7,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211006.log',515,1,20,53,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,2,11),('usage_events_20211006.log',515,1,51,118,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20211006.log',515,1,58,137,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20211006.log',515,1,85,281,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,41),('usage_events_20211006.log',515,1,76,286,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20211006.log',515,1,78,288,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,49),('usage_events_20211006.log',515,1,87,291,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20211006.log',515,1,90,294,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20211006.log',515,1,99,305,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20211006.log',515,1,100,306,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20211006.log',515,1,115,309,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20211006.log',515,1,134,324,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,64),('usage_events_20211006.log',515,1,137,343,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,9,67),('usage_events_20211006.log',515,1,142,367,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20211006.log',515,1,147,387,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,72),('usage_events_20211006.log',515,1,148,394,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',10,1,259,10,73),('usage_events_20211006.log',515,1,149,401,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20211006.log',515,1,150,407,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,75),('usage_events_20211006.log',515,1,151,414,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20211006.log',515,1,169,461,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',10,1,259,11,78),('usage_events_20211006.log',515,1,171,470,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,79),('usage_events_20211006.log',515,1,173,479,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20211006.log',515,1,175,493,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,82),('usage_events_20211006.log',515,1,178,514,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',8,1,259,11,85),('usage_events_20211006.log',515,1,185,527,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20211006.log',515,1,186,533,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,87),('usage_events_20211006.log',515,1,187,539,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20211006.log',515,1,191,563,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20211006.log',515,1,193,569,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,93),('usage_events_20211006.log',515,1,203,589,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20211006.log',515,1,205,606,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,96),('usage_events_20211006.log',515,1,206,615,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',11,1,259,13,97),('usage_events_20211006.log',515,1,207,622,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,98),('usage_events_20211006.log',515,1,208,630,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,99),('usage_events_20211006.log',515,1,216,688,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,14,104),('usage_events_20211006.log',515,1,218,689,'20211006','202110',2,NULL,NULL,NULL,'ojs::counter',11,1,259,14,105),('usage_events_20211006.log',1048585,1,51,51,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20211006.log',1048585,1,53,53,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20211006.log',1048585,1,78,78,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20211006.log',1048585,1,84,84,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20211006.log',1048585,1,85,85,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211006.log',1048585,1,87,87,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20211006.log',1048585,1,99,99,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20211006.log',1048585,1,113,113,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20211006.log',1048585,1,137,137,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211006.log',1048585,1,142,142,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211006.log',1048585,1,147,147,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211006.log',1048585,1,148,148,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,10,NULL),('usage_events_20211006.log',1048585,1,169,169,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20211006.log',1048585,1,173,173,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211006.log',1048585,1,175,175,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211006.log',1048585,1,176,176,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211006.log',1048585,1,178,178,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',9,1,259,11,NULL),('usage_events_20211006.log',1048585,1,187,187,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20211006.log',1048585,1,191,191,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,12,NULL),('usage_events_20211006.log',1048585,1,203,203,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20211006.log',1048585,1,207,207,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211006.log',1048585,1,216,216,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20211006.log',1048585,1,218,218,'20211006','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20211007.log',256,1,NULL,1,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',11,NULL,NULL,NULL,NULL),('usage_events_20211007.log',515,1,1,3,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,1),('usage_events_20211007.log',515,1,32,80,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,17),('usage_events_20211007.log',515,1,49,116,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20211007.log',515,1,51,118,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,4,26),('usage_events_20211007.log',515,1,58,137,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,5,33),('usage_events_20211007.log',515,1,59,138,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20211007.log',515,1,82,284,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,45),('usage_events_20211007.log',515,1,83,285,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,46),('usage_events_20211007.log',515,1,78,288,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',8,1,259,7,49),('usage_events_20211007.log',515,1,84,289,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,50),('usage_events_20211007.log',515,1,90,294,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20211007.log',515,1,99,305,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20211007.log',515,1,100,306,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,58),('usage_events_20211007.log',515,1,125,310,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,62),('usage_events_20211007.log',515,1,137,343,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,67),('usage_events_20211007.log',515,1,141,361,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20211007.log',515,1,142,367,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,9,70),('usage_events_20211007.log',515,1,148,394,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,10,73),('usage_events_20211007.log',515,1,149,401,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,74),('usage_events_20211007.log',515,1,150,407,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20211007.log',515,1,151,414,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20211007.log',515,1,169,461,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20211007.log',515,1,171,470,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20211007.log',515,1,175,493,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20211007.log',515,1,176,500,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,83),('usage_events_20211007.log',515,1,177,507,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20211007.log',515,1,178,514,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,85),('usage_events_20211007.log',515,1,185,527,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,86),('usage_events_20211007.log',515,1,186,533,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,87),('usage_events_20211007.log',515,1,190,556,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,12,91),('usage_events_20211007.log',515,1,191,563,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,92),('usage_events_20211007.log',515,1,205,606,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,96),('usage_events_20211007.log',515,1,206,615,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20211007.log',515,1,207,622,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,98),('usage_events_20211007.log',515,1,208,630,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,99),('usage_events_20211007.log',515,1,209,637,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,13,100),('usage_events_20211007.log',515,1,216,688,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,104),('usage_events_20211007.log',515,1,218,689,'20211007','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,14,105),('usage_events_20211007.log',1048585,1,20,20,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,2,NULL),('usage_events_20211007.log',1048585,1,49,49,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20211007.log',1048585,1,51,51,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20211007.log',1048585,1,78,78,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,7,NULL),('usage_events_20211007.log',1048585,1,83,83,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,6,NULL),('usage_events_20211007.log',1048585,1,90,90,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20211007.log',1048585,1,137,137,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,9,NULL),('usage_events_20211007.log',1048585,1,142,142,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,9,NULL),('usage_events_20211007.log',1048585,1,150,150,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211007.log',1048585,1,152,152,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211007.log',1048585,1,169,169,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211007.log',1048585,1,171,171,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211007.log',1048585,1,174,174,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211007.log',1048585,1,175,175,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,11,NULL),('usage_events_20211007.log',1048585,1,178,178,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20211007.log',1048585,1,190,190,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20211007.log',1048585,1,191,191,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20211007.log',1048585,1,203,203,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211007.log',1048585,1,205,205,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211007.log',1048585,1,206,206,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20211007.log',1048585,1,207,207,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20211007.log',1048585,1,208,208,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,13,NULL),('usage_events_20211007.log',1048585,1,209,209,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,13,NULL),('usage_events_20211007.log',1048585,1,215,215,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20211007.log',1048585,1,218,218,'20211007','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,14,NULL),('usage_events_20211008.log',256,1,NULL,1,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,NULL,NULL,NULL,NULL),('usage_events_20211008.log',259,1,NULL,13,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211008.log',515,1,5,30,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20211008.log',515,1,6,31,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,5),('usage_events_20211008.log',515,1,8,33,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,7),('usage_events_20211008.log',515,1,19,52,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,2,10),('usage_events_20211008.log',515,1,49,116,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20211008.log',515,1,54,133,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20211008.log',515,1,58,137,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',13,1,259,5,33),('usage_events_20211008.log',515,1,59,138,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,34),('usage_events_20211008.log',515,1,81,283,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,44),('usage_events_20211008.log',515,1,82,284,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,6,45),('usage_events_20211008.log',515,1,83,285,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,46),('usage_events_20211008.log',515,1,76,286,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,47),('usage_events_20211008.log',515,1,78,288,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20211008.log',515,1,86,290,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,51),('usage_events_20211008.log',515,1,87,291,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,7,52),('usage_events_20211008.log',515,1,90,294,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20211008.log',515,1,91,295,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,56),('usage_events_20211008.log',515,1,99,305,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,57),('usage_events_20211008.log',515,1,115,309,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,8,61),('usage_events_20211008.log',515,1,134,324,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20211008.log',515,1,137,343,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20211008.log',515,1,139,351,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,68),('usage_events_20211008.log',515,1,148,394,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20211008.log',515,1,150,407,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20211008.log',515,1,152,423,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,77),('usage_events_20211008.log',515,1,169,461,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,78),('usage_events_20211008.log',515,1,171,470,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',9,1,259,11,79),('usage_events_20211008.log',515,1,173,479,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20211008.log',515,1,174,486,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,81),('usage_events_20211008.log',515,1,175,493,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,82),('usage_events_20211008.log',515,1,177,507,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20211008.log',515,1,187,539,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,88),('usage_events_20211008.log',515,1,189,551,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20211008.log',515,1,190,556,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,12,91),('usage_events_20211008.log',515,1,205,606,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20211008.log',515,1,206,615,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,13,97),('usage_events_20211008.log',515,1,209,637,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,13,100),('usage_events_20211008.log',515,1,215,687,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,103),('usage_events_20211008.log',515,1,218,689,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,14,105),('usage_events_20211008.log',515,1,219,690,'20211008','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,14,106),('usage_events_20211008.log',1048585,1,8,8,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,1,NULL),('usage_events_20211008.log',1048585,1,47,47,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20211008.log',1048585,1,58,58,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,5,NULL),('usage_events_20211008.log',1048585,1,78,78,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,7,NULL),('usage_events_20211008.log',1048585,1,81,81,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,6,NULL),('usage_events_20211008.log',1048585,1,83,83,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,6,NULL),('usage_events_20211008.log',1048585,1,85,85,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211008.log',1048585,1,86,86,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211008.log',1048585,1,87,87,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,7,NULL),('usage_events_20211008.log',1048585,1,91,91,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211008.log',1048585,1,100,100,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,8,NULL),('usage_events_20211008.log',1048585,1,137,137,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20211008.log',1048585,1,148,148,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,10,NULL),('usage_events_20211008.log',1048585,1,149,149,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211008.log',1048585,1,150,150,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211008.log',1048585,1,151,151,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,10,NULL),('usage_events_20211008.log',1048585,1,171,171,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211008.log',1048585,1,175,175,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211008.log',1048585,1,177,177,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211008.log',1048585,1,187,187,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20211008.log',1048585,1,190,190,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20211008.log',1048585,1,206,206,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,13,NULL),('usage_events_20211008.log',1048585,1,207,207,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211008.log',1048585,1,208,208,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,13,NULL),('usage_events_20211008.log',1048585,1,209,209,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211008.log',1048585,1,215,215,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,14,NULL),('usage_events_20211008.log',1048585,1,218,218,'20211008','202110',NULL,NULL,NULL,NULL,'ojs::counter',5,1,259,14,NULL),('usage_events_20211009.log',256,1,NULL,1,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',8,NULL,NULL,NULL,NULL),('usage_events_20211009.log',259,1,NULL,11,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211009.log',259,1,NULL,13,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,NULL,NULL,NULL,NULL),('usage_events_20211009.log',259,1,NULL,14,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211009.log',515,1,5,30,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,1,4),('usage_events_20211009.log',515,1,7,32,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,1,6),('usage_events_20211009.log',515,1,49,116,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,24),('usage_events_20211009.log',515,1,53,120,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,4,28),('usage_events_20211009.log',515,1,79,282,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,6,43),('usage_events_20211009.log',515,1,78,288,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',11,1,259,7,49),('usage_events_20211009.log',515,1,87,291,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,7,52),('usage_events_20211009.log',515,1,90,294,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,7,55),('usage_events_20211009.log',515,1,99,305,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,57),('usage_events_20211009.log',515,1,114,308,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,8,60),('usage_events_20211009.log',515,1,142,367,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20211009.log',515,1,148,394,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,10,73),('usage_events_20211009.log',515,1,150,407,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,75),('usage_events_20211009.log',515,1,151,414,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,76),('usage_events_20211009.log',515,1,169,461,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20211009.log',515,1,171,470,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,79),('usage_events_20211009.log',515,1,173,479,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,80),('usage_events_20211009.log',515,1,174,486,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,11,81),('usage_events_20211009.log',515,1,175,493,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,82),('usage_events_20211009.log',515,1,176,500,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,11,83),('usage_events_20211009.log',515,1,177,507,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20211009.log',515,1,178,514,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,85),('usage_events_20211009.log',515,1,188,545,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,89),('usage_events_20211009.log',515,1,189,551,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20211009.log',515,1,190,556,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,12,91),('usage_events_20211009.log',515,1,193,569,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20211009.log',515,1,203,589,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,94),('usage_events_20211009.log',515,1,205,606,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,96),('usage_events_20211009.log',515,1,206,615,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',13,1,259,13,97),('usage_events_20211009.log',515,1,208,630,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,13,99),('usage_events_20211009.log',515,1,210,644,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,13,101),('usage_events_20211009.log',515,1,218,689,'20211009','202110',2,NULL,NULL,NULL,'ojs::counter',7,1,259,14,105),('usage_events_20211009.log',1048585,1,7,7,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,1,NULL),('usage_events_20211009.log',1048585,1,33,33,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,3,NULL),('usage_events_20211009.log',1048585,1,49,49,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,4,NULL),('usage_events_20211009.log',1048585,1,53,53,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,4,NULL),('usage_events_20211009.log',1048585,1,78,78,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',7,1,259,7,NULL),('usage_events_20211009.log',1048585,1,87,87,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,7,NULL),('usage_events_20211009.log',1048585,1,142,142,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,9,NULL),('usage_events_20211009.log',1048585,1,148,148,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,10,NULL),('usage_events_20211009.log',1048585,1,169,169,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,11,NULL),('usage_events_20211009.log',1048585,1,171,171,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',6,1,259,11,NULL),('usage_events_20211009.log',1048585,1,175,175,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20211009.log',1048585,1,176,176,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',3,1,259,11,NULL),('usage_events_20211009.log',1048585,1,178,178,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,11,NULL),('usage_events_20211009.log',1048585,1,186,186,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,12,NULL),('usage_events_20211009.log',1048585,1,190,190,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,12,NULL),('usage_events_20211009.log',1048585,1,193,193,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',2,1,259,12,NULL),('usage_events_20211009.log',1048585,1,206,206,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',8,1,259,13,NULL),('usage_events_20211009.log',1048585,1,207,207,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211009.log',1048585,1,210,210,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,13,NULL),('usage_events_20211009.log',1048585,1,215,215,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,1,259,14,NULL),('usage_events_20211009.log',1048585,1,218,218,'20211009','202110',NULL,NULL,NULL,NULL,'ojs::counter',4,1,259,14,NULL),('usage_events_20211010.log',256,1,NULL,1,'20211010','202110',NULL,NULL,NULL,NULL,'ojs::counter',9,NULL,NULL,NULL,NULL),('usage_events_20211010.log',259,1,NULL,13,'20211010','202110',NULL,NULL,NULL,NULL,'ojs::counter',1,NULL,NULL,NULL,NULL),('usage_events_20211010.log',515,1,34,82,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,3,19),('usage_events_20211010.log',515,1,54,133,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,29),('usage_events_20211010.log',515,1,58,137,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,5,33),('usage_events_20211010.log',515,1,78,288,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,7,49),('usage_events_20211010.log',515,1,84,289,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,6,50),('usage_events_20211010.log',515,1,87,291,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,7,52),('usage_events_20211010.log',515,1,113,307,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,59),('usage_events_20211010.log',515,1,114,308,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',5,1,259,8,60),('usage_events_20211010.log',515,1,115,309,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,8,61),('usage_events_20211010.log',515,1,134,324,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,64),('usage_events_20211010.log',515,1,135,330,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,65),('usage_events_20211010.log',515,1,136,336,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,66),('usage_events_20211010.log',515,1,137,343,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,9,67),('usage_events_20211010.log',515,1,141,361,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,69),('usage_events_20211010.log',515,1,142,367,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,9,70),('usage_events_20211010.log',515,1,147,387,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',3,1,259,10,72),('usage_events_20211010.log',515,1,148,394,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,10,73),('usage_events_20211010.log',515,1,169,461,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,78),('usage_events_20211010.log',515,1,171,470,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',6,1,259,11,79),('usage_events_20211010.log',515,1,174,486,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,81),('usage_events_20211010.log',515,1,175,493,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,11,82),('usage_events_20211010.log',515,1,177,507,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',2,1,259,11,84),('usage_events_20211010.log',515,1,187,539,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,88),('usage_events_20211010.log',515,1,189,551,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,90),('usage_events_20211010.log',515,1,193,569,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',1,1,259,12,93),('usage_events_20211010.log',515,1,205,606,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',4,1,259,13,96),('usage_events_20211010.log',515,1,206,615,'20211010','202110',2,NULL,NULL,NULL,'ojs::counter',8,1,259,13,97),('usage_events_20211010.log'