-- MySQL dump 10.16  Distrib 10.2.36-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: medg8798_ojs281
-- ------------------------------------------------------
-- Server version	10.2.36-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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  PRIMARY KEY (`type_id`),
  KEY `announcement_types_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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` date DEFAULT NULL,
  `date_posted` datetime NOT NULL,
  PRIMARY KEY (`announcement_id`),
  KEY `announcements_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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 `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=InnoDB DEFAULT CHARSET=utf8;
/*!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,
  UNIQUE KEY `author_settings_pkey` (`author_id`,`locale`,`setting_name`),
  KEY `author_settings_author_id` (`author_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,'','country','ID'),(1,'','orcid',''),(1,'','url',''),(1,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(1,'en_US','biography',''),(1,'en_US','familyName','Sari'),(1,'en_US','givenName','Putri Mustika'),(2,'','country','ID'),(2,'','orcid',''),(2,'','url',''),(2,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(2,'en_US','biography',''),(2,'en_US','familyName','Susanti'),(2,'en_US','givenName','Yuli'),(6,'','country','ID'),(6,'','orcid',''),(6,'','url',''),(6,'en_US','affiliation','Balai Besar Tehnik Kesehatan Lingkungan dan Pengendalian Penyakit (BBTKLPP) Banjarbaru'),(6,'en_US','biography',''),(6,'en_US','familyName','Triyanti'),(6,'en_US','givenName','Arista'),(8,'','country','ID'),(8,'','orcid',''),(8,'','url',''),(8,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(8,'en_US','biography',''),(8,'en_US','familyName','Rifqoh'),(8,'en_US','givenName','Rifqoh'),(10,'','country','ID'),(10,'','orcid',''),(10,'','url',''),(10,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(10,'en_US','biography',''),(10,'en_US','familyName','Muhlisin'),(10,'en_US','givenName','Ahmad'),(11,'','country','ID'),(11,'','orcid',''),(11,'','url',''),(11,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(11,'en_US','biography',''),(11,'en_US','familyName','Widyati'),(11,'en_US','givenName','Ruri'),(13,'','country','ID'),(13,'','orcid',''),(13,'','url',''),(13,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(13,'en_US','biography',''),(13,'en_US','familyName','Oktiyani'),(13,'en_US','givenName','Neni'),(14,'','country','ID'),(14,'','orcid',''),(14,'','url',''),(14,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(14,'en_US','biography',''),(14,'en_US','familyName','Haitami'),(14,'en_US','givenName','Haitami'),(15,'','country','ID'),(15,'','orcid',''),(15,'','url',''),(15,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(15,'en_US','biography',''),(15,'en_US','familyName','Rifa\'i'),(15,'en_US','givenName','Ahmad'),(16,'','country','ID'),(16,'','orcid',''),(16,'','url',''),(16,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(16,'en_US','biography',''),(16,'en_US','familyName','Muhlisin'),(16,'en_US','givenName','Ahmad'),(19,'','country','ID'),(19,'','orcid',''),(19,'','url',''),(19,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(19,'en_US','biography',''),(19,'en_US','familyName','Dwiyanti'),(19,'en_US','givenName','Ratih Dewi'),(20,'','country','ID'),(20,'','orcid',''),(20,'','url',''),(20,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(20,'en_US','biography',''),(20,'en_US','familyName','Huda'),(20,'en_US','givenName','Nurul'),(21,'','country','ID'),(21,'','orcid',''),(21,'','url',''),(21,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(21,'en_US','biography',''),(21,'en_US','familyName','Dwiyanti'),(21,'en_US','givenName','Ratih Dewi'),(22,'','country','ID'),(22,'','orcid',''),(22,'','url',''),(22,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(22,'en_US','biography',''),(22,'en_US','familyName','Thuraidah'),(22,'en_US','givenName','Anny'),(23,'','country','ID'),(23,'','orcid',''),(23,'','url',''),(23,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(23,'en_US','biography',''),(23,'en_US','familyName','Sutiany'),(23,'en_US','givenName','Ayu'),(24,'','country','ID'),(24,'','orcid',''),(24,'','url',''),(24,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(24,'en_US','biography',''),(24,'en_US','familyName','Dwiyanti'),(24,'en_US','givenName','Ratih Dewi'),(25,'','country','ID'),(25,'','orcid',''),(25,'','url',''),(25,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(25,'en_US','biography',''),(25,'en_US','familyName','Oktiyani'),(25,'en_US','givenName','Neni'),(26,'','country','ID'),(26,'','orcid',''),(26,'','url',''),(26,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(26,'en_US','biography',''),(26,'en_US','familyName','Mahmudah'),(26,'en_US','givenName','Siti'),(27,'','country','ID'),(27,'','orcid',''),(27,'','url',''),(27,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(27,'en_US','biography',''),(27,'en_US','familyName','Muntaha'),(27,'en_US','givenName','Akhmad'),(28,'','country','ID'),(28,'','orcid',''),(28,'','url',''),(28,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(28,'en_US','biography',''),(28,'en_US','familyName','Muhlisin'),(28,'en_US','givenName','Ahmad'),(29,'','country','TR'),(29,'','orcid',''),(29,'','url',''),(29,'en_US','affiliation','KocaeliDerince Education and Research Hospital Department of Pediatric Surgery. Turkey'),(29,'en_US','biography',''),(29,'en_US','familyName','Baltrak'),(29,'en_US','givenName','Yusuf Atakan'),(30,'','country','ID'),(30,'','orcid',''),(30,'','url',''),(30,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(30,'en_US','biography',''),(30,'en_US','familyName','fahani'),(30,'en_US','givenName','Ayu'),(31,'','country','ID'),(31,'','orcid',''),(31,'','url',''),(31,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(31,'en_US','biography',''),(31,'en_US','familyName','Dwiyanti'),(31,'en_US','givenName','Ratih Dewi'),(32,'','country','ID'),(32,'','orcid',''),(32,'','url',''),(32,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(32,'en_US','biography',''),(32,'en_US','familyName','Muhlisin'),(32,'en_US','givenName','Ahmad'),(33,'','country','TR'),(33,'','orcid',''),(33,'','url',''),(33,'en_US','affiliation','Department of Pediatric Surgery, Kocaeli Derince Education and Research Hospital Kocaeli,Turkey'),(33,'en_US','biography',''),(33,'en_US','familyName','Baltrak'),(33,'en_US','givenName','Yusuf Atakan'),(35,'','country','TR'),(35,'','orcid',''),(35,'','url',''),(35,'en_US','affiliation','Department of Anatomy, Siirt University, Medical Faculty, İstanbul, Turkey'),(35,'en_US','biography',''),(35,'en_US','familyName','Bolatli'),(35,'en_US','givenName','Gunes'),(36,'','country','TR'),(36,'','orcid',''),(36,'','url',''),(36,'en_US','affiliation','Eskisehir Osmangazi University Hospital, Department of Pediatric Neurology Eskisehir, Turkey'),(36,'en_US','biography',''),(36,'en_US','familyName','Koçak'),(36,'en_US','givenName','Ozan'),(37,'','country','TR'),(37,'','orcid',''),(37,'','url',''),(37,'en_US','affiliation','Department of Anesthesia, University of Health Science, Konya Training and Research Hospital. Turkey'),(37,'en_US','biography',''),(37,'en_US','familyName','Tire'),(37,'en_US','givenName','Yasin'),(38,'','country','TR'),(38,'','orcid',''),(38,'','url',''),(38,'en_US','affiliation','Department of Anatomy, Selcuk University, Medical Faculty, Konya, Turkey'),(38,'en_US','biography',''),(38,'en_US','familyName','Dogan'),(38,'en_US','givenName','Nadire Unver'),(39,'','country','TR'),(39,'','orcid',''),(39,'','url',''),(39,'en_US','affiliation','Department of Anatomy, Selcuk University, Medical Faculty, Konya, Turkey'),(39,'en_US','biography',''),(39,'en_US','familyName','Fazliogullari'),(39,'en_US','givenName','Zeliha'),(40,'','country','TR'),(40,'','orcid',''),(40,'','url',''),(40,'en_US','affiliation','Department of Radiology, Medova Hospital, Konya, Turkey'),(40,'en_US','biography',''),(40,'en_US','familyName','Kivrak'),(40,'en_US','givenName','Ali Sami'),(41,'','country','TR'),(41,'','orcid',''),(41,'','url',''),(41,'en_US','affiliation','Department of Anatomy, Necmettin Erbakan University, Meram Medical Faculty, Konya, Turkey'),(41,'en_US','biography',''),(41,'en_US','familyName','Uysal'),(41,'en_US','givenName','Ismihan Ilknur'),(42,'','country','TR'),(42,'','orcid',''),(42,'','url',''),(42,'en_US','affiliation','Department of Anatomy, Selcuk University, Medical Faculty, Konya, Turkey'),(42,'en_US','biography',''),(42,'en_US','familyName','Karabulut'),(42,'en_US','givenName','Ahmet Kagan'),(43,'','country','TR'),(43,'','orcid',''),(43,'','url',''),(43,'en_US','affiliation','Department of Radiology, Selcuk University, Medical Faculty, Konya, Turkey'),(43,'en_US','biography',''),(43,'en_US','familyName','Paksoy'),(43,'en_US','givenName','Yahya'),(44,'','country','TR'),(44,'','orcid',''),(44,'','url',''),(44,'en_US','affiliation','Department of Anesthesia, University of Health Science, Konya Training and Research Hospital. Turkey'),(44,'en_US','biography',''),(44,'en_US','familyName','Aydoğan'),(44,'en_US','givenName','Eyüp'),(45,'','country','TR'),(45,'','orcid',''),(45,'','url',''),(45,'en_US','affiliation','Department of Anesthesia, University of Health Science, Konya Training and Research Hospital. Turkey'),(45,'en_US','biography',''),(45,'en_US','familyName','Celep'),(45,'en_US','givenName','Abdullah'),(46,'','country','TR'),(46,'','orcid',''),(46,'','url',''),(46,'en_US','affiliation','Department of Anesthesia, University of Health Science, Konya Training and Research Hospital. Turkey'),(46,'en_US','biography',''),(46,'en_US','familyName','Mermer'),(46,'en_US','givenName','Aydın'),(47,'','country','TR'),(47,'','orcid',''),(47,'','url',''),(47,'en_US','affiliation','Eskisehir Osmangazi University Hospital, Department of Pediatric Neurology, Eskisehir, Turkey'),(47,'en_US','biography',''),(47,'en_US','familyName','Carman'),(47,'en_US','givenName','Kursat Bora Carman Bora'),(48,'','country','TR'),(48,'','orcid',''),(48,'','url',''),(48,'en_US','affiliation','Eskisehir Osmangazi University Hospital, Department of Pediatric Neurology, Eskisehir, Turkey'),(48,'en_US','biography',''),(48,'en_US','familyName','Yarar'),(48,'en_US','givenName','Coskun'),(49,'','country','JP'),(49,'','orcid',''),(49,'','url',''),(49,'en_US','affiliation','Department of Human Genetics, Yokohama City University Graduate School of Medicine, Yokohama 236-0004, Japan'),(49,'en_US','biography',''),(49,'en_US','familyName','Kodera'),(49,'en_US','givenName','Hirofumi'),(50,'','country','JP'),(50,'','orcid',''),(50,'','url',''),(50,'en_US','affiliation','Department of Biochemistry, Hamamatsu University School of Medicine, Hamamatsu  431-3192, Japan'),(50,'en_US','biography',''),(50,'en_US','familyName','Saitsu'),(50,'en_US','givenName','Hirotomo'),(51,'','country','JP'),(51,'','orcid',''),(51,'','url',''),(51,'en_US','affiliation','Department of Human Genetics, Yokohama City University Graduate School of Medicine, Yokohama 236-0004, Japan'),(51,'en_US','biography',''),(51,'en_US','familyName','Matsumoto'),(51,'en_US','givenName','Naomichi'),(52,'','country','ID'),(52,'','orcid',''),(52,'','url',''),(52,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(52,'en_US','biography',''),(52,'en_US','familyName','Pratama'),(52,'en_US','givenName','Haris Nurdin'),(53,'','country','ID'),(53,'','orcid',''),(53,'','url',''),(53,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(53,'en_US','biography',''),(53,'en_US','familyName','Kusumawardhani'),(53,'en_US','givenName','Novina'),(54,'','country','ID'),(54,'','orcid',''),(54,'','url',''),(54,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(54,'en_US','biography',''),(54,'en_US','familyName','Thuraidah'),(54,'en_US','givenName','Anny'),(55,'','country','ID'),(55,'','orcid',''),(55,'','url',''),(55,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(55,'en_US','biography',''),(55,'en_US','familyName','Nurlailah'),(55,'en_US','givenName','Nurlailah'),(56,'','country','ID'),(56,'','orcid',''),(56,'','url',''),(56,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(56,'en_US','biography',''),(56,'en_US','familyName','Dwiyanti'),(56,'en_US','givenName','Ratih Dewi'),(57,'','country','TR'),(57,'','orcid',''),(57,'','url',''),(57,'en_US','affiliation','University of Health Sciences, Derince Training and Research Hospital, Pediatric Surgery Clinic, Turkey'),(57,'en_US','biography',''),(57,'en_US','familyName','Baltrak'),(57,'en_US','givenName','Yusuf Atakan'),(58,'','country','TR'),(58,'','orcid',''),(58,'','url',''),(58,'en_US','affiliation','Kocaeli University, Faculty of Medicine, Departments of Anatomy, Turkey'),(58,'en_US','biography',''),(58,'en_US','familyName','Medişoğlu'),(58,'en_US','givenName','M. Sabri'),(59,'','country','TR'),(59,'','orcid',''),(59,'','url',''),(59,'en_US','affiliation','Department of Pediatric Surgery, Kocaeli Derince Education and Research Hospital Kocaeli,Turkey'),(59,'en_US','biography',''),(59,'en_US','familyName','Sogut'),(59,'en_US','givenName','Seniha Esin'),(60,'','country','TR'),(60,'','orcid',''),(60,'','url',''),(60,'en_US','affiliation','Department of Pediatric Surgery, Kocaeli Derince Education and Research Hospital Kocaeli,Turkey'),(60,'en_US','biography',''),(60,'en_US','familyName','Varlikli'),(60,'en_US','givenName','Onursal'),(61,'','country','ID'),(61,'','orcid',''),(61,'','url',''),(61,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(61,'en_US','biography',''),(61,'en_US','familyName','Muhlisin'),(61,'en_US','givenName','Ahmad'),(62,'','country','TR'),(62,'','orcid',''),(62,'','url',''),(62,'en_US','affiliation','Prof. Dr. Ilhan Varank Research and Education Hospital, Endocrinology Department, Turkey'),(62,'en_US','biography',''),(62,'en_US','familyName','Karatas'),(62,'en_US','givenName','Savas'),(63,'','country','TR'),(63,'','orcid',''),(63,'','url',''),(63,'en_US','affiliation','Prof. Dr. Ilhan Varank Research and Education Hospital, Internal Medicine Department, Turkey'),(63,'en_US','biography',''),(63,'en_US','familyName','Işıklar'),(63,'en_US','givenName','Aysun'),(64,'','country','NG'),(64,'','orcid',''),(64,'en_US','affiliation','University of Nigeria Teaching Hospital, Ituku/Ozalla,Enugu'),(64,'en_US','familyName','Edelu'),(64,'en_US','givenName','Benedict Onyeka'),(65,'','country','NG'),(65,'','orcid',''),(65,'','url',''),(65,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(65,'en_US','biography',''),(65,'en_US','familyName','Ndu'),(65,'en_US','givenName','Ikenna Kingsley'),(66,'','country','NG'),(66,'','orcid',''),(66,'','url',''),(66,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(66,'en_US','biography',''),(66,'en_US','familyName','Asimadu'),(66,'en_US','givenName','Ifeoma N'),(67,'','country','NG'),(67,'','orcid',''),(67,'','url',''),(67,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(67,'en_US','biography',''),(67,'en_US','familyName','Amadi'),(67,'en_US','givenName','Ogechukwu F'),(68,'','country','NG'),(68,'','orcid',''),(68,'','url',''),(68,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(68,'en_US','biography',''),(68,'en_US','familyName','Nduagubam'),(68,'en_US','givenName','Obinna Chukwuebuka'),(69,'','country','NG'),(69,'','orcid',''),(69,'','url',''),(69,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(69,'en_US','biography',''),(69,'en_US','familyName','Asinobi'),(69,'en_US','givenName','Isaac Nwabueze'),(70,'','country','NG'),(70,'','orcid',''),(70,'','url',''),(70,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(70,'en_US','biography',''),(70,'en_US','familyName','Ekwochi'),(70,'en_US','givenName','Uchenna'),(71,'','country','NG'),(71,'','orcid',''),(71,'','url',''),(71,'en_US','affiliation','University of Nigeria Teaching Hospital, Ituku/Ozalla,Enugu'),(71,'en_US','biography',''),(71,'en_US','familyName','Edelu'),(71,'en_US','givenName','Benedict Onyeka'),(72,'','country','NG'),(72,'','orcid',''),(72,'','url',''),(72,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(72,'en_US','biography',''),(72,'en_US','familyName','Ndu'),(72,'en_US','givenName','Ikenna Kingsley'),(73,'','country','NG'),(73,'','orcid',''),(73,'','url',''),(73,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(73,'en_US','biography',''),(73,'en_US','familyName','Ndu'),(73,'en_US','givenName','Ikenna Kingsley'),(74,'','country','NG'),(74,'','orcid',''),(74,'','url',''),(74,'en_US','affiliation','University of Nigeria Teaching Hospital, Ituku/Ozalla,Enugu'),(74,'en_US','biography',''),(74,'en_US','familyName','Chikani'),(74,'en_US','givenName','Ugo Nnenna'),(75,'','country','NG'),(75,'','orcid',''),(75,'','url',''),(75,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(75,'en_US','biography',''),(75,'en_US','familyName','Nduagubam'),(75,'en_US','givenName','Obinna Chukwuebuka'),(76,'','country','NG'),(76,'','orcid',''),(76,'','url',''),(76,'en_US','affiliation','University of Nigeria Teaching Hospital, Ituku/Ozalla,Enugu'),(76,'en_US','biography',''),(76,'en_US','familyName','Bisi-Onyemaechi'),(76,'en_US','givenName','Adaobi Ijeoma'),(77,'','country','NG'),(77,'','orcid',''),(77,'','url',''),(77,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(77,'en_US','biography',''),(77,'en_US','familyName','Asinobi'),(77,'en_US','givenName','Isaac Nwabueze'),(78,'','country','NG'),(78,'','orcid',''),(78,'','url',''),(78,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(78,'en_US','biography',''),(78,'en_US','familyName','Ekwochi'),(78,'en_US','givenName','Uchenna'),(79,'','country','NG'),(79,'','orcid',''),(79,'','url',''),(79,'en_US','affiliation','Enugu State University Teaching Hospital, Enugu Nigeria'),(79,'en_US','biography',''),(79,'en_US','familyName','Ekwochi'),(79,'en_US','givenName','Uchenna'),(80,'','country','ID'),(80,'','orcid',''),(80,'','url',''),(80,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(80,'en_US','biography',''),(80,'en_US','familyName','Anggraini'),(80,'en_US','givenName','Agnina Listya'),(83,'','country','BR'),(83,'','orcid',''),(83,'','url',''),(83,'en_US','affiliation','Faculdade de Medicina de São José do Rio Preto (FAMERP) Brasil'),(83,'en_US','biography',''),(83,'en_US','familyName','Souza'),(83,'en_US','givenName','Renato Ferneda de'),(84,'','country','BR'),(84,'','orcid',''),(84,'','url',''),(84,'en_US','affiliation','Faculdade de Medicina de São José do Rio Preto (FAMERP) Brasil'),(84,'en_US','biography',''),(84,'en_US','familyName','Rubio'),(84,'en_US','givenName','Fernando Gongora'),(85,'','country','TR'),(85,'','orcid',''),(85,'','url',''),(85,'en_US','affiliation','Kocaeli University, Faculty of Medicine, Departments of Anatomy, Turkey'),(85,'en_US','biography',''),(85,'en_US','familyName','Tuncay'),(85,'en_US','givenName','Çolak'),(86,'','country','TR'),(86,'','orcid',''),(86,'','url',''),(86,'en_US','affiliation','University of Health Sciences, Derince Training and Research Hospital, Radiology Clinic, Turkey'),(86,'en_US','biography',''),(86,'en_US','familyName','Ahmet'),(86,'en_US','givenName','Yalnız'),(87,'','country','TR'),(87,'','orcid',''),(87,'','url',''),(87,'en_US','affiliation','Kocaeli University, Faculty of Medicine, Departments of  Radiology, Turkey'),(87,'en_US','biography',''),(87,'en_US','familyName','İsa'),(87,'en_US','givenName','Çam'),(88,'','country','TR'),(88,'','orcid',''),(88,'','url',''),(88,'en_US','affiliation','Hitit University, Çorum Erol OLÇOK Training and Research Hospital, Gastroenterology Clinic, Turkey'),(88,'en_US','biography',''),(88,'en_US','familyName','Mesut'),(88,'en_US','givenName','Sezikli'),(89,'','country','ID'),(89,'','orcid',''),(89,'','url',''),(89,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(89,'en_US','biography',''),(89,'en_US','familyName','Dwiyanti'),(89,'en_US','givenName','Ratih Dewi'),(91,'','country','ID'),(91,'','orcid',''),(91,'','url',''),(91,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(91,'en_US','biography',''),(91,'en_US','familyName','Azmi'),(91,'en_US','givenName','Dini Aulia'),(92,'','country','ID'),(92,'','orcid',''),(92,'','url',''),(92,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(92,'en_US','biography',''),(92,'en_US','familyName','Nurlailah'),(92,'en_US','givenName','Nurlailah'),(93,'','country','ID'),(93,'','orcid',''),(93,'','url',''),(93,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(93,'en_US','biography',''),(93,'en_US','familyName','Dwiyanti'),(93,'en_US','givenName','Ratih Dewi'),(94,'','country','ID'),(94,'','orcid',''),(94,'','url',''),(94,'en_US','affiliation','Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin Indonesia'),(94,'en_US','biography',''),(94,'en_US','familyName','Thuraidah'),(94,'en_US','givenName','Anny'),(95,'','country','ID'),(95,'','orcid',''),(95,'en_US','affiliation','Poltekkes Kemenkes Banjarmasin Indonesia'),(95,'en_US','familyName','fadia'),(95,'en_US','givenName','fadia'),(96,'','country','TR'),(96,'','orcid',''),(96,'en_US','affiliation','drdeniz'),(96,'en_US','familyName','İncaman'),(96,'en_US','givenName','Deniz'),(98,'','country','TR'),(98,'','orcid',''),(98,'','url',''),(98,'en_US','affiliation','Department of Obstetrics and Gynecology, Batman Maternity and Child Health Hospital, Batman, Turkey.'),(98,'en_US','biography',''),(98,'en_US','familyName','Okuyan'),(98,'en_US','givenName','Erhan'),(99,'','country','TR'),(99,'','orcid',''),(99,'','url',''),(99,'en_US','affiliation','Department of Perinatology, Baskent University School of Medicine, Ankara, Turkey.'),(99,'en_US','biography',''),(99,'en_US','familyName','Gunakan'),(99,'en_US','givenName','Emre'),(100,'','country','TR'),(100,'','orcid',''),(100,'','url',''),(100,'en_US','affiliation','Department of Perinatology, Baskent University  School of Medicine, Ankara, Turkey'),(100,'en_US','biography',''),(100,'en_US','familyName','Esin'),(100,'en_US','givenName','Sertaç'),(101,'','country','NG'),(101,'','orcid',''),(101,'','url',''),(101,'en_US','affiliation','Department of Human Anatomy, Faculty of Basic Medical Sciences, Cross River University of Technology, Nigeria.'),(101,'en_US','biography',''),(101,'en_US','familyName','Isaac'),(101,'en_US','givenName','Ubi Essien'),(102,'','country','SA'),(102,'','orcid',''),(102,'en_US','affiliation','ministry  of health'),(102,'en_US','familyName','sari'),(102,'en_US','givenName','sahar ali'),(103,'','country','SA'),(103,'','orcid',''),(103,'','url',''),(103,'en_US','affiliation',''),(103,'en_US','biography',''),(103,'en_US','familyName','Al-Khaldi'),(103,'en_US','givenName','Yahia'),(105,'','country','MY'),(105,'','orcid',''),(105,'en_US','affiliation','Universiti Sains Malaysia'),(105,'en_US','familyName','Hamzan'),(105,'en_US','givenName','Muhammad Izzuddin'),(106,'','country','ID'),(106,'','orcid',''),(106,'','url',''),(106,'en_US','affiliation','Majoring in Midwifery Poltekkes Kemenkes Banjarmasin Indonesia'),(106,'en_US','biography',''),(106,'en_US','familyName','Dewi'),(106,'en_US','givenName','Vonny Khresna'),(107,'','country','NG'),(107,'','orcid',''),(107,'','url',''),(107,'en_US','affiliation','Department of Human Anatomy, Faculty of Basic Medical Sciences, Cross River University of Technology, Nigeria.'),(107,'en_US','biography',''),(107,'en_US','familyName','Etim'),(107,'en_US','givenName','Kom-Abasi Daniel'),(108,'','country','NG'),(108,'','orcid',''),(108,'','url',''),(108,'en_US','affiliation','Department of Human Anatomy, College of Medical Sciences, University of Calabar, Nigeria.'),(108,'en_US','biography',''),(108,'en_US','familyName','Igiri'),(108,'en_US','givenName','Anozeng Oyono'),(111,'','country','TR'),(111,'','orcid',''),(111,'en_US','affiliation','Sakarya University Training and Research Hospital'),(111,'en_US','familyName','Durmuş'),(111,'en_US','givenName','Ensar'),(112,'','country','TR'),(112,'','orcid',''),(112,'en_US','affiliation','Sakarya University Training and Research Hospital'),(112,'en_US','familyName','Durmuş'),(112,'en_US','givenName','Ensar'),(113,'','country','TR'),(113,'','orcid',''),(113,'','url',''),(113,'en_US','affiliation','Istanbul Başakşehir Çam and Sakura City Hospital'),(113,'en_US','biography',''),(113,'en_US','familyName','Uluutku'),(113,'en_US','givenName','Gizem Berfin'),(114,'','country','TR'),(114,'','orcid',''),(114,'','url',''),(114,'en_US','affiliation',''),(114,'en_US','biography',''),(114,'en_US','familyName','Ergin'),(114,'en_US','givenName','Basak'),(115,'','country','TR'),(115,'','orcid',''),(115,'','url',''),(115,'en_US','affiliation',''),(115,'en_US','biography',''),(115,'en_US','familyName','Kale'),(115,'en_US','givenName','İbrahim'),(116,'','country','TR'),(116,'','orcid',''),(116,'','url',''),(116,'en_US','affiliation',''),(116,'en_US','biography',''),(116,'en_US','familyName','Bayık'),(116,'en_US','givenName','Rahime Nida'),(117,'','country','ID'),(117,'','orcid',''),(117,'en_US','affiliation','poltek bjm'),(117,'en_US','familyName','123'),(117,'en_US','givenName','tes123 tes'),(118,'','country','ID'),(118,'','orcid',''),(118,'','url',''),(118,'en_US','affiliation','Majoring in Midwifery Poltekkes Kemenkes Banjarmasin, Indonesia'),(118,'en_US','biography',''),(118,'en_US','familyName','Kirana'),(118,'en_US','givenName','Rita'),(119,'','country','ID'),(119,'','orcid',''),(119,'','url',''),(119,'en_US','affiliation','Majoring in Midwifery Poltekkes Kemenkes Banjarmasin Indonesia'),(119,'en_US','biography',''),(119,'en_US','familyName','Mukhtar'),(119,'en_US','givenName','Muhammad'),(120,'','country','ID'),(120,'','orcid',''),(120,'en_US','affiliation','Poltekkes Kemenkes Banjarmasin Indonesia'),(120,'en_US','familyName','fadia'),(120,'en_US','givenName','fadia');
/*!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,
  `seq` double NOT NULL DEFAULT 0,
  `email` varchar(90) NOT NULL,
  `user_group_id` bigint(20) DEFAULT NULL,
  `include_in_browse` tinyint(4) NOT NULL DEFAULT 1,
  `publication_id` bigint(20) NOT NULL,
  PRIMARY KEY (`author_id`),
  KEY `authors_publication_id` (`publication_id`)
) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=utf8;
/*!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,'putrim@gmail.com',14,1,1),(2,1,'yulisusanti@gmail.com',14,1,2),(6,1,'arista333@gmail.com',14,1,5),(8,2,'rifqohmayasin@gmail.com',14,1,5),(10,2,'muhlisin@gmail.com',14,1,1),(11,1,'ruriwidyati@gmail.com',14,1,4),(13,2,'neni78@gmail.com',14,1,4),(14,3,'haitami4@gmail.com',14,1,4),(15,1,'ahmadrifai@gmail.com',14,1,3),(16,2,'muhlisin@gmail.com',14,1,3),(19,2,'ratihdewi@gmail.com',14,1,2),(20,1,'nurulhuda@gmail.com',14,1,6),(21,2,'ratihdewi@gmail.com',14,1,6),(22,3,'annythura@gmail.com',14,1,6),(23,1,'ayusutiany@gmail.com',14,1,7),(24,2,'ratihdewi@gmail.com',14,1,7),(25,3,'nenioktiyani@gmail.com',14,1,7),(26,1,'mahmudahst@gmail.com',14,1,8),(27,2,'muntaha@gmail.com',14,1,8),(28,3,'muhlisin@gmail.com',14,1,8),(29,1,'yusufbaltrak@gmail.com',14,1,9),(30,1,'ayufahani@gmail.com',14,1,10),(31,2,'ratihdewi@gmail.com',14,1,10),(32,3,'muhlisin@gmail.com',14,1,10),(33,1,'dratakanbaltrak@gmail.com',14,1,11),(35,1,'gunesbolatli83@gmail.com',14,1,12),(36,1,'ozankocak79@gmail.com',14,1,13),(37,1,'dryasintire@hotmail.com',14,1,14),(38,2,'nadire@gmail.com',14,1,12),(39,3,'zeliha@gmail.com',14,1,12),(40,4,'alisami@gmail.com',14,1,12),(41,5,'ismilhan@gmail.com',14,1,12),(42,6,'kagan@gmail.com',14,1,12),(43,7,'yahyap@gmail.com',14,1,12),(44,2,'eyup@gmail.com',14,1,14),(45,3,'abdullahcelep@gmail.com',14,1,14),(46,4,'aydinm@gmail.com',14,1,14),(47,2,'kursan@gmail.com',14,1,13),(48,3,'coskun@gmail.com',14,1,13),(49,4,'hirofumi@gmail.com',14,1,13),(50,5,'hirotomo@gmail.com',14,1,13),(51,6,'naomichi@gmail.com',14,1,13),(52,1,'harisnurdin@gmail.com',14,1,15),(53,1,'novinakusuma@gmail.com',14,1,16),(54,2,'annythura@gmail.com',14,1,16),(55,3,'nurlailah@gmail.com',14,1,16),(56,2,'ratihdd@gmail.com',14,1,15),(57,6,'dratakanbaltrak@gmail.com',14,1,17),(58,1,'dratakanbaltrak@gmail.com',14,1,17),(59,2,'seniha@gmail.com',14,1,11),(60,3,'onursal@gmail.com',14,1,11),(61,3,'muhlisin@gmail.com',14,1,15),(62,1,'drsavaskaratas@yahoo.com',14,1,18),(63,2,'aysunisiklar@gmail.com',14,1,18),(64,3,'onyedelu@yahoo.com',14,1,19),(65,1,'ikennandu@gmail.com',14,1,19),(66,2,'ifeomaikojo@gmail.com',14,1,19),(67,5,'ogefranamadi@gmail.com',14,1,19),(68,4,'obinopunchus@yahoo.com',14,1,19),(69,6,'isaacasinobi@gmail.com',14,1,19),(70,7,'uekwochi@yahoo.co.uk',14,1,19),(71,7,'onyedelu@yahoo.com',14,1,20),(72,1,'ikennandu@gmail.com',14,1,20),(73,2,'ikennandu@gmail.com',14,1,20),(74,4,'ugochikani@yahoo.com',14,1,20),(75,5,'obinopunchus@yahoo.com',14,1,20),(76,6,'adaobi.bisi-onyemaechi@unn.edu.ng',14,1,20),(77,8,'isaacasinobi@gmail.com',14,1,20),(78,9,'uekwochi@gmail.com',14,1,20),(79,3,'uekwochi@gmail.com',14,1,20),(80,1,'agninalistya@gmail.com',14,1,21),(83,1,'refsouza@uol.com.br',14,1,23),(84,2,'fegorubio@gmail.com',14,1,23),(85,2,'colak@gmail.com',14,1,17),(86,3,'yalniz@gmail.com',14,1,17),(87,4,'camisa@gmail.com',14,1,17),(88,5,'sezikli@gmail.com',14,1,17),(89,3,'yanti@gmail.com',14,1,22),(91,1,'diniaulia@gmail.com',14,1,22),(92,2,'nurlailah28@gmail.com',14,1,22),(93,2,'yanti@gmail.com',14,1,21),(94,3,'annythura2014@gmail.com',14,1,21),(95,1,'fadiafadia@gmail.com',14,1,24),(96,1,'denizimgs@windowslive.com',14,1,25),(98,1,'dreo06@hotmail.com',14,1,26),(99,2,'emregunakan@gmail.com',14,1,26),(100,3,'rhnkyn@hotmail.com',14,1,26),(101,2,'isaacubi@crutech.edu.ng',14,1,27),(102,1,'dr.sari.s@hotmail.com',14,1,28),(103,2,'yahiammh@hotmail.com',14,1,28),(105,1,'drmizzud@gmail.com',14,1,29),(106,1,'vonnykhresna@gmail.com',14,1,30),(107,1,'komabasi@gmail.com',14,1,27),(108,3,'anozeng@gmail.com',14,1,27),(111,1,'muhalefet@hotmail.com',14,1,31),(112,1,'muhalefet@hotmail.com',14,1,32),(113,1,'berfinuluutku@yahoo.com',14,1,33),(114,2,'jenn1039@hotmail.com',14,1,33),(115,3,'dribakale@hotmail.com',14,1,33),(116,4,'drnidaergin@gmail.com',14,1,33),(117,1,'apinaga53@ymail.com',14,1,34),(118,2,'ritakirana@gmail.com',14,1,30),(119,3,'mmukhtar@gmail.com',14,1,30),(120,1,'fadiafadia@gmail.com',14,1,35);
/*!40000 ALTER TABLE `authors` 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=InnoDB 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=InnoDB 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=InnoDB DEFAULT CHARSET=utf8;
/*!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,
  `publication_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_publication_seq` (`publication_id`,`seq`),
  KEY `citations_publication` (`publication_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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 `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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8;
/*!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,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,2,1),(9,2,2),(10,2,3),(11,2,4),(12,2,5),(13,2,6),(14,2,7),(15,3,1),(16,3,2),(17,3,3),(18,4,1),(19,4,2),(20,4,3),(21,4,4),(22,4,5),(23,4,6),(24,4,7),(25,5,1),(26,5,2),(27,5,3),(28,6,1),(29,6,2),(30,6,3),(31,6,4),(32,6,5),(33,6,6),(34,6,7),(35,6,8),(36,6,9),(37,6,10),(38,6,11),(39,6,12),(40,7,1),(41,7,2),(54,8,0),(57,8,0),(58,8,0),(78,8,0),(89,8,0),(101,8,0),(110,8,0),(112,8,0),(113,8,0),(114,8,0),(115,8,0),(116,8,0),(128,8,0),(129,8,0),(130,8,0),(131,8,0),(104,207,1),(107,295,1),(105,314,1),(49,368,1),(106,461,1),(75,831,1),(69,2974,1),(71,3018,1),(70,3906,1),(76,3960,1),(73,4577,1),(103,4961,1),(81,6447,1),(82,6701,1),(83,6701,2),(84,6701,3),(85,6701,4),(86,6701,5),(108,7276,1),(109,7289,1),(99,7404,1),(102,10377,1),(119,14097,1),(123,14422,1),(120,23318,1),(124,30832,1),(125,30832,2),(126,30832,3),(127,31287,1);
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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','issue','string'),(3,'','name','article','string'),(4,'','name','proceeding','string'),(5,'','name','conference','string'),(6,'','name','preprint','string'),(7,'','name','unknown','string'),(8,'','name','book','string'),(9,'','name','bookitem','string'),(10,'','name','proceeding','string'),(11,'','name','conference','string'),(12,'','name','report','string'),(13,'','name','document','string'),(14,'','name','unknown','string'),(15,'','name','personal','string'),(16,'','name','corporate','string'),(17,'','name','conference','string'),(18,'','description','Author','string'),(18,'','name','aut','string'),(19,'','description','Contributor','string'),(19,'','name','ctb','string'),(20,'','description','Editor','string'),(20,'','name','edt','string'),(21,'','description','Illustrator','string'),(21,'','name','ill','string'),(22,'','description','Photographer','string'),(22,'','name','pht','string'),(23,'','description','Sponsor','string'),(23,'','name','spn','string'),(24,'','description','Translator','string'),(24,'','name','trl','string'),(25,'','name','multimedia','string'),(26,'','name','still image','string'),(27,'','name','text','string'),(28,'','name','article','string'),(29,'','name','book','string'),(30,'','name','conference publication','string'),(31,'','name','issue','string'),(32,'','name','journal','string'),(33,'','name','newspaper','string'),(34,'','name','picture','string'),(35,'','name','review','string'),(36,'','name','periodical','string'),(37,'','name','series','string'),(38,'','name','thesis','string'),(39,'','name','web site','string'),(40,'','name','electronic','string'),(41,'','name','print','string'),(49,'en_US','submissionKeyword','circumcision; newborn; plastic clamp','string'),(54,'','interest','Anatomy','string'),(57,'','interest','cardiac surgery','string'),(58,'','interest','Regional anesthesia','string'),(69,'en_US','submissionKeyword','hyoid; multi detector computed tomography; ossification; variation','string'),(70,'en_US','submissionKeyword','age; education; internet use; source of surgery information; source of anesthesia information','string'),(71,'en_US','submissionKeyword','COL4A1; COL4A2; perinatal stroke; congenital hemiplegia; cerebral palsy','string'),(73,'en_US','submissionKeyword','Citrus hystrix D.C; antibacterial; Staphylococcus aureus','string'),(75,'en_US','submissionKeyword','pilonidal sinus; sacrococcygeal region; Z-plasty; seroma','string'),(76,'en_US','submissionKeyword','basil powder; Malassezia furfur','string'),(78,'','interest','PEDIATRIC NEPHROLOGY','string'),(81,'en_US','submissionKeyword','ophthalmological; non-traumatic; coma, paediatric; Nigeria','string'),(82,'en_US','submissionKeyword','Diabetic Ketoacidosis','string'),(83,'en_US','submissionKeyword','Children','string'),(84,'en_US','submissionKeyword','Nigeria','string'),(85,'en_US','submissionKeyword','Prevalence','string'),(86,'en_US','submissionKeyword','Pattern','string'),(89,'','interest','Infectious Diseases','string'),(99,'en_US','submissionKeyword','Renal Tubular Dysfunction; Tenofovir; Antiretroviral Therapy; HIV','string'),(101,'','interest','Gynecologic Oncology','string'),(102,'en_US','submissionKeyword','Chromolaena odorata L.; Salmonella typhi; Staphylococcus aureus','string'),(103,'en_US','submissionKeyword','Biliary tract variations; choledochal diameter; choledochal stone','string'),(104,'en_US','submissionKeyword','cinnamon (Cinnamomum burmannii); Staphyloccocus aureus','string'),(105,'en_US','submissionKeyword','Escherichia coli; Dayak Onions (Eleutherine palmifolia (L.) Merr)','string'),(106,'en_US','submissionKeyword','snack food; Bacillus cereus','string'),(107,'en_US','submissionKeyword','rosella (Hibiscus sabdariffa L.); Salmonella typhi','string'),(108,'en_US','submissionKeyword','Garlic (Allium sativum L.); Staphylococcus aureus; Escherichia coli','string'),(109,'en_US','submissionKeyword','Centella asiatica (L.) Urban; Streptococcus pyogenes; Pseudomonas aeruginosa','string'),(110,'','interest','editorial board squad','string'),(112,'','interest','Gross and microscopic anatomy','string'),(113,'','interest','Neurobiology','string'),(114,'','interest','Histopathology','string'),(115,'','interest','Developmental and reproductive biology','string'),(116,'','interest','Biological/medical anthropology','string'),(119,'en_US','submissionKeyword','Coronavirus; Covid-19; pregnancy','string'),(120,'en_US','submissionKeyword','dynamic facial reanimation, free gracilis muscle transfer, facial nerve palsy, FGMT','string'),(123,'en_US','submissionKeyword','Psidium guajava; alteration; morphology; testis; folk medicine','string'),(124,'en_US','submissionKeyword','covid-19','string'),(125,'en_US','submissionKeyword','recurrence','string'),(126,'en_US','submissionKeyword','pandemic','string'),(127,'en_US','submissionKeyword','Key words: TSH,  insemination, infertility,','string'),(128,'','interest','health','string'),(129,'','interest','bacteriology','string'),(130,'','interest','Coffee and conversation','string'),(131,'','interest','sport','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=InnoDB AUTO_INCREMENT=36403 DEFAULT CHARSET=utf8;
/*!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 (8,'interest',0,0),(6,'mods34-genre-marcgt',0,0),(4,'mods34-name-role-roleTerms-marcrelator',0,0),(3,'mods34-name-types',0,0),(7,'mods34-physicalDescription-form-marcform',0,0),(5,'mods34-typeOfResource',0,0),(2,'openurl10-book-genres',0,0),(1,'openurl10-journal-genres',0,0),(17,'submissionAgency',1048588,1),(45,'submissionAgency',1048588,2),(76,'submissionAgency',1048588,3),(86,'submissionAgency',1048588,4),(96,'submissionAgency',1048588,5),(209,'submissionAgency',1048588,6),(297,'submissionAgency',1048588,7),(316,'submissionAgency',1048588,8),(370,'submissionAgency',1048588,9),(463,'submissionAgency',1048588,10),(833,'submissionAgency',1048588,11),(2976,'submissionAgency',1048588,12),(3020,'submissionAgency',1048588,13),(3908,'submissionAgency',1048588,14),(3962,'submissionAgency',1048588,15),(4579,'submissionAgency',1048588,16),(4963,'submissionAgency',1048588,17),(5245,'submissionAgency',1048588,18),(6449,'submissionAgency',1048588,19),(6703,'submissionAgency',1048588,20),(7278,'submissionAgency',1048588,21),(7291,'submissionAgency',1048588,22),(7406,'submissionAgency',1048588,23),(10379,'submissionAgency',1048588,24),(10405,'submissionAgency',1048588,25),(14099,'submissionAgency',1048588,26),(14424,'submissionAgency',1048588,27),(16961,'submissionAgency',1048588,28),(23320,'submissionAgency',1048588,29),(26789,'submissionAgency',1048588,30),(30834,'submissionAgency',1048588,31),(36397,'submissionAgency',1048588,32),(31289,'submissionAgency',1048588,33),(36402,'submissionAgency',1048588,34),(35998,'submissionAgency',1048588,35),(16,'submissionDiscipline',1048588,1),(44,'submissionDiscipline',1048588,2),(75,'submissionDiscipline',1048588,3),(85,'submissionDiscipline',1048588,4),(95,'submissionDiscipline',1048588,5),(208,'submissionDiscipline',1048588,6),(296,'submissionDiscipline',1048588,7),(315,'submissionDiscipline',1048588,8),(369,'submissionDiscipline',1048588,9),(462,'submissionDiscipline',1048588,10),(832,'submissionDiscipline',1048588,11),(2975,'submissionDiscipline',1048588,12),(3019,'submissionDiscipline',1048588,13),(3907,'submissionDiscipline',1048588,14),(3961,'submissionDiscipline',1048588,15),(4578,'submissionDiscipline',1048588,16),(4962,'submissionDiscipline',1048588,17),(5244,'submissionDiscipline',1048588,18),(6448,'submissionDiscipline',1048588,19),(6702,'submissionDiscipline',1048588,20),(7277,'submissionDiscipline',1048588,21),(7290,'submissionDiscipline',1048588,22),(7405,'submissionDiscipline',1048588,23),(10378,'submissionDiscipline',1048588,24),(10404,'submissionDiscipline',1048588,25),(14098,'submissionDiscipline',1048588,26),(14423,'submissionDiscipline',1048588,27),(16960,'submissionDiscipline',1048588,28),(23319,'submissionDiscipline',1048588,29),(26788,'submissionDiscipline',1048588,30),(30833,'submissionDiscipline',1048588,31),(36395,'submissionDiscipline',1048588,32),(31288,'submissionDiscipline',1048588,33),(36400,'submissionDiscipline',1048588,34),(35997,'submissionDiscipline',1048588,35),(15,'submissionKeyword',1048588,1),(43,'submissionKeyword',1048588,2),(74,'submissionKeyword',1048588,3),(84,'submissionKeyword',1048588,4),(94,'submissionKeyword',1048588,5),(207,'submissionKeyword',1048588,6),(295,'submissionKeyword',1048588,7),(314,'submissionKeyword',1048588,8),(368,'submissionKeyword',1048588,9),(461,'submissionKeyword',1048588,10),(831,'submissionKeyword',1048588,11),(2974,'submissionKeyword',1048588,12),(3018,'submissionKeyword',1048588,13),(3906,'submissionKeyword',1048588,14),(3960,'submissionKeyword',1048588,15),(4577,'submissionKeyword',1048588,16),(4961,'submissionKeyword',1048588,17),(5243,'submissionKeyword',1048588,18),(6447,'submissionKeyword',1048588,19),(6701,'submissionKeyword',1048588,20),(7276,'submissionKeyword',1048588,21),(7289,'submissionKeyword',1048588,22),(7404,'submissionKeyword',1048588,23),(10377,'submissionKeyword',1048588,24),(10403,'submissionKeyword',1048588,25),(14097,'submissionKeyword',1048588,26),(14422,'submissionKeyword',1048588,27),(16959,'submissionKeyword',1048588,28),(23318,'submissionKeyword',1048588,29),(26787,'submissionKeyword',1048588,30),(30832,'submissionKeyword',1048588,31),(36393,'submissionKeyword',1048588,32),(31287,'submissionKeyword',1048588,33),(36398,'submissionKeyword',1048588,34),(35996,'submissionKeyword',1048588,35),(18,'submissionLanguage',1048588,1),(46,'submissionLanguage',1048588,2),(77,'submissionLanguage',1048588,3),(87,'submissionLanguage',1048588,4),(97,'submissionLanguage',1048588,5),(210,'submissionLanguage',1048588,6),(298,'submissionLanguage',1048588,7),(317,'submissionLanguage',1048588,8),(371,'submissionLanguage',1048588,9),(464,'submissionLanguage',1048588,10),(834,'submissionLanguage',1048588,11),(2977,'submissionLanguage',1048588,12),(3021,'submissionLanguage',1048588,13),(3909,'submissionLanguage',1048588,14),(3963,'submissionLanguage',1048588,15),(4580,'submissionLanguage',1048588,16),(4964,'submissionLanguage',1048588,17),(5246,'submissionLanguage',1048588,18),(6450,'submissionLanguage',1048588,19),(6704,'submissionLanguage',1048588,20),(7279,'submissionLanguage',1048588,21),(7292,'submissionLanguage',1048588,22),(7407,'submissionLanguage',1048588,23),(10380,'submissionLanguage',1048588,24),(10406,'submissionLanguage',1048588,25),(14100,'submissionLanguage',1048588,26),(14425,'submissionLanguage',1048588,27),(16962,'submissionLanguage',1048588,28),(23321,'submissionLanguage',1048588,29),(26790,'submissionLanguage',1048588,30),(30835,'submissionLanguage',1048588,31),(36396,'submissionLanguage',1048588,32),(31290,'submissionLanguage',1048588,33),(36401,'submissionLanguage',1048588,34),(35999,'submissionLanguage',1048588,35),(14,'submissionSubject',1048588,1),(42,'submissionSubject',1048588,2),(73,'submissionSubject',1048588,3),(83,'submissionSubject',1048588,4),(93,'submissionSubject',1048588,5),(206,'submissionSubject',1048588,6),(294,'submissionSubject',1048588,7),(313,'submissionSubject',1048588,8),(367,'submissionSubject',1048588,9),(460,'submissionSubject',1048588,10),(830,'submissionSubject',1048588,11),(2973,'submissionSubject',1048588,12),(3017,'submissionSubject',1048588,13),(3905,'submissionSubject',1048588,14),(3959,'submissionSubject',1048588,15),(4576,'submissionSubject',1048588,16),(4960,'submissionSubject',1048588,17),(5242,'submissionSubject',1048588,18),(6446,'submissionSubject',1048588,19),(6700,'submissionSubject',1048588,20),(7275,'submissionSubject',1048588,21),(7288,'submissionSubject',1048588,22),(7403,'submissionSubject',1048588,23),(10376,'submissionSubject',1048588,24),(10402,'submissionSubject',1048588,25),(14096,'submissionSubject',1048588,26),(14421,'submissionSubject',1048588,27),(16958,'submissionSubject',1048588,28),(23317,'submissionSubject',1048588,29),(26786,'submissionSubject',1048588,30),(30831,'submissionSubject',1048588,31),(36394,'submissionSubject',1048588,32),(31286,'submissionSubject',1048588,33),(36399,'submissionSubject',1048588,34),(35995,'submissionSubject',1048588,35);
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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 */;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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 */;
/*!40000 ALTER TABLE `data_object_tombstones` 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,
  `review_round_id` bigint(20) DEFAULT NULL,
  `stage_id` bigint(20) DEFAULT NULL,
  `round` tinyint(4) NOT NULL,
  `editor_id` bigint(20) NOT NULL,
  `decision` tinyint(4) NOT NULL,
  `date_decided` datetime NOT NULL,
  PRIMARY KEY (`edit_decision_id`),
  KEY `edit_decisions_submission_id` (`submission_id`),
  KEY `edit_decisions_editor_id` (`editor_id`)
) ENGINE=InnoDB AUTO_INCREMENT=143 DEFAULT CHARSET=utf8;
/*!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,0,1,0,1,1,'2019-03-28 13:33:37'),(2,1,0,4,0,1,7,'2019-03-28 13:34:11'),(3,2,0,1,0,1,8,'2019-03-29 07:33:39'),(4,2,1,3,1,1,2,'2019-03-29 07:47:35'),(5,2,1,3,1,1,1,'2019-03-29 07:56:47'),(6,2,0,4,0,1,7,'2019-03-29 07:59:02'),(7,1,0,5,0,1,8,'2019-03-31 14:22:40'),(8,1,2,3,1,1,2,'2019-03-31 14:26:18'),(9,1,2,3,1,1,2,'2019-03-31 14:31:07'),(10,5,0,1,0,1,8,'2019-03-31 14:55:17'),(11,4,0,1,0,1,8,'2019-03-31 14:57:35'),(12,3,0,1,0,1,8,'2019-03-31 14:58:55'),(13,5,3,3,1,1,2,'2019-03-31 15:04:24'),(14,4,4,3,1,1,2,'2019-03-31 15:04:54'),(15,3,5,3,1,1,2,'2019-03-31 15:06:26'),(16,1,0,3,0,1,7,'2019-03-31 15:40:56'),(17,5,3,3,1,1,2,'2019-03-31 15:43:36'),(18,5,0,3,0,1,7,'2019-03-31 15:45:15'),(19,4,0,3,0,1,7,'2019-03-31 15:51:10'),(20,3,0,3,0,1,7,'2019-03-31 16:00:31'),(21,6,0,1,0,1,8,'2019-08-24 10:50:15'),(22,8,0,1,0,1,8,'2019-08-28 03:48:09'),(23,7,0,1,0,1,8,'2019-08-28 03:50:40'),(24,9,0,1,0,1,8,'2019-08-30 04:06:53'),(25,8,7,3,1,1,2,'2019-08-30 04:15:39'),(26,9,9,3,1,1,2,'2019-08-30 08:02:05'),(27,7,8,3,1,1,2,'2019-08-30 08:02:44'),(28,6,6,3,1,1,2,'2019-08-30 08:03:14'),(29,9,9,3,1,1,2,'2019-08-30 12:11:53'),(30,8,7,3,1,1,2,'2019-08-30 12:12:31'),(31,7,8,3,1,1,2,'2019-08-30 12:13:14'),(32,6,6,3,1,1,2,'2019-08-30 12:13:46'),(33,9,9,3,1,1,12,'2019-08-30 12:17:19'),(34,8,7,3,1,1,11,'2019-08-30 12:29:52'),(35,8,7,3,1,1,1,'2019-08-30 12:31:43'),(36,7,8,3,1,12,11,'2019-08-30 12:37:22'),(37,6,6,3,1,1,1,'2019-08-30 12:39:15'),(38,9,9,3,1,1,1,'2019-08-30 12:43:35'),(39,7,8,3,1,1,1,'2019-08-30 12:44:41'),(40,10,0,1,0,12,8,'2019-08-31 08:35:02'),(41,10,10,3,1,1,12,'2019-08-31 08:39:23'),(42,10,10,3,1,1,2,'2019-08-31 08:39:46'),(43,10,10,3,1,1,11,'2019-08-31 08:42:18'),(44,10,10,3,1,1,1,'2019-08-31 08:42:33'),(45,10,0,4,0,12,7,'2019-08-31 13:10:41'),(46,7,0,4,0,12,7,'2019-08-31 13:22:03'),(47,9,0,4,0,1,7,'2019-08-31 13:30:49'),(48,8,0,4,0,1,7,'2019-08-31 13:35:54'),(49,6,0,4,0,1,7,'2019-08-31 13:40:22'),(50,14,0,1,0,1,8,'2020-02-04 11:15:08'),(51,13,0,1,0,1,8,'2020-02-04 11:17:42'),(52,14,11,3,1,1,12,'2020-02-04 13:20:12'),(53,13,12,3,1,1,12,'2020-02-04 13:20:54'),(54,14,11,3,1,1,12,'2020-02-12 07:50:07'),(55,13,12,3,1,1,12,'2020-02-12 07:51:20'),(56,13,12,3,1,1,11,'2020-02-17 13:37:17'),(57,13,12,3,1,1,12,'2020-02-18 22:56:35'),(58,11,0,1,0,1,8,'2020-02-19 07:14:39'),(59,15,0,1,0,1,8,'2020-02-19 07:18:04'),(60,15,14,3,1,1,12,'2020-02-19 07:24:47'),(61,13,12,3,1,5,2,'2020-02-19 08:56:55'),(62,14,11,3,1,29,2,'2020-02-19 09:12:24'),(63,15,14,3,1,5,2,'2020-02-19 09:45:34'),(64,15,14,3,1,5,2,'2020-02-19 09:46:07'),(65,11,13,3,1,5,2,'2020-02-19 09:48:20'),(66,14,11,3,1,5,2,'2020-02-19 09:51:33'),(67,11,13,3,1,1,12,'2020-02-24 10:49:53'),(68,15,14,3,1,1,11,'2020-02-27 10:01:49'),(69,15,0,3,0,1,7,'2020-02-27 10:02:37'),(70,13,12,3,1,1,11,'2020-02-27 10:06:30'),(71,13,0,3,0,1,7,'2020-02-27 10:07:02'),(72,14,11,3,1,1,11,'2020-02-28 07:55:54'),(73,14,0,3,0,1,7,'2020-02-28 07:56:30'),(74,16,0,1,0,1,8,'2020-03-07 09:32:17'),(75,17,0,1,0,1,8,'2020-03-19 09:23:58'),(76,17,16,3,1,1,2,'2020-03-19 10:38:09'),(77,16,15,3,1,15,2,'2020-03-19 13:49:18'),(78,16,15,3,1,1,1,'2020-03-19 14:42:10'),(79,17,16,3,1,1,1,'2020-03-25 07:39:48'),(80,17,0,4,0,1,7,'2020-03-25 09:21:51'),(81,16,0,4,0,1,7,'2020-03-25 09:24:31'),(82,11,13,3,1,1,11,'2020-03-27 07:16:08'),(83,11,13,3,1,5,1,'2020-03-27 07:17:39'),(84,11,0,4,0,1,7,'2020-03-27 10:33:16'),(86,19,0,1,0,1,8,'2020-04-06 05:49:39'),(89,19,18,3,1,1,2,'2020-04-25 10:00:37'),(91,19,18,3,1,1,2,'2020-04-25 11:12:33'),(92,19,18,3,1,1,1,'2020-05-03 07:33:04'),(93,19,0,4,0,1,7,'2020-05-03 07:33:38'),(94,20,0,1,0,1,8,'2020-05-26 14:00:51'),(95,20,19,3,1,1,2,'2020-05-27 09:37:06'),(96,20,19,3,1,1,2,'2020-05-27 10:07:25'),(97,20,19,3,1,1,1,'2020-06-10 15:45:43'),(98,20,0,4,0,1,7,'2020-06-10 15:47:35'),(99,18,0,1,0,1,8,'2020-07-13 09:35:48'),(100,18,20,3,1,16,2,'2020-07-13 09:48:14'),(101,18,20,3,1,1,2,'2020-07-13 16:30:30'),(102,21,0,1,0,1,8,'2020-07-15 08:41:53'),(103,21,21,3,1,1,2,'2020-07-21 20:48:27'),(104,23,0,1,0,1,8,'2020-07-26 09:56:47'),(105,22,0,1,0,1,8,'2020-07-26 09:59:27'),(106,23,22,3,1,1,2,'2020-07-28 07:27:42'),(107,22,23,3,1,1,2,'2020-07-28 07:28:31'),(108,18,20,3,1,1,1,'2020-07-28 07:29:51'),(109,18,0,4,0,1,7,'2020-07-28 07:30:12'),(110,23,22,3,1,1,1,'2020-07-29 07:27:23'),(111,22,23,3,1,1,1,'2020-07-29 07:28:08'),(112,24,0,1,0,1,8,'2020-08-13 10:43:37'),(113,24,24,3,1,1,2,'2020-08-15 09:39:43'),(114,24,24,3,1,1,1,'2020-08-20 13:54:30'),(115,24,0,4,0,1,7,'2020-08-20 13:55:01'),(116,22,0,4,0,1,7,'2020-08-24 15:52:28'),(117,23,0,4,0,1,7,'2020-08-24 15:54:17'),(118,25,0,1,0,1,8,'2020-09-11 05:01:26'),(119,26,0,1,0,1,8,'2020-09-28 06:07:08'),(120,25,0,1,0,1,9,'2020-09-28 06:23:29'),(121,26,26,3,1,1,2,'2020-10-07 11:26:24'),(122,28,0,1,0,1,8,'2020-10-09 07:46:37'),(123,29,0,1,0,1,8,'2020-10-09 07:48:53'),(124,28,27,3,1,1,2,'2020-10-15 10:26:04'),(125,29,28,3,1,1,2,'2020-10-17 07:46:58'),(126,30,0,1,0,1,8,'2020-10-29 08:28:55'),(127,30,29,3,1,1,2,'2020-11-07 15:49:40'),(128,21,21,3,1,1,1,'2020-11-14 13:42:10'),(129,28,27,3,1,1,1,'2020-11-14 13:43:15'),(130,28,0,4,0,1,7,'2020-11-14 13:44:05'),(131,29,28,3,1,1,1,'2020-11-14 13:45:18'),(132,33,0,1,0,1,8,'2021-01-02 05:44:33'),(133,32,0,1,0,1,8,'2021-01-02 05:49:28'),(134,29,0,4,0,1,7,'2021-01-02 06:11:22'),(135,33,30,3,1,1,2,'2021-01-03 17:26:18'),(136,32,31,3,1,1,2,'2021-01-04 17:09:15'),(137,38,0,1,0,1,8,'2021-02-06 11:34:28'),(138,38,32,3,1,1,2,'2021-02-10 14:37:00'),(139,33,30,3,1,1,1,'2021-02-19 11:41:29'),(140,33,0,4,0,1,7,'2021-02-19 11:42:40'),(141,38,32,3,1,1,1,'2021-02-20 10:16:33'),(142,32,31,3,1,1,1,'2021-02-20 10:17:09');
/*!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,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `sender_id` bigint(20) NOT NULL,
  `date_sent` datetime NOT NULL,
  `event_type` 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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `context_id` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`email_id`),
  UNIQUE KEY `email_templates_email_key` (`email_key`,`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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_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,
  `stage_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`email_id`),
  KEY `email_templates_default_email_key` (`email_key`)
) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8;
/*!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,NULL),(2,'NOTIFICATION_CENTER_DEFAULT',0,1,NULL,NULL,NULL),(3,'PASSWORD_RESET_CONFIRM',0,1,NULL,NULL,NULL),(4,'PASSWORD_RESET',0,1,NULL,NULL,NULL),(5,'USER_REGISTER',0,1,NULL,NULL,NULL),(6,'USER_VALIDATE',0,1,NULL,NULL,NULL),(7,'REVIEWER_REGISTER',0,1,NULL,NULL,NULL),(8,'PUBLISH_NOTIFY',0,1,NULL,NULL,NULL),(9,'LOCKSS_EXISTING_ARCHIVE',0,1,NULL,NULL,NULL),(10,'LOCKSS_NEW_ARCHIVE',0,1,NULL,NULL,NULL),(11,'SUBMISSION_ACK',1,1,NULL,65536,1),(12,'SUBMISSION_ACK_NOT_USER',1,1,NULL,65536,1),(13,'EDITOR_ASSIGN',1,1,16,16,1),(14,'REVIEW_CANCEL',1,1,16,4096,3),(15,'REVIEW_REQUEST',1,1,16,4096,3),(16,'REVIEW_REQUEST_SUBSEQUENT',1,1,16,4096,3),(17,'REVIEW_REQUEST_ONECLICK',1,1,16,4096,3),(18,'REVIEW_REQUEST_ONECLICK_SUBSEQUENT',1,1,16,4096,3),(19,'REVIEW_REQUEST_ATTACHED',0,1,16,4096,3),(20,'REVIEW_REQUEST_ATTACHED_SUBSEQUENT',0,1,16,4096,3),(21,'REVIEW_REQUEST_REMIND_AUTO',0,1,NULL,4096,3),(22,'REVIEW_REQUEST_REMIND_AUTO_ONECLICK',0,1,NULL,4096,3),(23,'REVIEW_CONFIRM',1,1,4096,16,3),(24,'REVIEW_DECLINE',1,1,4096,16,3),(25,'REVIEW_ACK',1,1,16,4096,3),(26,'REVIEW_REMIND',0,1,16,4096,3),(27,'REVIEW_REMIND_AUTO',0,1,NULL,4096,3),(28,'REVIEW_REMIND_ONECLICK',0,1,16,4096,3),(29,'REVIEW_REMIND_AUTO_ONECLICK',0,1,NULL,4096,3),(30,'EDITOR_DECISION_ACCEPT',0,1,16,65536,3),(31,'EDITOR_DECISION_SEND_TO_EXTERNAL',0,1,16,65536,3),(32,'EDITOR_DECISION_SEND_TO_PRODUCTION',0,1,16,65536,5),(33,'EDITOR_DECISION_REVISIONS',0,1,16,65536,3),(34,'EDITOR_DECISION_RESUBMIT',0,1,16,65536,3),(35,'EDITOR_DECISION_DECLINE',0,1,16,65536,3),(36,'EDITOR_DECISION_INITIAL_DECLINE',0,1,16,65536,1),(37,'EDITOR_RECOMMENDATION',0,1,16,16,3),(38,'COPYEDIT_REQUEST',1,1,16,4097,4),(39,'LAYOUT_REQUEST',1,1,16,4097,5),(40,'LAYOUT_COMPLETE',1,1,4097,16,5),(41,'EMAIL_LINK',0,1,1048576,NULL,NULL),(42,'SUBSCRIPTION_NOTIFY',0,1,NULL,1048576,NULL),(43,'OPEN_ACCESS_NOTIFY',0,1,NULL,1048576,NULL),(44,'SUBSCRIPTION_BEFORE_EXPIRY',0,1,NULL,1048576,NULL),(45,'SUBSCRIPTION_AFTER_EXPIRY',0,1,NULL,1048576,NULL),(46,'SUBSCRIPTION_AFTER_EXPIRY_LAST',0,1,NULL,1048576,NULL),(47,'SUBSCRIPTION_PURCHASE_INDL',0,1,NULL,2097152,NULL),(48,'SUBSCRIPTION_PURCHASE_INSTL',0,1,NULL,2097152,NULL),(49,'SUBSCRIPTION_RENEW_INDL',0,1,NULL,2097152,NULL),(50,'SUBSCRIPTION_RENEW_INSTL',0,1,NULL,2097152,NULL),(51,'CITATION_EDITOR_AUTHOR_QUERY',0,1,NULL,NULL,4),(52,'REVISED_VERSION_NOTIFY',0,1,NULL,16,3),(53,'ORCID_COLLECT_AUTHOR_ID',0,1,NULL,NULL,NULL),(54,'MANUAL_PAYMENT_NOTIFICATION',0,1,NULL,NULL,NULL),(55,'PAYPAL_INVESTIGATE_PAYMENT',0,1,NULL,NULL,NULL),(56,'REVIEW_REINSTATE',1,1,16,4096,3),(57,'STATISTICS_REPORT_NOTIFICATION',1,1,16,17,NULL),(58,'ANNOUNCEMENT',0,1,16,1048576,NULL),(59,'ORCID_REQUEST_AUTHOR_AUTHORIZATION',0,1,NULL,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=InnoDB DEFAULT CHARSET=utf8;
/*!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 ('ANNOUNCEMENT','ar_IQ','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nقم بزيارة موقعنا للاطلاع على <a href=\"{$url}\">الإعلان بشكله الكامل</a>.','هذه الرسالة تُرسل إلى المشتركين في الموقع عند إنشاء إعلان جديد.'),('ANNOUNCEMENT','ca_ES','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nVisiteu el nostre lloc web per llegir <a href=\"{$url}\">l\'avís complet</a>.','Aquest correu electrònic s\'envia quan es crea un avís nou.'),('ANNOUNCEMENT','cs_CZ','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nNavštivte naši webovou stránku, pokud si chcete přečíst <a href=\"{$url}\">plný text</a>.','Tento email je posílán, pokud je vytvořeno nové oznámení.'),('ANNOUNCEMENT','da_DK','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nBesøg vores websted  <a href=\"{$url}\">for at læse hele meddelelsen</a>.','Denne e-mail sendes, når der oprettes en ny meddelelse.'),('ANNOUNCEMENT','en_US','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nVisit our website to read the <a href=\"{$url}\">full announcement</a>.','This email is sent when a new announcement is created.'),('ANNOUNCEMENT','es_ES','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nVisite nuestro site para leer el <a href=\"{$url}\">anuncio completo</a>.','Se mandará este email tras la creación de un nuevo anuncio.'),('ANNOUNCEMENT','fr_CA','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nVisiter notre site Web pour consulter <a href=\"{$url}\">l\'annonce complète</a>.','Ce courriel est envoyé lorsqu\'une nouvelle annonce est créée.'),('ANNOUNCEMENT','id_ID','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nKunjungi website kami untuk melihat <a href=\"{$url}\">pengumuman selengkapnya</a>.','Surel ini dikirim ketika terdapat pengumuman baru.'),('ANNOUNCEMENT','it_IT','{$titolo}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nVisita il nostro sito per leggere la  <a href=\"{$url}\">news completa</a>.','Questo messaggio è inviato quando viene creata una nuova news.'),('ANNOUNCEMENT','pt_BR','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nVisite nosso site para ler o <a href=\"{$url}\"> comunicado completo </a>.','Este email é enviado quando um novo comunicado é criado.'),('ANNOUNCEMENT','pt_PT','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nVisite o nosso site para ler a <a href=\"{$url}\">notícia completa</a>.','Este email é enviado quando uma nova notícia é criada.'),('ANNOUNCEMENT','ru_RU','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nПосетите наш веб-сайт, чтобы прочитать <a href=\"{$url}\">объявление полностью</a>.','Это письмо отправляется при создании нового объявления.'),('ANNOUNCEMENT','sl_SI','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nObiščite našo spletno stran, da vidite <a href=\"{$url}\">celotno obvestilo</a>.','Email je poslan, ko je objavljeno novo obvestilo.'),('ANNOUNCEMENT','sv_SE','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nBesök vår webbsida för att läsa <a href=\"{$url}\">hela meddelandet</a>.','Detta e-post-meddelande skickas när ett nytt publicerat meddelande skapas.'),('ANNOUNCEMENT','tr_TR','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nWeb sitesini ziyaret et ve <a href=\"{$url}\">tüm duyuruyu</a> oku.','Bu e-posta, yeni bir duyuru oluşturulduğunda gönderilir.'),('ANNOUNCEMENT','vi_VN','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\nGhé thăm trang web của chúng tôi để đọc <a href=\"{$url}\">thông báo đầy đủ</a>.','Email này được gửi khi một thông báo mới được tạo.'),('ANNOUNCEMENT','zh_CN','{$title}','<b>{$title}</b><br />\n<br />\n{$summary}<br />\n<br />\n访问我们的网站查看<a href=\"{$url}\">公告全文</a>。.','此邮件当公告发布时将会自动发送。'),('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.'),('CITATION_EDITOR_AUTHOR_QUERY','id_ID','Penyuntingan Sitiran','{$authorFirstName},<br />\n<br />\nMohon verifikasi atau berikan sitasi yang benar untuk rujukan berikut dari artikel Anda, {$submissionTitle}:<br />\n<br />\n{$rawCitation}<br />\n<br />\nTerimakasih!<br />\n<br />\n{$userFirstName}<br />\nCopy-Editor, {$contextName}<br />\n','Email ini memungkinkan copyeditor untuk meminta informasi tambahan tentang rujukan dari penulis.'),('COPYEDIT_REQUEST','en_US','Copyediting Request','{$participantName}:<br />\n<br />\nI would ask that you undertake the copyediting of &quot;{$submissionTitle}&quot; for {$contextName} by following these steps.<br />\n1. Click on the Submission URL below.<br />\n2. Open any files available under Draft Files and do your copyediting, while adding any Copyediting Discussions as needed.<br />\n3. Save copyedited file(s), and upload to Copyedited panel.<br />\n4. Notify the Editor that all files have been prepared, and that the Production process may begin.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubmission URL: {$submissionUrl}<br />\nUsername: {$participantUsername}<br />\n<br />\n','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_REQUEST','id_ID','Permohonan Copyediting','{$participantName}:<br />\n<br />\nKami meminta Anda melakukan copyediting terhadap &quot;{$submissionTitle}&quot; untuk {$contextName} mengikuti langkah-langkah berikut.<br />\n1. Klik URL Naskah di bawah.<br />\n2. Buka semua file yang ada di file Draft dan lakukan copyediting, tambahkan Diskusi Copyediting sesuai kebutuhan.<br />\n3. Simpan file yang telah di-copyedit, dan unggah ke panel Sudah Copyedit.<br />\n4. Beritahu Editor bahwa semua file telah siap, dan bahwa proses Produksi dapat dimulai.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nURL Naskah: {$submissionUrl}<br />\nNama pengguna: {$participantUsername}<br />\n<br />\n','Email ini dari Editor Bagian ke Copyeditor naskah agar memulai proses copyediting.  Email ini memuat informasi terkait penyerahan naskah dan bagaimana mengaksesnya.'),('EDITOR_ASSIGN','en_US','Editorial Assignment','{$editorialContactName}:<br />\n<br />\nThe submission, &quot;{$submissionTitle},&quot; to {$contextName} has been assigned to you to see through the editorial process in your role as Section Editor.<br />\n<br />\nSubmission URL: {$submissionUrl}<br />\nUsername: {$editorUsername}<br />\n<br />\nThank you,<br />\n','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.'),('EDITOR_ASSIGN','id_ID','Penugasan Editorial','{$editorialContactName}:<br />\n<br />\nNaskah, &quot;{$submissionTitle},&quot; di {$contextName} telah ditugaskan kepada Anda sebagai Editor Bagian untuk memastikan selesainya seluruh proses editorial.<br />\n<br />\nURL Naskah: {$submissionUrl}<br />\nNama pengguna: {$editorUsername}<br />\n<br />\nTerimakasih,<br />\n','Email ini memberitahu Editor Bagian bahwa Editor telah memberikan tugas untuk mengawasi suatu naskah dalam menyelesaikan proses editorial. Email ini memberikan informasi mengenai naskah dan cara mengaksesnya di website jurnal.'),('EDITOR_DECISION_ACCEPT','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: Accept Submission<br />\n<br />\n<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final \"accept submission\" decision regarding their submission.'),('EDITOR_DECISION_ACCEPT','id_ID','Keputusan Editor','{$authorName}:<br />\n<br />\nKami telah membuat keputusan terkait naskah yang Anda kirimkan ke {$contextName}, &quot;{$submissionTitle}&quot;.<br />\n<br />\nKeputusan kami adalah: Naskah Diterima<br />\n<br />\n<br />\n','Email ini dari Editor atau Editor Bagian kepada Penulis memberitahukan keputusan final \"Naskah Diterima\".'),('EDITOR_DECISION_DECLINE','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: Decline Submission<br />\n<br />\n<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final \"decline\" decision regarding their submission.'),('EDITOR_DECISION_DECLINE','id_ID','Keputusan Editor','{$authorName}:<br />\n<br />\nKami telah membuat keputusan terkait naskah yang Anda kirimkan ke {$contextName}, &quot;{$submissionTitle}&quot;.<br />\n<br />\nKeputusan kami adalah: Naskah Ditolak<br />\n<br />\n<br />\n','Email ini dari Editor atau Editor Bagian kepada Penulis memberitahukan keputusan final \"Naskah Ditolak\".'),('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<br />','This email is send to the author if the editor declines his submission initially, before the review stage'),('EDITOR_DECISION_RESUBMIT','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: Resubmit for Review<br />\n<br />\n<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final \"resubmit\" decision regarding their submission.'),('EDITOR_DECISION_RESUBMIT','id_ID','Keputusan Editor','{$authorName}:<br />\n<br />\nKami telah membuat keputusan terkait naskah yang Anda kirimkan ke {$contextName}, &quot;{$submissionTitle}&quot;.<br />\n<br />\nKeputusan kami adalah: Kirim Ulang untuk Review<br />\n<br />\n<br />\n','Email ini dari Editor atau Editor Bagian kepada Penulis memberitahukan bahwa Penulis perlu mengirim ulang naskahnya.'),('EDITOR_DECISION_REVISIONS','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: Revisions Required<br />\n<br />\n<br />\n','This email from the Editor or Section Editor to an Author notifies them of a final \"revisions required\" decision regarding their submission.'),('EDITOR_DECISION_REVISIONS','id_ID','Keputusan Editor','{$authorName}:<br />\n<br />\nKami telah membuat keputusan terkait naskah yang Anda kirimkan ke {$contextName}, &quot;{$submissionTitle}&quot;.<br />\n<br />\nKeputusan kami adalah: Perlu Revisi<br />\n<br />\n<br />\n','Email ini dari Editor atau Editor Bagian kepada Penulis memberitahukan keputusan final \"Perlu Revisi\".'),('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<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.'),('EDITOR_DECISION_SEND_TO_EXTERNAL','id_ID','Keputusan Editor','{$authorName}:<br />\n<br />\nKami telah membuat keputusan terkait naskah yang Anda kirimkan ke {$contextName}, &quot;{$submissionTitle}&quot;.<br />\n<br />\nKeputusan kami adalah: Dikirimkan ke Reviewer Eksternal<br />\n<br />\nURL Naskah: {$submissionUrl}<br />\n<br />\n<br />\n','Email ini dari Editor atau Editor Bagian kepada Penulis memberitahukan bahwa naskah dikirimkan ke reviewer eksternal.'),('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<br />\n','This email from the Editor or Section Editor to an Author notifies them that their submission is being sent to production.'),('EDITOR_DECISION_SEND_TO_PRODUCTION','id_ID','Keputusan Editor','{$authorName}:<br />\n<br />\nProses editing naskah Anda, &quot;{$submissionTitle},&quot; telah selesai.  Kami sekarang mengirimkannya ke produksi.<br />\n<br />\nURL Naskah: {$submissionUrl}<br />\n<br />\n<br />\n','Email ini dari Editor atau Editor Bagian kepada Penulis memberitahukan bahwa naskah dikirim ke produksi.'),('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<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.'),('EMAIL_LINK','en_US','Article of Possible Interest','Thought you might be interested in seeing &quot;{$submissionTitle}&quot; by {$authorName} published in Vol {$volume}, No {$number} ({$year}) of {$contextName} at &quot;{$articleUrl}&quot;.','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.'),('EMAIL_LINK','id_ID','Artikel Menarik','Anda mungkin tertarik dengan &quot;{$submissionTitle}&quot; oleh {$authorName} diterbitkan di Vol {$volume}, No {$number} ({$year}) {$contextName} yang tersedia di &quot;{$articleUrl}&quot;.','Template email ini memungkinkan pembaca terdaftar mengirimkan informasi tentang suatu artikel kepada seseorang yang mungkin akan tertarik. Email ini tersedia di Alat Baca dan harus diaktifkan oleh Manajer Jurnal di halaman Administrasi Alat Baca.'),('LAYOUT_COMPLETE','en_US','Galleys Complete','{$editorialContactName}:<br />\n<br />\nGalleys have now been prepared for the manuscript, &quot;{$submissionTitle},&quot; 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_COMPLETE','id_ID','Galley Selesai','{$editorialContactName}:<br />\n<br />\nGalley telah dipersiapkan bagi naskah, &quot;{$submissionTitle},&quot; di {$contextName} dan siap untuk proofreading.<br />\n<br />\nJika ada pertanyaan, silakan hubungi kami.<br />\n<br />\n{$participantName}','Email from the Layout Editor kepada Editor Bagian memberitahukan bahwa proses layout telah selesai.'),('LAYOUT_REQUEST','en_US','Request Galleys','{$participantName}:<br />\n<br />\nThe submission &quot;{$submissionTitle}&quot; 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 Production Ready files to create the galleys according to the journal\'s standards.<br />\n3. Upload the galleys to the Galley Files section.<br />\n4. Notify the Editor using Production Discussions that the galleys are uploaded and ready.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nSubmission URL: {$submissionUrl}<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','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_REQUEST','id_ID','Permohonan Galley','{$participantName}:<br />\n<br />\nNaskah &quot;{$submissionTitle}&quot; di {$contextName} memerlukan pembuatan galley dengan mengikuti langkah-langkah berikut.<br />\n1. Klik URL Naskah di bawah.<br />\n2. Login ke jurnal dan gunakan file Siap Produksi untuk membuat galley sesuai standar jurnal.<br />\n3. Unggah galley ke bagian File Galley.<br />\n4. Beritahu Editor menggunakan Diskusi Produksi bahwa galley telah diunggah dan siap digunakan.<br />\n<br />\n{$contextName} URL: {$contextUrl}<br />\nURL Naskah: {$submissionUrl}<br />\nNama pengguna: {$participantUsername}<br />\n<br />\nJika Anda tidak dapat melakukan tugas ini saat ini atau mempunyai pertanyaan, silakan hubungi kami.  Terimakasih atas kontribusi Anda ke jurnal ini.<br />\n<br />\n','Email dari Editor Bagian kepada Layout Editor memberitahukan bahwa mereka telah ditugaskan untuk melakukan layout editing terhadap suatu naskah.  Email ini memuat informasi terkait penyerahan naskah dan bagaimana mengaksesnya.'),('LOCKSS_EXISTING_ARCHIVE','en_US','Archiving Request for {$contextName}','Dear [University Librarian]<br />\n<br />\n{$contextName} &amp;lt;{$contextUrl}&amp;gt;, 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_EXISTING_ARCHIVE','id_ID','Permohonan Pengarsipan untuk {$contextName}','Yang terhormat [Pustakawan Universitas]<br />\n<br />\n{$contextName} &amp;lt;{$contextUrl}&amp;gt;, merupakan jurnal yang salah satu anggota fakultas Anda, [name of member], menjadi [title of position]. Jurnal ini hendak membuat arsip sesuai LOCKSS (Lots of Copies Keep Stuff Safe) di perpustakaan Anda dan perpustakaan universitas lainnya.<br />\n<br />\n[Deskripsi singkat jurnal]<br />\n<br />\nURL Publisher Manifest LOCKSS jurnal kami adalah: {$contextUrl}/gateway/lockss<br />\n<br />\nKami memahami bahwa Anda telah bergabung dengan LOCKSS. Jika kami perlu memberikan metadata tambahan untuk mendaftarkan jurnal kami di versi LOCKSS Anda, dengan senang hati kami akan memberikannya.<br />\n<br />\nTerimakasih,<br />\n{$principalContactSignature}','Email ini meminta penjaga arsip LOCKSS untuk mempertimbangkan memasukkan jurnal ini ke dalam arsip mereka. Email ini memberikan URL Publisher Manifest LOCKSS jurnal.'),('LOCKSS_NEW_ARCHIVE','en_US','Archiving Request for {$contextName}','Dear [University Librarian]<br />\n<br />\n{$contextName} &amp;lt;{$contextUrl}&amp;gt;, 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 &amp;lt;http://lockss.org/&amp;gt;, 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.'),('LOCKSS_NEW_ARCHIVE','id_ID','Permohonan Pengarsipan untuk {$contextName}','Yang terhormat [University Librarian]<br />\n<br />\n{$contextName} &amp;lt;{$contextUrl}&amp;gt;, merupakan jurnal yang salah satu anggota fakultas Anda, [name of member], menjadi [title of position]. Jurnal ini hendak membuat arsip sesuai LOCKSS (Lots of Copies Keep Stuff Safe) di perpustakaan Anda dan perpustakaan universitas lainnya.<br />\n<br />\n[Deskripsi singkat jurnal]<br />\n<br />\nProgram LOCKSS &amp;lt;http://lockss.org/&amp;gt;, suatu gerakan perpustakaan/penerbit internasional, merupakan contoh nyata penyimpanan dan pengarsipan terdistribusi, detail tambahan dapat dilihat di bawah. Piranti lunak ini, yang berjalan di komputer biasa, merupakan piranti lunak yang gratis; sistemnya mudah di-online-kan; tidak membutuhkan banyak perawatan.<br />\n<br />\nUntuk membantu mengarsipkan jurnal kami, kami mengundang Anda untuk menjadi anggota komunitas LOCKSS, guna membantu mengumpulkan dan menyimpan judul-judul karya anggota fakultas Anda dan ilmuwan lainnya di seluruh dunia. Jika berkenan, silakan mengunjungi website LOCKSS untuk informasi mengenai bagaimana cara kerja sistem ini. Kami berharap Anda berkenan mendukung pengarsipan jurnal ini.<br />\n<br />\nTerimakasih,<br />\n{$principalContactSignature}','Email ini mendorong penerima untuk berpartisipasi di gerakan LOCKSS dan memasukkan jurnal ini dalam arsip. Email ini memberikan informasi tentang gerakan LOCKSS dan cara untuk bergabung.'),('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','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.'),('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','id_ID','Notifikasi baru dari {$siteTitle}','Anda memperoleh satu notifikasi baru dari {$siteTitle}:<br />\n<br />\n{$notificationContents}<br />\n<br />\nTautan: {$url}<br />\n<br />\n{$principalContactSignature}','Email ini dikirimkan ke pengguna terdaftar yang memilih untuk memperoleh jenis notifikasi ini dikirimkan melalui email.'),('NOTIFICATION_CENTER_DEFAULT','en_US','A message regarding {$contextName}','Please enter your message.','The default (blank) message used in the Notification Center Message Listbuilder.'),('NOTIFICATION_CENTER_DEFAULT','id_ID','Pesan terkait {$contextName}','Silakan tuliskan pesan Anda.','Pesan default (kosong) yang digunakan di Pengelola Pesan Pusat Notifikasi.'),('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.'),('OPEN_ACCESS_NOTIFY','id_ID','Terbitan Sudah Open Access','Readers:<br />\n<br />\n{$contextName} telah menjadikan terbitan berikut Open Access. Kami mengundang Anda untuk menelaah Daftar Isi berikut dan mengunjungi website kami ({$contextUrl}) untuk membaca artikel dan item yang Anda minati.<br />\n<br />\nTerimakasih atas perhatiannya,<br />\n{$editorialContactSignature}','Email ini dikirimkan ke pembaca terdaftar yang meminta untuk dikirimkan email pemberitahuan saat suatu terbitan menjadi Open Access.'),('ORCID_COLLECT_AUTHOR_ID','en_US','Submission ORCID','Dear {$authorName},\n\nYou have been listed as a co-author on the manuscript submission \"{$articleTitle}\" to {$journalName}. \n\nTo confirm your authorship, please add your ORCID id to this submission by visiting the link provided below.\n\n{$authorOrcidUrl}\n\nIf you have any questions, please contact me.\n\n{$editorialContactSignature}\n\n\n','This email template is used to collect the ORCID id\'s from co-authors.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','ar_IQ','إلتماس الوصو إلى حساب ORCID','عزيزنا {$authorName}،<br>\n<br>\nلقد تم إدراجك بمثابة مؤلف مشارك في العمل الموسوم \"{$submissionTitle}\" والمقدم إلى {$contextName}.\n<br>\n<br>\nنلتمس منح الموافقة على إضافة رمزك في ORCID إلى طلب التقديم هذا وكذلك إضافة هذا الطلب إلى ملفك الشخصي في ORCID عند النشر.<br>\nقم بزيارة الرابط الرسمي لموقع ORCID، وسجل دخولك فيه ثم أجرِ ما يلزم لتفويضنا عبر اتباع التعليمات الآتية:<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\" style=\"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\"/>إفتح حساباً أو ضع رمزك في ORCID</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">المزيد مع المعلومات عن ORCID في {$contextName}</a><br/>\n<br>\nإذا كانت لديك أي استفسارات، رجاءً، لا تتردد في مراسلتي.<br>\n<br>\n{$principalContactSignature}<br>\n','قالب الرسالة هذا يستعمل لمطالبة المؤلفين المشاركين بالسماح لنا في الوصول إلى رموزهم التعريفية في ORCID.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','ca_ES','Sol·licitant accés de registre ORCID','Benvolgut/da {$authorName},<br>\n<br>\nUs han afegit com a autor/a de l\'article \"{$submissionTitle}\" per a {$contextName}.\n<br>\n<br>\nUs demanem que ens permeteu afegir el vostre iD ORCID a aquesta tramesa i també afegir l\'esmentada tramesa al vostre perfil ORCID en la publicació.<br>\nVisiteu l\'enllaç del lloc web oficial d\'ORCID, inicieu la sessió amb el vostre perfil i autoritzeu l\'accés seguint les instruccions següents.<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;\"/>Registrar o connectar el vostre iD ORCID</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Mes informació sobre ORCID a {$contextName}</a><br/>\n<br>\nSi teniu qualsevol pregunta no dubteu a contactar-me.<br>\n<br>\n{$principalContactSignature}<br>\n','Aquesta plantilla de correu electrònic s\'utilitza per demanar accés de registre ORCID als autors/es.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','cs_CZ','Požadavek na přístup k záznamu ORCID','Vážený(á) {$authorName},<br>\n<br>\nByl(a) jste uveden(a) jako autor manuskriptu příspěvku \"{$submissionTitle}\" to {$contextName}.\n<br>\n<br>\nDovolte nám, prosím, přidat vaše ORCID ID k tomuto příspěvku a také přidat tento příspěvek do vašeho ORCID publikačnímu profilu.<br>\nNavštivte, prosím, odkaz na oficiální webovou stránku ORCID, přihlaste se a a povolte přístup našeho časopisu dle následujících pokynů.<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;\"/>Registrujte se či připojte své ORCID ID</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Více informací o  ORCID najdete na {$contextName}</a><br/>\n<br>\nPokud máte jakékoliv dotazy, kontaktujte nás, prosím.<br>\n<br>\n{$principalContactSignature}<br>\n','Tato šablona emailů je používána, pokud od autorů chceme umožnění přístupu k záznamům ORCID.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','da_DK','Anmoder om adgang til ORCID-post','Kære {$authorName}<br>\n<br>\nDu er blevet opført som forfatter på manuskriptindsendelsen\"{$submissionTitle}\" til {$contextName}.\n<br>\n<br>\nTillad os at tilføje dit ORCID-id til denne indsendelse og også at tilføje indsendelsen til din ORCID-profil i forbindelse med publicering.<br>\nBesøg linket til det officielle ORCID-websted, log ind med din profil og tillad adgangen ved at følge instruktionerne.<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>\nHvis du har spørgsmål, så kontakt mig.<br>\n<br>\n{$principalContactSignature}<br>\n','Denne e-mail-skabelon bruges til at anmode om ORCID-adgang fra forfattere.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','de_DE','ORCID Zugriff erbeten','Liebe/r {$authorName},<br>\n<br>\nSie sind als Autor/in des eingereichten Beitrags \"{$submissionTitle}\" 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','el_GR','Αίτημα πρόσβασης στο ORCID σας','Αγαπητέ/η {$authorName},<br>\n<br>\nΈχετε καταχωρηθεί ως συγγραφέας στην υποβολή \"{$submissionTitle}\" στο \"{$contextName}\".\n<br>\n<br>\nΠαρακαλούμε επιτρέψτε μας να προσθέσουμε το ORCID id σας στην υποβολή, καθώς και να καταχωρήσουμε την υποβολή στο ORCID προφίλ σας κατά τη δημοσίευσή της.<br>\nΕπιλέξτε τον σύνδεσμο προς τον ιστότοπο του ORCID, εισέλθετε στον λογαριασμό σας και ενεργοποιήστε τη δυνατότητα πρόσβασης ακολουθώντας τις σχετικές οδηγίες.<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}\">Περισσότερες πληροφορίες για το ORCID στο {$contextName}</a><br/>\n<br>\nΠαρακαλώ επικοινωνήστε μαζί μας εάν χρειάζεστε πρόσθετες διευκρινίσεις.<br>\n<br>\n{$principalContactSignature}<br>\n','Αυτό το μήνυμα χρησιμοποιείται ως αίτημα πρόσβασης στο μητρώο ORCID των συγγραφέων.'),('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 \"{$submissionTitle}\" 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_REQUEST_AUTHOR_AUTHORIZATION','es_ES','Solicitando acceso de registro ORCID','Estimado/a {$authorName},<br>\n<br>\nUsted ha sido incluido como autor en la presentación del manuscrito \"{$submissionTitle}\" a {$contextName}.\n<br>\n<br>\nPermítanos agregar su identificación ORCID a este envío y también agregar el mismo a su perfil ORCID en la publicación.<br>\nVisite el enlace al sitio web oficial de ORCID, inicie sesión con su perfil y autorice el acceso siguiendo las instrucciones.<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;\"/>Registre o conecte su ORCID iD</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Más acerca de ORCID en{$contextName}</a><br/>\n<br>\nSi tiene alguna pregunta, por favor póngase en contacto conmigo.<br>\n<br>\n{$principalContactSignature}<br>\n','Esta plantilla de correo electrónico se utiliza para solicitar acceso de registro ORCID a los autores/as.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','fi_FI','ORCID-pääsyn pyyntö','Dear {$authorName},<br>\n<br/>\nTeidät mainitaan yhtenä kirjoittajana käsikirjoituksessa \"{$submissionTitle}\", joka on lähetetty julkaisuun {$contextName}.<br/>\n<br/>\nVarmistaaksesi tekijyytesi, ole hyvä ja lisää ORCID-tunnisteesi käsikirjoitukseen vierailemalla alla olevassa linkissä ja seuraamalla ohjeita. Artikkelin julkaisun jälkeen sitä koskevat tiedot voidaan liittää ORCID-tiliisi, jos olet antanut siihen luvan.<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;\"/>Rekisteröi tai yhdistä ORCID</a><br/>\n<br/>\n<br/>\n<a href=\"{$orcidAboutUrl}\">Lisätietoja ORCID-tunnisteista julkaisussa {$contextName}</a><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 ORCID-pääsyn pyytämiseen muilta kirjoittajilta.'),('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 « {$submissionTitle} » 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_REQUEST_AUTHOR_AUTHORIZATION','fr_FR','Demande d\'accès au dossier ORCID','{$authorName},<br/>\n<br/>\nVous avez été inscrit ou inscrite en tant qu\'auteur ou autrice pour le manuscrit « {$submissionTitle} » 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/>\nSuivez le lien vers le site officiel d\'ORCID, connectez-vous avec votre profil et autorisez 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;\"/>Créez ou connectez-vous avec votre identifiant ORCID</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,N\'hésitez pas à nous contacter.<br/>\n<br/>\n{$principalContactSignature}<br/>\n','Ce modèle de courriel est utilisé pour demander l\'accès au dossier ORCID des auteurs et autrices.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','hu_HU','Hozzáférési kérés ORCID rekordhoz','Tisztelt {$authorName}!<br>\n<br>\nÖnt a(z) {$contextName} folyóirathoz beküldött \"{$submissionTitle}\" című kézirat szerzőjeként jelölték meg.\n<br>\n<br>\nKérjük közreműködését, hogy a kézirathoz hozzárendelhessük ORCID azonosítóját, illetve beküldését hozzáadjuk ORCID pofiljának publikációs listájához.<br>\nEhhez keresse fel a lenti link segítségével az ORCID hivatalos weboldalát, lépjen be és hagyja jóvá a kérést.<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;\"/>Regisztrálás vagy ORCID iD csatlakoztatása</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">További információk az ORCID-ról a(z) {$contextName} folyóiratnál</a><br/>\n<br>\nHa kérdése merül fel, kérem vegye fel a kapcsolatot szerkesztőségünkkel.<br>\n<br>\nÜdvözlettel,<br>\n{$principalContactSignature}<br>\n','Ezt az email sablont arra használjuk, hogy Szerzőktől kérjünk ORCID rekord hozzáférést.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','id_ID','Meminta akses rekaman ORCID','Yang Kami Hormati {$authorName},<br>\n<br>\nAnda telah terdaftar sebagai penulis naskah \"{$submissionTitle}\" pada {$contextName}.\n<br>\n<br>\nIjinkanlah kami menambahkan id ORCID Anda pada naskah ini serta menambahkan naskah pada profil ORCID Anda pada terbitan.<br>\nBuka tautan web ORCID, login dan beri akses sesuai petunjuk berikut.<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 atau hubungkan iD ORCID Anda</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">nformasi selengkapnya tentang ORCID pada {$contextName}</a><br/>\n<br>\nBila ada pertanyaan, silakan hubungi kami.<br>\n<br>\n{$principalContactSignature}<br/>\n','Template surel ini digunakan untuk meminta akses rekaman ORCID penulis.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','it_IT','Richiesta di accesso al record ORCID','Gentile {$authorName},<br>\n<br>\nIl suo nominativo è stato aggiunto come autore nel manoscritto \"{$submissionTitle}\" sottoposto per la pubblicazione a {$contextName}.\n<br>\n<br>\nLe chiediamo il permesso di aggiungere il suo ORCID a questa sottomissione e di poter aggiungere questa sottomissione al suo profilo ORCID<br>\nLe chiediamo di andare al suo profilo ufficiale ORCID e di autorizzare l\'accesso seguendo le  indicazioni che verranno fornite. <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;\"/>Collega il tuo ORCID iD o registrati adesso </a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Maggiori informazioni su ORCID sono disponibili a questo indirizzo: {$contextName}</a><br/>\n<br>\nSe ha qualsiasi domanda o dubbio, la prego di contattarmi.<br>\n<br>\n{$principalContactSignature}<br>\n','Questa mail è utilizzata per richiedere agli autori accesso al proprio ORCID iD.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','ku_IQ','داواکردنی تۆماری ORCID','بەڕێز {$authorName},<br>\n<br>\nتۆ وەک نوسەری ئەم توێژینەوەیە دیاری کراویت \"{$submissionTitle}\" to {$contextName}.\n<br>\n<br>\nتکایە ڕێگەمان پێ بدە بە زیادکردنی هەژماری ORCIDیەکەت. <br>\nسەردانی وێبسایتی فەرمیی ORCID بکە و داخل ببە و ڕێپێدان بە گوێرەی ڕێنماییەکان بدە.<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 دروست بکە، یان ئەگەر هەتە هەژمارەکەت بکەوە.</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">زانیاریی زیاتر دەربارەی ORCID  لە {$contextName}</a><br/>\n<br>\nبۆ هەر پرسیارێک، تکایە پەیوەندیم پێوە بکە.<br>\n<br>\n{$principalContactSignature}<br>\n','قاڵبی ئەم ئیمەیڵە بۆ ڕێگەپێدانی گرێدانی ORCID بەکار دێت لە لایەن توێژەرانەوە.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','mk_MK','Барање пристап до запис ORCID','Почитуван {$ authorName}, <br>\n<br>\nВие сте наведени како автор на поднесувањето на ракописот „{$submissionTitle}“ до {$contextName}.\n<br>\n<br>\nВе молиме, дозволете ни да го додадеме вашиот ID на ORCID на овој поднесок и да го додадеме поднесувањето на вашиот ORCID профил на објавувањето. <br>\nПосетете ја врската до официјалната веб-страница на ORCID, најавете се со вашиот профил и овластете го пристапот следејќи ги упатствата. <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 </a> <br />\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\"> Повеќе за ORCID на {$textName} </a> <br/>\n<br>\nАко имате какви било прашања, контактирајте ме. <br>\n<br>\n{$principalContactSignature} <br>\n','Овој образец за е-пошта се користи за да се побара пристап до записот ORCID од авторите.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','nb_NO','Forespørsel om tilgang til ORCID','Kjære {$authorName}, <br />\n<br />\nDu er oppført som forfatter på manusinnleveringen \"{$submissionTitle}\" til {$contextName}. <br />\nFor å bekrefte forfatterskapet ditt, vennligst legg til ORCID-ID-en din i denne innleveringen ved å gå til lenken nedenfor. <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;\" /> Registrer eller koble ORCID iD </a> <br />\n<br />\n<br />\n<a href=\"{$orcidAboutUrl}\"> Mer informasjon om ORCID på {$contextName} </a> <br />\n<br />\nTa gjerne kontakt hvis du har spørsmål. <br />\n<br />\n{$principalContactSignature} <br />\n','Denne e-postmalen brukes til å spørre om ORCID-tilgang fra forfattere.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','nl_NL','Toegangsverzoek tot uw ORCID profiel','Beste {$authorName},<br/>\n<br/>\nU bent auteur van het manuscript \"{$submissionTitle}\" 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_REQUEST_AUTHOR_AUTHORIZATION','pl_PL','Prośba do autora o dostęp do profilu ORCID','Drogi/a {$authorName},<br>\n<br>\nZostałeś/aś oznaczona/y jako autor/współautor tekstu naukowego \"{$articleTitle}\" w {$contextName}.\n<br>\n<br>\nJako redakcja czasopsima zwracamy się w związku z tym prośbą o dopisanie Twojego ORCID ID do tego artykułu i jednocześnie chcemy dodać go do Twojej listy opublikowanych prac w ORCID.<br>\nZaloguj się proszę w czasopiśmie używając swoich danych ORCID co sprawi, że autoryzacja pracy bedzie możliwa. Odwiedź strone projektu ORCID aby zapoznać się ze szczegółową instrukcją na ten temat.<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;\"/>Zarejestruj sie w ORCID lub autoryzuj swój tekst</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Więcej o ORCID w {$contextName}</a><br/>\n<br>\nW razie dalszych pytań prosimy o kontakt.<br>\n<br>\n{$principalContactSignature}\n','Mail jest wykorzystywany w przypadku prośby o dostęp czasopisma do profilu ORCID autora.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','pt_BR','Solicitando acesso ao registro ORCID','Prezado(a) {$authorName}, <br>\n<br>\nVocê foi listado como autor na submissão do manuscrito \"{$submissionTitle}\" to {$contextName}.\n<br>\n<br>\nPermita-nos adicionar seu ID do ORCID a essa submissão e também adicioná-lo ao seu perfil do ORCID na publicação. <br>\nVisite o link para o site oficial do ORCID, faça o login com seu perfil e autorize o acesso seguindo as instruções. <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 = \"Ícone ORCID iD\" style = \"display: block; margin: 0 .5em 0 0; padding: 0; float: left;\" /> Registre ou conecte seu ORCID ID </a> <br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\"> Mais sobre o ORCID em {$contextName} </a> <br/>\n<br>\nSe você tiver alguma dúvida, entre em contato comigo. <br>\n<br>\n{$principalContactSignature} <br>\n','Este modelo de e-mail é usado para solicitar o acesso ao registro ORCID dos autores.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','pt_PT','Pedido de Associação de Identificador ORCID','Caro(a) {$authorName},<br>\n<br>\nFoi adicionado como autor do manuscrito da submissão \"{$submissionTitle}\" feita a {$contextName}.\n<br>\n<br>\nPor favor, conceda-nos permissão para adicionar o seu ORCID a esta submissão e também para adicionar a submissão ao seu perfil do ORCID como publicação. <br>\nConsulte o site oficial do ORCID, entre na sua conta e autorize o acesso seguindo as instruções que lhe fornecemos.<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;\"/>Registar ou Entrar no seu ORCID iD</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Saiba mais sobre o ORCID em {$contextName}</a><br/>\n<br>\nSe tiver alguma questão adicional, entre em contacto connosco.<br>\n<br>\n{$principalContactSignature}<br>\n','Este template de email é utilizado para solicitar o acesso ao ORCID dos autores.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','ru_RU','Запрос доступа к записи ORCID','{$authorName}!<br>\n<br>\nВы были указаны как автор материала «{$submissionTitle}», отправленного в «{$contextName}».\n<br>\n<br>\nПожалуйста, дайте нам возможность добавить ваш ORCID id к этому материалу, а также добавить материал в ваш профиль ORCID после публикации.<br>\nПерейдите по ссылке на официальном вебсайте ORCID, войдите в систему с вашей учетной записью и авторизуйте доступ, следуя инструкциям.<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</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Подробнее об ORCID в «{$contextName}»</a><br/>\n<br>\nЕсли у Вас есть какие-либо вопросы, пожалуйста, свяжитесь со мной.<br>\n<br>\n{$principalContactSignature}<br>\n','Этот шаблон письма используется для запроса доступа к записи ORCID у авторов.'),('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 \"{$submissionTitle}\" 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>\n','Email vsebuje prošnjo za dostop do ORCID zapisov avtorjev.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','tr_TR','ORCID kayıt erişimi','Sayın {$authorName},<br>\n<br>\n{$contextName} için gönderilen \"{$submissionTitle}\" başlıklı makalenin yazar listesinde yer alıyorsunuz.\n<br>\n<br>\nLütfen ORCID\'nizi kullanmamıza izin veriniz.<br>\nORCID sayfasını ziyaret ederek giriş yapınız ve profil kısmından izin veren talimatları takip ediniz.<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 için kayıt ol veya bağlan</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">ORCID hakkında daha fazla {$contextName}</a><br/>\n<br>\nHerhangi bir sorun yaşarsanız, benimle iletişim kurabilirsiniz.<br>\n<br>\n{$principalContactSignature}<br>\n','Bu e-posta şablonu yazarlardan ORCID kaydı erişimi istemek için kullanılır.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','uk_UA','Запит доступу до запису ORCID','Шановний|Шановна {$authorName},<br>\n<br>\nВи були зазначені як автор подання \"{$submissionTitle}\" до журналу {$contextName}.\n<br>\n<br>\nБудь-ласка, дозвольте нам додати ваш ORCID до цього подання а також додати подання до вашого профілю ORCID  після публікації.<br>\nВідвідайте офіційний сайт ORCID, авторизуйтеся з вашим профілем і надайте дозвіл за наступною інструкцією.<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</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Більше про ORCID за посиланням {$contextName}</a><br/>\n<br>\nЯкщо у вас виникнуть запитання, напишіть мені.<br>\n<br>\n{$principalContactSignature}<br>\n','Цей шаблон листа використовується для запита доступу у авторів до запису ORCID.'),('ORCID_REQUEST_AUTHOR_AUTHORIZATION','vi_VN','Yêu cầu truy cập bản ghi ORCID','Kính gửi {$authorName},<br>\n<br>\nBạn đã được liệt kê như là một tác giả của bản thảo \"{$submissionTitle}\" to {$contextName}.\n<br>\n<br>\nVui lòng cho phép chúng tôi thêm id ORCID của bạn vào bài đăng này và cũng để thêm bài đăng vào hồ sơ ORCID của bạn trên xuất bản.<br>\nTruy cập liên kết đến trang web ORCID chính thức, đăng nhập với hồ sơ của bạn và cho phép truy cập bằng cách làm theo các hướng dẫ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;\"/>Đăng ký hoặc kết nối ORCID iD của bạn</a><br/>\n<br>\n<br>\n<a href=\"{$orcidAboutUrl}\">Tìm hiểu thêm về ORCID tại {$contextName}</a><br/>\n<br>\nNếu bạn có bất kỳ câu hỏi, xin vui lòng liên hệ với tôi.<br>\n<br>\n{$principalContactSignature}<br>\n','Mẫu email này được sử dụng để yêu cầu quyền truy cập bản ghi ORCID từ các tác giả.'),('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 />\nPassword: {$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.'),('PASSWORD_RESET','id_ID','Reset Sandi','Sandi akun Anda di website {$siteTitle} telah berhasil di-reset. Silakan simpan nama pengguna dan sandi ini karena akan dibutuhkan untuk semua kegiatan terkait jurnal di website ini.<br />\n<br />\nNama pengguna Anda: {$username}<br />\nSandi: {$password}<br />\n<br />\n{$principalContactSignature}','Email ini dikirimkan ke pengguna terdaftar saat proses reset password berhasil sesuai prosedur di email PASSWORD_RESET_CONFIRM.'),('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_CONFIRM','id_ID','Konfirmasi Reset Sandi','Kami menerima permintaan reset sandi untuk akun Anda di website {$siteTitle}.<br />\n<br />\nJika Anda tidak merasa mengajukan permintaan ini, abaikan pesan ini dan sandi Anda tidak akan diubah.  Jika Anda memang ingin melakukan reset sandi, klik tautan berikut ini.<br />\n<br />\nReset sandi saya: {$url}<br />\n<br />\n{$principalContactSignature}','Email ini dikirimkan ke pengguna terdaftar ketika lupa sandi atau tidak dapat login. Email ini memberikan URL untuk melakukan reset sandi.'),('PAYPAL_INVESTIGATE_PAYMENT','en_US','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.'),('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.'),('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.'),('PUBLISH_NOTIFY','id_ID','Terbitan Baru','Readers:<br />\n<br />\n{$contextName} baru saja menerbitkan terbitan terbarunya di {$contextUrl}. Kami mengundang Anda untuk membaca Daftar Isi dan selanjutnya mengunjungi website kami untuk membaca artikel yang Anda minati.<br />\n<br />\nTerimakasih atas perhatian Anda,<br />\n{$editorialContactSignature}','Email ini dikirimkan ke pembaca terdaftar melalui tautan \"Beritahu Pengguna\" di Beranda Pengguna Editor. Email ini memberitahu pembaca tentang terbitan baru dan mengundang pembaca untuk mengunjungi jurnal melalui URL yang diberikan.'),('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.'),('REVIEWER_REGISTER','id_ID','Registrasi sebagai Reviewer di {$contextName}','Dengan mempertimbangkan keahlian Anda, kami memasukkan nama Anda dalam database reviewer di {$contextName}. Hal ini tidak bersifat mengikat, hanya sekedar memudahkan kami untuk mengundang Anda untuk melakukan review terhadap suatu naskah. Ketika memperoleh undangan untuk melakukan review suatu naskah, Anda dapat melihat judul dan abstrak naskah tersebut, dan Anda berhak menentukan apakah akan menerima atau menolak undangan tersebut. Anda juga dapat meminta dihapus dari daftar reviewer kapan saja Anda menghendaki.<br />\n<br />\nKami menyertakan nama pengguna dan sandi Anda, yang digunakan dalam semua interaksi dengan jurnal melalui website. Anda dapat melakukan update profil, termasuk minat review Anda.<br />\n<br />\nNama pengguna: {$username}<br />\nSandi: {$password}<br />\n<br />\nTerimakasih,<br />\n{$principalContactSignature}','Email ini dikirimkan ke reviewer baru untuk menyambut dan memberikan informasi nama pengguna dan sandi.'),('REVIEW_ACK','en_US','Article Review Acknowledgement','{$reviewerName}:<br />\n<br />\nThank you for completing the review of the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We appreciate your contribution to the quality of the work that we publish.<br />\n<br />\n','This email is sent by a Section Editor to confirm receipt of a completed review and thank the reviewer for their contributions.'),('REVIEW_ACK','id_ID','Ucapan Terimakasih atas Review Artikel','{$reviewerName}:<br />\n<br />\nTerimakasih telah menyelesaikan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Kami sangat menghargai kontribusi Anda terhadap kualitas karya yang kami publikasikan.<br />\n<br />\n','Email ini dikirimkan Editor Bagian untuk mengkonfirmasi penerimaan review dan mengucapkan terimakasih atas kontribusinya.'),('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, &quot;{$submissionTitle},&quot; 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','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_CANCEL','id_ID','Permohonan Review Dibatalkan','{$reviewerName}:<br />\n<br />\nKami memutuskan untuk membatalkan permohonan review kami kepada Anda untuk naskah, &quot;{$submissionTitle},&quot; di {$contextName}. Kami mohon maaf sebesar-besarnya untuk ketidaknyamanan ini dan kami harap di masa mendatang Anda dapat membantu proses review di jurnal ini.<br />\n<br />\nJika ada pertanyaan, silakan hubungi kami.<br />\n<br />\n','Email ini dikirimkan Editor Bagian kepada Reviewer yang sedang melakukan review untuk memberitahukan pembatalan review.'),('REVIEW_CONFIRM','en_US','Able to Review','Editors:<br />\n<br />\nI am able and willing to review the submission, &quot;{$submissionTitle},&quot; 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_CONFIRM','id_ID','Dapat Melakukan Review','Editor:<br />\n<br />\nSaya dapat dan bersedia melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Terimakasih telah mempercayakan kepada saya, dan saya berencana untuk menyelesaikan review ini sesuai tenggat, {$reviewDueDate}, atau sebelumnya.<br />\n<br />\n{$reviewerName}','Email ini dikirimkan Reviewer kepada Editor Bagian sebagai respon terhadap permohonan review untuk memberitahu Editor Bagian bahwa permohonan review diterima dan akan diselesaikan pada tanggal yang ditetapkan.'),('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, &quot;{$submissionTitle},&quot; 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_DECLINE','id_ID','Tidak Dapat Melakukan Review','Editor:<br />\n<br />\nMohon maaf saat ini saya tidak dapat melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Terimakasih telah mempercayakann kepada saya, dan lain waktu silakan menghubungi saya lagi.<br />\n<br />\n{$reviewerName}','Email ini dikirimkan Reviewer kepada Editor Bagian sebagai respon terhadap permohonan review untuk memberitahu Editor Bagian bahwa permohonan review ditolak.'),('REVIEW_REINSTATE','en_US','Request for Review Reinstated','{$reviewerName}:<br />\n<br />\nWe would like to reinstate our request for you to review the submission, &quot;{$submissionTitle},&quot; for {$contextName}. We hope that you will be able to assist with this journal\'s review process.<br />\n<br />\nIf you have any questions, please contact me.','This email is sent by the Section Editor to a Reviewer who has a submission review in progress to notify them that a cancelled review has been reinstated.'),('REVIEW_REMIND','en_US','Submission Review Reminder','{$reviewerName}:<br />\n<br />\nJust a gentle reminder of our request for your review of the submission, &quot;{$submissionTitle},&quot; 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','id_ID','Pengingat Review Naskah','{$reviewerName}:<br />\n<br />\nSekedar mengingatkan tentang permohonan kami untuk melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Kami mengharapkan telah menerima review ini pada {$reviewDueDate}, dan akan sangat berbahagia untuk dapat menerimanya segera setelah Anda menyelesaikannya.<br />\n<br />\nJika Anda tidak memiliki nama pengguna dan sandi untuk website jurnal ini, Anda dapat menggunakan tautan berikut untuk mereset sandi Anda (yang selanjutnya akan diemailkan kepada Anda bersama nama pengguna Anda). {$passwordResetUrl}<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nMohon konfirmasi kesanggupan Anda untuk menyelesaikan kontribusi penting ini.  Kami menunggu balasan Anda.<br />\n<br />\n{$editorialContactSignature}','Email ini dikirimkan Editor Bagian untuk mengingatkan reviewer bahwa review telah mencapai tenggat.'),('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, &quot;{$submissionTitle},&quot; 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 Settings > Workflow > Review) and one-click reviewer access is disabled. Scheduled tasks must be enabled and configured (see the site configuration file).'),('REVIEW_REMIND_AUTO','id_ID','Pengingat Otomatis Review Naskah','{$reviewerName}:<br />\n<br />\nSekedar mengingatkan tentang permohonan kami untuk melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Kami mengharapkan telah menerima review ini pada {$reviewDueDate}, dan email ini dikirim secara otomatis seiring terlewatinya tanggal tersebut. Kami masih tetap menanti review tersebut segera setelah Anda dapat menyelesaikannya.<br />\n<br />\nJika Anda tidak memiliki nama pengguna dan sandi untuk website jurnal ini, Anda dapat menggunakan tautan berikut untuk mereset sandi Anda (yang selanjutnya akan diemailkan kepada Anda bersama nama pengguna Anda). {$passwordResetUrl}<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nMohon konfirmasi kesanggupan Anda untuk menyelesaikan kontribusi penting ini.  Kami menunggu balasan Anda.<br />\n<br />\n{$editorialContactSignature}','Email ini dikirimkan otomatis saat tenggat waktu review terlewati (lihat Opsi Review di menu Pengaturan > Alur Kerja > Review) 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, &quot;{$submissionTitle},&quot; 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 Settings > Workflow > Review) and one-click reviewer access is enabled. Scheduled tasks must be enabled and configured (see the site configuration file).'),('REVIEW_REMIND_AUTO_ONECLICK','id_ID','Pengingat Review Naskah Otomatis','{$reviewerName}:<br />\n<br />\nSekedar mengingatkan tentang permohonan kami untuk melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. We were hoping to have this review by {$reviewDueDate}, dan email ini dikirim secara otomatis seiring terlewatinya tanggal tersebut. We would still be pleased to receive it as soon as you are able to prepare it.<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nMohon konfirmasi kesanggupan Anda untuk menyelesaikan kontribusi penting ini.  Kami menunggu balasan Anda.<br />\n<br />\n{$editorialContactSignature}','Email ini dikirimkan otomatis saat tenggat waktu review terlewati (lihat Opsi Review di menu Pengaturan > Alur Kerja > Review) dan akses one-click reviewer diaktifkan. Tugas terjadwal harus diaktifkan dan diatur (lihat file konfigurasi website)'),('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, &quot;{$submissionTitle},&quot; 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_ONECLICK','id_ID','Pengingat Review Naskah','{$reviewerName}:<br />\n<br />\nSekedar mengingatkan tentang permohonan kami untuk melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Kami mengharapkan telah menerima review ini pada {$reviewDueDate}, dan akan sangat berbahagia untuk dapat menerimanya segera setelah Anda menyelesaikannya.<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nMohon konfirmasi kesanggupan Anda untuk menyelesaikan kontribusi penting ini.  Kami menunggu balasan Anda.<br />\n<br />\n{$editorialContactSignature}','Email ini dikirimkan Editor Bagian untuk mengingatkan reviewer bahwa review telah mencapai tenggat.'),('REVIEW_REQUEST','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nI believe that you would serve as an excellent reviewer of the manuscript, &quot;{$submissionTitle},&quot; 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&quot;{$submissionTitle}&quot;<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 Management > Settings > Workflow > Review. (Otherwise see REVIEW_REQUEST_ATTACHED.)'),('REVIEW_REQUEST','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\n<br />\nKami memandang bahwa Anda merupakan reviewer yang tepat untuk naskah, &quot;{$submissionTitle},&quot; yang diserahkan ke {$contextName}. Abstrak naskah tersebut disertakan di bawah ini, dan kami berharap Anda berkenan melakukannya.<br />\n<br />\nSilakan login ke website jurnal sebelum {$responseDueDate} untuk memberitahukan apakah Anda bersedia melakukan review atau tidak, juga untuk mengakses naskah dan menyerahkan review beserta rekomendasi Anda. Website jurnal adalah {$contextUrl}<br />\n<br />\nTenggat review ini sendiri adalah {$reviewDueDate}.<br />\n<br />\nJika Anda tidak memiliki nama pengguna dan sandi untuk website jurnal ini, Anda dapat menggunakan tautan berikut untuk mereset sandi Anda (yang selanjutnya akan diemailkan kepada Anda bersama nama pengguna Anda). {$passwordResetUrl}<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','Email ini dari Editor Bagian kepada Reviewer untuk meminta reviewer memberitahukan apakah menerima atau menolak permohonan review. Email ini memberikan informasi tentang naskah meliputi judul dan abstrak, tenggat review, dan cara mengakses naskah. Pesan ini digunakan saat Proses Review Standar dipilih di Manajemen > Pengaturan > Alur Kerja > Review. (Selain itu lihat di REVIEW_REQUEST_ATTACHED.)'),('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, &quot;{$submissionTitle},&quot; 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 Management > Settings > Workflow > Review. (Otherwise see REVIEW_REQUEST.)'),('REVIEW_REQUEST_ATTACHED','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\n<br />\nKami memandang bahwa Anda merupakan reviewer yang tepat untuk naskah, &quot;{$submissionTitle},&quot; dan kami mengharapkan Anda berkenan melakukan review. Panduan Review untuk jurnal ini disertakan di bawah, dan naskah telah dilampirkan bersama email ini. Review beserta rekomendasi Anda, kami harap telah diemailkan sebelum tenggat review {$reviewDueDate}.<br />\n<br />\nMohon sampaikan dalam email balasan sebelum {$responseDueDate} tentang kesediaan Anda untuk melakukan review.<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nPanduan Review<br />\n<br />\n{$reviewGuidelines}<br />\n','Email ini dari Editor Bagian kepada Reviewer untuk meminta reviewer memberitahukan apakah menerima atau menolak permohonan review. Email disertai naskah terlampir bersama email. Pesan ini digunakan saat Proses Review Lampiran Email dipilih di Manajemen > Pengaturan > Alur Kerja > Review. (Selain itu lihat REVIEW_REQUEST.)'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nThis regards the manuscript &quot;{$submissionTitle},&quot; 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 Management > Settings > Workflow > Review. (Otherwise see REVIEW_REQUEST_SUBSEQUENT.)'),('REVIEW_REQUEST_ATTACHED_SUBSEQUENT','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\n<br />\nEmail ini terkait naskah &quot;{$submissionTitle},&quot; yang sedang dalam pertimbangan di {$contextName}.<br />\n<br />\nSetelah review untuk versi naskah sebelumnya, penulis saat ini telah menyerahkan versi revisi naskahnya.  Kami berharap Anda dapat membantu mengevaluasinya.<br />\n<br />\nPanduan Review untuk jurnal ini disertakan di bawah, dan naskah dilampirkan bersama email ini. Review dan rekomendasi Anda, mohon dapat diemailkan ke kami pada {$reviewDueDate}.<br />\n<br />\nMohon sampaikan di email balasan sebelum {$responseDueDate} tentang kesediaan Anda untuk melakukan review.<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n<br />\nPanduan Review<br />\n<br />\n{$reviewGuidelines}<br />\n','Email ini dari Editor Bagian kepada Reviewer untuk meminta reviewer memberitahukan apakah menerima atau menolak permohonan review untuk ronde kedua atau berikutnya.  Email disertai naskah terlampir bersama email. Pesan ini digunakan saat Proses Review Lampiran Email dipilih di Manajemen > Pengaturan > Alur Kerja > Review. (Selain itu lihat REVIEW_REQUEST_SUBSEQUENT.)'),('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, &quot;{$submissionTitle},&quot; 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&quot;{$submissionTitle}&quot;<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 Management > Settings > Workflow > Review, and one-click reviewer access is enabled.'),('REVIEW_REQUEST_ONECLICK','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\n<br />\nKami memandang bahwa Anda merupakan reviewer yang tepat untuk naskah, &quot;{$submissionTitle},&quot; yang diserahkan ke {$contextName}. Abstrak naskah tersebut disertakan di bawah ini, dan kami berharap Anda berkenan melakukannya.<br />\n<br />\nSilakan login ke website jurnal sebelum {$responseDueDate} untuk memberitahukan apakah Anda bersedia melakukan review atau tidak, juga untuk mengakses naskah dan menyerahkan review beserta rekomendasi Anda. Website jurnal adalah {$contextUrl}<br />\n<br />\nTenggat review ini sendiri adalah {$reviewDueDate}.<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','Email ini dari Editor Bagian kepada Reviewer  untuk meminta reviewer memberitahukan apakah menerima atau menolak permohonan review. Email ini memberikan informasi tentang naskah meliputi judul dan abstrak, tenggat review, dan cara mengakses naskah. Pesan ini digunakan saat Proses Review Standar dipilih di Manajemen > Pengaturan > Alur Kerja > Review, dan akses one-click reviewer diaktifkan.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nThis regards the manuscript &quot;{$submissionTitle},&quot; 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&quot;{$submissionTitle}&quot;<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 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 Management > Settings > Workflow > Review, and one-click reviewer access is enabled.'),('REVIEW_REQUEST_ONECLICK_SUBSEQUENT','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\n<br />\nEmail ini terkait naskah &quot;{$submissionTitle},&quot; yang sedang dalam pertimbangan di {$contextName}.<br />\n<br />\nSetelah review untuk versi naskah sebelumnya, penulis saat ini telah menyerahkan versi revisi naskahnya.  Kami berharap Anda dapat membantu mengevaluasinya.<br />\n<br />\nSilakan login ke website jurnal sebelum {$responseDueDate} untuk memberitahukan apakah Anda bersedia melakukan review atau tidak, juga untuk mengakses naskah dan menyerahkan review beserta rekomendasi Anda.<br />\n<br />\nTenggat review ini sendiri adalah {$reviewDueDate}.<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','Email ini dari Editor Bagian kepada Reviewer untuk meminta reviewer memberitahukan apakah menerima atau menolak permohonan review untuk ronde kedua atau berikutnya. Email ini memberikan informasi tentang naskah meliputi judul dan abstrak, tenggat review, dan cara mengakses naskah. Pesan ini digunakan saat Proses Review Standar dipilih di Manajemen > Pengaturan > Alur Kerja > Review, dan akses one-click reviewer diaktifkan.'),('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','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\nSekedar mengingatkan tentang permohonan kami untuk melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Kami berharap telah menerima respon Anda pada {$responseDueDate}, dan email ini dikirim secara otomatis seiring terlewatinya tanggal tersebut.\n<br />\nKami memandang bahwa Anda merupakan reviewer yang tepat untuk naskah tersebut. Abstrak naskah tersebut disertakan di bawah ini, dan kami berharap Anda berkenan melakukannya.<br />\n<br />\nSilakan login ke website jurnal untuk memberitahukan apakah Anda bersedia melakukan review atau tidak, juga untuk mengakses naskah dan menyerahkan review beserta rekomendasi Anda. Website jurnal adalah {$contextUrl}<br />\n<br />\nTenggat review ini sendiri adalah {$reviewDueDate}.<br />\n<br />\nJika Anda tidak memiliki nama pengguna dan sandi untuk website jurnal ini, Anda dapat menggunakan tautan berikut untuk mereset sandi Anda (yang selanjutnya akan diemailkan kepada Anda bersama nama pengguna Anda). {$passwordResetUrl}<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','Email ini dikirim otomatis saat tenggat konfirmasi terlewati (lihat Opsi Review di menu Pengaturan > Alur Kerja > Review) dan akses one-click reviewer dinonaktifkan. 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).'),('REVIEW_REQUEST_REMIND_AUTO_ONECLICK','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\nSekedar mengingatkan tentang permohonan kami untuk melakukan review terhadap naskah, &quot;{$submissionTitle},&quot; untuk {$contextName}. Kami berharap telah menerima respon Anda pada {$responseDueDate}, dan email ini dikirim secara otomatis seiring terlewatinya tanggal tersebut.\n<br />\nKami memandang bahwa Anda merupakan reviewer yang tepat untuk naskah tersebut. Abstrak naskah tersebut disertakan di bawah ini, dan kami berharap Anda berkenan melakukannya.<br />\n<br />\nSilakan login ke website jurnal untuk memberitahukan apakah Anda bersedia melakukan review atau tidak, juga untuk mengakses naskah dan menyerahkan review beserta rekomendasi Anda. Website jurnal adalah {$contextUrl}<br />\n<br />\nTenggat review ini sendiri adalah {$reviewDueDate}.<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','Email ini dikirim otomatis saat tenggat konfirmasi reviewer terlewati (lihat Opsi Review di menu Pengaturan > Alur Kerja > Review) dan akses one-click reviewer diaktifkan. Tugas Terjadwal harus diaktifkan dan diatur (lihat file konfigurasi website).'),('REVIEW_REQUEST_SUBSEQUENT','en_US','Article Review Request','{$reviewerName}:<br />\n<br />\nThis regards the manuscript &quot;{$submissionTitle},&quot; 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&quot;{$submissionTitle}&quot;<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 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 Management > Settings > Workflow > Review. (Otherwise see REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('REVIEW_REQUEST_SUBSEQUENT','id_ID','Permohonan Review Artikel','{$reviewerName}:<br />\n<br />\nEmail ini terkait naskah &quot;{$submissionTitle},&quot; yang sedang dalam pertimbangan di {$contextName}.<br />\n<br />\nSetelah review untuk versi naskah sebelumnya, penulis saat ini telah menyerahkan versi revisi naskahnya.  Kami berharap Anda dapat membantu mengevaluasinya.<br />\n<br />\nSilakan login ke website jurnal sebelum {$responseDueDate} untuk memberitahukan apakah Anda bersedia melakukan review atau tidak, juga untuk mengakses naskah dan menyerahkan review beserta rekomendasi Anda. Website jurnal adalah {$contextUrl}<br />\n<br />\nTenggat review ini sendiri adalah {$reviewDueDate}.<br />\n<br />\nJika Anda tidak memiliki nama pengguna dan sandi untuk website jurnal ini, Anda dapat menggunakan tautan berikut untuk mereset sandi Anda (yang selanjutnya akan diemailkan kepada Anda bersama nama pengguna Anda). {$passwordResetUrl}<br />\n<br />\nURL Naskah: {$submissionReviewUrl}<br />\n<br />\nTerimakasih atas perhatiannya.<br />\n<br />\n{$editorialContactSignature}<br />\n<br />\n&quot;{$submissionTitle}&quot;<br />\n<br />\n{$submissionAbstract}','Email ini dari Editor Bagian kepada Reviewer untuk meminta reviewer memberitahukan apakah menerima atau menolak permohonan review untuk ronde kedua atau berikutnya. Email ini memberikan informasi tentang naskah meliputi judul dan abstrak, tenggat review, dan cara mengakses naskah. Pesan ini digunakan saat Proses Review Standar dipilih di Manajemen > Pengaturan > Alur Kerja > Review. (Selain itu lihat REVIEW_REQUEST_ATTACHED_SUBSEQUENT.)'),('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.'),('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.'),('STATISTICS_REPORT_NOTIFICATION','ar_IQ','نشاط هيئة التحرير لشهر {$month}، {$year}','\n{$name}, <br />\n<br />\nتقرير حالة مجلتك لشهر {$month}، {$year} متوافر حالياً. الأمور المفصلية لهذا الشهر هي كما يأتي.<br />\n<ul>\n	<li>عدد طلبات التقديم الجديدة: {$newSubmissions}</li>\n	<li>طلبات التقديم المرفوضة: {$declinedSubmissions}</li>\n	<li>طلبات التقديم المقبولة: {$acceptedSubmissions}</li>\n	<li>إجمالي طلبات التقديم في النظام: {$totalSubmissions}</li>\n</ul>\nسجل دخولك إلى المجلة لمعاينة <a href=\"{$editorialStatsLink}\">ما يشغل هيئة التحرير</a> بشكل مفصل فضلاً عن <a href=\"{$publicationStatsLink}\">حالة المقالات المنشورة</a>. لديك نسخة مرفقة بهذه الرسالة تتضمن كل مشاغل هيئة التحرير لهذا الشهر.<br />\n<br />\nمع التقدير<br />\n{$principalContactSignature}','هذه الرسالة تُرسل شهرياً إلى مدراء التحرير ورؤسائه لتزويدهم بنظرة عامة على حالة النظام.'),('STATISTICS_REPORT_NOTIFICATION','ca_ES','Activitat editorial per {$month}, {$year}','\n{$name}, <br />\n<br />\nJa està disponible l\'informe de salut de la vostra revista per {$month}, {$year}. Les estadístiques clau d\'aquest mes son les següents.<br />\n<ul>\n	<li>Trameses noves aquest mes: {$newSubmissions}</li>\n	<li>Trameses rebutjades aquest mes: {$declinedSubmissions}</li>\n	<li>Trameses acceptades aquest mes: {$acceptedSubmissions}</li>\n	<li>Trameses totals en el sistema: {$totalSubmissions}</li>\n</ul>\nInicieu sessió a la revista per veure les <a href=\"{$editorialStatsLink}\">tendències editorials</a> i les <a href=\"{$publicationStatsLink}\">estadístiques d\'articles publicats</a> amb més detall. S\'adjunta una còpia completa de les tendències editorials d\'aquest mes.<br />\n<br />\nSalutacions cordials,<br />\n{$principalContactSignature}','Aquest correu electrònic s\'envia automàticament cada mes a editors/ores i administradors/ores de revistes per donar-los una visió general de la salut del sistema.'),('STATISTICS_REPORT_NOTIFICATION','cs_CZ','Aktivita redakce pro {$month}, {$year}','\n{$name}, <br />\n<br />\nVaše zpráva o stavu časopisu za {$month}, {$year} je nyní k dispozici. Vaše klíčové statistiky pro tento měsíc jsou níže. <br />\n<ul>\n <li>Nová podání tento měsíc: {$newSubmissions}</li>\n <li>Odmítnuté příspěvky tento měsíc: {$declinedSubmissions}</li>\n <li>Přijaté příspěvky tento měsíc: {$acceptedSubmissions}</li>\n <li>Celkový počet příspěvků v systému: {$totalSubmissions}</li>\n</ul>\nChcete-li zobrazit podrobnější <a href=\"{$editorialStatsLink}\">statistiky redakce</a> a <a href=\"{$publicationStatsLink}\">statistiky publikovaných článků</a>, přihlaste se do časopisu. Úplná kopie statistiky redakce tohoto měsíce je připojena. <br />\n<br />\nS pozdravem <br />\n{$principalContactSignature}','Tento e-mail je automaticky zasílán měsíčně měsíčně editorům a správcům časopisů, aby jim poskytl přehled o stavu systému.'),('STATISTICS_REPORT_NOTIFICATION','da_DK','Redaktionel aktivitet for {$month}, {$year}','\n{$name}, <br />\n<br />\nDit tidsskrifts tilstandsrapport for {$month}, {$year} er nu tilgængelig. De statistiske nøgletal ses nedenfor.<br />\n<ul>\n	<li>Nye indsendelser I denne måned: {$newSubmissions}</li>\n	<li>Afviste indsendelser I denne måned: {$declinedSubmissions}</li>\n	<li>Accepterede indsendelser i denne måned: {$acceptedSubmissions}</li>\n	<li>Systemets samlede antal indsendelser: {$totalSubmissions}</li>\n</ul>\nLog ind på tidsskriftet for at se flere oplysninger om <a href=\"{$editorialStatsLink}\">redaktionelle udviklingstendenser </a> og <a href=\"{$publicationStatsLink}\">offentliggjorte artikelstatistikker</a>. En komplet kopi af denne måneds redaktionelle udvikling er vedhæftet.<br />\n<br />\nMed venlig hilsen<br />\n{$principalContactSignature}','Denne e-mail sendes automatisk en gang om måneden til redaktører og tidsskriftschefer for at give dem et overblik over systemets tilstand.'),('STATISTICS_REPORT_NOTIFICATION','de_DE','Aktivität der Redaktion für {$month}, {$year}','\nSehr geehrte/r {$name}, <br />\n<br />\nDer Bericht zu Ihrem Journal für {$month}, {$year} ist nun verfügbar. Die Hauptstatistiken für diesen Monat finden Sie im folgenden.<br />\n<ul>\n	<li>Neue Einreichungen in diesem Monat: {$newSubmissions}</li>\n	<li>Abgelehnte Einreichungen in diesem Monat: {$declinedSubmissions}</li>\n	<li>Angenommene Einreichungen in diesem Monat: {$acceptedSubmissions}</li>\n	<li>Gesamtzahl der Einreichungen im System: {$totalSubmissions}</li>\n</ul>\nDetailliertere Daten finden Sie beim Journal unter <a href=\"{$editorialStatsLink}\">Redaktionelle Trends</a> und <a href=\"{$publicationStatsLink}\">Veröffentlichungsstatistik</a>.  Eine Kopie des Gesamtberichtes der redaktionellen Trends ist beigefügt.<br />\n<br />\nMit freundlichen Grüßen,<br />\n{$principalContactSignature}','Diese E-Mail wird monatlich an die Redakteure und Journal Manager gesendet und stellt Statistiken zum Journal zur Verfügung.'),('STATISTICS_REPORT_NOTIFICATION','en_US','Editorial activity for {$month}, {$year}','\n{$name}, <br />\n<br />\nYour journal health report for {$month}, {$year} is now available. Your key stats for this month are below.<br />\n<ul>\n	<li>New submissions this month: {$newSubmissions}</li>\n	<li>Declined submissions this month: {$declinedSubmissions}</li>\n	<li>Accepted submissions this month: {$acceptedSubmissions}</li>\n	<li>Total submissions in the system: {$totalSubmissions}</li>\n</ul>\nLogin to the journal to view more detailed <a href=\"{$editorialStatsLink}\">editorial trends</a> and <a href=\"{$publicationStatsLink}\">published article stats</a>. A full copy of this month\'s editorial trends is attached.<br />\n<br />\nSincerely,<br />\n{$principalContactSignature}','This email is automatically sent monthly to editors and journal managers to provide them a system health overview.'),('STATISTICS_REPORT_NOTIFICATION','es_ES','Actividad editorial por {$month}, {$year}','\n{$name}, <br />\n<br />\nEl informe de estado de su revista de {$month}, {$year} ya está disponible. Las estadísticas clave de este mes son las siguientes.<br />\n<ul>\n	<li>Nuevos envíos este mes: {$newSubmissions}</li>\n	<li>Envíos rechazados este mes: {$declinedSubmissions}</li>\n	<li>Envíos aceptados este mes: {$acceptedSubmissions}</li>\n	<li>Envíos totales en el sistema: {$totalSubmissions}</li>\n</ul>\nInicie sesión en la revista para obtener más detalles sobre las <a href=\"{$editorialStatsLink}\">tendencias editoriales</a> y las <a href=\"{$publicationStatsLink}\">estadísticas de artículos publicados</a>. Se adjunta una copia completa del informe correspondiente a este mes .<br />\n<br />\nSaludos cordiales,<br />\n{$principalContactSignature}','Este correo electrónico es enviado mensualmente y de manera automática a los editores y administradores de publicaciones para suministrarles una visión general de la publicación.'),('STATISTICS_REPORT_NOTIFICATION','fi_FI','Toimitustyötä koskeva raportti {$month}/{$year}','\n{$name}, <br />\n<br />\nToimitustyön raportti {$month}/{$year} on nyt valmis. Kuukautta koskevat keskeiset luvut ovat alla.<br />\n<ul>\n	<li>Uudet käsikirjoitukset: {$newSubmissions}</li>\n	<li>Hylätyt käsikirjoitukset: {$declinedSubmissions}</li>\n	<li>Hyväksytyt käsikirjoitukset: {$acceptedSubmissions}</li>\n	<li>Käsikirjoitusten kokonaismäärä: {$totalSubmissions}</li>\n</ul>\nKirjaudu julkaisuun nähdäksesi yksityiskohtaisemmat <a href=\"{$editorialStatsLink}\">toimitustyön tilastot</a> ja <a href=\"{$publicationStatsLink}\">julkaistujen artikkeleiden tilastot</a>. Kopio tämän kuun toimitustyön tilastoista on liitteenä.<br />\n<br />\nTerveisin,<br />\n{$principalContactSignature}','Tämä sähköposti lähetetään joka kuukausi automaattisesti toimittajille ja julkaisun hallinnoijille ja he näkevät siitä julkaisun toimitustyötä koskevan tilanteen.'),('STATISTICS_REPORT_NOTIFICATION','fr_CA','Activité éditoriale pour {$month} {$year}','\n{$name}, <br />\n<br />\nLe rapport d\'activité éditoriale de votre revue pour {$month} {$year} est maintenant disponible. Les principales statistiques pour ce mois sont affichées ci-dessous.<br />\n<ul>\n	<li> Nouvelles soumissions pour ce mois : {$newSubmissions} </li>\n	<li> Soumissions refusées pour ce mois : {$declinedSubmissions} </li>\n	<li> Soumissions acceptées pour ce mois : {$acceptedSubmissions} </li>\n	<li> Nombre total de soumissions dans la plateforme : {$totalSubmissions} </li>\n</ul>\nConnectez-vous au site de la revue pour voir davantage de <a href=\"{$editorialStatsLink}\">tendances dans l\'activité éditoriale</a> ainsi que des <a href=\"{$publicationStatsLink}\">statistiques relatives aux articles publiés</a>. Le rapport complet des tendances de l\'activité éditoriale de ce mois-ci est joint au présent envoi.<br />\n<br />\nCordialement,<br />\n{$principalContactSignature}','Ce courriel est envoyé automatiquement chaque mois aux rédacteurs et rédactrices en chef et aux directeurs et directrices de revues pour leur fournir un aperçu de l\'intégrité du système.'),('STATISTICS_REPORT_NOTIFICATION','hu_HU','Cikk és lektorálási riport','\nTisztelt {$name}! <br />\n<br />\nA folyóiratával kapcsolatos összesítő riport elérhető az <a href=\"{$editorialReportLink}\">OJS rendszerben</a>. A főbb mutatók {$year} {$month} hónapra az alábbiak:<br />\n<ul>\n	<li>Új beküldések ebben a hónapban: {$newSubmissions}</li>\n	<li>Elutasított beküldések ebben a hónapban: {$declinedSubmissions}</li>\n	<li>Elfogadott beküldések ebben a hónapban: {$acceptedSubmissions}</li>\n	<li>Összes belüldés a rendszerben: {$totalSubmissions}</li>\n</ul>\nAz alábbi összesítők tölthetők le áttekintésre:<br />\n<ul>\n	<li><a href=\"{$articlesReportLink}\">Cikkek riportja</a></li>\n	<li><a href=\"{$editorialReportLink}\">Lektorálási riport</a></li>\n</ul>\nÜdvözlettel,<br />\n{$principalContactSignature}','Ez az email automatikusan kerül kiküldésre a szerkesztőknek és folyóirat menedzsereknek a folyóiratukkal kapcsolatos tájékoztatásul.'),('STATISTICS_REPORT_NOTIFICATION','id_ID','Kagiatan redaksi selama {$month}, {$year}','\n{$name}, <br />\n<br />\nLaporan kondisi jurnal Anda untuk {$month}, {$year} sudah tersedia. Statistik utama Anda bulan ini tersaji sebagai berikut.<br />\n<ul>\n	<li>Naskah baru yang masuk bulan ini: {$newSubmissions}</li>\n	<li>Naskah ditolak bulan ini: {$declinedSubmissions}</li>\n	<li>Naskah yang diterima bulan ini: {$acceptedSubmissions}</li>\n	<li>Total naskah dalam sistem: {$totalSubmissions}</li>\n</ul>\nLogin untuk melihat lebih rinci <a href=\"{$editorialStatsLink}\">trend editorial</a> dan <a href=\"{$publicationStatsLink}\">statistik artikel yang dipublikasikan</a>. Salinan lengkap trend bulan ini terlampir.<br />\n<br />\nSalam Hormat,<br />\n{$principalContactSignature}','Email ini dikirim secara otomatis setiap bulan kepada editor dan manajer jurnal untuk menyediakan pratinjau kestabilan sistem.'),('STATISTICS_REPORT_NOTIFICATION','it_IT','Attività editorial e per {$month}, {$year}','\n{$name}, <br />\n<br />\nE\' disponibile il report per il mese di  {$month}, {$year} e di seguito sono indicate le statistiche principali<br />\n<ul>\n	<li>nuovi contributi ricevuti: {$newSubmissions}</li>\n	<li>manoscritti rigettati: {$declinedSubmissions}</li>\n	<li>manoscritti accettati: {$acceptedSubmissions}</li>\n	<li>manoscritti totali nel sistema: {$totalSubmissions}</li>\n</ul>\nAccedi al sito per consultare gli <a href=\"{$editorialStatsLink}\">editorial trends</a> e il  <a href=\"{$publicationStatsLink}\">report degli articoli pubblicati</a>. Il report completo dell\'attività editoriale del mese è allegata.<br />\n<br />\nDistinti saluti,<br />\n{$principalContactSignature}','Questo report sull\'attività del sistema è inviato via email  mensilmente in automatico agli editors.'),('STATISTICS_REPORT_NOTIFICATION','ku_IQ','چالاکی سەرنوسەر لە {$month}،{$year}','\n{$name}, <br />\n<br />\nتەندروستیی گۆڤارەکەت {$month}, {$year} ئێستا بەردەستە. زانیارییەکان بۆ ئەو مانگە لە خوارەوەیە.<br />\n<ul>\n	<li>توێژینەوەی پێشکەشکراوی نوێ لەم مانگەدا: {$newSubmissions}</li>\n	<li>توێژینەوەی ڕەتکراوە لەم مانگەدا: {$declinedSubmissions}</li>\n	<li>توێژینەوەی قبوڵکراو لەم مانگەدا: {$acceptedSubmissions}</li>\n	<li>کۆی گشتی توێژینەوە پێشکەشکراوەکان: {$totalSubmissions}</li>\n</ul>\nداخلی سیستەمەکە ببە بۆ بینینی زانیاریی زیاتر <a href=\"{$editorialStatsLink}\">باوەکان</a> and <a href=\"{$publicationStatsLink}\">توێژینەوە بڵاوکراوەکان</a>. نوسخەی تەواوی بابەتە باوەکانی سەرنوسەران هاوپێچ کراوە.<br />\n<br />\nلەگەڵ ڕێزدا،<br />\n{$principalContactSignature}','ئەم ئیمەیڵە بە شێوەی تۆماتیکی و مانگانە بۆ سەرنوسەر و بەڕێوەبەرانی گۆڤار دەنێردرێت بە مەبەستی پاراستنی تەندروستیی سیستەمەکە.'),('STATISTICS_REPORT_NOTIFICATION','pt_BR','Atividade editorial para {$month}, {$year}','\n{$name}, <br />\n<br />\nSeu relatório do estado atual do sistema do mês de {$month}, {$year} está disponível. Suas estatísticas-chave deste mês seguem abaixo.<br />\n<ul>\n	<li>Novas submissões este mês: {$newSubmissions}</li>\n	<li>Submissões rejeitadas este mês: {$declinedSubmissions}</li>\n	<li>Submissões aceitas este mês: {$acceptedSubmissions}</li>\n	<li>Total de submissões no sistema {$totalSubmissions}</li>\n</ul>\nEfetue login no site do periódico para obter uma visão mais detalhada das <a href=\"{$editorialStatsLink}\">tendências editoriais</a> e <a href=\"{$publicationStatsLink}\">estatísticas de artigos publicados</a>. Uma cópia completa do relatório de tendencias editoriais deste mês segue anexa.<br />\n<br />\nAtenciosamente,<br />\n{$principalContactSignature}','Este e-mail é automaticamente enviado todo mês aos editores e gerentes do sistema para dar-lhes uma visão geral do estado do sistema.'),('STATISTICS_REPORT_NOTIFICATION','pt_PT','Atividade Editorial para {$month}, {$year}','\n{$name}, <br />\n<br />\nO relatório da revista para {$month}, {$year} já se encontra disponível. Os principais indicadores para estes mês são: <br />\n<ul>\n	<li>Novas submissões feitas este mês: {$newSubmissions}</li>\n	<li>Submissões rejeitadas este mês: {$declinedSubmissions}</li>\n	<li>Submissões aceites este mês: {$acceptedSubmissions}</li>\n	<li>Total de submissões no sistema: {$totalSubmissions}</li>\n</ul>\nInicie sessão na revista para aceder a mais detalhes dos <a href=\"{$editorialStatsLink}\">indicadores editoriais</a> e <a href=\"{$publicationStatsLink}\">estatísticas de trabalhos publicados</a>. Segue em anexo uma cópia dos indicadores editoriais deste mês.<br />\n<br />\nCumprimentos,<br />\n{$principalContactSignature}','Este email é enviado automaticamente todos os meses aos editores e editores-gestores para os informar do estado da revista.'),('STATISTICS_REPORT_NOTIFICATION','ru_RU','Активность журнала за {$month} {$year} года','\nЗдравствуйте, {$name}! <br />\n<br />\nОтчёт об активности журнала за {$month} {$year} года уже доступен. Ключевые статистические параметры этого месяца приведены ниже.<br />\n<ul>\n	<li>Новых материалов за месяц: {$newSubmissions}</li>\n	<li>Отклонено материалов за месяц: {$declinedSubmissions}</li>\n	<li>Принято материалов за месяц: {$acceptedSubmissions}</li>\n	<li>Общее число материалов в системе: {$totalSubmissions}</li>\n</ul>\nВойдите в систему, чтобы посмотреть более подробные отчёты о <a href=\"{$editorialStatsLink}\">тенденциях редакции</a> и <a href=\"{$publicationStatsLink}\">статистике опубликованных статей</a>. Полная копия отчёта о тенденциях редакции за данный месяц прилагается к письму.<br />\n<br />\nС уважением,<br />\n{$principalContactSignature}','Это письмо каждый месяц автоматически отправляется редакторам и управляющим журнала, чтобы у них было представление о работе системы.'),('STATISTICS_REPORT_NOTIFICATION','sl_SI','Uredniške aktivnosti za {$month}, {$year}','\n{$name}, <br />\n<br />\nPoročilo o stanju vaše revije za mesec {$month}, {$year} je na voljo. Ključne statistike so spodaj.<br />\n<ul>\n	<li>Novi prispevki v tem mesecu: {$newSubmissions}</li>\n	<li>Zavrnjeni prispevki v tem mesecu: {$declinedSubmissions}</li>\n	<li>Sprejeti prispevki v tem mesecu: {$acceptedSubmissions}</li>\n	<li>Skupno število prispevkov v sistemu: {$totalSubmissions}</li>\n</ul>\nZa podrobnejše podatke se prijavite v sistem <a href=\"{$editorialStatsLink}\">uredniški trendi</a> in <a href=\"{$publicationStatsLink}\">statistike objavljenih člankov</a>. Kopija celotnega mesečnega poročila o uredniških aktivnostih je v priponki.<br />\n<br />\nLep pozdrav,<br />\n{$principalContactSignature}','Ta email je vsak mesec avtomatično poslan urednikom in glavnim urednikom, da vidijo stanje sistema.'),('STATISTICS_REPORT_NOTIFICATION','sv_SE','Redaktionella aktiviteter för {$month}, {$year}','\n{$name}, <br />\n<br />\nLägesrapport för tidskriften {$month}, {$year} är nu tillgänglig. Månadens statistiska nyckeltal finns nedan.<br />\n<ul>\n	<li>Nya bidrag: {$newSubmissions}</li>\n	<li>Refuserade bidrag: {$declinedSubmissions}</li>\n	<li>Accepterade bidrag: {$acceptedSubmissions}</li>\n	<li>Totalt antal bidrag i systemet: {$totalSubmissions}</li>\n</ul>\nLogga in i tidskriften för en mer detaljerad<a href=\"{$editorialStatsLink}\">redaktionell tendens</a> och<a href=\"{$publicationStatsLink}\">statistik för publicerade artiklar</a>. En komplett redogörelse bifogas.<br />\n<br />\nVänligen,<br />\n{$principalContactSignature}','E-postmeddelandet skickas ut månadsvis till redaktörer och tidskriftsansvariga för ge en lägesrapport.'),('STATISTICS_REPORT_NOTIFICATION','tr_TR','{$month} {$year} süreç işlemleri','\nSayın {$name}, <br />\n<br />\nDergimizin {$month} {$year} durum raporu hazırdır. Bu ayın öne çıkan istatistikleri aşağıda verilmiştir.<br />\n<ul>\n	<li>Bu ayki yeni gönderi: {$newSubmissions}</li>\n	<li>Bu ay reddedilen gönderi: {$declinedSubmissions}</li>\n	<li>Bu ay kabul edilen gönderi: {$acceptedSubmissions}</li>\n	<li>Sistemdeki toplam gönderi sayısı: {$totalSubmissions}</li>\n</ul>\nDaha detaylı <a href=\"{$editorialStatsLink}\">süreç istatistikleri</a> ve <a href=\"{$publicationStatsLink}\">yayınlanmış makale istatistikleri</a>ni görüntülemek için dergi sistemine giriş yapın. Bu ayın süreç istatistiklerinin tam bir kopyası ekte gönderilmiştir.<br />\n<br />\nSaygılarımızla,<br />\n{$principalContactSignature}','Bu e-posta editörler ve dergi yöneticilerine sistem durumu ve istatistikler hakkında genel bir bakış sağlamak için aylık olarak otomatik gönderilir.'),('STATISTICS_REPORT_NOTIFICATION','vi_VN','Hoạt động cho {$month}, {$year}','\n{$name}, <br />\n<br />\nBáo cáo tình trạng hoạt động của tạp chí vào {$month}, {$year} đã có. Số liệu thống kê quan trọng của tạp chí trong tháng này hiển thị ở dưới đây.<br />\n<ul>\n	<li>Bài gửi mới trong tháng này: {$newSubmissions}</li>\n	<li>Bài từ chối trong tháng này: {$declinedSubmissions}</li>\n	<li>Bài đồng ý đăng trong tháng này: {$acceptedSubmissions}</li>\n	<li>Tổng số bài trên hệ thống: {$totalSubmissions}</li>\n</ul>\nĐăng nhập vào tạp chí để xem chi tiết hơn <a href=\"{$editorialStatsLink}\">xu thế</a> và <a href=\"{$publicationStatsLink}\">số liệu thống kê bài báo</a>. Một bản sao đầy đủ của các xu thế trong tháng này được đính kèm.<br />\n<br />\nTrân trọng,<br />\n{$principalContactSignature}','Email này được tự động gửi hàng tháng cho các biên tập viên và người quản lý tạp chí để cung cấp cho họ tổng quan về tình trạng hoạt động hệ thống.'),('STATISTICS_REPORT_NOTIFICATION','zh_CN','编辑持续达 {$year} 年 {$month} 个月','\n{$name}, <br />\n<br />\n您的期刊长达 {$month}, {$year} 的运行报告已经生成。当月统计数据如下。<br />\n<ul>\n	<li>本月投稿： {$newSubmissions}</li>\n	<li>本月拒绝稿件： {$declinedSubmissions}</li>\n	<li>本月采纳稿件： {$acceptedSubmissions}</li>\n	<li>系统共接收稿件： {$totalSubmissions}</li>\n</ul>\n登录查看期刊更多信息： <a href=\"{$editorialStatsLink}\">编辑趋势</a> 和 <a href=\"{$publicationStatsLink}\">发表文章统计</a>。本月编辑趋势见附件。<br />\n<br />\n谨启<br />\n{$principalContactSignature}','此为系统自动为总编和期刊管理提供系统运行状况报告的邮件。'),('SUBMISSION_ACK','en_US','Submission Acknowledgement','{$authorName}:<br />\n<br />\nThank you for submitting the manuscript, &quot;{$submissionTitle}&quot; 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 />\nSubmission URL: {$submissionUrl}<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_ACK','id_ID','Ucapan Terimakasih atas Penyerahan Naskah','{$authorName}:<br />\n<br />\nTerimakasih telah menyerahkan naskah, &quot;{$submissionTitle}&quot; ke {$contextName}. Dengan sistem manajemenn jurnal online yang kami gunakan, Anda dapat memantau kemajuan proses editorial naskah Anda melalui:<br />\n<br />\nURL Naskah: {$submissionUrl}<br />\nNama pengguna: {$authorUsername}<br />\n<br />\nJika ada pertanyaan, silakan hubungi kami. Terimakasih telah mempercayakan publikasi karya Anda di jurnal kami.<br />\n<br />\n{$editorialContactSignature}','Email ini, jika diaktifkan, secara otomatis dikirimkan ke penulis saat menyelesaikan proses penyerahan naskah ke jurnal. Email ini memberikan informasi mengenai pemantauan kemajuan proses editorial dan mengucapkan terimakasih atas naskah yang dikirimkan.'),('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','id_ID','Pemberitahuan Penyerahan Naskah','Hello,<br />\n<br />\n{$submitterName} telah menyerahkan naskah, &quot;{$submissionTitle}&quot; ke {$contextName}. <br />\n<br />\nJika ada pertanyaan, silakan hubungi kami. Terimakasih telah mempercayakan publikasi karya Anda di jurnal kami.<br />\n<br />\n{$editorialContactSignature}','Email ini, jika diaktifkan, secara otomatis dikirimkan ke penulis saat menyelesaikan proses penyerahan naskah ke jurnal. Email ini memberikan informasi mengenai pemantauan kemajuan proses editorial dan mengucapkan terimakasih atas naskah yang dikirimkan.'),('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, &quot;{$username}&quot;.<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','id_ID','Langganan Berakhir','{$subscriberName}:<br />\n<br />\nLangganan {$contextName} Anda telah berakhir.<br />\n<br />\n{$subscriptionType}<br />\nTanggal berakhir: {$expiryDate}<br />\n<br />\nUntuk memperbaharui langganan Anda, silakan kunjungi website jurnal.  Anda dapat login dengan menggunakan nama pengguna Anda, &quot;{$username}&quot;.<br />\n<br />\nJika ada pertanyaan, silakan hubungi kami.<br />\n<br />\n{$subscriptionContactSignature}','Email ini memberitahu seorang pelanggan bahwa langganannya telah berakhir.  Email ini memberikan URL jurnal beserta petunjuk aksesnya.'),('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, &quot;{$username}&quot;.<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','id_ID','Langganan Berakhir - Pengingat Terakhir','{$subscriberName}:<br />\n<br />\nLangganan {$contextName} Anda telah berakhir.<br />\nIni adalah pengingat terakhir yang diemailkan kepada Anda.<br />\n<br />\n{$subscriptionType}<br />\nTanggal berakhir: {$expiryDate}<br />\n<br />\nUntuk memperbaharui langganan Anda, silakan kunjungi website jurnal.  Anda dapat login dengan menggunakan nama pengguna Anda, &quot;{$username}&quot;.<br />\n<br />\nJika ada pertanyaan, silakan hubungi kami.<br />\n<br />\n{$subscriptionContactSignature}','Email ini memberitahu seorang pelanggan bahwa langganannya telah berakhir.  Email ini memberikan URL jurnal beserta petunjuk aksesnya.'),('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, &quot;{$username}&quot;.<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_BEFORE_EXPIRY','id_ID','Pemberitahuan Tanggal Berakhir Langganan','{$subscriberName}:<br />\n<br />\nLangganan {$contextName} Anda hampir berakhir.<br />\n<br />\n{$subscriptionType}<br />\nTanggal berakhir: {$expiryDate}<br />\n<br />\nUntuk terus memperoleh akses ke jurnal ini, silakan kunjungi website jurnal dan perbaharui langganan Anda. Anda dapat login menggunakan nama pengguna Anda, &quot;{$username}&quot;.<br />\n<br />\nJika ada pertanyaan, silakan hubungi kami.<br />\n<br />\n{$subscriptionContactSignature}','Email ini memberitahu seorang pelanggan bahwa langganannya hampir berakhir.  Email ini memberikan URL jurnal beserta petunjuk aksesnya.'),('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, &quot;{$username}&quot;.<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.'),('SUBSCRIPTION_NOTIFY','id_ID','Pemberitahuan Langganan','{$subscriberName}:<br />\n<br />\nAnda sekarang telah terdaftar sebagai pelanggan di sistem manajemen jurnal online kami, {$contextName}, dengan jenis langganan:<br />\n<br />\n{$subscriptionType}<br />\n<br />\nUntuk mengakses konten yang hanya tersedia bagi pelanggan, silakan login ke sistem dengan menggunakan nama pengguna Anda, &quot;{$username}&quot;.<br />\n<br />\nSetelah login, Anda dapat mengubah detail profil Anda dan sandi Anda kapanpun Anda kehendaki.<br />\n<br />\nJika Anda memiliki langganan institusi, pengguna di institusi Anda tidak perlu login karena semua akses secara otomatis diotentikasi oleh sistem.<br />\n<br />\nJika ada pertanyaan, silakan hubungi kami.<br />\n<br />\n{$subscriptionContactSignature}','Email ini memberitahu pembaca terdaftar bahwa Manajer telah membuat akses langganan untuk mereka.  Email ini memberikan URL jurnal beserta petunjuk aksesnya.'),('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_INDL','id_ID','Pembelian Langganan: Individu','Sebuah langganan individu telah dibeli online untuk {$contextName} dengan rincian berikut.<br />\n<br />\nJenis Langganan:<br />\n{$subscriptionType}<br />\n<br />\nPengguna:<br />\n{$userDetails}<br />\n<br />\nInformasi Keanggotaan (jika ada):<br />\n{$membership}<br />\n<br />\nUntuk melihat atau mengubah langganan ini, silakan gunakan URL berikut ini.<br />\n<br />\nURL Langganan: {$subscriptionUrl}<br />\n','Email ini memberitahu Manajer Langganan bahwa sebuah langganan individu telah dibeli online.  Email ini memberikan ringkasan informasi tentang langganan tersebut beserta tautan untuk mengakses langganan yang dibeli.'),('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_PURCHASE_INSTL','id_ID','Pembelian Langganan: Institusi','Sebuah langganan institusi telah dibeli online untuk {$contextName} dengan rincian berikut. Untuk mengaktifkan langganan ini, silakan gunakan URL Langganan dan jadikan status langganan ke \'Aktif\'.<br />\n<br />\nJenis Langganan:<br />\n{$subscriptionType}<br />\n<br />\nInstitusi:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (jika ada):<br />\n{$domain}<br />\n<br />\nIP Ranges (jika ada):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$userDetails}<br />\n<br />\nInformasi Keanggotaan (jika ada):<br />\n{$membership}<br />\n<br />\nUntuk melihat atau mengubah langganan ini, silakan gunakan URL berikut ini.<br />\n<br />\nURL Langganan: {$subscriptionUrl}<br />\n','Email ini memberitahu Manajer Langganan bahwa sebuah langganan institusi telah dibeli online.  Email ini memberikan ringkasan informasi tentang langganan tersebut beserta tautan untuk mengakses langganan yang dibeli.'),('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_INDL','id_ID','Pembaharuan Langganan: Individu','Sebuah langganan individu telah diperbaharui online untuk {$contextName} dengan rincian berikut.<br />\n<br />\nJenis Langganan:<br />\n{$subscriptionType}<br />\n<br />\nPengguna:<br />\n{$userDetails}<br />\n<br />\nInformasi Keanggotaan (jika ada):<br />\n{$membership}<br />\n<br />\nUntuk melihat atau mengubah langganan ini, silakan gunakan URL berikut ini.<br />\n<br />\nURL Langganan: {$subscriptionUrl}<br />\n','Email ini memberitahu Manajer Langganan bahwa sebuah langganan individu telah diperbaharui online.  Email ini memberikan ringkasan informasi tentang langganan tersebut beserta tautan untuk mengakses langganan yang diperbaharui.'),('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.'),('SUBSCRIPTION_RENEW_INSTL','id_ID','Pembaharuan Langganan: Institusi','Sebuah langganan institusi telah diperbaharui online untuk {$contextName} dengan rincian berikut.<br />\n<br />\nJenis Langganan:<br />\n{$subscriptionType}<br />\n<br />\nInstitusi:<br />\n{$institutionName}<br />\n{$institutionMailingAddress}<br />\n<br />\nDomain (jika ada):<br />\n{$domain}<br />\n<br />\nIP Ranges (jika ada):<br />\n{$ipRanges}<br />\n<br />\nContact Person:<br />\n{$userDetails}<br />\n<br />\nInformasi Keanggotaan (jika ada):<br />\n{$membership}<br />\n<br />\nUntuk melihat atau mengubah langganan ini, silakan gunakan URL berikut ini.<br />\n<br />\nURL Langganan: {$subscriptionUrl}<br />\n','Email ini memberitahu Manajer Langganan bahwa sebuah langganan institusi telah diperbaharui online.  Email ini memberikan ringkasan informasi tentang langganan tersebut beserta tautan untuk mengakses langganan yang diperbaharui.'),('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_REGISTER','id_ID','Registrasi Jurnal','{$userFullName}<br />\n<br />\nAnda sekarang telah terdaftar sebagai pengguna di {$contextName}.  Kami sertakan nama pengguna dan sandi Anda di email ini, keduanya diperlukan untuk semua kegiatan melalui website jurnal ini. Anda dapat keluar dari daftar pengguna jurnal kapan saja dengan menghubungi kami.<br />\n<br />\nNama pengguna: {$username}<br />\nSandi: {$password}<br />\n<br />\nTerimakasih,<br />\n{$principalContactSignature}','Email ini dikirimkan ke pengguna baru untuk menyambut dan memberikan informasi nama pengguna dan sandi.'),('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 validate their email account.'),('USER_VALIDATE','id_ID','Validasi Akun Anda','{$userFullName}<br />\n<br />\nAnda telah membuat akun di {$contextName}.  Sebelum dapat menggunakannya, Anda perlu melakukan validasi akun email. Untuk melakukannya, klik tautan berikut ini:<br />\n<br />\n{$activateUrl}<br />\n<br />\nTerimakasih,<br />\n{$principalContactSignature}','Email ini dikirim ke pengguna baru agar melakukan validasi email yang mereka gunakan untuk registrasi.');
/*!40000 ALTER TABLE `email_templates_default_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_templates_settings`
--

DROP TABLE IF EXISTS `email_templates_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_templates_settings` (
  `email_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  UNIQUE KEY `email_settings_pkey` (`email_id`,`locale`,`setting_name`),
  KEY `email_settings_email_id` (`email_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_templates_settings`
--

LOCK TABLES `email_templates_settings` WRITE;
/*!40000 ALTER TABLE `email_templates_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_templates_settings` 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) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_logged` datetime 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=InnoDB AUTO_INCREMENT=818 DEFAULT CHARSET=utf8;
/*!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,1,2,'2019-03-28 12:36:50',1342177281,'submission.event.fileUploaded',0),(2,1048585,1,2,'2019-03-28 12:36:58',1342177281,'submission.event.fileUploaded',0),(3,1048585,1,2,'2019-03-28 12:38:10',268435457,'submission.event.submissionSubmitted',0),(4,1048585,1,1,'2019-03-28 12:47:58',268435459,'submission.event.participantAdded',0),(5,1048585,1,1,'2019-03-28 13:33:00',268435459,'submission.event.participantAdded',0),(6,1048585,1,1,'2019-03-28 13:33:38',805306371,'log.editor.decision',0),(7,1048585,1,1,'2019-03-28 13:34:11',805306371,'log.editor.decision',0),(8,515,4,7,'2019-03-29 07:26:56',1342177281,'submission.event.fileUploaded',0),(9,1048585,2,7,'2019-03-29 07:27:03',1342177281,'submission.event.fileUploaded',0),(10,1048585,2,7,'2019-03-29 07:30:45',268435457,'submission.event.submissionSubmitted',0),(11,1048585,2,1,'2019-03-29 07:31:55',268435459,'submission.event.participantAdded',0),(12,1048585,2,1,'2019-03-29 07:33:39',805306371,'log.editor.decision',0),(13,1048585,2,1,'2019-03-29 07:35:22',1073741825,'log.review.reviewerAssigned',0),(14,1048585,2,6,'2019-03-29 07:38:08',1073741830,'log.review.reviewAccepted',0),(15,515,6,6,'2019-03-29 07:39:18',1342177281,'submission.event.fileUploaded',0),(16,1048585,2,6,'2019-03-29 07:39:24',1342177281,'submission.event.fileUploaded',0),(17,1048585,2,1,'2019-03-29 07:47:35',805306371,'log.editor.decision',0),(18,515,7,7,'2019-03-29 07:50:22',1342177281,'submission.event.fileUploaded',0),(19,1048585,2,7,'2019-03-29 07:50:30',1342177281,'submission.event.fileUploaded',0),(20,1048585,2,1,'2019-03-29 07:56:47',805306371,'log.editor.decision',0),(21,1048585,2,1,'2019-03-29 07:59:02',805306371,'log.editor.decision',0),(22,515,11,1,'2019-03-29 08:00:41',1342177281,'submission.event.fileUploaded',0),(23,1048585,2,1,'2019-03-29 08:00:47',1342177281,'submission.event.fileUploaded',0),(24,1048585,2,1,'2019-03-29 08:02:40',268435464,'submission.event.issueMetadataUpdated',0),(25,1048585,2,1,'2019-03-29 08:03:24',268435464,'submission.event.issueMetadataUpdated',0),(26,1048585,2,1,'2019-03-29 08:05:32',268435464,'submission.event.issueMetadataUpdated',0),(27,515,12,1,'2019-03-31 14:18:29',1342177281,'submission.event.fileUploaded',0),(28,1048585,2,1,'2019-03-31 14:18:38',1342177281,'submission.event.fileUploaded',0),(29,1048585,2,1,'2019-03-31 14:20:30',268435464,'submission.event.issueMetadataUpdated',0),(30,1048585,2,1,'2019-03-31 14:21:12',268435458,'submission.event.general.metadataUpdated',0),(31,1048585,1,1,'2019-03-31 14:22:40',805306371,'log.editor.decision',0),(32,1048585,1,1,'2019-03-31 14:23:28',1073741825,'log.review.reviewerAssigned',0),(33,1048585,1,6,'2019-03-31 14:24:34',1073741830,'log.review.reviewAccepted',0),(34,515,14,6,'2019-03-31 14:25:05',1342177281,'submission.event.fileUploaded',0),(35,1048585,1,6,'2019-03-31 14:25:10',1342177281,'submission.event.fileUploaded',0),(36,1048585,1,1,'2019-03-31 14:26:18',805306371,'log.editor.decision',0),(37,515,15,2,'2019-03-31 14:27:41',1342177281,'submission.event.fileUploaded',0),(38,1048585,1,2,'2019-03-31 14:27:46',1342177281,'submission.event.fileUploaded',0),(39,515,16,7,'2019-03-31 14:29:15',1342177281,'submission.event.fileUploaded',0),(40,1048585,2,7,'2019-03-31 14:29:24',1342177288,'submission.event.fileRevised',0),(41,1048585,1,1,'2019-03-31 14:31:07',805306371,'log.editor.decision',0),(42,515,17,1,'2019-03-31 14:32:26',1342177281,'submission.event.fileUploaded',0),(43,1048585,1,1,'2019-03-31 14:32:30',1342177281,'submission.event.fileUploaded',0),(44,1048585,1,1,'2019-03-31 14:32:52',268435464,'submission.event.issueMetadataUpdated',0),(45,515,18,7,'2019-03-31 14:34:18',1342177281,'submission.event.fileUploaded',0),(46,1048585,3,7,'2019-03-31 14:34:23',1342177281,'submission.event.fileUploaded',0),(47,1048585,3,7,'2019-03-31 14:36:10',268435457,'submission.event.submissionSubmitted',0),(48,515,19,7,'2019-03-31 14:36:54',1342177281,'submission.event.fileUploaded',0),(49,1048585,4,7,'2019-03-31 14:36:58',1342177281,'submission.event.fileUploaded',0),(50,1048585,4,7,'2019-03-31 14:38:18',268435457,'submission.event.submissionSubmitted',0),(51,515,20,2,'2019-03-31 14:39:53',1342177281,'submission.event.fileUploaded',0),(52,1048585,5,2,'2019-03-31 14:39:57',1342177281,'submission.event.fileUploaded',0),(53,1048585,5,2,'2019-03-31 14:41:16',268435457,'submission.event.submissionSubmitted',0),(54,1048585,5,1,'2019-03-31 14:55:04',268435459,'submission.event.participantAdded',0),(55,1048585,5,1,'2019-03-31 14:55:18',805306371,'log.editor.decision',0),(56,1048585,5,1,'2019-03-31 14:55:50',1073741825,'log.review.reviewerAssigned',0),(57,1048585,4,1,'2019-03-31 14:57:23',268435459,'submission.event.participantAdded',0),(58,1048585,4,1,'2019-03-31 14:57:35',805306371,'log.editor.decision',0),(59,1048585,4,1,'2019-03-31 14:58:02',1073741825,'log.review.reviewerAssigned',0),(60,1048585,3,1,'2019-03-31 14:58:44',268435459,'submission.event.participantAdded',0),(61,1048585,3,1,'2019-03-31 14:58:55',805306371,'log.editor.decision',0),(62,1048585,3,1,'2019-03-31 14:59:21',1073741825,'log.review.reviewerAssigned',0),(63,1048585,5,6,'2019-03-31 15:00:06',1073741830,'log.review.reviewAccepted',0),(64,515,24,6,'2019-03-31 15:00:54',1342177281,'submission.event.fileUploaded',0),(65,1048585,5,6,'2019-03-31 15:01:00',1342177281,'submission.event.fileUploaded',0),(66,1048585,4,6,'2019-03-31 15:02:04',1073741830,'log.review.reviewAccepted',0),(67,515,25,6,'2019-03-31 15:02:27',1342177281,'submission.event.fileUploaded',0),(68,1048585,4,6,'2019-03-31 15:02:31',1342177281,'submission.event.fileUploaded',0),(69,1048585,3,6,'2019-03-31 15:03:05',1073741830,'log.review.reviewAccepted',0),(70,515,26,6,'2019-03-31 15:03:37',1342177281,'submission.event.fileUploaded',0),(71,1048585,3,6,'2019-03-31 15:03:42',1342177281,'submission.event.fileUploaded',0),(72,1048585,5,1,'2019-03-31 15:04:24',805306371,'log.editor.decision',0),(73,1048585,4,1,'2019-03-31 15:04:54',805306371,'log.editor.decision',0),(74,1048585,3,1,'2019-03-31 15:06:26',805306371,'log.editor.decision',0),(75,515,27,7,'2019-03-31 15:07:21',1342177281,'submission.event.fileUploaded',0),(76,1048585,4,7,'2019-03-31 15:07:26',1342177281,'submission.event.fileUploaded',0),(77,515,28,7,'2019-03-31 15:08:20',1342177281,'submission.event.fileUploaded',0),(78,1048585,3,7,'2019-03-31 15:08:25',1342177281,'submission.event.fileUploaded',0),(79,515,29,2,'2019-03-31 15:09:28',1342177281,'submission.event.fileUploaded',0),(80,1048585,5,2,'2019-03-31 15:09:32',1342177281,'submission.event.fileUploaded',0),(81,1048585,1,1,'2019-03-31 15:40:56',805306371,'log.editor.decision',0),(82,515,30,1,'2019-03-31 15:42:43',1342177281,'submission.event.fileUploaded',0),(83,1048585,1,1,'2019-03-31 15:42:47',1342177281,'submission.event.fileUploaded',0),(84,1048585,5,1,'2019-03-31 15:43:36',805306371,'log.editor.decision',0),(85,1048585,5,1,'2019-03-31 15:45:15',805306371,'log.editor.decision',0),(86,515,31,1,'2019-03-31 15:46:28',1342177281,'submission.event.fileUploaded',0),(87,1048585,5,1,'2019-03-31 15:46:37',1342177281,'submission.event.fileUploaded',0),(88,1048585,5,1,'2019-03-31 15:46:58',268435464,'submission.event.issueMetadataUpdated',0),(89,1048585,4,1,'2019-03-31 15:51:10',805306371,'log.editor.decision',0),(90,515,32,1,'2019-03-31 15:52:57',1342177281,'submission.event.fileUploaded',0),(91,1048585,4,1,'2019-03-31 15:53:02',1342177281,'submission.event.fileUploaded',0),(92,1048585,4,1,'2019-03-31 15:54:07',268435464,'submission.event.issueMetadataUpdated',0),(93,1048585,5,1,'2019-03-31 15:55:15',268435458,'submission.event.general.metadataUpdated',0),(94,1048585,3,1,'2019-03-31 16:00:32',805306371,'log.editor.decision',0),(95,515,33,1,'2019-03-31 16:01:13',1342177281,'submission.event.fileUploaded',0),(96,1048585,3,1,'2019-03-31 16:01:17',1342177281,'submission.event.fileUploaded',0),(97,1048585,3,1,'2019-03-31 16:01:44',268435464,'submission.event.issueMetadataUpdated',0),(98,1048585,5,1,'2019-03-31 18:18:42',268435464,'submission.event.issueMetadataUpdated',0),(99,1048585,5,1,'2019-03-31 18:18:55',268435464,'submission.event.issueMetadataUpdated',0),(100,1048585,5,1,'2019-03-31 18:19:49',268435464,'submission.event.issueMetadataUpdated',0),(101,1048585,5,1,'2019-03-31 18:20:09',268435464,'submission.event.issueMetadataUpdated',0),(102,1048585,5,1,'2019-03-31 18:20:29',268435464,'submission.event.issueMetadataUpdated',0),(103,1048585,1,5,'2019-03-31 19:00:07',268435464,'submission.event.issueMetadataUpdated',0),(104,1048585,1,1,'2019-04-01 09:48:04',268435458,'submission.event.general.metadataUpdated',0),(105,1048585,4,1,'2019-04-01 10:00:08',268435458,'submission.event.general.metadataUpdated',0),(106,1048585,3,1,'2019-04-01 10:13:59',268435458,'submission.event.general.metadataUpdated',0),(107,1048585,2,1,'2019-04-01 10:18:51',268435458,'submission.event.general.metadataUpdated',0),(108,1048585,5,1,'2019-04-01 10:29:02',268435464,'submission.event.issueMetadataUpdated',0),(109,1048585,3,1,'2019-04-01 10:39:10',268435464,'submission.event.issueMetadataUpdated',0),(110,1048585,2,1,'2019-04-01 10:41:36',268435464,'submission.event.issueMetadataUpdated',0),(111,1048585,4,1,'2019-04-01 10:47:34',268435464,'submission.event.issueMetadataUpdated',0),(112,1048585,1,1,'2019-04-01 10:48:21',268435464,'submission.event.issueMetadataUpdated',0),(113,1048585,5,1,'2019-04-01 10:55:29',268435458,'submission.event.general.metadataUpdated',0),(114,1048585,4,1,'2019-04-01 10:59:24',268435458,'submission.event.general.metadataUpdated',0),(115,515,34,9,'2019-08-24 10:24:23',1342177281,'submission.event.fileUploaded',0),(116,1048585,6,9,'2019-08-24 10:24:31',1342177281,'submission.event.fileUploaded',0),(117,1048585,6,9,'2019-08-24 10:29:05',268435457,'submission.event.submissionSubmitted',0),(118,1048585,6,1,'2019-08-24 10:49:17',268435459,'submission.event.participantAdded',0),(119,1048585,6,1,'2019-08-24 10:50:15',805306371,'log.editor.decision',0),(120,1048585,6,1,'2019-08-24 10:53:16',1073741825,'log.review.reviewerAssigned',0),(121,515,36,10,'2019-08-25 13:40:34',1342177281,'submission.event.fileUploaded',0),(122,1048585,7,10,'2019-08-25 13:40:41',1342177281,'submission.event.fileUploaded',0),(123,1048585,7,10,'2019-08-25 13:53:35',268435457,'submission.event.submissionSubmitted',0),(124,1048585,7,1,'2019-08-25 14:18:36',268435459,'submission.event.participantAdded',0),(125,515,37,19,'2019-08-25 14:45:25',1342177281,'submission.event.fileUploaded',0),(126,1048585,8,19,'2019-08-25 14:45:32',1342177281,'submission.event.fileUploaded',0),(127,1048585,8,19,'2019-08-25 14:48:52',268435457,'submission.event.submissionSubmitted',0),(128,1048585,8,1,'2019-08-25 14:50:03',268435459,'submission.event.participantAdded',0),(129,1048585,8,1,'2019-08-28 03:48:09',805306371,'log.editor.decision',0),(130,1048585,8,1,'2019-08-28 03:49:26',1073741825,'log.review.reviewerAssigned',0),(131,1048585,7,1,'2019-08-28 03:50:45',805306371,'log.editor.decision',0),(132,1048585,7,1,'2019-08-28 03:51:25',1073741825,'log.review.reviewerAssigned',0),(133,515,40,20,'2019-08-29 08:21:14',1342177281,'submission.event.fileUploaded',0),(134,1048585,9,20,'2019-08-29 08:21:22',1342177281,'submission.event.fileUploaded',0),(135,1048585,9,20,'2019-08-29 08:26:51',268435457,'submission.event.submissionSubmitted',0),(136,1048585,9,1,'2019-08-29 08:28:24',268435459,'submission.event.participantAdded',0),(137,1048585,9,1,'2019-08-30 04:06:54',805306371,'log.editor.decision',0),(138,1048585,9,1,'2019-08-30 04:08:11',1073741825,'log.review.reviewerAssigned',0),(139,1048585,8,18,'2019-08-30 04:12:31',1073741830,'log.review.reviewAccepted',0),(140,515,42,18,'2019-08-30 04:13:36',1342177281,'submission.event.fileUploaded',0),(141,1048585,8,18,'2019-08-30 04:13:40',1342177281,'submission.event.fileUploaded',0),(142,1048585,8,1,'2019-08-30 04:15:39',805306371,'log.editor.decision',0),(143,1048585,7,17,'2019-08-30 07:50:32',1073741830,'log.review.reviewAccepted',0),(144,515,43,17,'2019-08-30 07:51:33',1342177281,'submission.event.fileUploaded',0),(145,1048585,7,17,'2019-08-30 07:51:39',1342177281,'submission.event.fileUploaded',0),(146,1048585,6,6,'2019-08-30 07:58:04',1073741830,'log.review.reviewAccepted',0),(147,515,44,6,'2019-08-30 07:58:37',1342177281,'submission.event.fileUploaded',0),(148,1048585,6,6,'2019-08-30 07:58:44',1342177281,'submission.event.fileUploaded',0),(149,1048585,9,6,'2019-08-30 07:59:33',1073741830,'log.review.reviewAccepted',0),(150,515,45,6,'2019-08-30 08:00:04',1342177281,'submission.event.fileUploaded',0),(151,1048585,9,6,'2019-08-30 08:00:10',1342177281,'submission.event.fileUploaded',0),(152,1048585,9,1,'2019-08-30 08:02:05',805306371,'log.editor.decision',0),(153,1048585,7,1,'2019-08-30 08:02:45',805306371,'log.editor.decision',0),(154,1048585,6,1,'2019-08-30 08:03:14',805306371,'log.editor.decision',0),(155,1048585,9,1,'2019-08-30 12:11:53',805306371,'log.editor.decision',0),(156,1048585,8,1,'2019-08-30 12:12:31',805306371,'log.editor.decision',0),(157,1048585,7,1,'2019-08-30 12:13:14',805306371,'log.editor.decision',0),(158,1048585,6,1,'2019-08-30 12:13:46',805306371,'log.editor.decision',0),(159,1048585,9,1,'2019-08-30 12:17:19',805306372,'log.editor.recommendation',0),(160,515,46,20,'2019-08-30 12:22:23',1342177281,'submission.event.fileUploaded',0),(161,1048585,9,20,'2019-08-30 12:22:27',1342177281,'submission.event.fileUploaded',0),(162,515,47,19,'2019-08-30 12:24:08',1342177281,'submission.event.fileUploaded',0),(163,1048585,8,19,'2019-08-30 12:24:17',1342177281,'submission.event.fileUploaded',0),(164,515,48,9,'2019-08-30 12:25:59',1342177281,'submission.event.fileUploaded',0),(165,1048585,6,9,'2019-08-30 12:26:03',1342177281,'submission.event.fileUploaded',0),(166,515,49,10,'2019-08-30 12:28:17',1342177281,'submission.event.fileUploaded',0),(167,1048585,7,10,'2019-08-30 12:28:21',1342177281,'submission.event.fileUploaded',0),(168,1048585,8,1,'2019-08-30 12:29:53',805306372,'log.editor.recommendation',0),(169,1048585,8,1,'2019-08-30 12:31:44',805306371,'log.editor.decision',0),(170,1048585,7,1,'2019-08-30 12:36:04',268435459,'submission.event.participantAdded',0),(171,1048585,7,1,'2019-08-30 12:37:22',805306372,'log.editor.recommendation',0),(172,1048585,6,1,'2019-08-30 12:39:15',805306371,'log.editor.decision',0),(173,1048585,9,1,'2019-08-30 12:43:36',805306371,'log.editor.decision',0),(174,1048585,7,1,'2019-08-30 12:44:42',805306371,'log.editor.decision',0),(175,515,54,21,'2019-08-31 08:31:25',1342177281,'submission.event.fileUploaded',0),(176,1048585,10,21,'2019-08-31 08:31:31',1342177281,'submission.event.fileUploaded',0),(177,1048585,10,21,'2019-08-31 08:32:42',268435457,'submission.event.submissionSubmitted',0),(178,1048585,10,1,'2019-08-31 08:33:38',268435459,'submission.event.participantAdded',0),(179,1048585,10,1,'2019-08-31 08:35:03',805306371,'log.editor.decision',0),(180,1048585,10,1,'2019-08-31 08:35:51',1073741825,'log.review.reviewerAssigned',0),(181,1048585,10,17,'2019-08-31 08:36:52',1073741830,'log.review.reviewAccepted',0),(182,515,56,17,'2019-08-31 08:37:14',1342177281,'submission.event.fileUploaded',0),(183,1048585,10,17,'2019-08-31 08:37:19',1342177281,'submission.event.fileUploaded',0),(184,1048585,10,1,'2019-08-31 08:39:23',805306372,'log.editor.recommendation',0),(185,1048585,10,1,'2019-08-31 08:39:46',805306371,'log.editor.decision',0),(186,515,57,21,'2019-08-31 08:40:49',1342177281,'submission.event.fileUploaded',0),(187,1048585,10,21,'2019-08-31 08:40:53',1342177281,'submission.event.fileUploaded',0),(188,1048585,10,1,'2019-08-31 08:42:18',805306372,'log.editor.recommendation',0),(189,1048585,10,1,'2019-08-31 08:42:33',805306371,'log.editor.decision',0),(190,1048585,10,1,'2019-08-31 13:07:07',268435458,'submission.event.general.metadataUpdated',0),(191,1048585,10,12,'2019-08-31 13:10:41',805306371,'log.editor.decision',0),(192,515,59,12,'2019-08-31 13:14:00',1342177281,'submission.event.fileUploaded',0),(193,1048585,10,12,'2019-08-31 13:14:06',1342177281,'submission.event.fileUploaded',0),(194,1048585,10,12,'2019-08-31 13:18:22',268435464,'submission.event.issueMetadataUpdated',0),(195,1048585,7,12,'2019-08-31 13:21:20',268435458,'submission.event.general.metadataUpdated',0),(196,1048585,7,12,'2019-08-31 13:22:03',805306371,'log.editor.decision',0),(197,1048585,7,12,'2019-08-31 13:22:47',268435464,'submission.event.issueMetadataUpdated',0),(198,515,60,12,'2019-08-31 13:24:33',1342177281,'submission.event.fileUploaded',0),(199,1048585,7,12,'2019-08-31 13:24:42',1342177281,'submission.event.fileUploaded',0),(200,1048585,9,1,'2019-08-31 13:29:23',268435458,'submission.event.general.metadataUpdated',0),(201,1048585,9,1,'2019-08-31 13:30:49',805306371,'log.editor.decision',0),(202,515,61,1,'2019-08-31 13:32:12',1342177281,'submission.event.fileUploaded',0),(203,1048585,9,1,'2019-08-31 13:32:22',1342177281,'submission.event.fileUploaded',0),(204,1048585,9,1,'2019-08-31 13:33:04',268435464,'submission.event.issueMetadataUpdated',0),(205,1048585,8,1,'2019-08-31 13:35:13',268435458,'submission.event.general.metadataUpdated',0),(206,1048585,8,1,'2019-08-31 13:35:54',805306371,'log.editor.decision',0),(207,515,62,1,'2019-08-31 13:36:52',1342177281,'submission.event.fileUploaded',0),(208,1048585,8,1,'2019-08-31 13:37:02',1342177281,'submission.event.fileUploaded',0),(209,1048585,8,1,'2019-08-31 13:37:32',268435464,'submission.event.issueMetadataUpdated',0),(210,1048585,6,1,'2019-08-31 13:39:59',268435458,'submission.event.general.metadataUpdated',0),(211,1048585,6,1,'2019-08-31 13:40:22',805306371,'log.editor.decision',0),(212,515,63,1,'2019-08-31 13:42:01',1342177281,'submission.event.fileUploaded',0),(213,1048585,6,1,'2019-08-31 13:42:07',1342177281,'submission.event.fileUploaded',0),(214,1048585,6,1,'2019-08-31 13:42:38',268435464,'submission.event.issueMetadataUpdated',0),(215,515,64,23,'2019-09-20 19:41:05',1342177281,'submission.event.fileUploaded',0),(216,1048585,11,23,'2019-09-20 19:41:11',1342177281,'submission.event.fileUploaded',0),(217,1048585,11,23,'2019-09-20 19:43:30',268435457,'submission.event.submissionSubmitted',0),(218,1048585,11,1,'2019-10-04 08:06:41',268435459,'submission.event.participantAdded',0),(219,515,65,24,'2019-11-10 03:04:56',1342177281,'submission.event.fileUploaded',0),(224,515,66,25,'2020-01-30 19:37:24',1342177281,'submission.event.fileUploaded',0),(225,1048585,13,25,'2020-01-30 19:38:05',1342177281,'submission.event.fileUploaded',0),(226,515,67,25,'2020-01-30 19:38:31',1342177281,'submission.event.fileUploaded',0),(227,1048585,13,25,'2020-01-30 19:38:50',1342177281,'submission.event.fileUploaded',0),(228,515,68,25,'2020-01-30 19:39:25',1342177281,'submission.event.fileUploaded',0),(229,1048585,13,25,'2020-01-30 19:39:32',1342177281,'submission.event.fileUploaded',0),(230,1048585,13,25,'2020-01-30 19:42:47',268435457,'submission.event.submissionSubmitted',0),(231,1048585,13,25,'2020-01-30 20:44:14',1342177281,'submission.event.fileUploaded',0),(232,515,69,26,'2020-01-31 15:30:17',1342177281,'submission.event.fileUploaded',0),(233,1048585,14,26,'2020-01-31 15:30:26',1342177281,'submission.event.fileUploaded',0),(234,515,69,26,'2020-01-31 15:30:56',1342177282,'submission.event.fileDeleted',0),(235,1048585,14,26,'2020-01-31 15:30:56',1342177283,'submission.event.lastRevisionDeleted',0),(236,515,70,26,'2020-01-31 15:35:07',1342177281,'submission.event.fileUploaded',0),(237,1048585,14,26,'2020-01-31 15:36:03',1342177281,'submission.event.fileUploaded',0),(238,1048585,14,26,'2020-01-31 15:54:32',268435457,'submission.event.submissionSubmitted',0),(239,1048585,14,1,'2020-02-01 14:32:14',268435459,'submission.event.participantAdded',0),(240,1048585,13,1,'2020-02-01 14:33:48',268435459,'submission.event.participantAdded',0),(241,1048585,14,1,'2020-02-04 11:15:10',805306371,'log.editor.decision',0),(242,1048585,14,1,'2020-02-04 11:16:37',1073741825,'log.review.reviewerAssigned',0),(243,1048585,13,1,'2020-02-04 11:17:42',805306371,'log.editor.decision',0),(244,1048585,13,1,'2020-02-04 11:18:30',1073741825,'log.review.reviewerAssigned',0),(245,1048585,14,6,'2020-02-04 13:15:40',1073741830,'log.review.reviewAccepted',0),(246,515,75,6,'2020-02-04 13:17:01',1342177281,'submission.event.fileUploaded',0),(247,1048585,14,6,'2020-02-04 13:17:06',1342177281,'submission.event.fileUploaded',0),(248,1048585,13,6,'2020-02-04 13:18:06',1073741830,'log.review.reviewAccepted',0),(249,515,76,6,'2020-02-04 13:18:35',1342177281,'submission.event.fileUploaded',0),(250,1048585,13,6,'2020-02-04 13:18:39',1342177281,'submission.event.fileUploaded',0),(251,1048585,14,1,'2020-02-04 13:20:12',805306372,'log.editor.recommendation',0),(252,1048585,13,1,'2020-02-04 13:20:54',805306372,'log.editor.recommendation',0),(253,1048585,14,1,'2020-02-12 07:50:07',805306372,'log.editor.recommendation',0),(254,1048585,13,1,'2020-02-12 07:51:21',805306372,'log.editor.recommendation',0),(255,515,77,28,'2020-02-16 16:18:51',1342177281,'submission.event.fileUploaded',0),(256,1048585,15,28,'2020-02-16 16:19:38',1342177281,'submission.event.fileUploaded',0),(257,515,78,28,'2020-02-16 16:20:30',1342177281,'submission.event.fileUploaded',0),(258,1048585,15,28,'2020-02-16 16:20:57',1342177281,'submission.event.fileUploaded',0),(259,515,79,28,'2020-02-16 16:21:16',1342177281,'submission.event.fileUploaded',0),(260,1048585,15,28,'2020-02-16 16:21:49',1342177281,'submission.event.fileUploaded',0),(261,515,80,28,'2020-02-16 16:22:11',1342177281,'submission.event.fileUploaded',0),(262,1048585,15,28,'2020-02-16 16:22:29',1342177281,'submission.event.fileUploaded',0),(263,515,81,28,'2020-02-16 16:22:54',1342177281,'submission.event.fileUploaded',0),(264,1048585,15,28,'2020-02-16 16:23:05',1342177281,'submission.event.fileUploaded',0),(265,1048585,15,28,'2020-02-16 16:26:10',268435457,'submission.event.submissionSubmitted',0),(266,1048585,15,1,'2020-02-17 09:33:43',268435459,'submission.event.participantAdded',0),(267,1048585,13,1,'2020-02-17 09:49:20',1073741825,'log.review.reviewerAssigned',0),(268,1048585,13,18,'2020-02-17 09:59:03',1073741830,'log.review.reviewAccepted',0),(269,515,82,18,'2020-02-17 09:59:32',1342177281,'submission.event.fileUploaded',0),(270,1048585,13,18,'2020-02-17 09:59:38',1342177281,'submission.event.fileUploaded',0),(271,1048585,13,1,'2020-02-17 10:01:47',1073741833,'log.review.reviewUnconsidered',0),(272,1048585,13,1,'2020-02-17 12:29:45',1342177281,'submission.event.fileUploaded',0),(273,515,83,1,'2020-02-17 13:08:29',1342177282,'submission.event.fileDeleted',0),(274,515,84,1,'2020-02-17 13:08:36',1342177282,'submission.event.fileDeleted',0),(275,515,85,1,'2020-02-17 13:08:45',1342177282,'submission.event.fileDeleted',0),(276,1048585,13,1,'2020-02-17 13:28:14',1073741833,'log.review.reviewUnconsidered',0),(277,1048585,13,1,'2020-02-17 13:28:49',1073741846,'log.review.reviewRecommendationSetByProxy',0),(278,1048585,13,1,'2020-02-17 13:31:34',1073741825,'log.review.reviewerAssigned',0),(279,1048585,13,17,'2020-02-17 13:33:16',1073741830,'log.review.reviewAccepted',0),(280,515,86,17,'2020-02-17 13:34:03',1342177281,'submission.event.fileUploaded',0),(281,1048585,13,17,'2020-02-17 13:34:10',1342177281,'submission.event.fileUploaded',0),(282,1048585,13,1,'2020-02-17 13:36:13',1073741846,'log.review.reviewRecommendationSetByProxy',0),(283,1048585,13,1,'2020-02-17 13:37:17',805306372,'log.editor.recommendation',0),(284,1048585,13,1,'2020-02-17 13:42:06',1073741833,'log.review.reviewUnconsidered',0),(285,1048585,13,1,'2020-02-17 13:42:11',1073741833,'log.review.reviewUnconsidered',0),(286,1048585,13,1,'2020-02-17 13:42:31',1073741833,'log.review.reviewUnconsidered',0),(287,1048585,13,1,'2020-02-17 13:54:46',1342177281,'submission.event.fileUploaded',0),(288,1048585,13,1,'2020-02-17 13:55:34',1073741846,'log.review.reviewRecommendationSetByProxy',0),(289,1048585,13,1,'2020-02-18 22:55:54',1073741833,'log.review.reviewUnconsidered',0),(290,1048585,13,1,'2020-02-18 22:55:56',1073741833,'log.review.reviewUnconsidered',0),(291,1048585,13,1,'2020-02-18 22:56:36',805306372,'log.editor.recommendation',0),(292,1048585,11,1,'2020-02-19 07:14:39',805306371,'log.editor.decision',0),(293,1048585,11,1,'2020-02-19 07:17:14',1073741825,'log.review.reviewerAssigned',0),(294,1048585,15,1,'2020-02-19 07:18:04',805306371,'log.editor.decision',0),(295,1048585,15,1,'2020-02-19 07:18:50',1073741825,'log.review.reviewerAssigned',0),(296,1048585,15,18,'2020-02-19 07:20:33',1073741830,'log.review.reviewAccepted',0),(297,515,93,18,'2020-02-19 07:21:16',1342177281,'submission.event.fileUploaded',0),(298,1048585,15,18,'2020-02-19 07:21:22',1342177281,'submission.event.fileUploaded',0),(299,1048585,11,18,'2020-02-19 07:22:27',1073741830,'log.review.reviewAccepted',0),(300,515,94,18,'2020-02-19 07:22:52',1342177281,'submission.event.fileUploaded',0),(301,1048585,11,18,'2020-02-19 07:22:57',1342177281,'submission.event.fileUploaded',0),(302,1048585,15,1,'2020-02-19 07:24:47',805306372,'log.editor.recommendation',0),(303,1048585,15,1,'2020-02-19 08:05:54',1073741833,'log.review.reviewUnconsidered',0),(304,1048585,13,1,'2020-02-19 08:43:01',268435459,'submission.event.participantAdded',0),(305,515,95,1,'2020-02-19 08:55:25',1342177281,'submission.event.fileUploaded',0),(306,1048585,13,1,'2020-02-19 08:55:31',1342177281,'submission.event.fileUploaded',0),(307,1048585,13,1,'2020-02-19 08:56:55',805306371,'log.editor.decision',0),(308,515,95,1,'2020-02-19 09:04:43',1342177282,'submission.event.fileDeleted',0),(309,1048585,13,1,'2020-02-19 09:04:43',1342177283,'submission.event.lastRevisionDeleted',0),(310,1048585,14,1,'2020-02-19 09:11:41',268435459,'submission.event.participantAdded',0),(311,1048585,14,1,'2020-02-19 09:12:24',805306371,'log.editor.decision',0),(312,1048585,15,1,'2020-02-19 09:37:17',268435460,'submission.event.participantRemoved',0),(313,1048585,15,1,'2020-02-19 09:37:33',268435459,'submission.event.participantAdded',0),(314,1048585,11,1,'2020-02-19 09:38:23',268435459,'submission.event.participantAdded',0),(315,1048585,15,1,'2020-02-19 09:45:34',805306371,'log.editor.decision',0),(316,1048585,15,1,'2020-02-19 09:46:07',805306371,'log.editor.decision',0),(317,1048585,11,1,'2020-02-19 09:48:20',805306371,'log.editor.decision',0),(318,1048585,14,1,'2020-02-19 09:49:37',268435459,'submission.event.participantAdded',0),(319,1048585,14,1,'2020-02-19 09:51:34',805306371,'log.editor.decision',0),(320,515,96,23,'2020-02-21 18:57:04',1342177281,'submission.event.fileUploaded',0),(321,1048585,11,23,'2020-02-21 18:57:13',1342177281,'submission.event.fileUploaded',0),(322,515,96,23,'2020-02-23 10:01:14',1342177288,'submission.event.revisionUploaded',0),(323,1048585,11,23,'2020-02-23 10:01:21',1342177288,'submission.event.fileRevised',0),(324,1048585,11,1,'2020-02-24 10:49:54',805306372,'log.editor.recommendation',0),(325,1048585,5,1,'2020-02-26 08:24:41',268435458,'submission.event.general.metadataUpdated',0),(326,1048585,4,1,'2020-02-26 08:26:42',268435458,'submission.event.general.metadataUpdated',0),(327,1048585,3,1,'2020-02-26 08:28:26',268435458,'submission.event.general.metadataUpdated',0),(328,1048585,2,1,'2020-02-26 08:29:51',268435458,'submission.event.general.metadataUpdated',0),(329,1048585,1,1,'2020-02-26 08:31:51',268435458,'submission.event.general.metadataUpdated',0),(330,1048585,15,1,'2020-02-27 09:15:11',1073741825,'log.review.reviewerAssigned',0),(331,1048585,15,1,'2020-02-27 09:18:04',1073741830,'log.review.reviewAccepted',0),(332,515,97,30,'2020-02-27 09:18:28',1342177281,'submission.event.fileUploaded',0),(333,1048585,15,1,'2020-02-27 09:18:33',1342177281,'submission.event.fileUploaded',0),(334,1048585,13,1,'2020-02-27 09:23:54',1073741825,'log.review.reviewerAssigned',0),(335,1048585,13,1,'2020-02-27 09:25:33',1073741830,'log.review.reviewAccepted',0),(336,515,98,31,'2020-02-27 09:26:56',1342177281,'submission.event.fileUploaded',0),(337,1048585,13,1,'2020-02-27 09:27:03',1342177281,'submission.event.fileUploaded',0),(338,1048585,15,1,'2020-02-27 10:01:49',805306372,'log.editor.recommendation',0),(339,1048585,15,1,'2020-02-27 10:02:38',805306371,'log.editor.decision',0),(340,1048585,13,1,'2020-02-27 10:06:30',805306372,'log.editor.recommendation',0),(341,1048585,13,1,'2020-02-27 10:07:02',805306371,'log.editor.decision',0),(342,1048585,13,1,'2020-02-27 10:09:26',268435458,'submission.event.general.metadataUpdated',0),(343,1048585,13,1,'2020-02-27 10:18:09',268435458,'submission.event.general.metadataUpdated',0),(344,1048585,13,1,'2020-02-27 10:20:39',268435464,'submission.event.issueMetadataUpdated',0),(345,515,99,1,'2020-02-27 10:22:57',1342177281,'submission.event.fileUploaded',0),(346,1048585,13,1,'2020-02-27 10:23:11',1342177281,'submission.event.fileUploaded',0),(347,1048585,15,1,'2020-02-27 10:29:19',268435458,'submission.event.general.metadataUpdated',0),(348,1048585,15,1,'2020-02-27 10:30:23',268435464,'submission.event.issueMetadataUpdated',0),(349,515,100,1,'2020-02-27 10:33:13',1342177281,'submission.event.fileUploaded',0),(350,1048585,15,1,'2020-02-27 10:33:18',1342177281,'submission.event.fileUploaded',0),(351,1048585,14,1,'2020-02-28 07:52:15',1073741825,'log.review.reviewerAssigned',0),(352,1048585,14,1,'2020-02-28 07:53:48',1073741830,'log.review.reviewAccepted',0),(353,515,101,32,'2020-02-28 07:54:24',1342177281,'submission.event.fileUploaded',0),(354,1048585,14,1,'2020-02-28 07:54:32',1342177281,'submission.event.fileUploaded',0),(355,1048585,14,1,'2020-02-28 07:55:54',805306372,'log.editor.recommendation',0),(356,1048585,14,1,'2020-02-28 07:56:30',805306371,'log.editor.decision',0),(357,1048585,14,1,'2020-02-28 08:14:21',268435458,'submission.event.general.metadataUpdated',0),(358,1048585,14,1,'2020-02-28 09:03:38',268435464,'submission.event.issueMetadataUpdated',0),(359,515,102,1,'2020-02-28 09:04:27',1342177281,'submission.event.fileUploaded',0),(360,1048585,14,1,'2020-02-28 09:04:37',1342177281,'submission.event.fileUploaded',0),(361,1048585,14,1,'2020-02-28 09:05:08',268435464,'submission.event.issueMetadataUpdated',0),(362,515,103,33,'2020-03-07 09:28:15',1342177281,'submission.event.fileUploaded',0),(363,1048585,16,33,'2020-03-07 09:28:23',1342177281,'submission.event.fileUploaded',0),(364,1048585,16,33,'2020-03-07 09:30:53',268435457,'submission.event.submissionSubmitted',0),(365,1048585,16,1,'2020-03-07 09:32:05',268435459,'submission.event.participantAdded',0),(366,1048585,16,1,'2020-03-07 09:32:17',805306371,'log.editor.decision',0),(367,1048585,16,1,'2020-03-07 09:40:14',1073741825,'log.review.reviewerAssigned',0),(368,1048585,16,1,'2020-03-07 09:40:43',1073741825,'log.review.reviewerAssigned',0),(369,1048585,16,1,'2020-03-11 14:34:08',1073741830,'log.review.reviewAccepted',0),(370,1048585,16,1,'2020-03-11 14:35:58',1073741830,'log.review.reviewAccepted',0),(371,515,105,34,'2020-03-19 09:21:08',1342177281,'submission.event.fileUploaded',0),(372,1048585,17,34,'2020-03-19 09:21:18',1342177281,'submission.event.fileUploaded',0),(373,1048585,17,34,'2020-03-19 09:22:34',268435457,'submission.event.submissionSubmitted',0),(374,1048585,17,1,'2020-03-19 09:23:41',268435459,'submission.event.participantAdded',0),(375,1048585,17,1,'2020-03-19 09:23:58',805306371,'log.editor.decision',0),(376,1048585,17,1,'2020-03-19 09:26:50',1073741825,'log.review.reviewerAssigned',0),(377,1048585,17,1,'2020-03-19 09:27:48',1073741825,'log.review.reviewerAssigned',0),(378,515,107,16,'2020-03-19 09:46:23',1342177281,'submission.event.fileUploaded',0),(379,1048585,16,1,'2020-03-19 09:46:32',1342177281,'submission.event.fileUploaded',0),(380,1048585,17,1,'2020-03-19 09:47:50',1073741830,'log.review.reviewAccepted',0),(381,515,108,16,'2020-03-19 09:48:34',1342177281,'submission.event.fileUploaded',0),(382,1048585,17,1,'2020-03-19 09:48:43',1342177281,'submission.event.fileUploaded',0),(383,515,109,15,'2020-03-19 09:51:10',1342177281,'submission.event.fileUploaded',0),(384,1048585,16,1,'2020-03-19 09:51:24',1342177281,'submission.event.fileUploaded',0),(385,1048585,17,1,'2020-03-19 09:52:40',1073741830,'log.review.reviewAccepted',0),(386,515,110,17,'2020-03-19 09:53:16',1342177281,'submission.event.fileUploaded',0),(387,1048585,17,1,'2020-03-19 09:53:31',1342177281,'submission.event.fileUploaded',0),(388,1048585,17,1,'2020-03-19 10:38:09',805306371,'log.editor.decision',0),(389,1048585,16,1,'2020-03-19 13:49:18',805306371,'log.editor.decision',0),(390,515,111,33,'2020-03-19 14:23:40',1342177281,'submission.event.fileUploaded',0),(391,1048585,16,1,'2020-03-19 14:23:45',1342177281,'submission.event.fileUploaded',0),(392,1048585,16,1,'2020-03-19 14:42:13',805306371,'log.editor.decision',0),(393,515,113,34,'2020-03-25 07:37:04',1342177281,'submission.event.fileUploaded',0),(394,1048585,17,1,'2020-03-25 07:37:16',1342177281,'submission.event.fileUploaded',0),(395,1048585,17,1,'2020-03-25 07:39:48',805306371,'log.editor.decision',0),(396,1048585,17,1,'2020-03-25 09:16:45',268435458,'submission.event.general.metadataUpdated',0),(397,1048585,17,1,'2020-03-25 09:21:51',805306371,'log.editor.decision',0),(398,1048585,17,1,'2020-03-25 09:22:57',268435464,'submission.event.issueMetadataUpdated',0),(399,1048585,16,1,'2020-03-25 09:24:31',805306371,'log.editor.decision',0),(400,1048585,16,1,'2020-03-25 09:28:03',268435458,'submission.event.general.metadataUpdated',0),(401,1048585,16,1,'2020-03-25 09:28:38',268435464,'submission.event.issueMetadataUpdated',0),(402,1048585,13,1,'2020-03-25 09:40:31',268435458,'submission.event.general.metadataUpdated',0),(403,1048585,15,1,'2020-03-25 09:48:00',268435458,'submission.event.general.metadataUpdated',0),(404,1048585,15,1,'2020-03-25 09:48:48',268435464,'submission.event.issueMetadataUpdated',0),(405,1048585,14,1,'2020-03-25 09:54:59',268435458,'submission.event.general.metadataUpdated',0),(406,1048585,14,1,'2020-03-25 09:55:50',268435464,'submission.event.issueMetadataUpdated',0),(407,1048585,16,1,'2020-03-25 09:58:34',268435458,'submission.event.general.metadataUpdated',0),(408,1048585,16,1,'2020-03-25 09:59:24',268435464,'submission.event.issueMetadataUpdated',0),(409,1048585,17,1,'2020-03-25 10:02:35',268435458,'submission.event.general.metadataUpdated',0),(410,1048585,17,1,'2020-03-25 10:03:36',268435464,'submission.event.issueMetadataUpdated',0),(411,1048585,13,1,'2020-03-25 10:05:11',268435464,'submission.event.issueMetadataUpdated',0),(412,515,115,23,'2020-03-26 14:27:48',1342177281,'submission.event.fileUploaded',0),(413,1048585,18,23,'2020-03-26 14:27:56',1342177281,'submission.event.fileUploaded',0),(414,515,115,23,'2020-03-26 14:28:44',1342177288,'submission.event.revisionUploaded',0),(415,1048585,18,23,'2020-03-26 14:28:48',1342177288,'submission.event.fileRevised',0),(416,1048585,18,23,'2020-03-26 14:34:22',268435457,'submission.event.submissionSubmitted',0),(417,1048585,11,1,'2020-03-27 07:16:08',805306372,'log.editor.recommendation',0),(418,1048585,11,1,'2020-03-27 07:17:39',805306371,'log.editor.decision',0),(419,1048585,11,1,'2020-03-27 10:33:16',805306371,'log.editor.decision',0),(420,1048585,11,1,'2020-03-27 10:40:16',268435458,'submission.event.general.metadataUpdated',0),(421,1048585,11,1,'2020-03-27 10:53:29',268435464,'submission.event.issueMetadataUpdated',0),(422,1048585,13,1,'2020-03-27 10:54:35',268435464,'submission.event.issueMetadataUpdated',0),(423,515,117,1,'2020-03-27 10:58:57',1342177281,'submission.event.fileUploaded',0),(424,1048585,13,1,'2020-03-27 10:59:03',1342177281,'submission.event.fileUploaded',0),(425,1048585,15,1,'2020-03-27 11:00:15',268435464,'submission.event.issueMetadataUpdated',0),(426,515,118,1,'2020-03-27 11:01:26',1342177281,'submission.event.fileUploaded',0),(427,1048585,15,1,'2020-03-27 11:01:32',1342177281,'submission.event.fileUploaded',0),(428,1048585,14,1,'2020-03-27 11:03:08',268435464,'submission.event.issueMetadataUpdated',0),(429,515,119,1,'2020-03-27 11:04:11',1342177281,'submission.event.fileUploaded',0),(430,1048585,14,1,'2020-03-27 11:04:17',1342177281,'submission.event.fileUploaded',0),(431,1048585,16,1,'2020-03-27 11:09:06',268435464,'submission.event.issueMetadataUpdated',0),(432,515,120,1,'2020-03-27 11:10:21',1342177281,'submission.event.fileUploaded',0),(433,1048585,16,1,'2020-03-27 11:10:25',1342177281,'submission.event.fileUploaded',0),(434,1048585,17,1,'2020-03-27 11:11:33',268435464,'submission.event.issueMetadataUpdated',0),(435,515,121,1,'2020-03-27 11:12:27',1342177281,'submission.event.fileUploaded',0),(436,1048585,17,1,'2020-03-27 11:12:32',1342177281,'submission.event.fileUploaded',0),(437,1048585,11,1,'2020-03-27 11:13:18',268435464,'submission.event.issueMetadataUpdated',0),(438,515,122,1,'2020-03-27 11:14:08',1342177281,'submission.event.fileUploaded',0),(439,1048585,11,1,'2020-03-27 11:14:13',1342177281,'submission.event.fileUploaded',0),(440,1048585,16,1,'2020-03-27 11:22:49',268435458,'submission.event.general.metadataUpdated',0),(441,515,123,37,'2020-03-28 17:07:01',1342177281,'submission.event.fileUploaded',0),(442,1048585,19,37,'2020-03-28 17:07:13',1342177281,'submission.event.fileUploaded',0),(443,515,123,37,'2020-03-28 17:28:55',1342177282,'submission.event.fileDeleted',0),(444,1048585,19,37,'2020-03-28 17:28:55',1342177283,'submission.event.lastRevisionDeleted',0),(445,515,124,37,'2020-03-28 17:32:57',1342177281,'submission.event.fileUploaded',0),(446,1048585,19,37,'2020-03-28 17:33:04',1342177281,'submission.event.fileUploaded',0),(447,1048585,19,37,'2020-03-28 17:33:30',268435457,'submission.event.submissionSubmitted',0),(448,515,125,35,'2020-03-28 22:42:57',1342177281,'submission.event.fileUploaded',0),(449,515,125,35,'2020-03-28 22:43:14',1342177282,'submission.event.fileDeleted',0),(451,515,126,35,'2020-03-28 22:43:39',1342177281,'submission.event.fileUploaded',0),(455,1048585,19,1,'2020-03-29 14:04:34',268435459,'submission.event.participantAdded',0),(456,1048585,18,1,'2020-03-29 14:05:18',268435459,'submission.event.participantAdded',0),(457,515,127,23,'2020-04-02 14:59:21',1342177281,'submission.event.fileUploaded',0),(458,1048585,18,23,'2020-04-02 14:59:28',1342177281,'submission.event.fileUploaded',0),(461,1048585,19,1,'2020-04-06 05:49:39',805306371,'log.editor.decision',0),(462,1048585,19,1,'2020-04-06 05:50:29',1073741825,'log.review.reviewerAssigned',0),(463,515,130,38,'2020-04-21 00:25:46',1342177281,'submission.event.fileUploaded',0),(470,515,132,15,'2020-04-25 09:29:33',1342177281,'submission.event.fileUploaded',0),(473,1048585,19,1,'2020-04-25 09:59:00',1073741830,'log.review.reviewAccepted',0),(474,515,133,16,'2020-04-25 09:59:23',1342177281,'submission.event.fileUploaded',0),(475,1048585,19,1,'2020-04-25 09:59:27',1342177281,'submission.event.fileUploaded',0),(476,1048585,19,1,'2020-04-25 10:00:38',805306371,'log.editor.decision',0),(478,1048585,19,1,'2020-04-25 11:12:33',805306371,'log.editor.decision',0),(479,515,134,37,'2020-05-01 14:23:41',1342177281,'submission.event.fileUploaded',0),(480,1048585,19,37,'2020-05-01 14:23:50',1342177281,'submission.event.fileUploaded',0),(481,1048585,18,23,'2020-05-02 14:33:54',1342177288,'submission.event.fileRevised',0),(482,1048585,18,23,'2020-05-02 14:33:59',1342177288,'submission.event.fileRevised',0),(483,1048585,18,23,'2020-05-02 14:34:29',1342177288,'submission.event.fileRevised',0),(484,1048585,18,23,'2020-05-02 14:34:38',1342177288,'submission.event.fileRevised',0),(485,1048585,19,1,'2020-05-03 07:33:04',805306371,'log.editor.decision',0),(486,1048585,19,1,'2020-05-03 07:33:38',805306371,'log.editor.decision',0),(487,1048585,19,1,'2020-05-12 08:12:58',268435458,'submission.event.general.metadataUpdated',0),(488,1048585,19,1,'2020-05-12 08:24:07',268435458,'submission.event.general.metadataUpdated',0),(489,1048585,19,1,'2020-05-12 08:52:25',268435464,'submission.event.issueMetadataUpdated',0),(490,515,136,1,'2020-05-12 08:53:19',1342177281,'submission.event.fileUploaded',0),(491,1048585,19,1,'2020-05-12 08:53:27',1342177281,'submission.event.fileUploaded',0),(492,1048585,19,1,'2020-05-12 09:35:23',1073741825,'log.review.reviewerAssigned',0),(493,1048585,19,1,'2020-05-12 09:48:37',1073741830,'log.review.reviewAccepted',0),(494,515,137,39,'2020-05-12 09:49:06',1342177281,'submission.event.fileUploaded',0),(495,1048585,19,1,'2020-05-12 09:49:13',1342177281,'submission.event.fileUploaded',0),(496,1048585,18,23,'2020-05-20 15:32:44',1342177288,'submission.event.fileRevised',0),(497,515,138,40,'2020-05-21 17:37:47',1342177281,'submission.event.fileUploaded',0),(498,1048585,20,40,'2020-05-21 17:38:21',1342177281,'submission.event.fileUploaded',0),(499,1048585,20,40,'2020-05-21 18:18:37',268435457,'submission.event.submissionSubmitted',0),(500,1048585,20,1,'2020-05-26 13:57:39',268435459,'submission.event.participantAdded',0),(501,1048585,20,1,'2020-05-26 14:00:52',805306371,'log.editor.decision',0),(502,1048585,20,1,'2020-05-26 14:02:15',1073741825,'log.review.reviewerAssigned',0),(503,1048585,20,1,'2020-05-27 09:33:11',1073741830,'log.review.reviewAccepted',0),(504,515,140,39,'2020-05-27 09:33:49',1342177281,'submission.event.fileUploaded',0),(505,1048585,20,1,'2020-05-27 09:33:55',1342177281,'submission.event.fileUploaded',0),(506,1048585,20,1,'2020-05-27 09:37:07',805306371,'log.editor.decision',0),(507,1048585,20,1,'2020-05-27 10:07:26',805306371,'log.editor.decision',0),(508,515,141,40,'2020-06-07 18:50:48',1342177281,'submission.event.fileUploaded',0),(509,1048585,20,40,'2020-06-07 18:51:35',1342177281,'submission.event.fileUploaded',0),(510,1048585,20,1,'2020-06-10 15:45:43',805306371,'log.editor.decision',0),(511,1048585,20,1,'2020-06-10 15:47:35',805306371,'log.editor.decision',0),(512,1048585,20,1,'2020-06-17 10:28:19',1073741825,'log.review.reviewerAssigned',0),(513,1048585,20,1,'2020-06-17 10:28:50',1073741830,'log.review.reviewAccepted',0),(514,515,143,41,'2020-06-17 10:29:20',1342177281,'submission.event.fileUploaded',0),(515,1048585,20,1,'2020-06-17 10:29:51',1342177281,'submission.event.fileUploaded',0),(516,1048585,20,1,'2020-06-17 13:28:10',268435464,'submission.event.issueMetadataUpdated',0),(517,515,144,1,'2020-06-17 13:29:15',1342177281,'submission.event.fileUploaded',0),(518,1048585,20,1,'2020-06-17 13:29:23',1342177281,'submission.event.fileUploaded',0),(519,1048585,20,1,'2020-06-17 13:33:39',268435458,'submission.event.general.metadataUpdated',0),(520,1048585,20,1,'2020-06-17 13:38:22',268435458,'submission.event.general.metadataUpdated',0),(521,515,145,1,'2020-06-17 13:40:23',1342177281,'submission.event.fileUploaded',0),(522,1048585,19,1,'2020-06-17 13:40:35',1342177281,'submission.event.fileUploaded',0),(523,1048585,18,23,'2020-06-30 18:31:36',1342177288,'submission.event.fileRevised',0),(524,1048585,18,1,'2020-07-13 09:35:49',805306371,'log.editor.decision',0),(525,1048585,18,1,'2020-07-13 09:38:10',1073741825,'log.review.reviewerAssigned',0),(526,515,147,16,'2020-07-13 09:47:23',1342177281,'submission.event.fileUploaded',0),(527,1048585,18,1,'2020-07-13 09:47:38',1342177281,'submission.event.fileUploaded',0),(528,1048585,18,1,'2020-07-13 09:48:14',805306371,'log.editor.decision',0),(529,1048585,18,1,'2020-07-13 12:23:52',1073741830,'log.review.reviewAccepted',0),(530,515,147,23,'2020-07-13 16:25:28',1342177282,'submission.event.fileDeleted',0),(531,1048585,18,1,'2020-07-13 16:25:28',1342177283,'submission.event.lastRevisionDeleted',0),(532,515,148,16,'2020-07-13 16:28:14',1342177281,'submission.event.fileUploaded',0),(533,1048585,18,1,'2020-07-13 16:28:21',1342177281,'submission.event.fileUploaded',0),(534,1048585,18,1,'2020-07-13 16:30:30',805306371,'log.editor.decision',0),(535,515,149,40,'2020-07-15 02:23:42',1342177281,'submission.event.fileUploaded',0),(536,1048585,21,40,'2020-07-15 02:55:06',268435457,'submission.event.submissionSubmitted',0),(537,1048585,21,1,'2020-07-15 07:44:49',268435459,'submission.event.participantAdded',0),(538,1048585,21,1,'2020-07-15 08:41:53',805306371,'log.editor.decision',0),(539,1048585,21,1,'2020-07-15 08:43:00',1073741825,'log.review.reviewerAssigned',0),(540,515,151,23,'2020-07-20 14:41:04',1342177281,'submission.event.fileUploaded',0),(541,1048585,18,23,'2020-07-20 14:41:22',1342177281,'submission.event.fileUploaded',0),(542,515,152,23,'2020-07-20 14:42:06',1342177281,'submission.event.fileUploaded',0),(543,1048585,18,23,'2020-07-20 14:42:27',1342177281,'submission.event.fileUploaded',0),(544,1048585,21,1,'2020-07-21 20:45:32',1073741830,'log.review.reviewAccepted',0),(545,515,153,17,'2020-07-21 20:46:40',1342177281,'submission.event.fileUploaded',0),(546,1048585,21,1,'2020-07-21 20:46:50',1342177281,'submission.event.fileUploaded',0),(547,1048585,21,1,'2020-07-21 20:48:28',805306371,'log.editor.decision',0),(548,515,154,42,'2020-07-26 09:47:07',1342177281,'submission.event.fileUploaded',0),(549,1048585,22,42,'2020-07-26 09:47:14',1342177281,'submission.event.fileUploaded',0),(550,1048585,22,42,'2020-07-26 09:51:00',268435457,'submission.event.submissionSubmitted',0),(551,515,155,42,'2020-07-26 09:51:52',1342177281,'submission.event.fileUploaded',0),(552,1048585,23,42,'2020-07-26 09:51:55',1342177281,'submission.event.fileUploaded',0),(553,1048585,23,42,'2020-07-26 09:54:37',268435457,'submission.event.submissionSubmitted',0),(554,1048585,23,1,'2020-07-26 09:56:27',268435459,'submission.event.participantAdded',0),(555,1048585,23,1,'2020-07-26 09:56:48',805306371,'log.editor.decision',0),(556,1048585,23,1,'2020-07-26 09:57:37',1073741825,'log.review.reviewerAssigned',0),(557,1048585,23,1,'2020-07-26 09:58:15',1073741825,'log.review.reviewerAssigned',0),(558,1048585,22,1,'2020-07-26 09:59:17',268435459,'submission.event.participantAdded',0),(559,1048585,22,1,'2020-07-26 09:59:27',805306371,'log.editor.decision',0),(560,1048585,22,1,'2020-07-26 09:59:59',1073741825,'log.review.reviewerAssigned',0),(561,1048585,22,1,'2020-07-26 10:00:45',1073741825,'log.review.reviewerAssigned',0),(562,1048585,23,1,'2020-07-26 10:10:52',1342177281,'submission.event.fileUploaded',0),(563,1048585,23,1,'2020-07-28 07:19:59',1073741830,'log.review.reviewAccepted',0),(564,515,158,6,'2020-07-28 07:20:27',1342177281,'submission.event.fileUploaded',0),(565,1048585,23,1,'2020-07-28 07:20:37',1342177281,'submission.event.fileUploaded',0),(566,1048585,22,1,'2020-07-28 07:21:38',1073741830,'log.review.reviewAccepted',0),(567,515,159,6,'2020-07-28 07:22:00',1342177281,'submission.event.fileUploaded',0),(568,1048585,22,1,'2020-07-28 07:22:07',1342177281,'submission.event.fileUploaded',0),(569,1048585,23,1,'2020-07-28 07:23:23',1073741830,'log.review.reviewAccepted',0),(570,515,160,16,'2020-07-28 07:24:21',1342177281,'submission.event.fileUploaded',0),(571,1048585,23,1,'2020-07-28 07:24:27',1342177281,'submission.event.fileUploaded',0),(572,1048585,22,1,'2020-07-28 07:26:15',1073741830,'log.review.reviewAccepted',0),(573,515,161,17,'2020-07-28 07:26:40',1342177281,'submission.event.fileUploaded',0),(574,1048585,22,1,'2020-07-28 07:26:45',1342177281,'submission.event.fileUploaded',0),(575,1048585,23,1,'2020-07-28 07:27:43',805306371,'log.editor.decision',0),(576,1048585,22,1,'2020-07-28 07:28:31',805306371,'log.editor.decision',0),(577,1048585,18,1,'2020-07-28 07:29:52',805306371,'log.editor.decision',0),(578,1048585,18,1,'2020-07-28 07:30:13',805306371,'log.editor.decision',0),(579,515,164,42,'2020-07-29 07:25:10',1342177281,'submission.event.fileUploaded',0),(580,1048585,23,1,'2020-07-29 07:25:21',1342177281,'submission.event.fileUploaded',0),(581,515,165,42,'2020-07-29 07:26:24',1342177281,'submission.event.fileUploaded',0),(582,1048585,22,1,'2020-07-29 07:26:30',1342177281,'submission.event.fileUploaded',0),(583,1048585,23,1,'2020-07-29 07:27:25',805306371,'log.editor.decision',0),(584,1048585,22,1,'2020-07-29 07:28:08',805306371,'log.editor.decision',0),(585,515,168,43,'2020-08-13 03:48:48',1342177281,'submission.event.fileUploaded',0),(586,515,169,43,'2020-08-13 03:49:15',1342177281,'submission.event.fileUploaded',0),(587,515,168,43,'2020-08-13 03:49:15',1342177282,'submission.event.fileDeleted',0),(588,1048585,24,43,'2020-08-13 03:49:19',1342177283,'submission.event.lastRevisionDeleted',0),(589,1048585,24,43,'2020-08-13 03:49:32',1342177281,'submission.event.fileUploaded',0),(590,1048585,24,43,'2020-08-13 03:52:46',268435457,'submission.event.submissionSubmitted',0),(591,1048585,24,1,'2020-08-13 10:42:57',268435459,'submission.event.participantAdded',0),(592,1048585,24,1,'2020-08-13 10:43:37',805306371,'log.editor.decision',0),(593,1048585,24,1,'2020-08-13 10:44:18',1073741825,'log.review.reviewerAssigned',0),(594,1048585,24,1,'2020-08-15 09:37:25',1073741830,'log.review.reviewAccepted',0),(595,515,171,6,'2020-08-15 09:37:51',1342177281,'submission.event.fileUploaded',0),(596,1048585,24,1,'2020-08-15 09:38:29',1342177281,'submission.event.fileUploaded',0),(597,1048585,24,1,'2020-08-15 09:39:44',805306371,'log.editor.decision',0),(598,515,172,43,'2020-08-20 04:13:21',1342177281,'submission.event.fileUploaded',0),(599,1048585,24,43,'2020-08-20 04:13:36',1342177281,'submission.event.fileUploaded',0),(600,1048585,24,1,'2020-08-20 13:54:30',805306371,'log.editor.decision',0),(601,1048585,24,1,'2020-08-20 13:55:01',805306371,'log.editor.decision',0),(602,1048585,18,1,'2020-08-24 15:34:39',268435458,'submission.event.general.metadataUpdated',0),(603,1048585,23,1,'2020-08-24 15:38:38',268435458,'submission.event.general.metadataUpdated',0),(604,1048585,23,1,'2020-08-24 15:48:28',268435458,'submission.event.general.metadataUpdated',0),(605,1048585,22,1,'2020-08-24 15:51:52',268435458,'submission.event.general.metadataUpdated',0),(606,1048585,22,1,'2020-08-24 15:52:29',805306371,'log.editor.decision',0),(607,1048585,23,1,'2020-08-24 15:53:54',268435458,'submission.event.general.metadataUpdated',0),(608,1048585,23,1,'2020-08-24 15:54:17',805306371,'log.editor.decision',0),(609,1048585,19,1,'2020-08-26 13:43:24',268435458,'submission.event.general.metadataUpdated',0),(610,515,176,1,'2020-08-26 13:49:07',1342177281,'submission.event.fileUploaded',0),(611,1048585,19,1,'2020-08-26 13:49:20',1342177281,'submission.event.fileUploaded',0),(612,515,177,1,'2020-08-26 13:58:29',1342177281,'submission.event.fileUploaded',0),(613,1048585,20,1,'2020-08-26 13:58:36',1342177281,'submission.event.fileUploaded',0),(614,1048585,22,1,'2020-08-26 14:02:15',268435458,'submission.event.general.metadataUpdated',0),(615,515,178,1,'2020-08-26 14:04:51',1342177281,'submission.event.fileUploaded',0),(616,1048585,22,1,'2020-08-26 14:04:56',1342177281,'submission.event.fileUploaded',0),(617,1048585,22,1,'2020-08-26 14:06:00',268435464,'submission.event.issueMetadataUpdated',0),(618,1048585,23,1,'2020-08-26 14:08:10',268435458,'submission.event.general.metadataUpdated',0),(619,515,179,1,'2020-08-26 14:08:57',1342177281,'submission.event.fileUploaded',0),(620,1048585,23,1,'2020-08-26 14:09:04',1342177281,'submission.event.fileUploaded',0),(621,1048585,23,1,'2020-08-26 14:09:54',268435464,'submission.event.issueMetadataUpdated',0),(622,1048585,18,1,'2020-08-26 14:16:20',268435458,'submission.event.general.metadataUpdated',0),(623,515,180,1,'2020-08-26 14:16:59',1342177281,'submission.event.fileUploaded',0),(624,1048585,18,1,'2020-08-26 14:17:07',1342177281,'submission.event.fileUploaded',0),(625,1048585,18,1,'2020-08-26 14:17:52',268435464,'submission.event.issueMetadataUpdated',0),(626,1048585,24,1,'2020-08-26 14:21:28',268435458,'submission.event.general.metadataUpdated',0),(627,1048585,24,1,'2020-08-26 14:22:03',268435464,'submission.event.issueMetadataUpdated',0),(628,1048585,19,1,'2020-08-26 14:25:48',268435464,'submission.event.issueMetadataUpdated',0),(629,1048585,20,1,'2020-08-26 14:26:44',268435464,'submission.event.issueMetadataUpdated',0),(630,515,181,1,'2020-08-26 14:31:24',1342177281,'submission.event.fileUploaded',0),(631,1048585,24,1,'2020-08-26 14:31:29',1342177281,'submission.event.fileUploaded',0),(632,1048585,18,1,'2020-08-26 14:34:30',268435458,'submission.event.general.metadataUpdated',0),(633,515,182,51,'2020-09-08 12:48:34',1342177281,'submission.event.fileUploaded',0),(634,1048585,25,1,'2020-09-08 12:48:41',1342177281,'submission.event.fileUploaded',0),(635,1048585,25,1,'2020-09-08 12:49:58',268435457,'submission.event.submissionSubmitted',0),(636,1048585,25,1,'2020-09-08 12:50:54',268435459,'submission.event.participantAdded',0),(637,1048585,25,1,'2020-09-08 12:55:04',268435459,'submission.event.participantAdded',0),(638,1048585,25,1,'2020-09-08 12:55:32',268435459,'submission.event.participantAdded',0),(639,515,183,52,'2020-09-09 01:34:18',1342177281,'submission.event.fileUploaded',0),(640,1048585,26,52,'2020-09-09 01:34:35',1342177281,'submission.event.fileUploaded',0),(641,1048585,26,52,'2020-09-09 01:37:25',268435457,'submission.event.submissionSubmitted',0),(642,1048585,25,1,'2020-09-11 05:00:35',268435459,'submission.event.participantAdded',0),(643,1048585,25,1,'2020-09-11 05:01:28',805306371,'log.editor.decision',0),(644,1048585,25,1,'2020-09-11 05:03:02',1073741825,'log.review.reviewerAssigned',0),(645,515,185,40,'2020-09-16 02:57:11',1342177281,'submission.event.fileUploaded',0),(646,1048585,21,40,'2020-09-16 02:57:41',1342177281,'submission.event.fileUploaded',0),(647,1048585,26,1,'2020-09-18 05:31:43',268435459,'submission.event.participantAdded',0),(648,1048585,5,1,'2020-09-20 12:31:08',268435458,'submission.event.general.metadataUpdated',0),(649,1048585,18,1,'2020-09-20 12:43:30',268435458,'submission.event.general.metadataUpdated',0),(650,1048585,26,1,'2020-09-28 06:07:09',805306371,'log.editor.decision',0),(651,1048585,26,1,'2020-09-28 06:07:47',1073741825,'log.review.reviewerAssigned',0),(652,1048585,26,1,'2020-09-28 06:08:34',268435459,'submission.event.participantAdded',0),(653,1048585,21,1,'2020-09-28 06:22:53',268435459,'submission.event.participantAdded',0),(654,1048585,25,1,'2020-09-28 06:23:29',805306371,'log.editor.decision',0),(655,1048585,3,1,'2020-09-28 06:28:03',268435458,'submission.event.general.metadataUpdated',0),(656,1048585,2,1,'2020-09-28 06:29:38',268435458,'submission.event.general.metadataUpdated',0),(657,1048585,4,1,'2020-09-28 06:31:12',268435458,'submission.event.general.metadataUpdated',0),(658,1048585,1,1,'2020-09-28 06:34:15',268435458,'submission.event.general.metadataUpdated',0),(659,1048585,6,1,'2020-09-28 06:35:52',268435458,'submission.event.general.metadataUpdated',0),(660,1048585,8,1,'2020-09-28 06:37:36',268435458,'submission.event.general.metadataUpdated',0),(661,1048585,10,1,'2020-09-28 06:39:39',268435458,'submission.event.general.metadataUpdated',0),(662,1048585,7,1,'2020-09-28 06:42:18',268435458,'submission.event.general.metadataUpdated',0),(663,1048585,22,1,'2020-09-28 06:47:47',268435458,'submission.event.general.metadataUpdated',0),(664,1048585,23,1,'2020-09-28 06:49:19',268435458,'submission.event.general.metadataUpdated',0),(665,1048585,19,1,'2020-09-28 06:54:17',268435458,'submission.event.general.metadataUpdated',0),(666,515,187,57,'2020-10-06 11:49:25',1342177281,'submission.event.fileUploaded',0),(667,515,188,57,'2020-10-06 11:51:35',1342177281,'submission.event.fileUploaded',0),(668,515,188,57,'2020-10-06 11:58:33',1342177282,'submission.event.fileDeleted',0),(669,1048585,28,57,'2020-10-06 11:58:33',1342177283,'submission.event.lastRevisionDeleted',0),(670,515,189,57,'2020-10-06 11:58:36',1342177281,'submission.event.fileUploaded',0),(671,1048585,28,57,'2020-10-06 11:58:45',1342177281,'submission.event.fileUploaded',0),(672,1048585,28,57,'2020-10-06 11:59:50',1342177281,'submission.event.fileUploaded',0),(673,1048585,28,57,'2020-10-06 11:59:50',1342177281,'submission.event.fileUploaded',0),(674,1048585,28,57,'2020-10-06 12:11:22',268435457,'submission.event.submissionSubmitted',0),(675,1048585,28,1,'2020-10-06 21:07:16',268435459,'submission.event.participantAdded',0),(676,1048585,26,1,'2020-10-07 11:24:34',1073741830,'log.review.reviewAccepted',0),(677,515,190,6,'2020-10-07 11:25:17',1342177281,'submission.event.fileUploaded',0),(678,1048585,26,1,'2020-10-07 11:25:22',1342177281,'submission.event.fileUploaded',0),(679,1048585,26,1,'2020-10-07 11:26:24',805306371,'log.editor.decision',0),(680,515,191,58,'2020-10-07 17:16:16',1342177281,'submission.event.fileUploaded',0),(681,1048585,29,58,'2020-10-07 17:20:10',1342177281,'submission.event.fileUploaded',0),(682,1048585,29,58,'2020-10-07 17:25:45',268435457,'submission.event.submissionSubmitted',0),(683,1048585,29,1,'2020-10-07 19:06:42',268435459,'submission.event.participantAdded',0),(684,1048585,28,1,'2020-10-09 07:46:37',805306371,'log.editor.decision',0),(685,1048585,28,1,'2020-10-09 07:47:10',1073741825,'log.review.reviewerAssigned',0),(686,1048585,29,1,'2020-10-09 07:48:40',268435459,'submission.event.participantAdded',0),(687,1048585,29,1,'2020-10-09 07:48:53',805306371,'log.editor.decision',0),(688,1048585,28,1,'2020-10-09 07:52:37',268435459,'submission.event.participantAdded',0),(689,1048585,29,1,'2020-10-09 07:53:34',1073741825,'log.review.reviewerAssigned',0),(690,1048585,28,1,'2020-10-15 10:23:25',1073741830,'log.review.reviewAccepted',0),(691,515,194,6,'2020-10-15 10:25:17',1342177281,'submission.event.fileUploaded',0),(692,1048585,28,1,'2020-10-15 10:25:22',1342177281,'submission.event.fileUploaded',0),(693,1048585,28,1,'2020-10-15 10:26:04',805306371,'log.editor.decision',0),(694,1048585,29,1,'2020-10-17 07:45:13',1073741830,'log.review.reviewAccepted',0),(695,515,195,18,'2020-10-17 07:45:56',1342177281,'submission.event.fileUploaded',0),(696,1048585,29,1,'2020-10-17 07:46:13',1342177281,'submission.event.fileUploaded',0),(697,1048585,29,1,'2020-10-17 07:46:58',805306371,'log.editor.decision',0),(698,515,196,57,'2020-10-20 03:16:20',1342177281,'submission.event.fileUploaded',0),(699,1048585,28,57,'2020-10-20 03:16:59',1342177281,'submission.event.fileUploaded',0),(700,515,196,57,'2020-10-20 03:21:30',1342177288,'submission.event.revisionUploaded',0),(701,1048585,28,57,'2020-10-20 03:21:45',1342177288,'submission.event.fileRevised',0),(702,515,196,57,'2020-10-20 03:22:20',1342177288,'submission.event.revisionUploaded',0),(703,1048585,28,57,'2020-10-20 03:22:48',1342177288,'submission.event.fileRevised',0),(704,515,197,57,'2020-10-20 03:23:56',1342177281,'submission.event.fileUploaded',0),(705,1048585,28,57,'2020-10-20 03:24:13',1342177281,'submission.event.fileUploaded',0),(706,1048585,28,57,'2020-10-20 03:24:41',1342177281,'submission.event.fileUploaded',0),(707,515,198,59,'2020-10-22 03:30:57',1342177281,'submission.event.fileUploaded',0),(708,1048585,30,59,'2020-10-22 03:31:50',1342177281,'submission.event.fileUploaded',0),(709,1048585,30,59,'2020-10-22 03:32:19',1342177281,'submission.event.fileUploaded',0),(710,1048585,30,59,'2020-10-22 03:47:07',268435457,'submission.event.submissionSubmitted',0),(711,515,199,58,'2020-10-24 03:02:55',1342177281,'submission.event.fileUploaded',0),(712,1048585,29,58,'2020-10-24 03:03:19',1342177281,'submission.event.fileUploaded',0),(713,1048585,30,1,'2020-10-25 12:40:16',268435459,'submission.event.participantAdded',0),(714,1048585,30,1,'2020-10-29 08:28:55',805306371,'log.editor.decision',0),(715,1048585,30,1,'2020-10-29 08:29:32',1073741825,'log.review.reviewerAssigned',0),(716,1048585,30,1,'2020-11-07 15:43:26',1073741830,'log.review.reviewAccepted',0),(717,515,201,18,'2020-11-07 15:48:11',1342177281,'submission.event.fileUploaded',0),(718,1048585,30,1,'2020-11-07 15:48:15',1342177281,'submission.event.fileUploaded',0),(719,1048585,30,1,'2020-11-07 15:49:40',805306371,'log.editor.decision',0),(720,1048585,21,1,'2020-11-14 13:42:10',805306371,'log.editor.decision',0),(721,1048585,28,1,'2020-11-14 13:43:15',805306371,'log.editor.decision',0),(722,1048585,28,1,'2020-11-14 13:44:05',805306371,'log.editor.decision',0),(723,1048585,29,1,'2020-11-14 13:45:18',805306371,'log.editor.decision',0),(724,1048585,28,1,'2020-11-17 13:24:45',268435458,'submission.event.general.metadataUpdated',0),(725,515,205,49,'2020-11-17 13:29:51',1342177281,'submission.event.fileUploaded',0),(726,1048585,28,1,'2020-11-17 13:29:59',1342177281,'submission.event.fileUploaded',0),(727,1048585,28,1,'2020-11-18 09:47:08',268435458,'submission.event.general.metadataUpdated',0),(728,515,206,49,'2020-11-18 09:55:44',1342177281,'submission.event.fileUploaded',0),(729,1048585,28,1,'2020-11-18 09:55:49',1342177281,'submission.event.fileUploaded',0),(730,1048585,28,1,'2020-11-18 09:56:39',268435464,'submission.event.issueMetadataUpdated',0),(731,1048585,28,1,'2020-11-18 10:02:07',268435458,'submission.event.general.metadataUpdated',0),(732,515,207,49,'2020-11-18 10:09:37',1342177281,'submission.event.fileUploaded',0),(733,1048585,28,1,'2020-11-18 10:09:41',1342177281,'submission.event.fileUploaded',0),(734,515,208,1,'2020-11-19 11:48:07',1342177281,'submission.event.fileUploaded',0),(735,1048585,22,1,'2020-11-19 11:48:12',1342177281,'submission.event.fileUploaded',0),(736,515,209,63,'2020-12-06 23:17:41',1342177281,'submission.event.fileUploaded',0),(737,515,210,63,'2020-12-06 23:21:50',1342177281,'submission.event.fileUploaded',0),(738,515,210,63,'2020-12-06 23:22:31',1342177282,'submission.event.fileDeleted',0),(740,515,211,63,'2020-12-06 23:27:53',1342177281,'submission.event.fileUploaded',0),(741,1048585,32,63,'2020-12-06 23:33:38',1342177281,'submission.event.fileUploaded',0),(742,1048585,32,63,'2020-12-06 23:42:24',268435457,'submission.event.submissionSubmitted',0),(743,1048585,32,1,'2020-12-09 05:32:10',268435459,'submission.event.participantAdded',0),(744,515,212,65,'2021-01-02 05:40:59',1342177281,'submission.event.fileUploaded',0),(745,1048585,33,65,'2021-01-02 05:41:05',1342177281,'submission.event.fileUploaded',0),(746,1048585,33,65,'2021-01-02 05:42:18',268435457,'submission.event.submissionSubmitted',0),(747,1048585,33,1,'2021-01-02 05:43:32',268435459,'submission.event.participantAdded',0),(748,1048585,33,1,'2021-01-02 05:44:33',805306371,'log.editor.decision',0),(749,1048585,33,1,'2021-01-02 05:46:59',1073741825,'log.review.reviewerAssigned',0),(750,1048585,32,1,'2021-01-02 05:49:28',805306371,'log.editor.decision',0),(751,1048585,32,1,'2021-01-02 05:49:57',1073741825,'log.review.reviewerAssigned',0),(752,515,215,50,'2021-01-02 06:01:36',1342177281,'submission.event.fileUploaded',0),(753,1048585,29,1,'2021-01-02 06:01:43',1342177281,'submission.event.fileUploaded',0),(754,1048585,29,1,'2021-01-02 06:04:06',268435458,'submission.event.general.metadataUpdated',0),(755,1048585,29,1,'2021-01-02 06:11:22',805306371,'log.editor.decision',0),(756,515,217,1,'2021-01-02 06:12:23',1342177281,'submission.event.fileUploaded',0),(757,1048585,29,1,'2021-01-02 06:12:31',1342177281,'submission.event.fileUploaded',0),(758,1048585,29,1,'2021-01-02 06:12:52',268435464,'submission.event.issueMetadataUpdated',0),(759,1048585,29,1,'2021-01-02 06:15:55',268435458,'submission.event.general.metadataUpdated',0),(760,1048585,33,1,'2021-01-03 17:24:20',1073741830,'log.review.reviewAccepted',0),(761,515,218,6,'2021-01-03 17:24:44',1342177281,'submission.event.fileUploaded',0),(762,1048585,33,1,'2021-01-03 17:24:48',1342177281,'submission.event.fileUploaded',0),(763,1048585,33,1,'2021-01-03 17:26:18',805306371,'log.editor.decision',0),(764,1048585,32,1,'2021-01-04 17:08:05',1073741830,'log.review.reviewAccepted',0),(765,515,219,6,'2021-01-04 17:08:23',1342177281,'submission.event.fileUploaded',0),(766,1048585,32,1,'2021-01-04 17:08:27',1342177281,'submission.event.fileUploaded',0),(767,1048585,32,1,'2021-01-04 17:09:15',805306371,'log.editor.decision',0),(768,515,220,63,'2021-01-05 20:26:08',1342177281,'submission.event.fileUploaded',0),(769,515,220,63,'2021-01-05 20:26:41',1342177288,'submission.event.revisionUploaded',0),(770,1048585,32,63,'2021-01-05 20:26:49',1342177288,'submission.event.fileRevised',0),(771,515,220,63,'2021-01-05 20:27:04',1342177289,'submission.event.revisionDeleted',0),(772,515,220,63,'2021-01-05 20:27:08',1342177282,'submission.event.fileDeleted',0),(773,1048585,32,63,'2021-01-05 20:27:08',1342177283,'submission.event.lastRevisionDeleted',0),(774,515,221,63,'2021-01-05 20:27:27',1342177281,'submission.event.fileUploaded',0),(775,1048585,32,63,'2021-01-05 20:27:30',1342177281,'submission.event.fileUploaded',0),(776,1048585,29,1,'2021-01-19 08:39:52',268435458,'submission.event.general.metadataUpdated',0),(777,1048585,36,56,'2021-01-20 21:27:27',268435457,'submission.event.submissionSubmitted',0),(778,1048585,38,66,'2021-01-23 23:52:30',268435457,'submission.event.submissionSubmitted',0),(779,1048585,38,1,'2021-01-25 08:04:42',268435459,'submission.event.participantAdded',0),(780,1048585,36,1,'2021-01-25 08:22:15',268435459,'submission.event.participantAdded',0),(781,515,222,1,'2021-02-02 11:11:00',1342177281,'submission.event.fileUploaded',0),(782,515,222,1,'2021-02-03 09:14:50',1342177282,'submission.event.fileDeleted',0),(783,1048585,38,1,'2021-02-03 09:14:50',1342177283,'submission.event.lastRevisionDeleted',0),(784,515,223,1,'2021-02-03 09:15:06',1342177281,'submission.event.fileUploaded',0),(785,1048585,38,1,'2021-02-03 09:15:10',1342177281,'submission.event.fileUploaded',0),(786,1048585,38,1,'2021-02-06 11:34:28',805306371,'log.editor.decision',0),(787,1048585,38,1,'2021-02-06 11:35:01',1073741825,'log.review.reviewerAssigned',0),(788,1048585,38,1,'2021-02-10 14:35:15',1073741830,'log.review.reviewAccepted',0),(789,515,225,6,'2021-02-10 14:35:51',1342177281,'submission.event.fileUploaded',0),(790,1048585,38,1,'2021-02-10 14:35:56',1342177281,'submission.event.fileUploaded',0),(791,1048585,38,1,'2021-02-10 14:37:00',805306371,'log.editor.decision',0),(792,515,226,66,'2021-02-12 19:20:25',1342177281,'submission.event.fileUploaded',0),(793,1048585,38,66,'2021-02-12 19:21:08',1342177281,'submission.event.fileUploaded',0),(794,515,226,66,'2021-02-12 19:26:22',1342177288,'submission.event.revisionUploaded',0),(795,515,226,66,'2021-02-12 19:27:05',1342177288,'submission.event.revisionUploaded',0),(796,1048585,38,66,'2021-02-12 19:27:18',1342177288,'submission.event.fileRevised',0),(797,515,227,65,'2021-02-19 11:23:38',1342177281,'submission.event.fileUploaded',0),(798,1048585,33,1,'2021-02-19 11:25:10',1073741825,'log.review.reviewerAssigned',0),(799,1048585,33,1,'2021-02-19 11:25:42',1073741830,'log.review.reviewAccepted',0),(800,515,228,18,'2021-02-19 11:37:24',1342177281,'submission.event.fileUploaded',0),(801,1048585,33,1,'2021-02-19 11:37:31',1342177281,'submission.event.fileUploaded',0),(802,1048585,33,1,'2021-02-19 11:41:29',805306371,'log.editor.decision',0),(803,1048585,33,1,'2021-02-19 11:42:40',805306371,'log.editor.decision',0),(804,1048585,33,1,'2021-02-19 13:31:56',268435458,'submission.event.general.metadataUpdated',0),(805,515,230,1,'2021-02-19 13:33:58',1342177281,'submission.event.fileUploaded',0),(806,1048585,33,1,'2021-02-19 13:34:05',1342177281,'submission.event.fileUploaded',0),(807,1048585,33,1,'2021-02-19 13:34:24',268435464,'submission.event.issueMetadataUpdated',0),(808,515,231,51,'2021-02-20 08:58:28',1342177281,'submission.event.fileUploaded',0),(809,1048585,40,1,'2021-02-20 08:58:34',1342177281,'submission.event.fileUploaded',0),(810,1048585,40,1,'2021-02-20 08:59:20',268435457,'submission.event.submissionSubmitted',0),(811,1048585,38,1,'2021-02-20 10:16:33',805306371,'log.editor.decision',0),(812,1048585,32,1,'2021-02-20 10:17:09',805306371,'log.editor.decision',0),(813,515,226,66,'2021-02-20 21:04:31',1342177288,'submission.event.revisionUploaded',0),(814,1048585,38,66,'2021-02-20 21:04:44',1342177288,'submission.event.fileRevised',0),(815,515,226,66,'2021-02-20 21:21:17',1342177289,'submission.event.revisionDeleted',0),(816,515,226,66,'2021-02-20 21:21:50',1342177288,'submission.event.revisionUploaded',0),(817,1048585,38,66,'2021-02-20 21:21:54',1342177288,'submission.event.fileRevised',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`),
  KEY `event_log_settings_name_value` (`setting_name`(50),`setting_value`(150))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,'fileId','1','int'),(1,'fileStage','2','int'),(1,'originalFileName','santan ing.docx','string'),(1,'revisedFileId',NULL,'string'),(1,'submissionFileId','1','int'),(1,'submissionId','1','int'),(1,'username','putri','string'),(2,'fileId','1','int'),(2,'fileStage','2','int'),(2,'name','putri, santan ing.docx','string'),(2,'originalFileName','santan ing.docx','string'),(2,'submissionFileId','1','int'),(2,'submissionId','1','int'),(2,'username','putri','string'),(4,'name','tes1 tes2','string'),(4,'userGroupName','Author','string'),(4,'username','tes123','string'),(5,'name','Ratih Dewi Dwiyanti','string'),(5,'userGroupName','Journal editor','string'),(5,'username','ratih001','string'),(6,'decision','Accept and Skip Review','string'),(6,'editorName','admin admin','string'),(6,'submissionId','1','string'),(7,'decision','Send To Production','string'),(7,'editorName','admin admin','string'),(7,'submissionId','1','string'),(8,'fileId','4','int'),(8,'fileStage','2','int'),(8,'originalFileName','ikan asin ing.docx','string'),(8,'revisedFileId',NULL,'string'),(8,'submissionFileId','4','int'),(8,'submissionId','2','int'),(8,'username','yuli','string'),(9,'fileId','4','int'),(9,'fileStage','2','int'),(9,'name','yuli, ikan asin ing.docx','string'),(9,'originalFileName','ikan asin ing.docx','string'),(9,'submissionFileId','4','int'),(9,'submissionId','2','int'),(9,'username','yuli','string'),(11,'name','admin admin','string'),(11,'userGroupName','Journal editor','string'),(11,'username','admin','string'),(12,'decision','Send to Review','string'),(12,'editorName','admin admin','string'),(12,'submissionId','2','string'),(13,'reviewAssignmentId','1','int'),(13,'reviewerName','anny Thuraidah','string'),(13,'round','1','int'),(13,'stageId','3','int'),(13,'submissionId','2','string'),(14,'reviewAssignmentId','1','string'),(14,'reviewerName','anny Thuraidah','string'),(14,'round','1','string'),(14,'submissionId','2','string'),(15,'fileId','6','int'),(15,'fileStage','5','int'),(15,'originalFileName','ikan asin ing-rev (Autosaved).docx','string'),(15,'revisedFileId',NULL,'string'),(15,'submissionFileId','6','int'),(15,'submissionId','2','int'),(15,'username','thuraidah','string'),(16,'fileId','6','int'),(16,'fileStage','5','int'),(16,'name',', ikan asin ing-rev (Autosaved).docx','string'),(16,'originalFileName','ikan asin ing-rev (Autosaved).docx','string'),(16,'submissionFileId','6','int'),(16,'submissionId','2','int'),(16,'username','thuraidah','string'),(17,'decision','Request Revisions','string'),(17,'editorName','admin admin','string'),(17,'submissionId','2','string'),(18,'fileId','7','int'),(18,'fileStage','15','int'),(18,'originalFileName','ikan asin ing.docx','string'),(18,'revisedFileId',NULL,'string'),(18,'submissionFileId','7','int'),(18,'submissionId','2','int'),(18,'username','yuli','string'),(19,'fileId','7','int'),(19,'fileStage','15','int'),(19,'name','Article Text, ikan asin ing.docx','string'),(19,'originalFileName','ikan asin ing.docx','string'),(19,'submissionFileId','7','int'),(19,'submissionId','2','int'),(19,'username','yuli','string'),(20,'decision','Accept and Skip Review','string'),(20,'editorName','admin admin','string'),(20,'submissionId','2','string'),(21,'decision','Send To Production','string'),(21,'editorName','admin admin','string'),(21,'submissionId','2','string'),(22,'fileId','1','int'),(22,'fileStage','10','int'),(22,'originalFileName','ikan asin ing.docx','string'),(22,'revisedFileId',NULL,'string'),(22,'submissionFileId','11','int'),(22,'submissionId','2','int'),(22,'username','admin','string'),(23,'fileId','1','int'),(23,'fileStage','10','int'),(23,'name','admin, ikan asin ing.docx','string'),(23,'originalFileName','ikan asin ing.docx','string'),(23,'submissionFileId','11','int'),(23,'submissionId','2','int'),(23,'username','admin','string'),(27,'fileId','12','int'),(27,'fileStage','10','int'),(27,'originalFileName','ikan asin template.pdf','string'),(27,'revisedFileId',NULL,'string'),(27,'submissionFileId','12','int'),(27,'submissionId','2','int'),(27,'username','admin','string'),(28,'fileId','12','int'),(28,'fileStage','10','int'),(28,'name','admin, ikan asin template.pdf','string'),(28,'originalFileName','ikan asin template.pdf','string'),(28,'submissionFileId','12','int'),(28,'submissionId','2','int'),(28,'username','admin','string'),(31,'decision','Send to Review','string'),(31,'editorName','admin admin','string'),(31,'submissionId','1','string'),(32,'reviewAssignmentId','2','int'),(32,'reviewerName','anny Thuraidah','string'),(32,'round','1','int'),(32,'stageId','3','int'),(32,'submissionId','1','string'),(33,'reviewAssignmentId','2','string'),(33,'reviewerName','anny Thuraidah','string'),(33,'round','1','string'),(33,'submissionId','1','string'),(34,'fileId','14','int'),(34,'fileStage','5','int'),(34,'originalFileName','santan ing-rev.docx','string'),(34,'revisedFileId',NULL,'string'),(34,'submissionFileId','14','int'),(34,'submissionId','1','int'),(34,'username','thuraidah','string'),(35,'fileId','14','int'),(35,'fileStage','5','int'),(35,'name',', santan ing-rev.docx','string'),(35,'originalFileName','santan ing-rev.docx','string'),(35,'submissionFileId','14','int'),(35,'submissionId','1','int'),(35,'username','thuraidah','string'),(36,'decision','Request Revisions','string'),(36,'editorName','admin admin','string'),(36,'submissionId','1','string'),(37,'fileId','15','int'),(37,'fileStage','15','int'),(37,'originalFileName','santan ing-perbaikan.docx','string'),(37,'revisedFileId',NULL,'string'),(37,'submissionFileId','15','int'),(37,'submissionId','1','int'),(37,'username','putri','string'),(38,'fileId','15','int'),(38,'fileStage','15','int'),(38,'name','Article Text, santan ing-perbaikan.docx','string'),(38,'originalFileName','santan ing-perbaikan.docx','string'),(38,'submissionFileId','15','int'),(38,'submissionId','1','int'),(38,'username','putri','string'),(39,'fileId','1','int'),(39,'fileStage','15','int'),(39,'originalFileName','ikan asin ing -perbaikan.docx','string'),(39,'revisedFileId',NULL,'string'),(39,'submissionFileId','16','int'),(39,'submissionId','2','int'),(39,'username','yuli','string'),(40,'fileId','8','int'),(40,'fileStage','15','int'),(40,'name','Article Text, ikan asin ing -perbaikan.docx','string'),(40,'originalFileName','ikan asin ing -perbaikan.docx','string'),(40,'submissionFileId','7','int'),(40,'submissionId','2','int'),(40,'username','yuli','string'),(41,'decision','Request Revisions','string'),(41,'editorName','admin admin','string'),(41,'submissionId','1','string'),(42,'fileId','1','int'),(42,'fileStage','10','int'),(42,'originalFileName','santan template.pdf','string'),(42,'revisedFileId',NULL,'string'),(42,'submissionFileId','17','int'),(42,'submissionId','1','int'),(42,'username','admin','string'),(43,'fileId','1','int'),(43,'fileStage','10','int'),(43,'name','admin, santan template.pdf','string'),(43,'originalFileName','santan template.pdf','string'),(43,'submissionFileId','17','int'),(43,'submissionId','1','int'),(43,'username','admin','string'),(45,'fileId','16','int'),(45,'fileStage','2','int'),(45,'originalFileName','erytrosit ing.docx','string'),(45,'revisedFileId',NULL,'string'),(45,'submissionFileId','18','int'),(45,'submissionId','3','int'),(45,'username','yuli','string'),(46,'fileId','16','int'),(46,'fileStage','2','int'),(46,'name','yuli, erytrosit ing.docx','string'),(46,'originalFileName','erytrosit ing.docx','string'),(46,'submissionFileId','18','int'),(46,'submissionId','3','int'),(46,'username','yuli','string'),(48,'fileId','17','int'),(48,'fileStage','2','int'),(48,'originalFileName','kelulut ing.docx','string'),(48,'revisedFileId',NULL,'string'),(48,'submissionFileId','19','int'),(48,'submissionId','4','int'),(48,'username','yuli','string'),(49,'fileId','17','int'),(49,'fileStage','2','int'),(49,'name','yuli, kelulut ing.docx','string'),(49,'originalFileName','kelulut ing.docx','string'),(49,'submissionFileId','19','int'),(49,'submissionId','4','int'),(49,'username','yuli','string'),(51,'fileId','18','int'),(51,'fileStage','2','int'),(51,'originalFileName','vekDHF ing.docx','string'),(51,'revisedFileId',NULL,'string'),(51,'submissionFileId','20','int'),(51,'submissionId','5','int'),(51,'username','putri','string'),(52,'fileId','18','int'),(52,'fileStage','2','int'),(52,'name','putri, vekDHF ing.docx','string'),(52,'originalFileName','vekDHF ing.docx','string'),(52,'submissionFileId','20','int'),(52,'submissionId','5','int'),(52,'username','putri','string'),(54,'name','admin admin','string'),(54,'userGroupName','Journal editor','string'),(54,'username','admin','string'),(55,'decision','Send to Review','string'),(55,'editorName','admin admin','string'),(55,'submissionId','5','string'),(56,'reviewAssignmentId','3','int'),(56,'reviewerName','anny Thuraidah','string'),(56,'round','1','int'),(56,'stageId','3','int'),(56,'submissionId','5','string'),(57,'name','admin admin','string'),(57,'userGroupName','Journal editor','string'),(57,'username','admin','string'),(58,'decision','Send to Review','string'),(58,'editorName','admin admin','string'),(58,'submissionId','4','string'),(59,'reviewAssignmentId','4','int'),(59,'reviewerName','anny Thuraidah','string'),(59,'round','1','int'),(59,'stageId','3','int'),(59,'submissionId','4','string'),(60,'name','admin admin','string'),(60,'userGroupName','Journal editor','string'),(60,'username','admin','string'),(61,'decision','Send to Review','string'),(61,'editorName','admin admin','string'),(61,'submissionId','3','string'),(62,'reviewAssignmentId','5','int'),(62,'reviewerName','anny Thuraidah','string'),(62,'round','1','int'),(62,'stageId','3','int'),(62,'submissionId','3','string'),(63,'reviewAssignmentId','3','string'),(63,'reviewerName','anny Thuraidah','string'),(63,'round','1','string'),(63,'submissionId','5','string'),(64,'fileId','22','int'),(64,'fileStage','5','int'),(64,'originalFileName','vekDHF ing -rev.docx','string'),(64,'revisedFileId',NULL,'string'),(64,'submissionFileId','24','int'),(64,'submissionId','5','int'),(64,'username','thuraidah','string'),(65,'fileId','22','int'),(65,'fileStage','5','int'),(65,'name',', vekDHF ing -rev.docx','string'),(65,'originalFileName','vekDHF ing -rev.docx','string'),(65,'submissionFileId','24','int'),(65,'submissionId','5','int'),(65,'username','thuraidah','string'),(66,'reviewAssignmentId','4','string'),(66,'reviewerName','anny Thuraidah','string'),(66,'round','1','string'),(66,'submissionId','4','string'),(67,'fileId','23','int'),(67,'fileStage','5','int'),(67,'originalFileName','kelulut ing -rev.docx','string'),(67,'revisedFileId',NULL,'string'),(67,'submissionFileId','25','int'),(67,'submissionId','4','int'),(67,'username','thuraidah','string'),(68,'fileId','23','int'),(68,'fileStage','5','int'),(68,'name',', kelulut ing -rev.docx','string'),(68,'originalFileName','kelulut ing -rev.docx','string'),(68,'submissionFileId','25','int'),(68,'submissionId','4','int'),(68,'username','thuraidah','string'),(69,'reviewAssignmentId','5','string'),(69,'reviewerName','anny Thuraidah','string'),(69,'round','1','string'),(69,'submissionId','3','string'),(70,'fileId','24','int'),(70,'fileStage','5','int'),(70,'originalFileName','erytrosit ing -rev.docx','string'),(70,'revisedFileId',NULL,'string'),(70,'submissionFileId','26','int'),(70,'submissionId','3','int'),(70,'username','thuraidah','string'),(71,'fileId','24','int'),(71,'fileStage','5','int'),(71,'name',', erytrosit ing -rev.docx','string'),(71,'originalFileName','erytrosit ing -rev.docx','string'),(71,'submissionFileId','26','int'),(71,'submissionId','3','int'),(71,'username','thuraidah','string'),(72,'decision','Request Revisions','string'),(72,'editorName','admin admin','string'),(72,'submissionId','5','string'),(73,'decision','Request Revisions','string'),(73,'editorName','admin admin','string'),(73,'submissionId','4','string'),(74,'decision','Request Revisions','string'),(74,'editorName','admin admin','string'),(74,'submissionId','3','string'),(75,'fileId','25','int'),(75,'fileStage','15','int'),(75,'originalFileName','kelulut ing-perbaikan.docx','string'),(75,'revisedFileId',NULL,'string'),(75,'submissionFileId','27','int'),(75,'submissionId','4','int'),(75,'username','yuli','string'),(76,'fileId','25','int'),(76,'fileStage','15','int'),(76,'name','Article Text, kelulut ing-perbaikan.docx','string'),(76,'originalFileName','kelulut ing-perbaikan.docx','string'),(76,'submissionFileId','27','int'),(76,'submissionId','4','int'),(76,'username','yuli','string'),(77,'fileId','26','int'),(77,'fileStage','15','int'),(77,'originalFileName','erytrosit ing -perbaikan.docx','string'),(77,'revisedFileId',NULL,'string'),(77,'submissionFileId','28','int'),(77,'submissionId','3','int'),(77,'username','yuli','string'),(78,'fileId','26','int'),(78,'fileStage','15','int'),(78,'name','Article Text, erytrosit ing -perbaikan.docx','string'),(78,'originalFileName','erytrosit ing -perbaikan.docx','string'),(78,'submissionFileId','28','int'),(78,'submissionId','3','int'),(78,'username','yuli','string'),(79,'fileId','27','int'),(79,'fileStage','15','int'),(79,'originalFileName','vekDHF ing -perbaikan.docx','string'),(79,'revisedFileId',NULL,'string'),(79,'submissionFileId','29','int'),(79,'submissionId','5','int'),(79,'username','putri','string'),(80,'fileId','27','int'),(80,'fileStage','15','int'),(80,'name','Article Text, vekDHF ing -perbaikan.docx','string'),(80,'originalFileName','vekDHF ing -perbaikan.docx','string'),(80,'submissionFileId','29','int'),(80,'submissionId','5','int'),(80,'username','putri','string'),(81,'decision','Send To Production','string'),(81,'editorName','admin admin','string'),(81,'submissionId','1','string'),(82,'fileId','28','int'),(82,'fileStage','10','int'),(82,'originalFileName','santan template.pdf','string'),(82,'revisedFileId',NULL,'string'),(82,'submissionFileId','30','int'),(82,'submissionId','1','int'),(82,'username','admin','string'),(83,'fileId','28','int'),(83,'fileStage','10','int'),(83,'name','admin, santan template.pdf','string'),(83,'originalFileName','santan template.pdf','string'),(83,'submissionFileId','30','int'),(83,'submissionId','1','int'),(83,'username','admin','string'),(84,'decision','Request Revisions','string'),(84,'editorName','admin admin','string'),(84,'submissionId','5','string'),(85,'decision','Send To Production','string'),(85,'editorName','admin admin','string'),(85,'submissionId','5','string'),(86,'fileId','29','int'),(86,'fileStage','10','int'),(86,'originalFileName','vekDHF template.pdf','string'),(86,'revisedFileId',NULL,'string'),(86,'submissionFileId','31','int'),(86,'submissionId','5','int'),(86,'username','admin','string'),(87,'fileId','29','int'),(87,'fileStage','10','int'),(87,'name','admin, vekDHF template.pdf','string'),(87,'originalFileName','vekDHF template.pdf','string'),(87,'submissionFileId','31','int'),(87,'submissionId','5','int'),(87,'username','admin','string'),(89,'decision','Send To Production','string'),(89,'editorName','admin admin','string'),(89,'submissionId','4','string'),(90,'fileId','30','int'),(90,'fileStage','10','int'),(90,'originalFileName','kelulut template.pdf','string'),(90,'revisedFileId',NULL,'string'),(90,'submissionFileId','32','int'),(90,'submissionId','4','int'),(90,'username','admin','string'),(91,'fileId','30','int'),(91,'fileStage','10','int'),(91,'name','admin, kelulut template.pdf','string'),(91,'originalFileName','kelulut template.pdf','string'),(91,'submissionFileId','32','int'),(91,'submissionId','4','int'),(91,'username','admin','string'),(94,'decision','Send To Production','string'),(94,'editorName','admin admin','string'),(94,'submissionId','3','string'),(95,'fileId','31','int'),(95,'fileStage','10','int'),(95,'originalFileName','erytrosit template.pdf','string'),(95,'revisedFileId',NULL,'string'),(95,'submissionFileId','33','int'),(95,'submissionId','3','int'),(95,'username','admin','string'),(96,'fileId','31','int'),(96,'fileStage','10','int'),(96,'name','admin, erytrosit template.pdf','string'),(96,'originalFileName','erytrosit template.pdf','string'),(96,'submissionFileId','33','int'),(96,'submissionId','3','int'),(96,'username','admin','string'),(115,'fileId','32','int'),(115,'fileStage','2','int'),(115,'originalFileName','jurnal nurul kayu mns eng.docx','string'),(115,'revisedFileId',NULL,'string'),(115,'submissionFileId','34','int'),(115,'submissionId','6','int'),(115,'username','nurulhuda','string'),(116,'fileId','32','int'),(116,'fileStage','2','int'),(116,'name','nurulhuda, jurnal nurul kayu mns eng.docx','string'),(116,'originalFileName','jurnal nurul kayu mns eng.docx','string'),(116,'submissionFileId','34','int'),(116,'submissionId','6','int'),(116,'username','nurulhuda','string'),(118,'name','Ratih Dewi Dwiyanti','string'),(118,'userGroupName','Journal editor','string'),(118,'username','ratih001','string'),(119,'decision','Send to Review','string'),(119,'editorName','admin admin','string'),(119,'submissionId','6','string'),(120,'reviewAssignmentId','6','int'),(120,'reviewerName','anny Thuraidah','string'),(120,'round','1','int'),(120,'stageId','3','int'),(120,'submissionId','6','string'),(121,'fileId','34','int'),(121,'fileStage','2','int'),(121,'originalFileName','jurnal ayu rosella new eng.docx','string'),(121,'revisedFileId',NULL,'string'),(121,'submissionFileId','36','int'),(121,'submissionId','7','int'),(121,'username','ayusutiany','string'),(122,'fileId','34','int'),(122,'fileStage','2','int'),(122,'name','ayusutiany, jurnal ayu rosella new eng.docx','string'),(122,'originalFileName','jurnal ayu rosella new eng.docx','string'),(122,'submissionFileId','36','int'),(122,'submissionId','7','int'),(122,'username','ayusutiany','string'),(124,'name','Gita Indah Febriani','string'),(124,'userGroupName','Journal editor','string'),(124,'username','gitaindah','string'),(125,'fileId','35','int'),(125,'fileStage','2','int'),(125,'originalFileName','jurnal mahmudah bawang new eng.docx','string'),(125,'revisedFileId',NULL,'string'),(125,'submissionFileId','37','int'),(125,'submissionId','8','int'),(125,'username','sitimahmudah','string'),(126,'fileId','35','int'),(126,'fileStage','2','int'),(126,'name','sitimahmudah, jurnal mahmudah bawang new eng.docx','string'),(126,'originalFileName','jurnal mahmudah bawang new eng.docx','string'),(126,'submissionFileId','37','int'),(126,'submissionId','8','int'),(126,'username','sitimahmudah','string'),(128,'name','Jihan Rahma Naily','string'),(128,'userGroupName','Journal editor','string'),(128,'username','jihanrahma','string'),(129,'decision','Send to Review','string'),(129,'editorName','admin admin','string'),(129,'submissionId','8','string'),(130,'reviewAssignmentId','7','int'),(130,'reviewerName','Yulia Tri Andini','string'),(130,'round','1','int'),(130,'stageId','3','int'),(130,'submissionId','8','string'),(131,'decision','Send to Review','string'),(131,'editorName','admin admin','string'),(131,'submissionId','7','string'),(132,'reviewAssignmentId','8','int'),(132,'reviewerName','Nadiya Uswatun Hasanah','string'),(132,'round','1','int'),(132,'stageId','3','int'),(132,'submissionId','7','string'),(133,'fileId','38','int'),(133,'fileStage','2','int'),(133,'originalFileName','sirkumsisi.doc','string'),(133,'revisedFileId',NULL,'string'),(133,'submissionFileId','40','int'),(133,'submissionId','9','int'),(133,'username','yusufatakan','string'),(134,'fileId','38','int'),(134,'fileStage','2','int'),(134,'name','yusufatakan, sirkumsisi.doc','string'),(134,'originalFileName','sirkumsisi.doc','string'),(134,'submissionFileId','40','int'),(134,'submissionId','9','int'),(134,'username','yusufatakan','string'),(136,'name','Emalia Kubarti','string'),(136,'userGroupName','Journal editor','string'),(136,'username','emaliakubarti','string'),(137,'decision','Send to Review','string'),(137,'editorName','admin admin','string'),(137,'submissionId','9','string'),(138,'reviewAssignmentId','9','int'),(138,'reviewerName','anny Thuraidah','string'),(138,'round','1','int'),(138,'stageId','3','int'),(138,'submissionId','9','string'),(139,'reviewAssignmentId','7','string'),(139,'reviewerName','Yulia Tri Andini','string'),(139,'round','1','string'),(139,'submissionId','8','string'),(140,'fileId','40','int'),(140,'fileStage','5','int'),(140,'originalFileName','jurnal mahmudah bawang new eng rev.docx','string'),(140,'revisedFileId',NULL,'string'),(140,'submissionFileId','42','int'),(140,'submissionId','8','int'),(140,'username','yuliatri','string'),(141,'fileId','40','int'),(141,'fileStage','5','int'),(141,'name',', jurnal mahmudah bawang new eng rev.docx','string'),(141,'originalFileName','jurnal mahmudah bawang new eng rev.docx','string'),(141,'submissionFileId','42','int'),(141,'submissionId','8','int'),(141,'username','yuliatri','string'),(142,'decision','Request Revisions','string'),(142,'editorName','admin admin','string'),(142,'submissionId','8','string'),(143,'reviewAssignmentId','8','string'),(143,'reviewerName','Nadiya Uswatun Hasanah','string'),(143,'round','1','string'),(143,'submissionId','7','string'),(144,'fileId','41','int'),(144,'fileStage','5','int'),(144,'originalFileName','jurnal ayu rosella new eng rev.docx','string'),(144,'revisedFileId',NULL,'string'),(144,'submissionFileId','43','int'),(144,'submissionId','7','int'),(144,'username','nadiyauswatun','string'),(145,'fileId','41','int'),(145,'fileStage','5','int'),(145,'name',', jurnal ayu rosella new eng rev.docx','string'),(145,'originalFileName','jurnal ayu rosella new eng rev.docx','string'),(145,'submissionFileId','43','int'),(145,'submissionId','7','int'),(145,'username','nadiyauswatun','string'),(146,'reviewAssignmentId','6','string'),(146,'reviewerName','anny Thuraidah','string'),(146,'round','1','string'),(146,'submissionId','6','string'),(147,'fileId','42','int'),(147,'fileStage','5','int'),(147,'originalFileName','jurnal nurul kayu mns eng rev.docx','string'),(147,'revisedFileId',NULL,'string'),(147,'submissionFileId','44','int'),(147,'submissionId','6','int'),(147,'username','thuraidah','string'),(148,'fileId','42','int'),(148,'fileStage','5','int'),(148,'name',', jurnal nurul kayu mns eng rev.docx','string'),(148,'originalFileName','jurnal nurul kayu mns eng rev.docx','string'),(148,'submissionFileId','44','int'),(148,'submissionId','6','int'),(148,'username','thuraidah','string'),(149,'reviewAssignmentId','9','string'),(149,'reviewerName','anny Thuraidah','string'),(149,'round','1','string'),(149,'submissionId','9','string'),(150,'fileId','43','int'),(150,'fileStage','5','int'),(150,'originalFileName','sirkumsisi rev.doc','string'),(150,'revisedFileId',NULL,'string'),(150,'submissionFileId','45','int'),(150,'submissionId','9','int'),(150,'username','thuraidah','string'),(151,'fileId','43','int'),(151,'fileStage','5','int'),(151,'name',', sirkumsisi rev.doc','string'),(151,'originalFileName','sirkumsisi rev.doc','string'),(151,'submissionFileId','45','int'),(151,'submissionId','9','int'),(151,'username','thuraidah','string'),(152,'decision','Request Revisions','string'),(152,'editorName','admin admin','string'),(152,'submissionId','9','string'),(153,'decision','Request Revisions','string'),(153,'editorName','admin admin','string'),(153,'submissionId','7','string'),(154,'decision','Request Revisions','string'),(154,'editorName','admin admin','string'),(154,'submissionId','6','string'),(155,'decision','Request Revisions','string'),(155,'editorName','admin admin','string'),(155,'submissionId','9','string'),(156,'decision','Request Revisions','string'),(156,'editorName','admin admin','string'),(156,'submissionId','8','string'),(157,'decision','Request Revisions','string'),(157,'editorName','admin admin','string'),(157,'submissionId','7','string'),(158,'decision','Request Revisions','string'),(158,'editorName','admin admin','string'),(158,'submissionId','6','string'),(159,'decision','Request Revisions','string'),(159,'editorName','admin admin','string'),(159,'submissionId','9','string'),(160,'fileId','44','int'),(160,'fileStage','15','int'),(160,'originalFileName','sirkumsisi perbaikan.doc','string'),(160,'revisedFileId',NULL,'string'),(160,'submissionFileId','46','int'),(160,'submissionId','9','int'),(160,'username','yusufatakan','string'),(161,'fileId','44','int'),(161,'fileStage','15','int'),(161,'name','Article Text, sirkumsisi perbaikan.doc','string'),(161,'originalFileName','sirkumsisi perbaikan.doc','string'),(161,'submissionFileId','46','int'),(161,'submissionId','9','int'),(161,'username','yusufatakan','string'),(162,'fileId','45','int'),(162,'fileStage','15','int'),(162,'originalFileName','jurnal mahmudah bawang new eng perbaikan.docx','string'),(162,'revisedFileId',NULL,'string'),(162,'submissionFileId','47','int'),(162,'submissionId','8','int'),(162,'username','sitimahmudah','string'),(163,'fileId','45','int'),(163,'fileStage','15','int'),(163,'name','Article Text, jurnal mahmudah bawang new eng perbaikan.docx','string'),(163,'originalFileName','jurnal mahmudah bawang new eng perbaikan.docx','string'),(163,'submissionFileId','47','int'),(163,'submissionId','8','int'),(163,'username','sitimahmudah','string'),(164,'fileId','46','int'),(164,'fileStage','15','int'),(164,'originalFileName','jurnal nurul kayu mns eng perbaikan.docx','string'),(164,'revisedFileId',NULL,'string'),(164,'submissionFileId','48','int'),(164,'submissionId','6','int'),(164,'username','nurulhuda','string'),(165,'fileId','46','int'),(165,'fileStage','15','int'),(165,'name','Article Text, jurnal nurul kayu mns eng perbaikan.docx','string'),(165,'originalFileName','jurnal nurul kayu mns eng perbaikan.docx','string'),(165,'submissionFileId','48','int'),(165,'submissionId','6','int'),(165,'username','nurulhuda','string'),(166,'fileId','47','int'),(166,'fileStage','15','int'),(166,'originalFileName','jurnal ayu rosella new eng perbaikan.docx','string'),(166,'revisedFileId',NULL,'string'),(166,'submissionFileId','49','int'),(166,'submissionId','7','int'),(166,'username','ayusutiany','string'),(167,'fileId','47','int'),(167,'fileStage','15','int'),(167,'name','Article Text, jurnal ayu rosella new eng perbaikan.docx','string'),(167,'originalFileName','jurnal ayu rosella new eng perbaikan.docx','string'),(167,'submissionFileId','49','int'),(167,'submissionId','7','int'),(167,'username','ayusutiany','string'),(168,'decision','Accept Submission','string'),(168,'editorName','admin admin','string'),(168,'submissionId','8','string'),(169,'decision','Accept and Skip Review','string'),(169,'editorName','admin admin','string'),(169,'submissionId','8','string'),(170,'name','Fetus Abiose Olajubu','string'),(170,'userGroupName','Journal editor','string'),(170,'username','fetus','string'),(171,'decision','Accept Submission','string'),(171,'editorName','Fetus Abiose Olajubu','string'),(171,'submissionId','7','string'),(172,'decision','Accept and Skip Review','string'),(172,'editorName','admin admin','string'),(172,'submissionId','6','string'),(173,'decision','Accept and Skip Review','string'),(173,'editorName','admin admin','string'),(173,'submissionId','9','string'),(174,'decision','Accept and Skip Review','string'),(174,'editorName','admin admin','string'),(174,'submissionId','7','string'),(175,'fileId','52','int'),(175,'fileStage','2','int'),(175,'originalFileName','Cemaran Bacillus cereus eng.docx','string'),(175,'revisedFileId',NULL,'string'),(175,'submissionFileId','54','int'),(175,'submissionId','10','int'),(175,'username','ayufahani','string'),(176,'fileId','52','int'),(176,'fileStage','2','int'),(176,'name','ayufahani, Cemaran Bacillus cereus eng.docx','string'),(176,'originalFileName','Cemaran Bacillus cereus eng.docx','string'),(176,'submissionFileId','54','int'),(176,'submissionId','10','int'),(176,'username','ayufahani','string'),(178,'name','Fetus Abiose Olajubu','string'),(178,'userGroupName','Journal editor','string'),(178,'username','fetus','string'),(179,'decision','Send to Review','string'),(179,'editorName','Fetus Abiose Olajubu','string'),(179,'submissionId','10','string'),(180,'reviewAssignmentId','10','int'),(180,'reviewerName','Nadiya Uswatun Hasanah','string'),(180,'round','1','int'),(180,'stageId','3','int'),(180,'submissionId','10','string'),(181,'reviewAssignmentId','10','string'),(181,'reviewerName','Nadiya Uswatun Hasanah','string'),(181,'round','1','string'),(181,'submissionId','10','string'),(182,'fileId','54','int'),(182,'fileStage','5','int'),(182,'originalFileName','Cemaran Bacillus cereus eng rev.docx','string'),(182,'revisedFileId',NULL,'string'),(182,'submissionFileId','56','int'),(182,'submissionId','10','int'),(182,'username','nadiyauswatun','string'),(183,'fileId','54','int'),(183,'fileStage','5','int'),(183,'name',', Cemaran Bacillus cereus eng rev.docx','string'),(183,'originalFileName','Cemaran Bacillus cereus eng rev.docx','string'),(183,'submissionFileId','56','int'),(183,'submissionId','10','int'),(183,'username','nadiyauswatun','string'),(184,'decision','Request Revisions','string'),(184,'editorName','admin admin','string'),(184,'submissionId','10','string'),(185,'decision','Request Revisions','string'),(185,'editorName','admin admin','string'),(185,'submissionId','10','string'),(186,'fileId','55','int'),(186,'fileStage','15','int'),(186,'originalFileName','Cemaran Bacillus cereus eng perbaikan.docx','string'),(186,'revisedFileId',NULL,'string'),(186,'submissionFileId','57','int'),(186,'submissionId','10','int'),(186,'username','ayufahani','string'),(187,'fileId','55','int'),(187,'fileStage','15','int'),(187,'name','Article Text, Cemaran Bacillus cereus eng perbaikan.docx','string'),(187,'originalFileName','Cemaran Bacillus cereus eng perbaikan.docx','string'),(187,'submissionFileId','57','int'),(187,'submissionId','10','int'),(187,'username','ayufahani','string'),(188,'decision','Accept Submission','string'),(188,'editorName','admin admin','string'),(188,'submissionId','10','string'),(189,'decision','Accept and Skip Review','string'),(189,'editorName','admin admin','string'),(189,'submissionId','10','string'),(191,'decision','Send To Production','string'),(191,'editorName','Fetus Abiose Olajubu','string'),(191,'submissionId','10','string'),(192,'fileId','57','int'),(192,'fileStage','10','int'),(192,'originalFileName','cemaran basillus template.pdf','string'),(192,'revisedFileId',NULL,'string'),(192,'submissionFileId','59','int'),(192,'submissionId','10','int'),(192,'username','fetus','string'),(193,'fileId','57','int'),(193,'fileStage','10','int'),(193,'name','fetus, cemaran basillus template.pdf','string'),(193,'originalFileName','cemaran basillus template.pdf','string'),(193,'submissionFileId','59','int'),(193,'submissionId','10','int'),(193,'username','fetus','string'),(196,'decision','Send To Production','string'),(196,'editorName','Fetus Abiose Olajubu','string'),(196,'submissionId','7','string'),(198,'fileId','58','int'),(198,'fileStage','10','int'),(198,'originalFileName','jurnal ayu rosella template.pdf','string'),(198,'revisedFileId',NULL,'string'),(198,'submissionFileId','60','int'),(198,'submissionId','7','int'),(198,'username','fetus','string'),(199,'fileId','58','int'),(199,'fileStage','10','int'),(199,'name','fetus, jurnal ayu rosella template.pdf','string'),(199,'originalFileName','jurnal ayu rosella template.pdf','string'),(199,'submissionFileId','60','int'),(199,'submissionId','7','int'),(199,'username','fetus','string'),(201,'decision','Send To Production','string'),(201,'editorName','admin admin','string'),(201,'submissionId','9','string'),(202,'fileId','59','int'),(202,'fileStage','10','int'),(202,'originalFileName','sirkumsisi template asli.pdf','string'),(202,'revisedFileId',NULL,'string'),(202,'submissionFileId','61','int'),(202,'submissionId','9','int'),(202,'username','admin','string'),(203,'fileId','59','int'),(203,'fileStage','10','int'),(203,'name','admin, sirkumsisi template asli.pdf','string'),(203,'originalFileName','sirkumsisi template asli.pdf','string'),(203,'submissionFileId','61','int'),(203,'submissionId','9','int'),(203,'username','admin','string'),(206,'decision','Send To Production','string'),(206,'editorName','admin admin','string'),(206,'submissionId','8','string'),(207,'fileId','60','int'),(207,'fileStage','10','int'),(207,'originalFileName','jurnal mahmudah template.pdf','string'),(207,'revisedFileId',NULL,'string'),(207,'submissionFileId','62','int'),(207,'submissionId','8','int'),(207,'username','admin','string'),(208,'fileId','60','int'),(208,'fileStage','10','int'),(208,'name','admin, jurnal mahmudah template.pdf','string'),(208,'originalFileName','jurnal mahmudah template.pdf','string'),(208,'submissionFileId','62','int'),(208,'submissionId','8','int'),(208,'username','admin','string'),(211,'decision','Send To Production','string'),(211,'editorName','admin admin','string'),(211,'submissionId','6','string'),(212,'fileId','61','int'),(212,'fileStage','10','int'),(212,'originalFileName','jurnal nurul template.pdf','string'),(212,'revisedFileId',NULL,'string'),(212,'submissionFileId','63','int'),(212,'submissionId','6','int'),(212,'username','admin','string'),(213,'fileId','61','int'),(213,'fileStage','10','int'),(213,'name','admin, jurnal nurul template.pdf','string'),(213,'originalFileName','jurnal nurul template.pdf','string'),(213,'submissionFileId','63','int'),(213,'submissionId','6','int'),(213,'username','admin','string'),(215,'fileId','62','int'),(215,'fileStage','2','int'),(215,'originalFileName','z plasti yeni tarama.docx','string'),(215,'revisedFileId',NULL,'string'),(215,'submissionFileId','64','int'),(215,'submissionId','11','int'),(215,'username','dryab2747','string'),(216,'fileId','62','int'),(216,'fileStage','2','int'),(216,'name','dryab2747, z plasti yeni tarama.docx','string'),(216,'originalFileName','z plasti yeni tarama.docx','string'),(216,'submissionFileId','64','int'),(216,'submissionId','11','int'),(216,'username','dryab2747','string'),(218,'name','admin admin','string'),(218,'userGroupName','Journal manager','string'),(218,'username','admin','string'),(219,'fileId','1','int'),(219,'fileStage','2','int'),(219,'originalFileName','Eng Isnamurti Ciptaningrum.docx','string'),(219,'revisedFileId',NULL,'string'),(219,'submissionFileId','65','int'),(219,'submissionId','12','int'),(219,'username','isnamurti19','string'),(224,'fileId','63','int'),(224,'fileStage','2','int'),(224,'originalFileName','The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(224,'revisedFileId',NULL,'string'),(224,'submissionFileId','66','int'),(224,'submissionId','13','int'),(224,'username','gunesbolatli','string'),(225,'fileId','63','int'),(225,'fileStage','2','int'),(225,'name','gunesbolatli, The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(225,'originalFileName','The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(225,'submissionFileId','66','int'),(225,'submissionId','13','int'),(225,'username','gunesbolatli','string'),(226,'fileId','64','int'),(226,'fileStage','2','int'),(226,'originalFileName','Table.docx','string'),(226,'revisedFileId',NULL,'string'),(226,'submissionFileId','67','int'),(226,'submissionId','13','int'),(226,'username','gunesbolatli','string'),(227,'fileId','64','int'),(227,'fileStage','2','int'),(227,'name','gunesbolatli, Table.docx','string'),(227,'originalFileName','Table.docx','string'),(227,'submissionFileId','67','int'),(227,'submissionId','13','int'),(227,'username','gunesbolatli','string'),(228,'fileId','65','int'),(228,'fileStage','2','int'),(228,'originalFileName','FİGURES.docx','string'),(228,'revisedFileId',NULL,'string'),(228,'submissionFileId','68','int'),(228,'submissionId','13','int'),(228,'username','gunesbolatli','string'),(229,'fileId','65','int'),(229,'fileStage','2','int'),(229,'name','gunesbolatli, FİGURES.docx','string'),(229,'originalFileName','FİGURES.docx','string'),(229,'submissionFileId','68','int'),(229,'submissionId','13','int'),(229,'username','gunesbolatli','string'),(231,'fileId','63','int'),(231,'fileStage','2','int'),(231,'name','gunesbolatli, PPID: THMR-8801-1319-11 (PoolText) evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(231,'originalFileName','The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(231,'submissionFileId','66','int'),(231,'submissionId','13','int'),(231,'username','gunesbolatli','string'),(232,'fileId','1','int'),(232,'fileStage','2','int'),(232,'originalFileName','GÖNDERr.docx','string'),(232,'revisedFileId',NULL,'string'),(232,'submissionFileId','69','int'),(232,'submissionId','14','int'),(232,'username','ozankocak','string'),(233,'fileId','1','int'),(233,'fileStage','2','int'),(233,'name','ozankocak, GÖNDERr.docx','string'),(233,'originalFileName','GÖNDERr.docx','string'),(233,'submissionFileId','69','int'),(233,'submissionId','14','int'),(233,'username','ozankocak','string'),(234,'fileId','1','int'),(234,'fileStage','2','int'),(234,'originalFileName','GÖNDERr.docx','string'),(234,'sourceFileId',NULL,'string'),(234,'submissionFileId','69','int'),(234,'submissionId','14','int'),(234,'username','ozankocak','string'),(235,'submissionId','14','int'),(235,'title','GÖNDERr.docx','string'),(235,'username','ozankocak','string'),(236,'fileId','66','int'),(236,'fileStage','2','int'),(236,'originalFileName','GÖNDERr.docx','string'),(236,'revisedFileId',NULL,'string'),(236,'submissionFileId','70','int'),(236,'submissionId','14','int'),(236,'username','ozankocak','string'),(237,'fileId','66','int'),(237,'fileStage','2','int'),(237,'name','ozankocak, GÖNDERr.docx','string'),(237,'originalFileName','GÖNDERr.docx','string'),(237,'submissionFileId','70','int'),(237,'submissionId','14','int'),(237,'username','ozankocak','string'),(239,'name','admin admin','string'),(239,'userGroupName','Journal manager','string'),(239,'username','admin','string'),(240,'name','admin admin','string'),(240,'userGroupName','Journal manager','string'),(240,'username','admin','string'),(241,'decision','Send to Review','string'),(241,'editorName','admin admin','string'),(241,'submissionId','14','string'),(242,'reviewAssignmentId','11','int'),(242,'reviewerName','anny Thuraidah','string'),(242,'round','1','int'),(242,'stageId','3','int'),(242,'submissionId','14','string'),(243,'decision','Send to Review','string'),(243,'editorName','admin admin','string'),(243,'submissionId','13','string'),(244,'reviewAssignmentId','12','int'),(244,'reviewerName','anny Thuraidah','string'),(244,'round','1','int'),(244,'stageId','3','int'),(244,'submissionId','13','string'),(245,'reviewAssignmentId','11','string'),(245,'reviewerName','anny Thuraidah','string'),(245,'round','1','string'),(245,'submissionId','14','string'),(246,'fileId','71','int'),(246,'fileStage','5','int'),(246,'originalFileName','ozankocak rev.docx','string'),(246,'revisedFileId',NULL,'string'),(246,'submissionFileId','75','int'),(246,'submissionId','14','int'),(246,'username','thuraidah','string'),(247,'fileId','71','int'),(247,'fileStage','5','int'),(247,'name',', ozankocak rev.docx','string'),(247,'originalFileName','ozankocak rev.docx','string'),(247,'submissionFileId','75','int'),(247,'submissionId','14','int'),(247,'username','thuraidah','string'),(248,'reviewAssignmentId','12','string'),(248,'reviewerName','anny Thuraidah','string'),(248,'round','1','string'),(248,'submissionId','13','string'),(249,'fileId','72','int'),(249,'fileStage','5','int'),(249,'originalFileName','gunes rev.docx','string'),(249,'revisedFileId',NULL,'string'),(249,'submissionFileId','76','int'),(249,'submissionId','13','int'),(249,'username','thuraidah','string'),(250,'fileId','72','int'),(250,'fileStage','5','int'),(250,'name',', gunes rev.docx','string'),(250,'originalFileName','gunes rev.docx','string'),(250,'submissionFileId','76','int'),(250,'submissionId','13','int'),(250,'username','thuraidah','string'),(251,'decision','Request Revisions','string'),(251,'editorName','admin admin','string'),(251,'submissionId','14','string'),(252,'decision','Request Revisions','string'),(252,'editorName','admin admin','string'),(252,'submissionId','13','string'),(253,'decision','Request Revisions','string'),(253,'editorName','admin admin','string'),(253,'submissionId','14','string'),(254,'decision','Request Revisions','string'),(254,'editorName','admin admin','string'),(254,'submissionId','13','string'),(255,'fileId','73','int'),(255,'fileStage','2','int'),(255,'originalFileName','Main Text.docx','string'),(255,'revisedFileId',NULL,'string'),(255,'submissionFileId','77','int'),(255,'submissionId','15','int'),(255,'username','dryasintire','string'),(256,'fileId','73','int'),(256,'fileStage','2','int'),(256,'name','dryasintire, Main Text.docx','string'),(256,'originalFileName','Main Text.docx','string'),(256,'submissionFileId','77','int'),(256,'submissionId','15','int'),(256,'username','dryasintire','string'),(257,'fileId','74','int'),(257,'fileStage','2','int'),(257,'originalFileName','Figure 1.docx','string'),(257,'revisedFileId',NULL,'string'),(257,'submissionFileId','78','int'),(257,'submissionId','15','int'),(257,'username','dryasintire','string'),(258,'fileId','74','int'),(258,'fileStage','2','int'),(258,'name','dryasintire, Figure 1.docx','string'),(258,'originalFileName','Figure 1.docx','string'),(258,'submissionFileId','78','int'),(258,'submissionId','15','int'),(258,'username','dryasintire','string'),(259,'fileId','75','int'),(259,'fileStage','2','int'),(259,'originalFileName','Figure 2.docx','string'),(259,'revisedFileId',NULL,'string'),(259,'submissionFileId','79','int'),(259,'submissionId','15','int'),(259,'username','dryasintire','string'),(260,'fileId','75','int'),(260,'fileStage','2','int'),(260,'name','dryasintire, Figure 2.docx','string'),(260,'originalFileName','Figure 2.docx','string'),(260,'submissionFileId','79','int'),(260,'submissionId','15','int'),(260,'username','dryasintire','string'),(261,'fileId','76','int'),(261,'fileStage','2','int'),(261,'originalFileName','Table 1.docx','string'),(261,'revisedFileId',NULL,'string'),(261,'submissionFileId','80','int'),(261,'submissionId','15','int'),(261,'username','dryasintire','string'),(262,'fileId','76','int'),(262,'fileStage','2','int'),(262,'name','dryasintire, Table 1.docx','string'),(262,'originalFileName','Table 1.docx','string'),(262,'submissionFileId','80','int'),(262,'submissionId','15','int'),(262,'username','dryasintire','string'),(263,'fileId','77','int'),(263,'fileStage','2','int'),(263,'originalFileName','Table 2.docx','string'),(263,'revisedFileId',NULL,'string'),(263,'submissionFileId','81','int'),(263,'submissionId','15','int'),(263,'username','dryasintire','string'),(264,'fileId','77','int'),(264,'fileStage','2','int'),(264,'name','dryasintire, Table 2.docx','string'),(264,'originalFileName','Table 2.docx','string'),(264,'submissionFileId','81','int'),(264,'submissionId','15','int'),(264,'username','dryasintire','string'),(266,'name','admin admin','string'),(266,'userGroupName','Journal manager','string'),(266,'username','admin','string'),(267,'reviewAssignmentId','13','int'),(267,'reviewerName','Yulia Tri Andini','string'),(267,'round','1','int'),(267,'stageId','3','int'),(267,'submissionId','13','string'),(268,'reviewAssignmentId','13','string'),(268,'reviewerName','Yulia Tri Andini','string'),(268,'round','1','string'),(268,'submissionId','13','string'),(269,'fileId','78','int'),(269,'fileStage','5','int'),(269,'originalFileName','gunes rev 2.docx','string'),(269,'revisedFileId',NULL,'string'),(269,'submissionFileId','82','int'),(269,'submissionId','13','int'),(269,'username','yuliatri','string'),(270,'fileId','78','int'),(270,'fileStage','5','int'),(270,'name',', gunes rev 2.docx','string'),(270,'originalFileName','gunes rev 2.docx','string'),(270,'submissionFileId','82','int'),(270,'submissionId','13','int'),(270,'username','yuliatri','string'),(271,'editorName','admin admin','string'),(271,'round','1','string'),(271,'submissionId','13','string'),(272,'fileId','68','int'),(272,'fileStage','4','int'),(272,'name','Article Text, The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(272,'originalFileName','The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(272,'submissionFileId','72','int'),(272,'submissionId','13','int'),(272,'username','admin','string'),(273,'fileId','1','int'),(273,'fileStage','18','int'),(273,'originalFileName','The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(273,'sourceFileId','72','int'),(273,'submissionFileId','83','int'),(273,'submissionId','13','int'),(273,'username','admin','string'),(274,'fileId','1','int'),(274,'fileStage','18','int'),(274,'originalFileName','Table.docx','string'),(274,'sourceFileId','73','int'),(274,'submissionFileId','84','int'),(274,'submissionId','13','int'),(274,'username','admin','string'),(275,'fileId','1','int'),(275,'fileStage','18','int'),(275,'originalFileName','FİGURES.docx','string'),(275,'sourceFileId','74','int'),(275,'submissionFileId','85','int'),(275,'submissionId','13','int'),(275,'username','admin','string'),(276,'editorName','admin admin','string'),(276,'round','1','string'),(276,'submissionId','13','string'),(277,'editorName','admin admin','string'),(277,'reviewerName','anny Thuraidah','string'),(277,'round','1','string'),(277,'submissionId','13','string'),(278,'reviewAssignmentId','14','int'),(278,'reviewerName','Nadiya Uswatun Hasanah','string'),(278,'round','1','int'),(278,'stageId','3','int'),(278,'submissionId','13','string'),(279,'reviewAssignmentId','14','string'),(279,'reviewerName','Nadiya Uswatun Hasanah','string'),(279,'round','1','string'),(279,'submissionId','13','string'),(280,'fileId','79','int'),(280,'fileStage','5','int'),(280,'originalFileName','gunes rev.docx','string'),(280,'revisedFileId',NULL,'string'),(280,'submissionFileId','86','int'),(280,'submissionId','13','int'),(280,'username','nadiyauswatun','string'),(281,'fileId','79','int'),(281,'fileStage','5','int'),(281,'name',', gunes rev.docx','string'),(281,'originalFileName','gunes rev.docx','string'),(281,'submissionFileId','86','int'),(281,'submissionId','13','int'),(281,'username','nadiyauswatun','string'),(282,'editorName','admin admin','string'),(282,'reviewerName','Nadiya Uswatun Hasanah','string'),(282,'round','1','string'),(282,'submissionId','13','string'),(283,'decision','Accept Submission','string'),(283,'editorName','admin admin','string'),(283,'submissionId','13','string'),(284,'editorName','admin admin','string'),(284,'round','1','string'),(284,'submissionId','13','string'),(285,'editorName','admin admin','string'),(285,'round','1','string'),(285,'submissionId','13','string'),(286,'editorName','admin admin','string'),(286,'round','1','string'),(286,'submissionId','13','string'),(287,'fileId','72','int'),(287,'fileStage','5','int'),(287,'name','gunes rev.docx','string'),(287,'originalFileName','gunes rev.docx','string'),(287,'submissionFileId','76','int'),(287,'submissionId','13','int'),(287,'username','admin','string'),(288,'editorName','admin admin','string'),(288,'reviewerName','anny Thuraidah','string'),(288,'round','1','string'),(288,'submissionId','13','string'),(289,'editorName','admin admin','string'),(289,'round','1','string'),(289,'submissionId','13','string'),(290,'editorName','admin admin','string'),(290,'round','1','string'),(290,'submissionId','13','string'),(291,'decision','Request Revisions','string'),(291,'editorName','admin admin','string'),(291,'submissionId','13','string'),(292,'decision','Send to Review','string'),(292,'editorName','admin admin','string'),(292,'submissionId','11','string'),(293,'reviewAssignmentId','15','int'),(293,'reviewerName','Yulia Tri Andini','string'),(293,'round','1','int'),(293,'stageId','3','int'),(293,'submissionId','11','string'),(294,'decision','Send to Review','string'),(294,'editorName','admin admin','string'),(294,'submissionId','15','string'),(295,'reviewAssignmentId','16','int'),(295,'reviewerName','Yulia Tri Andini','string'),(295,'round','1','int'),(295,'stageId','3','int'),(295,'submissionId','15','string'),(296,'reviewAssignmentId','16','string'),(296,'reviewerName','Yulia Tri Andini','string'),(296,'round','1','string'),(296,'submissionId','15','string'),(297,'fileId','86','int'),(297,'fileStage','5','int'),(297,'originalFileName','15-Article Text-77-1-2-20200216rev.docx','string'),(297,'revisedFileId',NULL,'string'),(297,'submissionFileId','93','int'),(297,'submissionId','15','int'),(297,'username','yuliatri','string'),(298,'fileId','86','int'),(298,'fileStage','5','int'),(298,'name',', 15-Article Text-77-1-2-20200216rev.docx','string'),(298,'originalFileName','15-Article Text-77-1-2-20200216rev.docx','string'),(298,'submissionFileId','93','int'),(298,'submissionId','15','int'),(298,'username','yuliatri','string'),(299,'reviewAssignmentId','15','string'),(299,'reviewerName','Yulia Tri Andini','string'),(299,'round','1','string'),(299,'submissionId','11','string'),(300,'fileId','87','int'),(300,'fileStage','5','int'),(300,'originalFileName','yusuf z plasty rev.docx','string'),(300,'revisedFileId',NULL,'string'),(300,'submissionFileId','94','int'),(300,'submissionId','11','int'),(300,'username','yuliatri','string'),(301,'fileId','87','int'),(301,'fileStage','5','int'),(301,'name',', yusuf z plasty rev.docx','string'),(301,'originalFileName','yusuf z plasty rev.docx','string'),(301,'submissionFileId','94','int'),(301,'submissionId','11','int'),(301,'username','yuliatri','string'),(302,'decision','Request Revisions','string'),(302,'editorName','admin admin','string'),(302,'submissionId','15','string'),(303,'editorName','admin admin','string'),(303,'round','1','string'),(303,'submissionId','15','string'),(304,'name','Ratih Dewi Dwiyanti','string'),(304,'userGroupName','Journal manager','string'),(304,'username','ratih001','string'),(305,'fileId','1','int'),(305,'fileStage','15','int'),(305,'originalFileName','13-76-1-5-20200204.docx','string'),(305,'revisedFileId',NULL,'string'),(305,'submissionFileId','95','int'),(305,'submissionId','13','int'),(305,'username','admin','string'),(306,'fileId','1','int'),(306,'fileStage','15','int'),(306,'name','Article Text, 13-76-1-5-20200204.docx','string'),(306,'originalFileName','13-76-1-5-20200204.docx','string'),(306,'submissionFileId','95','int'),(306,'submissionId','13','int'),(306,'username','admin','string'),(307,'decision','Request Revisions','string'),(307,'editorName','Ratih Dewi Dwiyanti','string'),(307,'submissionId','13','string'),(308,'fileId','1','int'),(308,'fileStage','15','int'),(308,'originalFileName','13-76-1-5-20200204.docx','string'),(308,'sourceFileId',NULL,'string'),(308,'submissionFileId','95','int'),(308,'submissionId','13','int'),(308,'username','admin','string'),(309,'submissionId','13','int'),(309,'title','13-76-1-5-20200204.docx','string'),(309,'username','admin','string'),(310,'name','Administrator Administrator','string'),(310,'userGroupName','Journal manager','string'),(310,'username','administrator','string'),(311,'decision','Request Revisions','string'),(311,'editorName','Administrator Administrator','string'),(311,'submissionId','14','string'),(312,'name','Ratih Dewi Dwiyanti','string'),(312,'userGroupName','Copyeditor','string'),(312,'username','ratih001','string'),(313,'name','Ratih Dewi Dwiyanti','string'),(313,'userGroupName','Journal manager','string'),(313,'username','ratih001','string'),(314,'name','Ratih Dewi Dwiyanti','string'),(314,'userGroupName','Journal manager','string'),(314,'username','ratih001','string'),(315,'decision','Request Revisions','string'),(315,'editorName','Ratih Dewi Dwiyanti','string'),(315,'submissionId','15','string'),(316,'decision','Request Revisions','string'),(316,'editorName','Ratih Dewi Dwiyanti','string'),(316,'submissionId','15','string'),(317,'decision','Request Revisions','string'),(317,'editorName','Ratih Dewi Dwiyanti','string'),(317,'submissionId','11','string'),(318,'name','Ratih Dewi Dwiyanti','string'),(318,'userGroupName','Journal manager','string'),(318,'username','ratih001','string'),(319,'decision','Request Revisions','string'),(319,'editorName','Ratih Dewi Dwiyanti','string'),(319,'submissionId','14','string'),(320,'fileId','88','int'),(320,'fileStage','15','int'),(320,'originalFileName','11-94-1-5-20200219.doc','string'),(320,'revisedFileId',NULL,'string'),(320,'submissionFileId','96','int'),(320,'submissionId','11','int'),(320,'username','dryab2747','string'),(321,'fileId','88','int'),(321,'fileStage','15','int'),(321,'name','Article Text, 11-94-1-5-20200219.doc','string'),(321,'originalFileName','11-94-1-5-20200219.doc','string'),(321,'submissionFileId','96','int'),(321,'submissionId','11','int'),(321,'username','dryab2747','string'),(322,'fileId','89','int'),(322,'fileStage','15','int'),(322,'originalFileName','11-Article Text-96-1-15-20200221.doc','string'),(322,'revisedFileId','96','int'),(322,'submissionFileId','96','int'),(322,'submissionId','11','int'),(322,'username','dryab2747','string'),(323,'fileId','89','int'),(323,'fileStage','15','int'),(323,'name','Article Text, 11-Article Text-96-1-15-20200221.doc','string'),(323,'originalFileName','11-Article Text-96-1-15-20200221.doc','string'),(323,'submissionFileId','96','int'),(323,'submissionId','11','int'),(323,'username','dryab2747','string'),(324,'decision','Request Revisions','string'),(324,'editorName','admin admin','string'),(324,'submissionId','11','string'),(330,'reviewAssignmentId','17','int'),(330,'reviewerName','Mehmet Sargın','string'),(330,'round','1','int'),(330,'stageId','3','int'),(330,'submissionId','15','string'),(331,'reviewAssignmentId','17','string'),(331,'reviewerName','Mehmet Sargın','string'),(331,'round','1','string'),(331,'submissionId','15','string'),(332,'fileId','90','int'),(332,'fileStage','5','int'),(332,'originalFileName','0reviewer THMR form-4.docx','string'),(332,'revisedFileId',NULL,'string'),(332,'submissionFileId','97','int'),(332,'submissionId','15','int'),(332,'username','mehmet','string'),(333,'fileId','90','int'),(333,'fileStage','5','int'),(333,'name',', 0reviewer THMR form-4.docx','string'),(333,'originalFileName','0reviewer THMR form-4.docx','string'),(333,'submissionFileId','97','int'),(333,'submissionId','15','int'),(333,'username','mehmet','string'),(334,'reviewAssignmentId','18','int'),(334,'reviewerName','Sevgi Gunes','string'),(334,'round','1','int'),(334,'stageId','3','int'),(334,'submissionId','13','string'),(335,'reviewAssignmentId','18','string'),(335,'reviewerName','Sevgi Gunes','string'),(335,'round','1','string'),(335,'submissionId','13','string'),(336,'fileId','91','int'),(336,'fileStage','5','int'),(336,'originalFileName','0reviewer THMR form-3.docx','string'),(336,'revisedFileId',NULL,'string'),(336,'submissionFileId','98','int'),(336,'submissionId','13','int'),(336,'username','sevgi','string'),(337,'fileId','91','int'),(337,'fileStage','5','int'),(337,'name',', 0reviewer THMR form-3.docx','string'),(337,'originalFileName','0reviewer THMR form-3.docx','string'),(337,'submissionFileId','98','int'),(337,'submissionId','13','int'),(337,'username','sevgi','string'),(338,'decision','Accept Submission','string'),(338,'editorName','admin admin','string'),(338,'submissionId','15','string'),(339,'decision','Send To Production','string'),(339,'editorName','admin admin','string'),(339,'submissionId','15','string'),(340,'decision','Accept Submission','string'),(340,'editorName','admin admin','string'),(340,'submissionId','13','string'),(341,'decision','Send To Production','string'),(341,'editorName','admin admin','string'),(341,'submissionId','13','string'),(345,'fileId','1','int'),(345,'fileStage','10','int'),(345,'originalFileName','gunes template new.pdf','string'),(345,'revisedFileId',NULL,'string'),(345,'submissionFileId','99','int'),(345,'submissionId','13','int'),(345,'username','admin','string'),(346,'fileId','1','int'),(346,'fileStage','10','int'),(346,'name','admin, gunes template new.pdf','string'),(346,'originalFileName','gunes template new.pdf','string'),(346,'submissionFileId','99','int'),(346,'submissionId','13','int'),(346,'username','admin','string'),(349,'fileId','1','int'),(349,'fileStage','10','int'),(349,'originalFileName','yasin template-2.pdf','string'),(349,'revisedFileId',NULL,'string'),(349,'submissionFileId','100','int'),(349,'submissionId','15','int'),(349,'username','admin','string'),(350,'fileId','1','int'),(350,'fileStage','10','int'),(350,'name','admin, yasin template-2.pdf','string'),(350,'originalFileName','yasin template-2.pdf','string'),(350,'submissionFileId','100','int'),(350,'submissionId','15','int'),(350,'username','admin','string'),(351,'reviewAssignmentId','19','int'),(351,'reviewerName','Sevgi Yimenicioglu','string'),(351,'round','1','int'),(351,'stageId','3','int'),(351,'submissionId','14','string'),(352,'reviewAssignmentId','19','string'),(352,'reviewerName','Sevgi Yimenicioglu','string'),(352,'round','1','string'),(352,'submissionId','14','string'),(353,'fileId','92','int'),(353,'fileStage','5','int'),(353,'originalFileName','0reviewer THMR form-2.docx','string'),(353,'revisedFileId',NULL,'string'),(353,'submissionFileId','101','int'),(353,'submissionId','14','int'),(353,'username','123yimenicioglu','string'),(354,'fileId','92','int'),(354,'fileStage','5','int'),(354,'name',', 0reviewer THMR form-2.docx','string'),(354,'originalFileName','0reviewer THMR form-2.docx','string'),(354,'submissionFileId','101','int'),(354,'submissionId','14','int'),(354,'username','123yimenicioglu','string'),(355,'decision','Accept Submission','string'),(355,'editorName','admin admin','string'),(355,'submissionId','14','string'),(356,'decision','Send To Production','string'),(356,'editorName','admin admin','string'),(356,'submissionId','14','string'),(359,'fileId','1','int'),(359,'fileStage','10','int'),(359,'originalFileName','ozankocak template new.pdf','string'),(359,'revisedFileId',NULL,'string'),(359,'submissionFileId','102','int'),(359,'submissionId','14','int'),(359,'username','admin','string'),(360,'fileId','1','int'),(360,'fileStage','10','int'),(360,'name','admin, ozankocak template new.pdf','string'),(360,'originalFileName','ozankocak template new.pdf','string'),(360,'submissionFileId','102','int'),(360,'submissionId','14','int'),(360,'username','admin','string'),(362,'fileId','93','int'),(362,'fileStage','2','int'),(362,'originalFileName','haris nurdin ing.docx','string'),(362,'revisedFileId',NULL,'string'),(362,'submissionFileId','103','int'),(362,'submissionId','16','int'),(362,'username','haris','string'),(363,'fileId','93','int'),(363,'fileStage','2','int'),(363,'name','haris, haris nurdin ing.docx','string'),(363,'originalFileName','haris nurdin ing.docx','string'),(363,'submissionFileId','103','int'),(363,'submissionId','16','int'),(363,'username','haris','string'),(365,'name','admin admin','string'),(365,'userGroupName','Journal manager','string'),(365,'username','admin','string'),(366,'decision','Send to Review','string'),(366,'editorName','admin admin','string'),(366,'submissionId','16','string'),(367,'reviewAssignmentId','20','int'),(367,'reviewerName','Emalia Kubarti','string'),(367,'round','1','int'),(367,'stageId','3','int'),(367,'submissionId','16','string'),(368,'reviewAssignmentId','21','int'),(368,'reviewerName','Jihan Rahma Naily','string'),(368,'round','1','int'),(368,'stageId','3','int'),(368,'submissionId','16','string'),(369,'reviewAssignmentId','20','string'),(369,'reviewerName','Emalia Kubarti','string'),(369,'round','1','string'),(369,'submissionId','16','string'),(370,'reviewAssignmentId','21','string'),(370,'reviewerName','Jihan Rahma Naily','string'),(370,'round','1','string'),(370,'submissionId','16','string'),(371,'fileId','95','int'),(371,'fileStage','2','int'),(371,'originalFileName','novina ing.docx','string'),(371,'revisedFileId',NULL,'string'),(371,'submissionFileId','105','int'),(371,'submissionId','17','int'),(371,'username','novina','string'),(372,'fileId','95','int'),(372,'fileStage','2','int'),(372,'name','novina, novina ing.docx','string'),(372,'originalFileName','novina ing.docx','string'),(372,'submissionFileId','105','int'),(372,'submissionId','17','int'),(372,'username','novina','string'),(374,'name','admin admin','string'),(374,'userGroupName','Journal manager','string'),(374,'username','admin','string'),(375,'decision','Send to Review','string'),(375,'editorName','admin admin','string'),(375,'submissionId','17','string'),(376,'reviewAssignmentId','22','int'),(376,'reviewerName','Jihan Rahma Naily','string'),(376,'round','1','int'),(376,'stageId','3','int'),(376,'submissionId','17','string'),(377,'reviewAssignmentId','23','int'),(377,'reviewerName','Nadiya Uswatun Hasanah','string'),(377,'round','1','int'),(377,'stageId','3','int'),(377,'submissionId','17','string'),(378,'fileId','97','int'),(378,'fileStage','5','int'),(378,'originalFileName','haris nurdin rev1.docx','string'),(378,'revisedFileId',NULL,'string'),(378,'submissionFileId','107','int'),(378,'submissionId','16','int'),(378,'username','jihanrahma','string'),(379,'fileId','97','int'),(379,'fileStage','5','int'),(379,'name',', haris nurdin rev1.docx','string'),(379,'originalFileName','haris nurdin rev1.docx','string'),(379,'submissionFileId','107','int'),(379,'submissionId','16','int'),(379,'username','jihanrahma','string'),(380,'reviewAssignmentId','22','string'),(380,'reviewerName','Jihan Rahma Naily','string'),(380,'round','1','string'),(380,'submissionId','17','string'),(381,'fileId','98','int'),(381,'fileStage','5','int'),(381,'originalFileName','novina rev 1.docx','string'),(381,'revisedFileId',NULL,'string'),(381,'submissionFileId','108','int'),(381,'submissionId','17','int'),(381,'username','jihanrahma','string'),(382,'fileId','98','int'),(382,'fileStage','5','int'),(382,'name',', novina rev 1.docx','string'),(382,'originalFileName','novina rev 1.docx','string'),(382,'submissionFileId','108','int'),(382,'submissionId','17','int'),(382,'username','jihanrahma','string'),(383,'fileId','99','int'),(383,'fileStage','5','int'),(383,'originalFileName','haris nurdin rev2.docx','string'),(383,'revisedFileId',NULL,'string'),(383,'submissionFileId','109','int'),(383,'submissionId','16','int'),(383,'username','emaliakubarti','string'),(384,'fileId','99','int'),(384,'fileStage','5','int'),(384,'name',', haris nurdin rev2.docx','string'),(384,'originalFileName','haris nurdin rev2.docx','string'),(384,'submissionFileId','109','int'),(384,'submissionId','16','int'),(384,'username','emaliakubarti','string'),(385,'reviewAssignmentId','23','string'),(385,'reviewerName','Nadiya Uswatun Hasanah','string'),(385,'round','1','string'),(385,'submissionId','17','string'),(386,'fileId','100','int'),(386,'fileStage','5','int'),(386,'originalFileName','novina rev 2.docx','string'),(386,'revisedFileId',NULL,'string'),(386,'submissionFileId','110','int'),(386,'submissionId','17','int'),(386,'username','nadiyauswatun','string'),(387,'fileId','100','int'),(387,'fileStage','5','int'),(387,'name',', novina rev 2.docx','string'),(387,'originalFileName','novina rev 2.docx','string'),(387,'submissionFileId','110','int'),(387,'submissionId','17','int'),(387,'username','nadiyauswatun','string'),(388,'decision','Request Revisions','string'),(388,'editorName','admin admin','string'),(388,'submissionId','17','string'),(389,'decision','Request Revisions','string'),(389,'editorName','Emalia Kubarti','string'),(389,'submissionId','16','string'),(390,'fileId','101','int'),(390,'fileStage','15','int'),(390,'originalFileName','haris nurdin perbaikan.docx','string'),(390,'revisedFileId',NULL,'string'),(390,'submissionFileId','111','int'),(390,'submissionId','16','int'),(390,'username','haris','string'),(391,'fileId','101','int'),(391,'fileStage','15','int'),(391,'name','Article Text, haris nurdin perbaikan.docx','string'),(391,'originalFileName','haris nurdin perbaikan.docx','string'),(391,'submissionFileId','111','int'),(391,'submissionId','16','int'),(391,'username','haris','string'),(392,'decision','Accept and Skip Review','string'),(392,'editorName','admin admin','string'),(392,'submissionId','16','string'),(393,'fileId','103','int'),(393,'fileStage','15','int'),(393,'originalFileName','novina perbaikan.docx','string'),(393,'revisedFileId',NULL,'string'),(393,'submissionFileId','113','int'),(393,'submissionId','17','int'),(393,'username','novina','string'),(394,'fileId','103','int'),(394,'fileStage','15','int'),(394,'name','Article Text, novina perbaikan.docx','string'),(394,'originalFileName','novina perbaikan.docx','string'),(394,'submissionFileId','113','int'),(394,'submissionId','17','int'),(394,'username','novina','string'),(395,'decision','Accept and Skip Review','string'),(395,'editorName','admin admin','string'),(395,'submissionId','17','string'),(397,'decision','Send To Production','string'),(397,'editorName','admin admin','string'),(397,'submissionId','17','string'),(399,'decision','Send To Production','string'),(399,'editorName','admin admin','string'),(399,'submissionId','16','string'),(412,'fileId','105','int'),(412,'fileStage','2','int'),(412,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(412,'revisedFileId',NULL,'string'),(412,'submissionFileId','115','int'),(412,'submissionId','18','int'),(412,'username','dryab2747','string'),(413,'fileId','105','int'),(413,'fileStage','2','int'),(413,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(413,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(413,'submissionFileId','115','int'),(413,'submissionId','18','int'),(413,'username','dryab2747','string'),(414,'fileId','106','int'),(414,'fileStage','2','int'),(414,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(414,'revisedFileId','115','int'),(414,'submissionFileId','115','int'),(414,'submissionId','18','int'),(414,'username','dryab2747','string'),(415,'fileId','106','int'),(415,'fileStage','2','int'),(415,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(415,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(415,'submissionFileId','115','int'),(415,'submissionId','18','int'),(415,'username','dryab2747','string'),(417,'decision','Accept Submission','string'),(417,'editorName','admin admin','string'),(417,'submissionId','11','string'),(418,'decision','Accept and Skip Review','string'),(418,'editorName','Ratih Dewi Dwiyanti','string'),(418,'submissionId','11','string'),(419,'decision','Send To Production','string'),(419,'editorName','admin admin','string'),(419,'submissionId','11','string'),(423,'fileId','108','int'),(423,'fileStage','10','int'),(423,'originalFileName','gunes template new.pdf','string'),(423,'revisedFileId',NULL,'string'),(423,'submissionFileId','117','int'),(423,'submissionId','13','int'),(423,'username','admin','string'),(424,'fileId','108','int'),(424,'fileStage','10','int'),(424,'name','admin, gunes template new.pdf','string'),(424,'originalFileName','gunes template new.pdf','string'),(424,'submissionFileId','117','int'),(424,'submissionId','13','int'),(424,'username','admin','string'),(426,'fileId','109','int'),(426,'fileStage','10','int'),(426,'originalFileName','yasin template-2.pdf','string'),(426,'revisedFileId',NULL,'string'),(426,'submissionFileId','118','int'),(426,'submissionId','15','int'),(426,'username','admin','string'),(427,'fileId','109','int'),(427,'fileStage','10','int'),(427,'name','admin, yasin template-2.pdf','string'),(427,'originalFileName','yasin template-2.pdf','string'),(427,'submissionFileId','118','int'),(427,'submissionId','15','int'),(427,'username','admin','string'),(429,'fileId','110','int'),(429,'fileStage','10','int'),(429,'originalFileName','ozankocak template new.pdf','string'),(429,'revisedFileId',NULL,'string'),(429,'submissionFileId','119','int'),(429,'submissionId','14','int'),(429,'username','admin','string'),(430,'fileId','110','int'),(430,'fileStage','10','int'),(430,'name','admin, ozankocak template new.pdf','string'),(430,'originalFileName','ozankocak template new.pdf','string'),(430,'submissionFileId','119','int'),(430,'submissionId','14','int'),(430,'username','admin','string'),(432,'fileId','111','int'),(432,'fileStage','10','int'),(432,'originalFileName','haris nurdin template.pdf','string'),(432,'revisedFileId',NULL,'string'),(432,'submissionFileId','120','int'),(432,'submissionId','16','int'),(432,'username','admin','string'),(433,'fileId','111','int'),(433,'fileStage','10','int'),(433,'name','admin, haris nurdin template.pdf','string'),(433,'originalFileName','haris nurdin template.pdf','string'),(433,'submissionFileId','120','int'),(433,'submissionId','16','int'),(433,'username','admin','string'),(435,'fileId','112','int'),(435,'fileStage','10','int'),(435,'originalFileName','novina template.pdf','string'),(435,'revisedFileId',NULL,'string'),(435,'submissionFileId','121','int'),(435,'submissionId','17','int'),(435,'username','admin','string'),(436,'fileId','112','int'),(436,'fileStage','10','int'),(436,'name','admin, novina template.pdf','string'),(436,'originalFileName','novina template.pdf','string'),(436,'submissionFileId','121','int'),(436,'submissionId','17','int'),(436,'username','admin','string'),(438,'fileId','113','int'),(438,'fileStage','10','int'),(438,'originalFileName','yusuf z template new.pdf','string'),(438,'revisedFileId',NULL,'string'),(438,'submissionFileId','122','int'),(438,'submissionId','11','int'),(438,'username','admin','string'),(439,'fileId','113','int'),(439,'fileStage','10','int'),(439,'name','admin, yusuf z template new.pdf','string'),(439,'originalFileName','yusuf z template new.pdf','string'),(439,'submissionFileId','122','int'),(439,'submissionId','11','int'),(439,'username','admin','string'),(441,'fileId','1','int'),(441,'fileStage','2','int'),(441,'originalFileName','dmtropicsubm.doc','string'),(441,'revisedFileId',NULL,'string'),(441,'submissionFileId','123','int'),(441,'submissionId','19','int'),(441,'username','savas','string'),(442,'fileId','1','int'),(442,'fileStage','2','int'),(442,'name','savas, dmtropicsubm.doc','string'),(442,'originalFileName','dmtropicsubm.doc','string'),(442,'submissionFileId','123','int'),(442,'submissionId','19','int'),(442,'username','savas','string'),(443,'fileId','1','int'),(443,'fileStage','2','int'),(443,'originalFileName','dmtropicsubm.doc','string'),(443,'sourceFileId',NULL,'string'),(443,'submissionFileId','123','int'),(443,'submissionId','19','int'),(443,'username','savas','string'),(444,'submissionId','19','int'),(444,'title','dmtropicsubm.doc','string'),(444,'username','savas','string'),(445,'fileId','114','int'),(445,'fileStage','2','int'),(445,'originalFileName','dmtropicsubm.doc','string'),(445,'revisedFileId',NULL,'string'),(445,'submissionFileId','124','int'),(445,'submissionId','19','int'),(445,'username','savas','string'),(446,'fileId','114','int'),(446,'fileStage','2','int'),(446,'name','savas, dmtropicsubm.doc','string'),(446,'originalFileName','dmtropicsubm.doc','string'),(446,'submissionFileId','124','int'),(446,'submissionId','19','int'),(446,'username','savas','string'),(448,'fileId','1','int'),(448,'fileStage','2','int'),(448,'originalFileName','20.01.2020 makale.docx','string'),(448,'revisedFileId',NULL,'string'),(448,'submissionFileId','125','int'),(448,'submissionId','20','int'),(448,'username','makale18','string'),(449,'fileId','1','int'),(449,'fileStage','2','int'),(449,'originalFileName','20.01.2020 makale.docx','string'),(449,'sourceFileId',NULL,'string'),(449,'submissionFileId','125','int'),(449,'submissionId','20','int'),(449,'username','makale18','string'),(451,'fileId','1','int'),(451,'fileStage','2','int'),(451,'originalFileName','20.01.2020 makale.docx','string'),(451,'revisedFileId',NULL,'string'),(451,'submissionFileId','126','int'),(451,'submissionId','20','int'),(451,'username','makale18','string'),(455,'name','admin admin','string'),(455,'userGroupName','Journal manager','string'),(455,'username','admin','string'),(456,'name','admin admin','string'),(456,'userGroupName','Journal manager','string'),(456,'username','admin','string'),(457,'fileId','115','int'),(457,'fileStage','18','int'),(457,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(457,'revisedFileId',NULL,'string'),(457,'submissionFileId','127','int'),(457,'submissionId','18','int'),(457,'username','dryab2747','string'),(458,'fileId','115','int'),(458,'fileStage','18','int'),(458,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(458,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(458,'submissionFileId','127','int'),(458,'submissionId','18','int'),(458,'username','dryab2747','string'),(461,'decision','Send to Review','string'),(461,'editorName','admin admin','string'),(461,'submissionId','19','string'),(462,'reviewAssignmentId','25','int'),(462,'reviewerName','Jihan Rahma Naily','string'),(462,'round','1','int'),(462,'stageId','3','int'),(462,'submissionId','19','string'),(463,'fileId','1','int'),(463,'fileStage','2','int'),(463,'originalFileName','Manuscript.doc','string'),(463,'revisedFileId',NULL,'string'),(463,'submissionFileId','130','int'),(463,'submissionId','21','int'),(463,'username','dursunhs','string'),(470,'fileId','1','int'),(470,'fileStage','5','int'),(470,'originalFileName','turkan rev.docx','string'),(470,'revisedFileId',NULL,'string'),(470,'submissionFileId','132','int'),(470,'submissionId','20','int'),(470,'username','emaliakubarti','string'),(473,'reviewAssignmentId','25','string'),(473,'reviewerName','Jihan Rahma Naily','string'),(473,'round','1','string'),(473,'submissionId','19','string'),(474,'fileId','117','int'),(474,'fileStage','5','int'),(474,'originalFileName','savas rev.doc','string'),(474,'revisedFileId',NULL,'string'),(474,'submissionFileId','133','int'),(474,'submissionId','19','int'),(474,'username','jihanrahma','string'),(475,'fileId','117','int'),(475,'fileStage','5','int'),(475,'name',', savas rev.doc','string'),(475,'originalFileName','savas rev.doc','string'),(475,'submissionFileId','133','int'),(475,'submissionId','19','int'),(475,'username','jihanrahma','string'),(476,'decision','Request Revisions','string'),(476,'editorName','admin admin','string'),(476,'submissionId','19','string'),(478,'decision','Request Revisions','string'),(478,'editorName','admin admin','string'),(478,'submissionId','19','string'),(479,'fileId','118','int'),(479,'fileStage','15','int'),(479,'originalFileName','dmtropikalrev.doc','string'),(479,'revisedFileId',NULL,'string'),(479,'submissionFileId','134','int'),(479,'submissionId','19','int'),(479,'username','savas','string'),(480,'fileId','118','int'),(480,'fileStage','15','int'),(480,'name','Article Text, dmtropikalrev.doc','string'),(480,'originalFileName','dmtropikalrev.doc','string'),(480,'submissionFileId','134','int'),(480,'submissionId','19','int'),(480,'username','savas','string'),(481,'fileId','106','int'),(481,'fileStage','2','int'),(481,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(481,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(481,'submissionFileId','115','int'),(481,'submissionId','18','int'),(481,'username','dryab2747','string'),(482,'fileId','106','int'),(482,'fileStage','2','int'),(482,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(482,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(482,'submissionFileId','115','int'),(482,'submissionId','18','int'),(482,'username','dryab2747','string'),(483,'fileId','106','int'),(483,'fileStage','2','int'),(483,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(483,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(483,'submissionFileId','115','int'),(483,'submissionId','18','int'),(483,'username','dryab2747','string'),(484,'fileId','106','int'),(484,'fileStage','2','int'),(484,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(484,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(484,'submissionFileId','115','int'),(484,'submissionId','18','int'),(484,'username','dryab2747','string'),(485,'decision','Accept and Skip Review','string'),(485,'editorName','admin admin','string'),(485,'submissionId','19','string'),(486,'decision','Send To Production','string'),(486,'editorName','admin admin','string'),(486,'submissionId','19','string'),(490,'fileId','1','int'),(490,'fileStage','10','int'),(490,'originalFileName','savas template mnausprict.docx','string'),(490,'revisedFileId',NULL,'string'),(490,'submissionFileId','136','int'),(490,'submissionId','19','int'),(490,'username','admin','string'),(491,'fileId','1','int'),(491,'fileStage','10','int'),(491,'name','admin, savas template mnausprict.docx','string'),(491,'originalFileName','savas template mnausprict.docx','string'),(491,'submissionFileId','136','int'),(491,'submissionId','19','int'),(491,'username','admin','string'),(492,'reviewAssignmentId','26','int'),(492,'reviewerName','Tijen Yesim','string'),(492,'round','1','int'),(492,'stageId','3','int'),(492,'submissionId','19','string'),(493,'reviewAssignmentId','26','string'),(493,'reviewerName','Tijen Yesim','string'),(493,'round','1','string'),(493,'submissionId','19','string'),(494,'fileId','120','int'),(494,'fileStage','5','int'),(494,'originalFileName','rev1.jpg','string'),(494,'revisedFileId',NULL,'string'),(494,'submissionFileId','137','int'),(494,'submissionId','19','int'),(494,'username','tijen','string'),(495,'fileId','120','int'),(495,'fileStage','5','int'),(495,'name',', rev1.jpg','string'),(495,'originalFileName','rev1.jpg','string'),(495,'submissionFileId','137','int'),(495,'submissionId','19','int'),(495,'username','tijen','string'),(496,'fileId','106','int'),(496,'fileStage','2','int'),(496,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(496,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(496,'submissionFileId','115','int'),(496,'submissionId','18','int'),(496,'username','dryab2747','string'),(497,'fileId','121','int'),(497,'fileStage','2','int'),(497,'originalFileName','OPHTHALMOLOGICAL FINDINGS IN PEDIATRIC NONTRAUMATIC COMA IN ENUGU STATE UNIVERSITY TEACHING HOSPITAL.docx','string'),(497,'revisedFileId',NULL,'string'),(497,'submissionFileId','138','int'),(497,'submissionId','20','int'),(497,'username','benedelu','string'),(498,'fileId','121','int'),(498,'fileStage','2','int'),(498,'name','benedelu, OPHTHALMOLOGICAL FINDINGS IN PEDIATRIC NONTRAUMATIC COMA IN ENUGU STATE UNIVERSITY TEACHING HOSPITAL.docx','string'),(498,'originalFileName','OPHTHALMOLOGICAL FINDINGS IN PEDIATRIC NONTRAUMATIC COMA IN ENUGU STATE UNIVERSITY TEACHING HOSPITAL.docx','string'),(498,'submissionFileId','138','int'),(498,'submissionId','20','int'),(498,'username','benedelu','string'),(500,'name','admin admin','string'),(500,'userGroupName','Journal manager','string'),(500,'username','admin','string'),(501,'decision','Send to Review','string'),(501,'editorName','admin admin','string'),(501,'submissionId','20','string'),(502,'reviewAssignmentId','27','int'),(502,'reviewerName','Tijen Yesim','string'),(502,'round','1','int'),(502,'stageId','3','int'),(502,'submissionId','20','string'),(503,'reviewAssignmentId','27','string'),(503,'reviewerName','Tijen Yesim','string'),(503,'round','1','string'),(503,'submissionId','20','string'),(504,'fileId','123','int'),(504,'fileStage','5','int'),(504,'originalFileName','optahal rev.docx','string'),(504,'revisedFileId',NULL,'string'),(504,'submissionFileId','140','int'),(504,'submissionId','20','int'),(504,'username','tijen','string'),(505,'fileId','123','int'),(505,'fileStage','5','int'),(505,'name',', optahal rev.docx','string'),(505,'originalFileName','optahal rev.docx','string'),(505,'submissionFileId','140','int'),(505,'submissionId','20','int'),(505,'username','tijen','string'),(506,'decision','Request Revisions','string'),(506,'editorName','admin admin','string'),(506,'submissionId','20','string'),(507,'decision','Request Revisions','string'),(507,'editorName','admin admin','string'),(507,'submissionId','20','string'),(508,'fileId','124','int'),(508,'fileStage','15','int'),(508,'originalFileName','optahal rev.docx','string'),(508,'revisedFileId',NULL,'string'),(508,'submissionFileId','141','int'),(508,'submissionId','20','int'),(508,'username','benedelu','string'),(509,'fileId','124','int'),(509,'fileStage','15','int'),(509,'name','Article Text, optahal rev.docx','string'),(509,'originalFileName','optahal rev.docx','string'),(509,'submissionFileId','141','int'),(509,'submissionId','20','int'),(509,'username','benedelu','string'),(510,'decision','Accept and Skip Review','string'),(510,'editorName','admin admin','string'),(510,'submissionId','20','string'),(511,'decision','Send To Production','string'),(511,'editorName','admin admin','string'),(511,'submissionId','20','string'),(512,'reviewAssignmentId','28','int'),(512,'reviewerName','Christian Chukwukere Ogoke','string'),(512,'round','1','int'),(512,'stageId','3','int'),(512,'submissionId','20','string'),(513,'reviewAssignmentId','28','string'),(513,'reviewerName','Christian Chukwukere Ogoke','string'),(513,'round','1','string'),(513,'submissionId','20','string'),(514,'fileId','126','int'),(514,'fileStage','5','int'),(514,'originalFileName','0reviewer THMR opthal.docx','string'),(514,'revisedFileId',NULL,'string'),(514,'submissionFileId','143','int'),(514,'submissionId','20','int'),(514,'username','christian','string'),(515,'fileId','126','int'),(515,'fileStage','5','int'),(515,'name',', 0reviewer THMR opthal.docx','string'),(515,'originalFileName','0reviewer THMR opthal.docx','string'),(515,'submissionFileId','143','int'),(515,'submissionId','20','int'),(515,'username','christian','string'),(517,'fileId','1','int'),(517,'fileStage','10','int'),(517,'originalFileName','opthal template dr author.pdf','string'),(517,'revisedFileId',NULL,'string'),(517,'submissionFileId','144','int'),(517,'submissionId','20','int'),(517,'username','admin','string'),(518,'fileId','1','int'),(518,'fileStage','10','int'),(518,'name','admin, opthal template dr author.pdf','string'),(518,'originalFileName','opthal template dr author.pdf','string'),(518,'submissionFileId','144','int'),(518,'submissionId','20','int'),(518,'username','admin','string'),(521,'fileId','1','int'),(521,'fileStage','10','int'),(521,'originalFileName','savas template mnausprict.pdf','string'),(521,'revisedFileId',NULL,'string'),(521,'submissionFileId','145','int'),(521,'submissionId','19','int'),(521,'username','admin','string'),(522,'fileId','1','int'),(522,'fileStage','10','int'),(522,'name','admin, savas template mnausprict.pdf','string'),(522,'originalFileName','savas template mnausprict.pdf','string'),(522,'submissionFileId','145','int'),(522,'submissionId','19','int'),(522,'username','admin','string'),(523,'fileId','106','int'),(523,'fileStage','2','int'),(523,'name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(523,'originalFileName','Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(523,'submissionFileId','115','int'),(523,'submissionId','18','int'),(523,'username','dryab2747','string'),(524,'decision','Send to Review','string'),(524,'editorName','admin admin','string'),(524,'submissionId','18','string'),(525,'reviewAssignmentId','29','int'),(525,'reviewerName','Jihan Rahma Naily','string'),(525,'round','1','int'),(525,'stageId','3','int'),(525,'submissionId','18','string'),(526,'fileId','1','int'),(526,'fileStage','15','int'),(526,'originalFileName','Biliary Duct.docx','string'),(526,'revisedFileId',NULL,'string'),(526,'submissionFileId','147','int'),(526,'submissionId','18','int'),(526,'username','jihanrahma','string'),(527,'fileId','1','int'),(527,'fileStage','15','int'),(527,'name','Article Text, Biliary Duct.docx','string'),(527,'originalFileName','Biliary Duct.docx','string'),(527,'submissionFileId','147','int'),(527,'submissionId','18','int'),(527,'username','jihanrahma','string'),(528,'decision','Request Revisions','string'),(528,'editorName','Jihan Rahma Naily','string'),(528,'submissionId','18','string'),(529,'reviewAssignmentId','29','string'),(529,'reviewerName','Jihan Rahma Naily','string'),(529,'round','1','string'),(529,'submissionId','18','string'),(530,'fileId','1','int'),(530,'fileStage','15','int'),(530,'originalFileName','Biliary Duct.docx','string'),(530,'sourceFileId',NULL,'string'),(530,'submissionFileId','147','int'),(530,'submissionId','18','int'),(530,'username','dryab2747','string'),(531,'submissionId','18','int'),(531,'title','Biliary Duct.docx','string'),(531,'username','dryab2747','string'),(532,'fileId','128','int'),(532,'fileStage','5','int'),(532,'originalFileName','18-Article Text-147-1-15-20200713.docx','string'),(532,'revisedFileId',NULL,'string'),(532,'submissionFileId','148','int'),(532,'submissionId','18','int'),(532,'username','jihanrahma','string'),(533,'fileId','128','int'),(533,'fileStage','5','int'),(533,'name',', 18-Article Text-147-1-15-20200713.docx','string'),(533,'originalFileName','18-Article Text-147-1-15-20200713.docx','string'),(533,'submissionFileId','148','int'),(533,'submissionId','18','int'),(533,'username','jihanrahma','string'),(534,'decision','Request Revisions','string'),(534,'editorName','admin admin','string'),(534,'submissionId','18','string'),(535,'fileId','129','int'),(535,'fileStage','2','int'),(535,'originalFileName','DKA_Manuscript.docx','string'),(535,'revisedFileId',NULL,'string'),(535,'submissionFileId','149','int'),(535,'submissionId','21','int'),(535,'username','benedelu','string'),(537,'name','admin admin','string'),(537,'userGroupName','Journal manager','string'),(537,'username','admin','string'),(538,'decision','Send to Review','string'),(538,'editorName','admin admin','string'),(538,'submissionId','21','string'),(539,'reviewAssignmentId','30','int'),(539,'reviewerName','Nadiya Uswatun Hasanah','string'),(539,'round','1','int'),(539,'stageId','3','int'),(539,'submissionId','21','string'),(540,'fileId','131','int'),(540,'fileStage','15','int'),(540,'originalFileName','sabri başkan makale koledok hakem sonrası son hali.doc','string'),(540,'revisedFileId',NULL,'string'),(540,'submissionFileId','151','int'),(540,'submissionId','18','int'),(540,'username','dryab2747','string'),(541,'fileId','131','int'),(541,'fileStage','15','int'),(541,'name','Article Text, sabri başkan makale koledok hakem sonrası son hali.doc','string'),(541,'originalFileName','sabri başkan makale koledok hakem sonrası son hali.doc','string'),(541,'submissionFileId','151','int'),(541,'submissionId','18','int'),(541,'username','dryab2747','string'),(542,'fileId','132','int'),(542,'fileStage','15','int'),(542,'originalFileName','sabri başkan başlık sayfası ingilizce.doc','string'),(542,'revisedFileId',NULL,'string'),(542,'submissionFileId','152','int'),(542,'submissionId','18','int'),(542,'username','dryab2747','string'),(543,'fileId','132','int'),(543,'fileStage','15','int'),(543,'name','Other, sabri başkan başlık sayfası ingilizce.doc','string'),(543,'originalFileName','sabri başkan başlık sayfası ingilizce.doc','string'),(543,'submissionFileId','152','int'),(543,'submissionId','18','int'),(543,'username','dryab2747','string'),(544,'reviewAssignmentId','30','string'),(544,'reviewerName','Nadiya Uswatun Hasanah','string'),(544,'round','1','string'),(544,'submissionId','21','string'),(545,'fileId','133','int'),(545,'fileStage','5','int'),(545,'originalFileName','enugu rev.docx','string'),(545,'revisedFileId',NULL,'string'),(545,'submissionFileId','153','int'),(545,'submissionId','21','int'),(545,'username','nadiyauswatun','string'),(546,'fileId','133','int'),(546,'fileStage','5','int'),(546,'name',', enugu rev.docx','string'),(546,'originalFileName','enugu rev.docx','string'),(546,'submissionFileId','153','int'),(546,'submissionId','21','int'),(546,'username','nadiyauswatun','string'),(547,'decision','Request Revisions','string'),(547,'editorName','admin admin','string'),(547,'submissionId','21','string'),(548,'fileId','134','int'),(548,'fileStage','2','int'),(548,'originalFileName','agnina jurnal submit.docx','string'),(548,'revisedFileId',NULL,'string'),(548,'submissionFileId','154','int'),(548,'submissionId','22','int'),(548,'username','agnina','string'),(549,'fileId','134','int'),(549,'fileStage','2','int'),(549,'name','agnina, agnina jurnal submit.docx','string'),(549,'originalFileName','agnina jurnal submit.docx','string'),(549,'submissionFileId','154','int'),(549,'submissionId','22','int'),(549,'username','agnina','string'),(551,'fileId','135','int'),(551,'fileStage','2','int'),(551,'originalFileName','dini jurnal submit.docx','string'),(551,'revisedFileId',NULL,'string'),(551,'submissionFileId','155','int'),(551,'submissionId','23','int'),(551,'username','agnina','string'),(552,'fileId','135','int'),(552,'fileStage','2','int'),(552,'name','agnina, dini jurnal submit.docx','string'),(552,'originalFileName','dini jurnal submit.docx','string'),(552,'submissionFileId','155','int'),(552,'submissionId','23','int'),(552,'username','agnina','string'),(554,'name','admin admin','string'),(554,'userGroupName','Journal manager','string'),(554,'username','admin','string'),(555,'decision','Send to Review','string'),(555,'editorName','admin admin','string'),(555,'submissionId','23','string'),(556,'reviewAssignmentId','31','int'),(556,'reviewerName','anny Thuraidah','string'),(556,'round','1','int'),(556,'stageId','3','int'),(556,'submissionId','23','string'),(557,'reviewAssignmentId','32','int'),(557,'reviewerName','Jihan Rahma Naily','string'),(557,'round','1','int'),(557,'stageId','3','int'),(557,'submissionId','23','string'),(558,'name','admin admin','string'),(558,'userGroupName','Journal manager','string'),(558,'username','admin','string'),(559,'decision','Send to Review','string'),(559,'editorName','admin admin','string'),(559,'submissionId','22','string'),(560,'reviewAssignmentId','33','int'),(560,'reviewerName','anny Thuraidah','string'),(560,'round','1','int'),(560,'stageId','3','int'),(560,'submissionId','22','string'),(561,'reviewAssignmentId','34','int'),(561,'reviewerName','Nadiya Uswatun Hasanah','string'),(561,'round','1','int'),(561,'stageId','3','int'),(561,'submissionId','22','string'),(562,'fileId','135','int'),(562,'fileStage','2','int'),(562,'name','agnina, dini jurnal submit.docx','string'),(562,'originalFileName','dini jurnal submit.docx','string'),(562,'submissionFileId','155','int'),(562,'submissionId','23','int'),(562,'username','agnina','string'),(563,'reviewAssignmentId','31','string'),(563,'reviewerName','anny Thuraidah','string'),(563,'round','1','string'),(563,'submissionId','23','string'),(564,'fileId','138','int'),(564,'fileStage','5','int'),(564,'originalFileName','dini jurnal rev1.docx','string'),(564,'revisedFileId',NULL,'string'),(564,'submissionFileId','158','int'),(564,'submissionId','23','int'),(564,'username','thuraidah','string'),(565,'fileId','138','int'),(565,'fileStage','5','int'),(565,'name',', dini jurnal rev1.docx','string'),(565,'originalFileName','dini jurnal rev1.docx','string'),(565,'submissionFileId','158','int'),(565,'submissionId','23','int'),(565,'username','thuraidah','string'),(566,'reviewAssignmentId','33','string'),(566,'reviewerName','anny Thuraidah','string'),(566,'round','1','string'),(566,'submissionId','22','string'),(567,'fileId','139','int'),(567,'fileStage','5','int'),(567,'originalFileName','agnina jurnal rev1.docx','string'),(567,'revisedFileId',NULL,'string'),(567,'submissionFileId','159','int'),(567,'submissionId','22','int'),(567,'username','thuraidah','string'),(568,'fileId','139','int'),(568,'fileStage','5','int'),(568,'name',', agnina jurnal rev1.docx','string'),(568,'originalFileName','agnina jurnal rev1.docx','string'),(568,'submissionFileId','159','int'),(568,'submissionId','22','int'),(568,'username','thuraidah','string'),(569,'reviewAssignmentId','32','string'),(569,'reviewerName','Jihan Rahma Naily','string'),(569,'round','1','string'),(569,'submissionId','23','string'),(570,'fileId','140','int'),(570,'fileStage','5','int'),(570,'originalFileName','dini jurnal rev2.docx','string'),(570,'revisedFileId',NULL,'string'),(570,'submissionFileId','160','int'),(570,'submissionId','23','int'),(570,'username','jihanrahma','string'),(571,'fileId','140','int'),(571,'fileStage','5','int'),(571,'name',', dini jurnal rev2.docx','string'),(571,'originalFileName','dini jurnal rev2.docx','string'),(571,'submissionFileId','160','int'),(571,'submissionId','23','int'),(571,'username','jihanrahma','string'),(572,'reviewAssignmentId','34','string'),(572,'reviewerName','Nadiya Uswatun Hasanah','string'),(572,'round','1','string'),(572,'submissionId','22','string'),(573,'fileId','141','int'),(573,'fileStage','5','int'),(573,'originalFileName','agnina jurnal rev2.docx','string'),(573,'revisedFileId',NULL,'string'),(573,'submissionFileId','161','int'),(573,'submissionId','22','int'),(573,'username','nadiyauswatun','string'),(574,'fileId','141','int'),(574,'fileStage','5','int'),(574,'name',', agnina jurnal rev2.docx','string'),(574,'originalFileName','agnina jurnal rev2.docx','string'),(574,'submissionFileId','161','int'),(574,'submissionId','22','int'),(574,'username','nadiyauswatun','string'),(575,'decision','Request Revisions','string'),(575,'editorName','admin admin','string'),(575,'submissionId','23','string'),(576,'decision','Request Revisions','string'),(576,'editorName','admin admin','string'),(576,'submissionId','22','string'),(577,'decision','Accept and Skip Review','string'),(577,'editorName','admin admin','string'),(577,'submissionId','18','string'),(578,'decision','Send To Production','string'),(578,'editorName','admin admin','string'),(578,'submissionId','18','string'),(579,'fileId','144','int'),(579,'fileStage','15','int'),(579,'originalFileName','dini jurnal perbaikan.docx','string'),(579,'revisedFileId',NULL,'string'),(579,'submissionFileId','164','int'),(579,'submissionId','23','int'),(579,'username','agnina','string'),(580,'fileId','144','int'),(580,'fileStage','15','int'),(580,'name','Article Text, dini jurnal perbaikan.docx','string'),(580,'originalFileName','dini jurnal perbaikan.docx','string'),(580,'submissionFileId','164','int'),(580,'submissionId','23','int'),(580,'username','agnina','string'),(581,'fileId','145','int'),(581,'fileStage','15','int'),(581,'originalFileName','agnina jurnal perbaikan.docx','string'),(581,'revisedFileId',NULL,'string'),(581,'submissionFileId','165','int'),(581,'submissionId','22','int'),(581,'username','agnina','string'),(582,'fileId','145','int'),(582,'fileStage','15','int'),(582,'name','Article Text, agnina jurnal perbaikan.docx','string'),(582,'originalFileName','agnina jurnal perbaikan.docx','string'),(582,'submissionFileId','165','int'),(582,'submissionId','22','int'),(582,'username','agnina','string'),(583,'decision','Accept and Skip Review','string'),(583,'editorName','admin admin','string'),(583,'submissionId','23','string'),(584,'decision','Accept and Skip Review','string'),(584,'editorName','admin admin','string'),(584,'submissionId','22','string'),(585,'fileId','1','int'),(585,'fileStage','2','int'),(585,'originalFileName','Artigo em inglês.docx','string'),(585,'revisedFileId',NULL,'string'),(585,'submissionFileId','168','int'),(585,'submissionId','24','int'),(585,'username','refsouza','string'),(586,'fileId','148','int'),(586,'fileStage','2','int'),(586,'originalFileName','Article.docx','string'),(586,'revisedFileId',NULL,'string'),(586,'submissionFileId','169','int'),(586,'submissionId','24','int'),(586,'username','refsouza','string'),(587,'fileId','1','int'),(587,'fileStage','2','int'),(587,'originalFileName','Artigo em inglês.docx','string'),(587,'sourceFileId',NULL,'string'),(587,'submissionFileId','168','int'),(587,'submissionId','24','int'),(587,'username','refsouza','string'),(588,'submissionId','24','int'),(588,'title','Artigo em inglês.docx','string'),(588,'username','refsouza','string'),(589,'fileId','148','int'),(589,'fileStage','2','int'),(589,'name','refsouza, Article.docx','string'),(589,'originalFileName','Article.docx','string'),(589,'submissionFileId','169','int'),(589,'submissionId','24','int'),(589,'username','refsouza','string'),(591,'name','admin admin','string'),(591,'userGroupName','Journal manager','string'),(591,'username','admin','string'),(592,'decision','Send to Review','string'),(592,'editorName','admin admin','string'),(592,'submissionId','24','string'),(593,'reviewAssignmentId','35','int'),(593,'reviewerName','anny Thuraidah','string'),(593,'round','1','int'),(593,'stageId','3','int'),(593,'submissionId','24','string'),(594,'reviewAssignmentId','35','string'),(594,'reviewerName','anny Thuraidah','string'),(594,'round','1','string'),(594,'submissionId','24','string'),(595,'fileId','150','int'),(595,'fileStage','5','int'),(595,'originalFileName','hiv-brazil rev.docx','string'),(595,'revisedFileId',NULL,'string'),(595,'submissionFileId','171','int'),(595,'submissionId','24','int'),(595,'username','thuraidah','string'),(596,'fileId','150','int'),(596,'fileStage','5','int'),(596,'name',', hiv-brazil rev.docx','string'),(596,'originalFileName','hiv-brazil rev.docx','string'),(596,'submissionFileId','171','int'),(596,'submissionId','24','int'),(596,'username','thuraidah','string'),(597,'decision','Request Revisions','string'),(597,'editorName','admin admin','string'),(597,'submissionId','24','string'),(598,'fileId','151','int'),(598,'fileStage','15','int'),(598,'originalFileName','Article.docx','string'),(598,'revisedFileId',NULL,'string'),(598,'submissionFileId','172','int'),(598,'submissionId','24','int'),(598,'username','refsouza','string'),(599,'fileId','151','int'),(599,'fileStage','15','int'),(599,'name','Article Text, Article.docx','string'),(599,'originalFileName','Article.docx','string'),(599,'submissionFileId','172','int'),(599,'submissionId','24','int'),(599,'username','refsouza','string'),(600,'decision','Accept and Skip Review','string'),(600,'editorName','admin admin','string'),(600,'submissionId','24','string'),(601,'decision','Send To Production','string'),(601,'editorName','admin admin','string'),(601,'submissionId','24','string'),(606,'decision','Send To Production','string'),(606,'editorName','admin admin','string'),(606,'submissionId','22','string'),(608,'decision','Send To Production','string'),(608,'editorName','admin admin','string'),(608,'submissionId','23','string'),(610,'fileId','155','int'),(610,'fileStage','10','int'),(610,'originalFileName','savas template mnausprict new.pdf','string'),(610,'revisedFileId',NULL,'string'),(610,'submissionFileId','176','int'),(610,'submissionId','19','int'),(610,'username','admin','string'),(611,'fileId','155','int'),(611,'fileStage','10','int'),(611,'name','admin, savas template mnausprict new.pdf','string'),(611,'originalFileName','savas template mnausprict new.pdf','string'),(611,'submissionFileId','176','int'),(611,'submissionId','19','int'),(611,'username','admin','string'),(612,'fileId','156','int'),(612,'fileStage','10','int'),(612,'originalFileName','opthal template dr author new.pdf','string'),(612,'revisedFileId',NULL,'string'),(612,'submissionFileId','177','int'),(612,'submissionId','20','int'),(612,'username','admin','string'),(613,'fileId','156','int'),(613,'fileStage','10','int'),(613,'name','admin, opthal template dr author new.pdf','string'),(613,'originalFileName','opthal template dr author new.pdf','string'),(613,'submissionFileId','177','int'),(613,'submissionId','20','int'),(613,'username','admin','string'),(615,'fileId','1','int'),(615,'fileStage','10','int'),(615,'originalFileName','agnina jurnal template new.docx','string'),(615,'revisedFileId',NULL,'string'),(615,'submissionFileId','178','int'),(615,'submissionId','22','int'),(615,'username','admin','string'),(616,'fileId','1','int'),(616,'fileStage','10','int'),(616,'name','admin, agnina jurnal template new.docx','string'),(616,'originalFileName','agnina jurnal template new.docx','string'),(616,'submissionFileId','178','int'),(616,'submissionId','22','int'),(616,'username','admin','string'),(619,'fileId','157','int'),(619,'fileStage','10','int'),(619,'originalFileName','dini jurnal template.pdf','string'),(619,'revisedFileId',NULL,'string'),(619,'submissionFileId','179','int'),(619,'submissionId','23','int'),(619,'username','admin','string'),(620,'fileId','157','int'),(620,'fileStage','10','int'),(620,'name','admin, dini jurnal template.pdf','string'),(620,'originalFileName','dini jurnal template.pdf','string'),(620,'submissionFileId','179','int'),(620,'submissionId','23','int'),(620,'username','admin','string'),(623,'fileId','158','int'),(623,'fileStage','10','int'),(623,'originalFileName','Biliary Duct template new.pdf','string'),(623,'revisedFileId',NULL,'string'),(623,'submissionFileId','180','int'),(623,'submissionId','18','int'),(623,'username','admin','string'),(624,'fileId','158','int'),(624,'fileStage','10','int'),(624,'name','admin, Biliary Duct template new.pdf','string'),(624,'originalFileName','Biliary Duct template new.pdf','string'),(624,'submissionFileId','180','int'),(624,'submissionId','18','int'),(624,'username','admin','string'),(630,'fileId','159','int'),(630,'fileStage','10','int'),(630,'originalFileName','brazil hiv template new.pdf','string'),(630,'revisedFileId',NULL,'string'),(630,'submissionFileId','181','int'),(630,'submissionId','24','int'),(630,'username','admin','string'),(631,'fileId','159','int'),(631,'fileStage','10','int'),(631,'name','admin, brazil hiv template new.pdf','string'),(631,'originalFileName','brazil hiv template new.pdf','string'),(631,'submissionFileId','181','int'),(631,'submissionId','24','int'),(631,'username','admin','string'),(633,'fileId','160','int'),(633,'fileStage','2','int'),(633,'originalFileName','fadia jurnal tranlate.edited.docx','string'),(633,'revisedFileId',NULL,'string'),(633,'submissionFileId','182','int'),(633,'submissionId','25','int'),(633,'username','fadia','string'),(634,'fileId','160','int'),(634,'fileStage','2','int'),(634,'name','fadia, fadia jurnal tranlate.edited.docx','string'),(634,'originalFileName','fadia jurnal tranlate.edited.docx','string'),(634,'submissionFileId','182','int'),(634,'submissionId','25','int'),(634,'username','fadia','string'),(636,'name','Nudia Kurniati','string'),(636,'userGroupName','Copyeditor','string'),(636,'username','nudia','string'),(637,'name','Dwi Intan Purnama Sari','string'),(637,'userGroupName','Copyeditor','string'),(637,'username','dwiintan','string'),(638,'name','Pebri Fitria Lestari','string'),(638,'userGroupName','Copyeditor','string'),(638,'username','pebri','string'),(639,'fileId','161','int'),(639,'fileStage','2','int'),(639,'originalFileName','ing maha makale.docx','string'),(639,'revisedFileId',NULL,'string'),(639,'submissionFileId','183','int'),(639,'submissionId','26','int'),(639,'username','drdeniz','string'),(640,'fileId','161','int'),(640,'fileStage','2','int'),(640,'name','drdeniz, ing maha makale.docx','string'),(640,'originalFileName','ing maha makale.docx','string'),(640,'submissionFileId','183','int'),(640,'submissionId','26','int'),(640,'username','drdeniz','string'),(642,'name','admin admin','string'),(642,'userGroupName','Journal manager','string'),(642,'username','admin','string'),(643,'decision','Send to Review','string'),(643,'editorName','admin admin','string'),(643,'submissionId','25','string'),(644,'reviewAssignmentId','36','int'),(644,'reviewerName','Nadiya Uswatun Hasanah','string'),(644,'round','1','int'),(644,'stageId','3','int'),(644,'submissionId','25','string'),(645,'fileId','163','int'),(645,'fileStage','15','int'),(645,'originalFileName','21-153-1-5-20200721.docx','string'),(645,'revisedFileId',NULL,'string'),(645,'submissionFileId','185','int'),(645,'submissionId','21','int'),(645,'username','benedelu','string'),(646,'fileId','163','int'),(646,'fileStage','15','int'),(646,'name','Article Text, 21-153-1-5-20200721.docx','string'),(646,'originalFileName','21-153-1-5-20200721.docx','string'),(646,'submissionFileId','185','int'),(646,'submissionId','21','int'),(646,'username','benedelu','string'),(647,'name','admin admin','string'),(647,'userGroupName','Journal manager','string'),(647,'username','admin','string'),(650,'decision','Send to Review','string'),(650,'editorName','admin admin','string'),(650,'submissionId','26','string'),(651,'reviewAssignmentId','37','int'),(651,'reviewerName','anny Thuraidah','string'),(651,'round','1','int'),(651,'stageId','3','int'),(651,'submissionId','26','string'),(652,'name','Dwi Intan Purnama Sari','string'),(652,'userGroupName','Copyeditor','string'),(652,'username','dwiintan','string'),(653,'name','Pebri Fitria Lestari','string'),(653,'userGroupName','Copyeditor','string'),(653,'username','pebri','string'),(654,'decision','Decline Submission','string'),(654,'editorName','admin admin','string'),(654,'submissionId','25','string'),(666,'fileId','1','int'),(666,'fileStage','2','int'),(666,'originalFileName','covıd---son kabul.docx','string'),(666,'revisedFileId',NULL,'string'),(666,'submissionFileId','187','int'),(666,'submissionId','27','int'),(666,'username','erhanokuyan','string'),(667,'fileId','1','int'),(667,'fileStage','2','int'),(667,'originalFileName','covıd---son kabul.docx','string'),(667,'revisedFileId',NULL,'string'),(667,'submissionFileId','188','int'),(667,'submissionId','28','int'),(667,'username','erhanokuyan','string'),(668,'fileId','1','int'),(668,'fileStage','2','int'),(668,'originalFileName','covıd---son kabul.docx','string'),(668,'sourceFileId',NULL,'string'),(668,'submissionFileId','188','int'),(668,'submissionId','28','int'),(668,'username','erhanokuyan','string'),(669,'submissionId','28','int'),(669,'title','covıd---son kabul.docx','string'),(669,'username','erhanokuyan','string'),(670,'fileId','165','int'),(670,'fileStage','2','int'),(670,'originalFileName','COVID 19 PREGNANCY.docx','string'),(670,'revisedFileId',NULL,'string'),(670,'submissionFileId','189','int'),(670,'submissionId','28','int'),(670,'username','erhanokuyan','string'),(671,'fileId','165','int'),(671,'fileStage','2','int'),(671,'name','erhanokuyan, COVID 19 PREGNANCY.docx','string'),(671,'originalFileName','COVID 19 PREGNANCY.docx','string'),(671,'submissionFileId','189','int'),(671,'submissionId','28','int'),(671,'username','erhanokuyan','string'),(672,'fileId','165','int'),(672,'fileStage','2','int'),(672,'name','erhanokuyan, COVID 19 PREGNANCY.docx','string'),(672,'originalFileName','COVID 19 PREGNANCY.docx','string'),(672,'submissionFileId','189','int'),(672,'submissionId','28','int'),(672,'username','erhanokuyan','string'),(673,'fileId','165','int'),(673,'fileStage','2','int'),(673,'name','erhanokuyan, COVID 19 PREGNANCY.docx','string'),(673,'originalFileName','COVID 19 PREGNANCY.docx','string'),(673,'submissionFileId','189','int'),(673,'submissionId','28','int'),(673,'username','erhanokuyan','string'),(675,'name','admin admin','string'),(675,'userGroupName','Journal manager','string'),(675,'username','admin','string'),(676,'reviewAssignmentId','37','string'),(676,'reviewerName','anny Thuraidah','string'),(676,'round','1','string'),(676,'submissionId','26','string'),(677,'fileId','166','int'),(677,'fileStage','5','int'),(677,'originalFileName','deniz rev.docx','string'),(677,'revisedFileId',NULL,'string'),(677,'submissionFileId','190','int'),(677,'submissionId','26','int'),(677,'username','thuraidah','string'),(678,'fileId','166','int'),(678,'fileStage','5','int'),(678,'name',', deniz rev.docx','string'),(678,'originalFileName','deniz rev.docx','string'),(678,'submissionFileId','190','int'),(678,'submissionId','26','int'),(678,'username','thuraidah','string'),(679,'decision','Request Revisions','string'),(679,'editorName','admin admin','string'),(679,'submissionId','26','string'),(680,'fileId','167','int'),(680,'fileStage','2','int'),(680,'originalFileName','Pooltext.docx','string'),(680,'revisedFileId',NULL,'string'),(680,'submissionFileId','191','int'),(680,'submissionId','29','int'),(680,'username','ubi-isaac9','string'),(681,'fileId','167','int'),(681,'fileStage','2','int'),(681,'name','ubi-isaac9, from Pooltext.docx','string'),(681,'originalFileName','Pooltext.docx','string'),(681,'submissionFileId','191','int'),(681,'submissionId','29','int'),(681,'username','ubi-isaac9','string'),(683,'name','admin admin','string'),(683,'userGroupName','Journal manager','string'),(683,'username','admin','string'),(684,'decision','Send to Review','string'),(684,'editorName','admin admin','string'),(684,'submissionId','28','string'),(685,'reviewAssignmentId','38','int'),(685,'reviewerName','anny Thuraidah','string'),(685,'round','1','int'),(685,'stageId','3','int'),(685,'submissionId','28','string'),(686,'name','Dwi Intan Purnama Sari','string'),(686,'userGroupName','Copyeditor','string'),(686,'username','dwiintan','string'),(687,'decision','Send to Review','string'),(687,'editorName','admin admin','string'),(687,'submissionId','29','string'),(688,'name','Pebri Fitria Lestari','string'),(688,'userGroupName','Copyeditor','string'),(688,'username','pebri','string'),(689,'reviewAssignmentId','39','int'),(689,'reviewerName','Yulia Tri Andini','string'),(689,'round','1','int'),(689,'stageId','3','int'),(689,'submissionId','29','string'),(690,'reviewAssignmentId','38','string'),(690,'reviewerName','anny Thuraidah','string'),(690,'round','1','string'),(690,'submissionId','28','string'),(691,'fileId','170','int'),(691,'fileStage','5','int'),(691,'originalFileName','covid-tur rev.docx','string'),(691,'revisedFileId',NULL,'string'),(691,'submissionFileId','194','int'),(691,'submissionId','28','int'),(691,'username','thuraidah','string'),(692,'fileId','170','int'),(692,'fileStage','5','int'),(692,'name',', covid-tur rev.docx','string'),(692,'originalFileName','covid-tur rev.docx','string'),(692,'submissionFileId','194','int'),(692,'submissionId','28','int'),(692,'username','thuraidah','string'),(693,'decision','Request Revisions','string'),(693,'editorName','admin admin','string'),(693,'submissionId','28','string'),(694,'reviewAssignmentId','39','string'),(694,'reviewerName','Yulia Tri Andini','string'),(694,'round','1','string'),(694,'submissionId','29','string'),(695,'fileId','171','int'),(695,'fileStage','5','int'),(695,'originalFileName','guava negeria rev.docx','string'),(695,'revisedFileId',NULL,'string'),(695,'submissionFileId','195','int'),(695,'submissionId','29','int'),(695,'username','yuliatri','string'),(696,'fileId','171','int'),(696,'fileStage','5','int'),(696,'name',', guava negeria rev.docx','string'),(696,'originalFileName','guava negeria rev.docx','string'),(696,'submissionFileId','195','int'),(696,'submissionId','29','int'),(696,'username','yuliatri','string'),(697,'decision','Request Revisions','string'),(697,'editorName','admin admin','string'),(697,'submissionId','29','string'),(698,'fileId','172','int'),(698,'fileStage','15','int'),(698,'originalFileName','covid erhan son hali.docx','string'),(698,'revisedFileId',NULL,'string'),(698,'submissionFileId','196','int'),(698,'submissionId','28','int'),(698,'username','erhanokuyan','string'),(699,'fileId','172','int'),(699,'fileStage','15','int'),(699,'name','revision of article text,tables and references','string'),(699,'originalFileName','covid erhan son hali.docx','string'),(699,'submissionFileId','196','int'),(699,'submissionId','28','int'),(699,'username','erhanokuyan','string'),(700,'fileId','173','int'),(700,'fileStage','15','int'),(700,'originalFileName','Revision Letter.docx','string'),(700,'revisedFileId','196','int'),(700,'submissionFileId','196','int'),(700,'submissionId','28','int'),(700,'username','erhanokuyan','string'),(701,'fileId','173','int'),(701,'fileStage','15','int'),(701,'name','Revision Letter.docx','string'),(701,'originalFileName','Revision Letter.docx','string'),(701,'submissionFileId','196','int'),(701,'submissionId','28','int'),(701,'username','erhanokuyan','string'),(702,'fileId','174','int'),(702,'fileStage','15','int'),(702,'originalFileName','covid erhan son hali.docx','string'),(702,'revisedFileId','196','int'),(702,'submissionFileId','196','int'),(702,'submissionId','28','int'),(702,'username','erhanokuyan','string'),(703,'fileId','174','int'),(703,'fileStage','15','int'),(703,'name','Revision of article text .docx','string'),(703,'originalFileName','covid erhan son hali.docx','string'),(703,'submissionFileId','196','int'),(703,'submissionId','28','int'),(703,'username','erhanokuyan','string'),(704,'fileId','175','int'),(704,'fileStage','18','int'),(704,'originalFileName','Revision Letter.docx','string'),(704,'revisedFileId',NULL,'string'),(704,'submissionFileId','197','int'),(704,'submissionId','28','int'),(704,'username','erhanokuyan','string'),(705,'fileId','175','int'),(705,'fileStage','18','int'),(705,'name','erhanokuyan, Revision Letter.docx','string'),(705,'originalFileName','Revision Letter.docx','string'),(705,'submissionFileId','197','int'),(705,'submissionId','28','int'),(705,'username','erhanokuyan','string'),(706,'fileId','175','int'),(706,'fileStage','18','int'),(706,'name','erhanokuyan, Revision Letter.docx','string'),(706,'originalFileName','Revision Letter.docx','string'),(706,'submissionFileId','197','int'),(706,'submissionId','28','int'),(706,'username','erhanokuyan','string'),(707,'fileId','176','int'),(707,'fileStage','2','int'),(707,'originalFileName','PPID saHAR.docx','string'),(707,'revisedFileId',NULL,'string'),(707,'submissionFileId','198','int'),(707,'submissionId','30','int'),(707,'username','sari','string'),(708,'fileId','176','int'),(708,'fileStage','2','int'),(708,'name','sari, PPID saHAR.docx','string'),(708,'originalFileName','PPID saHAR.docx','string'),(708,'submissionFileId','198','int'),(708,'submissionId','30','int'),(708,'username','sari','string'),(709,'fileId','176','int'),(709,'fileStage','2','int'),(709,'name','sari, PPID saHAR.docx','string'),(709,'originalFileName','PPID saHAR.docx','string'),(709,'submissionFileId','198','int'),(709,'submissionId','30','int'),(709,'username','sari','string'),(711,'fileId','177','int'),(711,'fileStage','15','int'),(711,'originalFileName','29-195-1-5-20201017.docx','string'),(711,'revisedFileId',NULL,'string'),(711,'submissionFileId','199','int'),(711,'submissionId','29','int'),(711,'username','ubi-isaac9','string'),(712,'fileId','177','int'),(712,'fileStage','15','int'),(712,'name','Article Text, 29-195-1-5-20201017.docx','string'),(712,'originalFileName','29-195-1-5-20201017.docx','string'),(712,'submissionFileId','199','int'),(712,'submissionId','29','int'),(712,'username','ubi-isaac9','string'),(713,'name','admin admin','string'),(713,'userGroupName','Journal manager','string'),(713,'username','admin','string'),(714,'decision','Send to Review','string'),(714,'editorName','admin admin','string'),(714,'submissionId','30','string'),(715,'reviewAssignmentId','40','int'),(715,'reviewerName','Yulia Tri Andini','string'),(715,'round','1','int'),(715,'stageId','3','int'),(715,'submissionId','30','string'),(716,'reviewAssignmentId','40','string'),(716,'reviewerName','Yulia Tri Andini','string'),(716,'round','1','string'),(716,'submissionId','30','string'),(717,'fileId','179','int'),(717,'fileStage','5','int'),(717,'originalFileName','obesity-ksarev.docx','string'),(717,'revisedFileId',NULL,'string'),(717,'submissionFileId','201','int'),(717,'submissionId','30','int'),(717,'username','yuliatri','string'),(718,'fileId','179','int'),(718,'fileStage','5','int'),(718,'name',', obesity-ksarev.docx','string'),(718,'originalFileName','obesity-ksarev.docx','string'),(718,'submissionFileId','201','int'),(718,'submissionId','30','int'),(718,'username','yuliatri','string'),(719,'decision','Request Revisions','string'),(719,'editorName','admin admin','string'),(719,'submissionId','30','string'),(720,'decision','Accept and Skip Review','string'),(720,'editorName','admin admin','string'),(720,'submissionId','21','string'),(721,'decision','Accept and Skip Review','string'),(721,'editorName','admin admin','string'),(721,'submissionId','28','string'),(722,'decision','Send To Production','string'),(722,'editorName','admin admin','string'),(722,'submissionId','28','string'),(723,'decision','Accept and Skip Review','string'),(723,'editorName','admin admin','string'),(723,'submissionId','29','string'),(725,'fileId','1','int'),(725,'fileStage','10','int'),(725,'originalFileName','Covid1 template1.pdf','string'),(725,'revisedFileId',NULL,'string'),(725,'submissionFileId','205','int'),(725,'submissionId','28','int'),(725,'username','pebri','string'),(726,'fileId','1','int'),(726,'fileStage','10','int'),(726,'name','pebri, Covid1 template1.pdf','string'),(726,'originalFileName','Covid1 template1.pdf','string'),(726,'submissionFileId','205','int'),(726,'submissionId','28','int'),(726,'username','pebri','string'),(728,'fileId','1','int'),(728,'fileStage','10','int'),(728,'originalFileName','Covid1 template1.pdf','string'),(728,'revisedFileId',NULL,'string'),(728,'submissionFileId','206','int'),(728,'submissionId','28','int'),(728,'username','pebri','string'),(729,'fileId','1','int'),(729,'fileStage','10','int'),(729,'name','pebri, Covid1 template1.pdf','string'),(729,'originalFileName','Covid1 template1.pdf','string'),(729,'submissionFileId','206','int'),(729,'submissionId','28','int'),(729,'username','pebri','string'),(732,'fileId','183','int'),(732,'fileStage','10','int'),(732,'originalFileName','Covid1 template1.pdf','string'),(732,'revisedFileId',NULL,'string'),(732,'submissionFileId','207','int'),(732,'submissionId','28','int'),(732,'username','pebri','string'),(733,'fileId','183','int'),(733,'fileStage','10','int'),(733,'name','pebri, Covid1 template1.pdf','string'),(733,'originalFileName','Covid1 template1.pdf','string'),(733,'submissionFileId','207','int'),(733,'submissionId','28','int'),(733,'username','pebri','string'),(734,'fileId','184','int'),(734,'fileStage','10','int'),(734,'originalFileName','agnina jurnal template new.pdf','string'),(734,'revisedFileId',NULL,'string'),(734,'submissionFileId','208','int'),(734,'submissionId','22','int'),(734,'username','admin','string'),(735,'fileId','184','int'),(735,'fileStage','10','int'),(735,'name','admin, agnina jurnal template new.pdf','string'),(735,'originalFileName','agnina jurnal template new.pdf','string'),(735,'submissionFileId','208','int'),(735,'submissionId','22','int'),(735,'username','admin','string'),(736,'fileId','1','int'),(736,'fileStage','2','int'),(736,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(736,'revisedFileId',NULL,'string'),(736,'submissionFileId','209','int'),(736,'submissionId','31','int'),(736,'username','drmizzud','string'),(737,'fileId','1','int'),(737,'fileStage','2','int'),(737,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(737,'revisedFileId',NULL,'string'),(737,'submissionFileId','210','int'),(737,'submissionId','31','int'),(737,'username','drmizzud','string'),(738,'fileId','1','int'),(738,'fileStage','2','int'),(738,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(738,'sourceFileId',NULL,'string'),(738,'submissionFileId','210','int'),(738,'submissionId','31','int'),(738,'username','drmizzud','string'),(740,'fileId','185','int'),(740,'fileStage','2','int'),(740,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(740,'revisedFileId',NULL,'string'),(740,'submissionFileId','211','int'),(740,'submissionId','32','int'),(740,'username','drmizzud','string'),(741,'fileId','185','int'),(741,'fileStage','2','int'),(741,'name','drmizzud, Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(741,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(741,'submissionFileId','211','int'),(741,'submissionId','32','int'),(741,'username','drmizzud','string'),(743,'name','admin admin','string'),(743,'userGroupName','Journal manager','string'),(743,'username','admin','string'),(744,'fileId','186','int'),(744,'fileStage','2','int'),(744,'originalFileName','0JURNAL VONNY KHRESNA DEWI.docx','string'),(744,'revisedFileId',NULL,'string'),(744,'submissionFileId','212','int'),(744,'submissionId','33','int'),(744,'username','vonny','string'),(745,'fileId','186','int'),(745,'fileStage','2','int'),(745,'name','vonny, 0JURNAL VONNY KHRESNA DEWI.docx','string'),(745,'originalFileName','0JURNAL VONNY KHRESNA DEWI.docx','string'),(745,'submissionFileId','212','int'),(745,'submissionId','33','int'),(745,'username','vonny','string'),(747,'name','admin admin','string'),(747,'userGroupName','Journal manager','string'),(747,'username','admin','string'),(748,'decision','Send to Review','string'),(748,'editorName','admin admin','string'),(748,'submissionId','33','string'),(749,'reviewAssignmentId','41','int'),(749,'reviewerName','anny Thuraidah','string'),(749,'round','1','int'),(749,'stageId','3','int'),(749,'submissionId','33','string'),(750,'decision','Send to Review','string'),(750,'editorName','admin admin','string'),(750,'submissionId','32','string'),(751,'reviewAssignmentId','42','int'),(751,'reviewerName','anny Thuraidah','string'),(751,'round','1','int'),(751,'stageId','3','int'),(751,'submissionId','32','string'),(752,'fileId','189','int'),(752,'fileStage','9','int'),(752,'originalFileName','guava template dr author.docx','string'),(752,'revisedFileId',NULL,'string'),(752,'submissionFileId','215','int'),(752,'submissionId','29','int'),(752,'username','dwiintan','string'),(753,'fileId','189','int'),(753,'fileStage','9','int'),(753,'name','dwiintan, guava template dr author.docx','string'),(753,'originalFileName','guava template dr author.docx','string'),(753,'submissionFileId','215','int'),(753,'submissionId','29','int'),(753,'username','dwiintan','string'),(755,'decision','Send To Production','string'),(755,'editorName','admin admin','string'),(755,'submissionId','29','string'),(756,'fileId','191','int'),(756,'fileStage','10','int'),(756,'originalFileName','guava template dr author.pdf','string'),(756,'revisedFileId',NULL,'string'),(756,'submissionFileId','217','int'),(756,'submissionId','29','int'),(756,'username','admin','string'),(757,'fileId','191','int'),(757,'fileStage','10','int'),(757,'name','admin, guava template dr author.pdf','string'),(757,'originalFileName','guava template dr author.pdf','string'),(757,'submissionFileId','217','int'),(757,'submissionId','29','int'),(757,'username','admin','string'),(760,'reviewAssignmentId','41','string'),(760,'reviewerName','anny Thuraidah','string'),(760,'round','1','string'),(760,'submissionId','33','string'),(761,'fileId','192','int'),(761,'fileStage','5','int'),(761,'originalFileName','0JURNAL VONNY KHRESNA DEWI rev.docx','string'),(761,'revisedFileId',NULL,'string'),(761,'submissionFileId','218','int'),(761,'submissionId','33','int'),(761,'username','thuraidah','string'),(762,'fileId','192','int'),(762,'fileStage','5','int'),(762,'name',', 0JURNAL VONNY KHRESNA DEWI rev.docx','string'),(762,'originalFileName','0JURNAL VONNY KHRESNA DEWI rev.docx','string'),(762,'submissionFileId','218','int'),(762,'submissionId','33','int'),(762,'username','thuraidah','string'),(763,'decision','Request Revisions','string'),(763,'editorName','admin admin','string'),(763,'submissionId','33','string'),(764,'reviewAssignmentId','42','string'),(764,'reviewerName','anny Thuraidah','string'),(764,'round','1','string'),(764,'submissionId','32','string'),(765,'fileId','193','int'),(765,'fileStage','5','int'),(765,'originalFileName','FGMT rev.docx','string'),(765,'revisedFileId',NULL,'string'),(765,'submissionFileId','219','int'),(765,'submissionId','32','int'),(765,'username','thuraidah','string'),(766,'fileId','193','int'),(766,'fileStage','5','int'),(766,'name',', FGMT rev.docx','string'),(766,'originalFileName','FGMT rev.docx','string'),(766,'submissionFileId','219','int'),(766,'submissionId','32','int'),(766,'username','thuraidah','string'),(767,'decision','Request Revisions','string'),(767,'editorName','admin admin','string'),(767,'submissionId','32','string'),(768,'fileId','1','int'),(768,'fileStage','15','int'),(768,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(768,'revisedFileId',NULL,'string'),(768,'submissionFileId','220','int'),(768,'submissionId','32','int'),(768,'username','drmizzud','string'),(769,'fileId','2','int'),(769,'fileStage','15','int'),(769,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(769,'revisedFileId','220','int'),(769,'submissionFileId','220','int'),(769,'submissionId','32','int'),(769,'username','drmizzud','string'),(770,'fileId','2','int'),(770,'fileStage','15','int'),(770,'name','Article Text, Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(770,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(770,'submissionFileId','220','int'),(770,'submissionId','32','int'),(770,'username','drmizzud','string'),(771,'fileId','2','int'),(771,'fileStage','15','int'),(771,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(771,'sourceFileId',NULL,'string'),(771,'submissionFileId','220','int'),(771,'submissionId','32','int'),(771,'username','drmizzud','string'),(772,'fileId','1','int'),(772,'fileStage','15','int'),(772,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(772,'sourceFileId',NULL,'string'),(772,'submissionFileId','220','int'),(772,'submissionId','32','int'),(772,'username','drmizzud','string'),(773,'submissionId','32','int'),(773,'title','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(773,'username','drmizzud','string'),(774,'fileId','194','int'),(774,'fileStage','15','int'),(774,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(774,'revisedFileId',NULL,'string'),(774,'submissionFileId','221','int'),(774,'submissionId','32','int'),(774,'username','drmizzud','string'),(775,'fileId','194','int'),(775,'fileStage','15','int'),(775,'name','Article Text, Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(775,'originalFileName','Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(775,'submissionFileId','221','int'),(775,'submissionId','32','int'),(775,'username','drmizzud','string'),(779,'name','admin admin','string'),(779,'userGroupName','Journal manager','string'),(779,'username','admin','string'),(780,'name','admin admin','string'),(780,'userGroupName','Journal manager','string'),(780,'username','admin','string'),(781,'fileId','1','int'),(781,'fileStage','2','int'),(781,'originalFileName','CGA.edited.docx','string'),(781,'revisedFileId',NULL,'string'),(781,'submissionFileId','222','int'),(781,'submissionId','38','int'),(781,'username','admin','string'),(782,'fileId','1','int'),(782,'fileStage','2','int'),(782,'originalFileName','CGA.edited.docx','string'),(782,'sourceFileId',NULL,'string'),(782,'submissionFileId','222','int'),(782,'submissionId','38','int'),(782,'username','admin','string'),(783,'submissionId','38','int'),(783,'title','CGA.edited.docx','string'),(783,'username','admin','string'),(784,'fileId','195','int'),(784,'fileStage','2','int'),(784,'originalFileName','TSH research last revised eng.docx','string'),(784,'revisedFileId',NULL,'string'),(784,'submissionFileId','223','int'),(784,'submissionId','38','int'),(784,'username','admin','string'),(785,'fileId','195','int'),(785,'fileStage','2','int'),(785,'name','admin, TSH research last revised eng.docx','string'),(785,'originalFileName','TSH research last revised eng.docx','string'),(785,'submissionFileId','223','int'),(785,'submissionId','38','int'),(785,'username','admin','string'),(786,'decision','Send to Review','string'),(786,'editorName','admin admin','string'),(786,'submissionId','38','string'),(787,'reviewAssignmentId','43','int'),(787,'reviewerName','anny Thuraidah','string'),(787,'round','1','int'),(787,'stageId','3','int'),(787,'submissionId','38','string'),(788,'reviewAssignmentId','43','string'),(788,'reviewerName','anny Thuraidah','string'),(788,'round','1','string'),(788,'submissionId','38','string'),(789,'fileId','197','int'),(789,'fileStage','5','int'),(789,'originalFileName','rev38-Article Text-224-1-4-20210203.docx','string'),(789,'revisedFileId',NULL,'string'),(789,'submissionFileId','225','int'),(789,'submissionId','38','int'),(789,'username','thuraidah','string'),(790,'fileId','197','int'),(790,'fileStage','5','int'),(790,'name',', rev38-Article Text-224-1-4-20210203.docx','string'),(790,'originalFileName','rev38-Article Text-224-1-4-20210203.docx','string'),(790,'submissionFileId','225','int'),(790,'submissionId','38','int'),(790,'username','thuraidah','string'),(791,'decision','Request Revisions','string'),(791,'editorName','admin admin','string'),(791,'submissionId','38','string'),(792,'fileId','198','int'),(792,'fileStage','15','int'),(792,'originalFileName','revision tsh levels.docx','string'),(792,'revisedFileId',NULL,'string'),(792,'submissionFileId','226','int'),(792,'submissionId','38','int'),(792,'username','gizemberfin','string'),(793,'fileId','198','int'),(793,'fileStage','15','int'),(793,'name','Article Text, revision tsh levels.docx','string'),(793,'originalFileName','revision tsh levels.docx','string'),(793,'submissionFileId','226','int'),(793,'submissionId','38','int'),(793,'username','gizemberfin','string'),(794,'fileId','199','int'),(794,'fileStage','15','int'),(794,'originalFileName','revision tsh levels 1.docx','string'),(794,'revisedFileId','226','int'),(794,'submissionFileId','226','int'),(794,'submissionId','38','int'),(794,'username','gizemberfin','string'),(795,'fileId','200','int'),(795,'fileStage','15','int'),(795,'originalFileName','revision tsh levels 1.docx','string'),(795,'revisedFileId','226','int'),(795,'submissionFileId','226','int'),(795,'submissionId','38','int'),(795,'username','gizemberfin','string'),(796,'fileId','200','int'),(796,'fileStage','15','int'),(796,'name','Article Text, revision tsh levels 1.docx','string'),(796,'originalFileName','revision tsh levels 1.docx','string'),(796,'submissionFileId','226','int'),(796,'submissionId','38','int'),(796,'username','gizemberfin','string'),(797,'fileId','202','int'),(797,'fileStage','15','int'),(797,'originalFileName','0jurnal vonny2 eng.edited.docx','string'),(797,'revisedFileId',NULL,'string'),(797,'submissionFileId','227','int'),(797,'submissionId','33','int'),(797,'username','vonny','string'),(798,'reviewAssignmentId','44','int'),(798,'reviewerName','Yulia Tri Andini','string'),(798,'round','1','int'),(798,'stageId','3','int'),(798,'submissionId','33','string'),(799,'reviewAssignmentId','44','string'),(799,'reviewerName','Yulia Tri Andini','string'),(799,'round','1','string'),(799,'submissionId','33','string'),(800,'fileId','203','int'),(800,'fileStage','5','int'),(800,'originalFileName','0JURNAL VONNY KHRESNA DEWI rev2.docx','string'),(800,'revisedFileId',NULL,'string'),(800,'submissionFileId','228','int'),(800,'submissionId','33','int'),(800,'username','yuliatri','string'),(801,'fileId','203','int'),(801,'fileStage','5','int'),(801,'name',', 0JURNAL VONNY KHRESNA DEWI rev2.docx','string'),(801,'originalFileName','0JURNAL VONNY KHRESNA DEWI rev2.docx','string'),(801,'submissionFileId','228','int'),(801,'submissionId','33','int'),(801,'username','yuliatri','string'),(802,'decision','Accept and Skip Review','string'),(802,'editorName','admin admin','string'),(802,'submissionId','33','string'),(803,'decision','Send To Production','string'),(803,'editorName','admin admin','string'),(803,'submissionId','33','string'),(805,'fileId','205','int'),(805,'fileStage','10','int'),(805,'originalFileName','0jurnal vonny template.pdf','string'),(805,'revisedFileId',NULL,'string'),(805,'submissionFileId','230','int'),(805,'submissionId','33','int'),(805,'username','admin','string'),(806,'fileId','205','int'),(806,'fileStage','10','int'),(806,'name','admin, 0jurnal vonny template.pdf','string'),(806,'originalFileName','0jurnal vonny template.pdf','string'),(806,'submissionFileId','230','int'),(806,'submissionId','33','int'),(806,'username','admin','string'),(808,'fileId','206','int'),(808,'fileStage','2','int'),(808,'originalFileName','0jurnal vonny template.docx','string'),(808,'revisedFileId',NULL,'string'),(808,'submissionFileId','231','int'),(808,'submissionId','40','int'),(808,'username','fadia','string'),(809,'fileId','206','int'),(809,'fileStage','2','int'),(809,'name','fadia, 0jurnal vonny template.docx','string'),(809,'originalFileName','0jurnal vonny template.docx','string'),(809,'submissionFileId','231','int'),(809,'submissionId','40','int'),(809,'username','fadia','string'),(811,'decision','Accept and Skip Review','string'),(811,'editorName','admin admin','string'),(811,'submissionId','38','string'),(812,'decision','Accept and Skip Review','string'),(812,'editorName','admin admin','string'),(812,'submissionId','32','string'),(813,'fileId','201','int'),(813,'fileStage','15','int'),(813,'originalFileName','Gizem Berfin template.docx','string'),(813,'revisedFileId','226','int'),(813,'submissionFileId','226','int'),(813,'submissionId','38','int'),(813,'username','gizemberfin','string'),(814,'fileId','201','int'),(814,'fileStage','15','int'),(814,'name','Article Text, Gizem Berfin template.docx','string'),(814,'originalFileName','Gizem Berfin template.docx','string'),(814,'submissionFileId','226','int'),(814,'submissionId','38','int'),(814,'username','gizemberfin','string'),(815,'fileId','201','int'),(815,'fileStage','15','int'),(815,'originalFileName','Gizem Berfin template.docx','string'),(815,'sourceFileId',NULL,'string'),(815,'submissionFileId','226','int'),(815,'submissionId','38','int'),(815,'username','gizemberfin','string'),(816,'fileId','201','int'),(816,'fileStage','15','int'),(816,'originalFileName','Gizem Berfin template.docx','string'),(816,'revisedFileId','226','int'),(816,'submissionFileId','226','int'),(816,'submissionId','38','int'),(816,'username','gizemberfin','string'),(817,'fileId','201','int'),(817,'fileStage','15','int'),(817,'name','Article Text, Gizem Berfin template.docx','string'),(817,'originalFileName','Gizem Berfin template.docx','string'),(817,'submissionFileId','226','int'),(817,'submissionId','38','int'),(817,'username','gizemberfin','string');
/*!40000 ALTER TABLE `event_log_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `files`
--

DROP TABLE IF EXISTS `files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `files` (
  `file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `path` varchar(255) NOT NULL,
  `mimetype` varchar(255) NOT NULL,
  PRIMARY KEY (`file_id`)
) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `files`
--

LOCK TABLES `files` WRITE;
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
INSERT INTO `files` VALUES (1,'journals/1/articles/1/submission/1-1-1-1-2-20190328.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(2,'journals/1/articles/1/submission/final/1-1-2-1-6-20190328.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(3,'journals/1/articles/1/submission/productionReady/1-1-3-1-11-20190328.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(4,'journals/1/articles/2/submission/2-1-4-1-2-20190329.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(5,'journals/1/articles/2/submission/review/2-1-5-1-4-20190329.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(6,'journals/1/articles/2/submission/review/attachment/2--6-1-5-20190329.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(7,'journals/1/articles/2/submission/review/revision/2-1-7-1-15-20190329.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(8,'journals/1/articles/2/submission/review/revision/2-1-7-2-15-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(9,'journals/1/articles/2/submission/final/2-1-8-1-6-20190329.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(10,'journals/1/articles/2/submission/copyedit/2-1-9-1-9-20190329.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(11,'journals/1/articles/2/submission/productionReady/2-1-10-1-11-20190329.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(12,'journals/1/articles/2/submission/proof/2-1-12-1-10-20190331.pdf','application/pdf'),(13,'journals/1/articles/1/submission/review/1-1-13-1-4-20190328.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(14,'journals/1/articles/1/submission/review/attachment/1--14-1-5-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(15,'journals/1/articles/1/submission/review/revision/1-1-15-1-15-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(16,'journals/1/articles/3/submission/3-1-18-1-2-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(17,'journals/1/articles/4/submission/4-1-19-1-2-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(18,'journals/1/articles/5/submission/5-1-20-1-2-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(19,'journals/1/articles/5/submission/review/5-1-21-1-4-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(20,'journals/1/articles/4/submission/review/4-1-22-1-4-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(21,'journals/1/articles/3/submission/review/3-1-23-1-4-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(22,'journals/1/articles/5/submission/review/attachment/5--24-1-5-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(23,'journals/1/articles/4/submission/review/attachment/4--25-1-5-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(24,'journals/1/articles/3/submission/review/attachment/3--26-1-5-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(25,'journals/1/articles/4/submission/review/revision/4-1-27-1-15-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(26,'journals/1/articles/3/submission/review/revision/3-1-28-1-15-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(27,'journals/1/articles/5/submission/review/revision/5-1-29-1-15-20190331.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(28,'journals/1/articles/1/submission/proof/1-1-30-1-10-20190331.pdf','application/pdf'),(29,'journals/1/articles/5/submission/proof/5-1-31-1-10-20190331.pdf','application/pdf'),(30,'journals/1/articles/4/submission/proof/4-1-32-1-10-20190331.pdf','application/pdf'),(31,'journals/1/articles/3/submission/proof/3-1-33-1-10-20190331.pdf','application/pdf'),(32,'journals/1/articles/6/submission/6-1-34-1-2-20190824.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(33,'journals/1/articles/6/submission/review/6-1-35-1-4-20190824.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(34,'journals/1/articles/7/submission/7-1-36-1-2-20190825.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(35,'journals/1/articles/8/submission/8-1-37-1-2-20190825.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(36,'journals/1/articles/8/submission/review/8-1-38-1-4-20190825.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(37,'journals/1/articles/7/submission/review/7-1-39-1-4-20190825.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(38,'journals/1/articles/9/submission/9-1-40-1-2-20190829.doc','application/msword'),(39,'journals/1/articles/9/submission/review/9-1-41-1-4-20190829.doc','application/msword'),(40,'journals/1/articles/8/submission/review/attachment/8--42-1-5-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(41,'journals/1/articles/7/submission/review/attachment/7--43-1-5-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(42,'journals/1/articles/6/submission/review/attachment/6--44-1-5-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(43,'journals/1/articles/9/submission/review/attachment/9--45-1-5-20190830.doc','application/msword'),(44,'journals/1/articles/9/submission/review/revision/9-1-46-1-15-20190830.doc','application/msword'),(45,'journals/1/articles/8/submission/review/revision/8-1-47-1-15-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(46,'journals/1/articles/6/submission/review/revision/6-1-48-1-15-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(47,'journals/1/articles/7/submission/review/revision/7-1-49-1-15-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(48,'journals/1/articles/8/submission/final/8-1-50-1-6-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(49,'journals/1/articles/6/submission/final/6-1-51-1-6-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(50,'journals/1/articles/9/submission/final/9-1-52-1-6-20190830.doc','application/msword'),(51,'journals/1/articles/7/submission/final/7-1-53-1-6-20190830.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(52,'journals/1/articles/10/submission/10-1-54-1-2-20190831.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(53,'journals/1/articles/10/submission/review/10-1-55-1-4-20190831.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(54,'journals/1/articles/10/submission/review/attachment/10--56-1-5-20190831.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(55,'journals/1/articles/10/submission/review/revision/10-1-57-1-15-20190831.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(56,'journals/1/articles/10/submission/final/10-1-58-1-6-20190831.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(57,'journals/1/articles/10/submission/proof/10-1-59-1-10-20190831.pdf','application/pdf'),(58,'journals/1/articles/7/submission/proof/7-1-60-1-10-20190831.pdf','application/pdf'),(59,'journals/1/articles/9/submission/proof/9-1-61-1-10-20190831.pdf','application/pdf'),(60,'journals/1/articles/8/submission/proof/8-1-62-1-10-20190831.pdf','application/pdf'),(61,'journals/1/articles/6/submission/proof/6-1-63-1-10-20190831.pdf','application/pdf'),(62,'journals/1/articles/11/submission/11-1-64-1-2-20190920.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(63,'journals/1/articles/13/submission/13-1-66-1-2-20200130.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(64,'journals/1/articles/13/submission/13-12-67-1-2-20200130.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(65,'journals/1/articles/13/submission/13-12-68-1-2-20200130.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(66,'journals/1/articles/14/submission/14-1-70-1-2-20200131.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(67,'journals/1/articles/14/submission/review/14-1-71-1-4-20200131.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(68,'journals/1/articles/13/submission/review/13-1-72-1-4-20200130.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(69,'journals/1/articles/13/submission/review/13-12-73-1-4-20200130.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(70,'journals/1/articles/13/submission/review/13-12-74-1-4-20200130.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(71,'journals/1/articles/14/submission/review/attachment/14--75-1-5-20200204.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(72,'journals/1/articles/13/submission/review/attachment/13--76-1-5-20200204.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(73,'journals/1/articles/15/submission/15-1-77-1-2-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(74,'journals/1/articles/15/submission/15-3-78-1-2-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(75,'journals/1/articles/15/submission/15-3-79-1-2-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(76,'journals/1/articles/15/submission/15-2-80-1-2-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(77,'journals/1/articles/15/submission/15-2-81-1-2-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(78,'journals/1/articles/13/submission/review/attachment/13--82-1-5-20200217.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(79,'journals/1/articles/13/submission/review/attachment/13--86-1-5-20200217.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(80,'journals/1/articles/11/submission/review/11-1-87-1-4-20190920.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(81,'journals/1/articles/15/submission/review/15-1-88-1-4-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(82,'journals/1/articles/15/submission/review/15-3-89-1-4-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(83,'journals/1/articles/15/submission/review/15-3-90-1-4-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(84,'journals/1/articles/15/submission/review/15-2-91-1-4-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(85,'journals/1/articles/15/submission/review/15-2-92-1-4-20200216.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(86,'journals/1/articles/15/submission/review/attachment/15--93-1-5-20200219.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(87,'journals/1/articles/11/submission/review/attachment/11--94-1-5-20200219.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(88,'journals/1/articles/11/submission/review/revision/11-1-96-1-15-20200221.doc','application/msword'),(89,'journals/1/articles/11/submission/review/revision/11-1-96-2-15-20200223.doc','application/msword'),(90,'journals/1/articles/15/submission/review/attachment/15--97-1-5-20200227.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(91,'journals/1/articles/13/submission/review/attachment/13--98-1-5-20200227.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(92,'journals/1/articles/14/submission/review/attachment/14--101-1-5-20200228.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(93,'journals/1/articles/16/submission/16-1-103-1-2-20200307.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(94,'journals/1/articles/16/submission/review/16-1-104-1-4-20200307.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(95,'journals/1/articles/17/submission/17-1-105-1-2-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(96,'journals/1/articles/17/submission/review/17-1-106-1-4-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(97,'journals/1/articles/16/submission/review/attachment/16--107-1-5-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(98,'journals/1/articles/17/submission/review/attachment/17--108-1-5-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(99,'journals/1/articles/16/submission/review/attachment/16--109-1-5-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(100,'journals/1/articles/17/submission/review/attachment/17--110-1-5-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(101,'journals/1/articles/16/submission/review/revision/16-1-111-1-15-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(102,'journals/1/articles/16/submission/final/16-1-112-1-6-20200319.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(103,'journals/1/articles/17/submission/review/revision/17-1-113-1-15-20200325.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(104,'journals/1/articles/17/submission/final/17-1-114-1-6-20200325.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(105,'journals/1/articles/18/submission/18-1-115-1-2-20200326.doc','application/msword'),(106,'journals/1/articles/18/submission/18-1-115-2-2-20200326.doc','application/msword'),(107,'journals/1/articles/11/submission/final/11-1-116-1-6-20200223.doc','application/msword'),(108,'journals/1/articles/13/submission/proof/13-1-117-1-10-20200327.pdf','application/pdf'),(109,'journals/1/articles/15/submission/proof/15-1-118-1-10-20200327.pdf','application/pdf'),(110,'journals/1/articles/14/submission/proof/14-1-119-1-10-20200327.pdf','application/pdf'),(111,'journals/1/articles/16/submission/proof/16-1-120-1-10-20200327.pdf','application/pdf'),(112,'journals/1/articles/17/submission/proof/17-1-121-1-10-20200327.pdf','application/pdf'),(113,'journals/1/articles/11/submission/proof/11-1-122-1-10-20200327.pdf','application/pdf'),(114,'journals/1/articles/19/submission/19-1-124-1-2-20200328.doc','application/msword'),(115,'journals/1/articles/18/submission/query/18-1-127-1-18-20200402.doc','application/msword'),(116,'journals/1/articles/19/submission/review/19-1-129-1-4-20200328.doc','application/msword'),(117,'journals/1/articles/19/submission/review/attachment/19--133-1-5-20200425.doc','application/msword'),(118,'journals/1/articles/19/submission/review/revision/19-1-134-1-15-20200501.doc','application/msword'),(119,'journals/1/articles/19/submission/final/19-1-135-1-6-20200501.doc','application/msword'),(120,'journals/1/articles/19/submission/review/attachment/19--137-1-5-20200512.jpg','image/jpeg'),(121,'journals/1/articles/20/submission/20-1-138-1-2-20200521.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(122,'journals/1/articles/20/submission/review/20-1-139-1-4-20200521.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(123,'journals/1/articles/20/submission/review/attachment/20--140-1-5-20200527.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(124,'journals/1/articles/20/submission/review/revision/20-1-141-1-15-20200607.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(125,'journals/1/articles/20/submission/final/20-1-142-1-6-20200607.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(126,'journals/1/articles/20/submission/review/attachment/20--143-1-5-20200617.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(127,'journals/1/articles/18/submission/review/18-1-146-1-4-20200326.doc','application/msword'),(128,'journals/1/articles/18/submission/review/attachment/18--148-1-5-20200713.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(129,'journals/1/articles/21/submission/21-1-149-1-2-20200715.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(130,'journals/1/articles/21/submission/review/21-1-150-1-4-20200715.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(131,'journals/1/articles/18/submission/review/revision/18-1-151-1-15-20200720.doc','application/msword'),(132,'journals/1/articles/18/submission/review/revision/18-12-152-1-15-20200720.doc','application/msword'),(133,'journals/1/articles/21/submission/review/attachment/21--153-1-5-20200721.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(134,'journals/1/articles/22/submission/22-1-154-1-2-20200726.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(135,'journals/1/articles/23/submission/23-1-155-1-2-20200726.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(136,'journals/1/articles/23/submission/review/23-1-156-1-4-20200726.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(137,'journals/1/articles/22/submission/review/22-1-157-1-4-20200726.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(138,'journals/1/articles/23/submission/review/attachment/23--158-1-5-20200728.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(139,'journals/1/articles/22/submission/review/attachment/22--159-1-5-20200728.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(140,'journals/1/articles/23/submission/review/attachment/23--160-1-5-20200728.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(141,'journals/1/articles/22/submission/review/attachment/22--161-1-5-20200728.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(142,'journals/1/articles/18/submission/final/18-1-162-1-6-20200720.doc','application/msword'),(143,'journals/1/articles/18/submission/final/18-12-163-1-6-20200720.doc','application/msword'),(144,'journals/1/articles/23/submission/review/revision/23-1-164-1-15-20200729.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(145,'journals/1/articles/22/submission/review/revision/22-1-165-1-15-20200729.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(146,'journals/1/articles/23/submission/final/23-1-166-1-6-20200729.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(147,'journals/1/articles/22/submission/final/22-1-167-1-6-20200729.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(148,'journals/1/articles/24/submission/24-1-169-1-2-20200813.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(149,'journals/1/articles/24/submission/review/24-1-170-1-4-20200813.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(150,'journals/1/articles/24/submission/review/attachment/24--171-1-5-20200815.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(151,'journals/1/articles/24/submission/review/revision/24-1-172-1-15-20200820.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(152,'journals/1/articles/24/submission/final/24-1-173-1-6-20200820.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(153,'journals/1/articles/22/submission/productionReady/22-1-174-1-11-20200729.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(154,'journals/1/articles/23/submission/productionReady/23-1-175-1-11-20200729.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(155,'journals/1/articles/19/submission/proof/19-1-176-1-10-20200826.pdf','application/pdf'),(156,'journals/1/articles/20/submission/proof/20-1-177-1-10-20200826.pdf','application/pdf'),(157,'journals/1/articles/23/submission/proof/23-1-179-1-10-20200826.pdf','application/pdf'),(158,'journals/1/articles/18/submission/proof/18-1-180-1-10-20200826.pdf','application/pdf'),(159,'journals/1/articles/24/submission/proof/24-1-181-1-10-20200826.pdf','application/pdf'),(160,'journals/1/articles/25/submission/25-1-182-1-2-20200908.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(161,'journals/1/articles/26/submission/26-3-183-1-2-20200909.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(162,'journals/1/articles/25/submission/review/25-1-184-1-4-20200908.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(163,'journals/1/articles/21/submission/review/revision/21-1-185-1-15-20200916.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(164,'journals/1/articles/26/submission/review/26-3-186-1-4-20200909.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(165,'journals/1/articles/28/submission/28-1-189-1-2-20201006.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(166,'journals/1/articles/26/submission/review/attachment/26--190-1-5-20201007.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(167,'journals/1/articles/29/submission/29-1-191-1-2-20201007.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(168,'journals/1/articles/28/submission/review/28-1-192-1-4-20201006.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(169,'journals/1/articles/29/submission/review/29-1-193-1-4-20201007.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(170,'journals/1/articles/28/submission/review/attachment/28--194-1-5-20201015.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(171,'journals/1/articles/29/submission/review/attachment/29--195-1-5-20201017.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(172,'journals/1/articles/28/submission/review/revision/28-1-196-1-15-20201020.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(173,'journals/1/articles/28/submission/review/revision/28-1-196-2-15-20201020.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(174,'journals/1/articles/28/submission/review/revision/28-1-196-3-15-20201020.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(175,'journals/1/articles/28/submission/query/28-12-197-1-18-20201020.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(176,'journals/1/articles/30/submission/30-12-198-1-2-20201022.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(177,'journals/1/articles/29/submission/review/revision/29-1-199-1-15-20201024.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(178,'journals/1/articles/30/submission/review/30-12-200-1-4-20201022.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(179,'journals/1/articles/30/submission/review/attachment/30--201-1-5-20201107.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(180,'journals/1/articles/21/submission/final/21-1-202-1-6-20200916.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(181,'journals/1/articles/28/submission/final/28-1-203-1-6-20201020.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(182,'journals/1/articles/29/submission/final/29-1-204-1-6-20201024.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(183,'journals/1/articles/28/submission/proof/28-1-207-1-10-20201118.pdf','application/pdf'),(184,'journals/1/articles/22/submission/proof/22-1-208-1-10-20201119.pdf','application/pdf'),(185,'journals/1/articles/32/submission/32-1-211-1-2-20201206.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(186,'journals/1/articles/33/submission/33-1-212-1-2-20210102.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(187,'journals/1/articles/33/submission/review/33-1-213-1-4-20210102.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(188,'journals/1/articles/32/submission/review/32-1-214-1-4-20201206.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(189,'journals/1/articles/29/submission/copyedit/29-1-215-1-9-20210102.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(190,'journals/1/articles/29/submission/productionReady/29-1-216-1-11-20210102.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(191,'journals/1/articles/29/submission/proof/29-1-217-1-10-20210102.pdf','application/pdf'),(192,'journals/1/articles/33/submission/review/attachment/33--218-1-5-20210103.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(193,'journals/1/articles/32/submission/review/attachment/32--219-1-5-20210104.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(194,'journals/1/articles/32/submission/review/revision/32-1-221-1-15-20210105.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(195,'journals/1/articles/38/submission/38-1-223-1-2-20210203.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(196,'journals/1/articles/38/submission/review/38-1-224-1-4-20210203.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(197,'journals/1/articles/38/submission/review/attachment/38--225-1-5-20210210.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(198,'journals/1/articles/38/submission/review/revision/38-1-226-1-15-20210212.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(199,'journals/1/articles/38/submission/review/revision/38-1-226-2-15-20210212.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(200,'journals/1/articles/38/submission/review/revision/38-1-226-3-15-20210212.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(201,'journals/1/articles/38/submission/review/revision/38-1-226-4-15-20210220.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(202,'journals/1/articles/33/submission/review/revision/33-1-227-1-15-20210219.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(203,'journals/1/articles/33/submission/review/attachment/33--228-1-5-20210219.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(204,'journals/1/articles/33/submission/final/33-1-229-1-6-20210219.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(205,'journals/1/articles/33/submission/proof/33-1-230-1-10-20210219.pdf','application/pdf'),(206,'journals/1/articles/40/submission/40-1-231-1-2-20210220.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(207,'journals/1/articles/38/submission/final/38-1-232-1-6-20210212.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document'),(208,'journals/1/articles/32/submission/final/32-1-233-1-6-20210105.docx','application/vnd.openxmlformats-officedocument.wordprocessingml.document');
/*!40000 ALTER TABLE `files` 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=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;
/*!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,'article=>dc11','plugins.metadata.dc11.articleAdapter.displayName','plugins.metadata.dc11.articleAdapter.description','class::classes.submission.Submission','metadata::plugins.metadata.dc11.schema.Dc11Schema(ARTICLE)'),(2,'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)'),(5,'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)'),(6,'article=>datacite-xml','plugins.importexport.datacite.displayName','plugins.importexport.datacite.description','class::classes.submission.Submission','xml::schema(http://schema.datacite.org/meta/kernel-4/metadata.xsd)'),(7,'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)'),(8,'article=>doaj-xml','plugins.importexport.doaj.displayName','plugins.importexport.doaj.description','class::classes.submission.Submission[]','xml::schema(plugins/importexport/doaj/doajArticles.xsd)'),(9,'article=>doaj-json','plugins.importexport.doaj.displayName','plugins.importexport.doaj.description','class::classes.submission.Submission','primitive::string'),(10,'article=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.submission.Submission[]','xml::schema(plugins/importexport/native/native.xsd)'),(11,'native-xml=>article','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.submission.Submission[]'),(12,'issue=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.issue.Issue[]','xml::schema(plugins/importexport/native/native.xsd)'),(13,'native-xml=>issue','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.issue.Issue[]'),(14,'issuegalley=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.issue.IssueGalley[]','xml::schema(plugins/importexport/native/native.xsd)'),(15,'native-xml=>issuegalley','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.issue.IssueGalley[]'),(16,'author=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.article.Author[]','xml::schema(plugins/importexport/native/native.xsd)'),(17,'native-xml=>author','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.article.Author[]'),(18,'SubmissionFile=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.submission.SubmissionFile','xml::schema(plugins/importexport/native/native.xsd)'),(19,'SubmissionArtworkFile=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.submission.SubmissionArtworkFile','xml::schema(plugins/importexport/native/native.xsd)'),(20,'SupplementaryFile=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::lib.pkp.classes.submission.SupplementaryFile','xml::schema(plugins/importexport/native/native.xsd)'),(21,'native-xml=>SubmissionFile','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.submission.SubmissionFile'),(22,'native-xml=>SubmissionArtworkFile','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.submission.SubmissionArtworkFile'),(23,'native-xml=>SupplementaryFile','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::lib.pkp.classes.submission.SupplementaryFile'),(24,'article-galley=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.article.ArticleGalley','xml::schema(plugins/importexport/native/native.xsd)'),(25,'native-xml=>ArticleGalley','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.article.ArticleGalley[]'),(29,'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)'),(30,'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[]'),(31,'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)'),(32,'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[]'),(33,'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)'),(34,'article=>crossref-xml','plugins.importexport.crossref.displayName','plugins.importexport.crossref.description','class::classes.submission.Submission[]','xml::schema(https://www.crossref.org/schemas/crossref4.3.6.xsd)'),(35,'article=>pubmed-xml','plugins.importexport.pubmed.displayName','plugins.importexport.pubmed.description','class::classes.submission.Submission[]','xml::dtd'),(36,'publication=>native-xml','plugins.importexport.native.displayName','plugins.importexport.native.description','class::classes.publication.Publication','xml::schema(plugins/importexport/native/native.xsd)'),(37,'native-xml=>Publication','plugins.importexport.native.displayName','plugins.importexport.native.description','xml::schema(plugins/importexport/native/native.xsd)','class::classes.publication.Publication');
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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 */;
/*!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,
  `filter_group_id` bigint(20) NOT NULL DEFAULT 0,
  `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,
  PRIMARY KEY (`filter_id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;
/*!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,1,0,'Extract metadata from a(n) Article','plugins.metadata.dc11.filter.Dc11SchemaArticleAdapter',0,0,0),(2,2,0,'MODS 3.4','lib.pkp.plugins.metadata.mods34.filter.Mods34DescriptionXmlFilter',0,0,0),(5,5,0,'DataCite XML export','plugins.importexport.datacite.filter.DataciteXmlFilter',0,0,0),(6,6,0,'DataCite XML export','plugins.importexport.datacite.filter.DataciteXmlFilter',0,0,0),(7,7,0,'DataCite XML export','plugins.importexport.datacite.filter.DataciteXmlFilter',0,0,0),(8,8,0,'DOAJ XML export','plugins.importexport.doaj.filter.DOAJXmlFilter',0,0,0),(9,9,0,'DOAJ JSON export','plugins.importexport.doaj.filter.DOAJJsonFilter',0,0,0),(10,10,0,'Native XML submission export','plugins.importexport.native.filter.ArticleNativeXmlFilter',0,0,0),(11,11,0,'Native XML submission import','plugins.importexport.native.filter.NativeXmlArticleFilter',0,0,0),(12,12,0,'Native XML issue export','plugins.importexport.native.filter.IssueNativeXmlFilter',0,0,0),(13,13,0,'Native XML issue import','plugins.importexport.native.filter.NativeXmlIssueFilter',0,0,0),(14,14,0,'Native XML issue galley export','plugins.importexport.native.filter.IssueGalleyNativeXmlFilter',0,0,0),(15,15,0,'Native XML issue galley import','plugins.importexport.native.filter.NativeXmlIssueGalleyFilter',0,0,0),(16,16,0,'Native XML author export','plugins.importexport.native.filter.AuthorNativeXmlFilter',0,0,0),(17,17,0,'Native XML author import','plugins.importexport.native.filter.NativeXmlAuthorFilter',0,0,0),(18,21,0,'Native XML submission file import','plugins.importexport.native.filter.NativeXmlArticleFileFilter',0,0,0),(19,22,0,'Native XML submission file import','plugins.importexport.native.filter.NativeXmlArtworkFileFilter',0,0,0),(20,23,0,'Native XML submission file import','plugins.importexport.native.filter.NativeXmlSupplementaryFileFilter',0,0,0),(21,18,0,'Native XML submission file export','lib.pkp.plugins.importexport.native.filter.SubmissionFileNativeXmlFilter',0,0,0),(22,19,0,'Native XML submission file export','plugins.importexport.native.filter.ArtworkFileNativeXmlFilter',0,0,0),(23,20,0,'Native XML submission file export','plugins.importexport.native.filter.SupplementaryFileNativeXmlFilter',0,0,0),(24,24,0,'Native XML representation export','plugins.importexport.native.filter.ArticleGalleyNativeXmlFilter',0,0,0),(25,25,0,'Native XML representation import','plugins.importexport.native.filter.NativeXmlArticleGalleyFilter',0,0,0),(29,29,0,'User XML user export','lib.pkp.plugins.importexport.users.filter.PKPUserUserXmlFilter',0,0,0),(30,30,0,'User XML user import','lib.pkp.plugins.importexport.users.filter.UserXmlPKPUserFilter',0,0,0),(31,31,0,'Native XML user group export','lib.pkp.plugins.importexport.users.filter.UserGroupNativeXmlFilter',0,0,0),(32,32,0,'Native XML user group import','lib.pkp.plugins.importexport.users.filter.NativeXmlUserGroupFilter',0,0,0),(33,33,0,'Crossref XML issue export','plugins.importexport.crossref.filter.IssueCrossrefXmlFilter',0,0,0),(34,34,0,'Crossref XML issue export','plugins.importexport.crossref.filter.ArticleCrossrefXmlFilter',0,0,0),(35,35,0,'ArticlePubMedXmlFilter','plugins.importexport.pubmed.filter.ArticlePubMedXmlFilter',0,0,0),(36,36,0,'Native XML Publication export','plugins.importexport.native.filter.PublicationNativeXmlFilter',0,0,0),(37,37,0,'Native XML publication import','plugins.importexport.native.filter.NativeXmlPublicationFilter',0,0,0);
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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) NOT NULL,
  `enabled` tinyint(4) NOT NULL DEFAULT 1,
  `category` bigint(20) NOT NULL DEFAULT 1,
  `dependent` tinyint(4) NOT NULL DEFAULT 0,
  `supplementary` smallint(6) NOT NULL DEFAULT 0,
  `entry_key` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`genre_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*!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 `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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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,
  `url_path` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`galley_id`),
  KEY `issue_galleys_issue_id` (`issue_id`),
  KEY `issue_galleys_url_path` (`url_path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,'','pub-id::doi','10.35916/thmr.v1i1','string'),(1,'en_US','coverImage','cover_issue_1_en_US.png','string'),(1,'en_US','coverImageAltText','','string'),(1,'en_US','description','<p>March 2019</p>','string'),(1,'en_US','title','Tropical Health and Medical Research','string'),(3,'','pub-id::doi','10.35916/thmr.v1i2','string'),(3,'en_US','coverImage','cover_issue_3_en_US.png','string'),(3,'en_US','description','<p>August 2019</p>','string'),(3,'en_US','title','Tropical Health and Medical Research','string'),(4,'','pub-id::doi','10.35916/thmr.v0i0','string'),(4,'en_US','coverImage','cover_issue_4_en_US.png','string'),(4,'en_US','description','<h2>March 2020</h2>','string'),(4,'en_US','title','Tropical Health And Medical Research','string'),(5,'','pub-id::doi','10.35916/thmr.v0i0','string'),(5,'en_US','coverImage','cover_issue_5_en_US.png','string'),(5,'en_US','description','<p>August 2020</p>','string'),(5,'en_US','title','Tropical Health and Medical Research','string'),(6,'','pub-id::doi','10.35916/thmr.v0i0','string'),(6,'en_US','description','','string'),(6,'en_US','title','Online First Article','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(40) 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,
  `last_modified` 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,
  `url_path` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`issue_id`),
  KEY `issues_journal_id` (`journal_id`),
  KEY `issues_url_path` (`url_path`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!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',2019,1,0,'2019-03-31 00:00:00',NULL,'2020-08-31 13:23:53',1,NULL,1,1,1,1,NULL,NULL,NULL),(3,1,1,'2',2019,1,0,'2019-08-31 00:00:00',NULL,'2020-08-31 13:27:17',1,NULL,1,1,1,1,NULL,NULL,NULL),(4,1,2,'1',2020,1,0,'2020-02-27 00:00:00',NULL,'2020-08-31 13:26:48',1,NULL,1,1,1,1,NULL,NULL,NULL),(5,1,2,'2',2020,1,0,'2020-05-12 00:00:00',NULL,'2020-08-31 13:24:59',1,NULL,1,1,1,1,NULL,NULL,NULL),(6,1,0,'0',2021,1,1,'2020-11-18 10:10:52',NULL,'2020-11-18 10:10:52',1,NULL,0,0,1,1,NULL,NULL,NULL);
/*!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` bigint(20) 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=InnoDB DEFAULT CHARSET=utf8;
/*!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 (516,7,1,'2019-08-30 04:15:14'),(516,9,1,'2019-08-30 08:01:38'),(516,13,1,'2020-02-19 08:33:41'),(516,12,1,'2020-02-18 23:00:52'),(516,14,1,'2020-02-17 13:43:55'),(516,16,1,'2020-02-19 07:24:16'),(516,15,1,'2020-02-19 07:27:36'),(516,22,1,'2020-03-19 09:55:30'),(516,23,1,'2020-03-19 09:55:47'),(516,24,5,'2020-04-25 09:32:08'),(516,24,1,'2020-04-25 09:33:11'),(516,25,1,'2020-04-25 10:00:22'),(516,27,1,'2020-05-27 09:35:38'),(516,28,1,'2020-06-17 10:31:30'),(516,41,1,'2021-01-03 17:26:03');
/*!40000 ALTER TABLE `item_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jobs`
--

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(255) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) unsigned NOT NULL,
  `reserved_at` int(10) unsigned DEFAULT NULL,
  `available_at` int(10) unsigned NOT NULL,
  `created_at` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` 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` mediumtext DEFAULT NULL,
  `setting_type` varchar(6) DEFAULT NULL,
  UNIQUE KEY `journal_settings_pkey` (`journal_id`,`locale`,`setting_name`),
  KEY `journal_settings_journal_id` (`journal_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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,'','citations','request',NULL),(1,'','contactEmail','leka.zns@gmail.com','string'),(1,'','contactName','Leka Lutpiatina','string'),(1,'','contactPhone','08125173861','string'),(1,'','copySubmissionAckAddress','','string'),(1,'','copySubmissionAckPrimaryContact','0','bool'),(1,'','defaultReviewMode','2','int'),(1,'','emailSignature','<br/>\n________________________________________________________________________<br/>\n<a href=\"{$contextUrl}\">{$contextName}</a>','string'),(1,'','enableAnnouncements','1',NULL),(1,'','enableOai','1',NULL),(1,'','itemsPerPage','25','int'),(1,'','keywords','request',NULL),(1,'','mailingAddress','<a href=\"http://www.medlabtechnojournal.com/index.php/JAK/location\">Komplek Citra Persada Asri, Jl. Lestari 2, No.59, Banjarbaru, Kalimantan Selatan</a>','string'),(1,'','membershipFee','0','int'),(1,'','navItems','N;','object'),(1,'','numAnnouncementsHomepage','1',NULL),(1,'','numPageLinks','10','int'),(1,'','numWeeksPerReview','4','int'),(1,'','onlineIssn','2684-740X','string'),(1,'','printIssn','','string'),(1,'','publicationFee','0','int'),(1,'','publisherInstitution','Baiman Bauntung Batuah Center','string'),(1,'','purchaseArticleFee','0','int'),(1,'','rtAbstract','1','bool'),(1,'','rtAddComment','1','bool'),(1,'','rtCaptureCite','1','bool'),(1,'','rtDefineTerms','1','bool'),(1,'','rtEmailAuthor','1','bool'),(1,'','rtEmailOthers','1','bool'),(1,'','rtPrinterFriendly','1','bool'),(1,'','rtSupplementaryFiles','1','bool'),(1,'','rtViewMetadata','1','bool'),(1,'','sidebar','[\"bilahkanan\",\"WebFeedBlockPlugin\",\"makesubmissionblockplugin\"]',NULL),(1,'','supportedFormLocales','[\"en_US\"]','object'),(1,'','supportedLocales','{\"2\":\"en_US\"}','object'),(1,'','supportedSubmissionLocales','[\"en_US\"]','object'),(1,'','supportEmail','apinaga53@gmail.com','string'),(1,'','supportName','Ricko Dharmadi Utama','string'),(1,'','supportPhone','082256602225','string'),(1,'','themePluginPath','default','string'),(1,'en_US','about','<p style=\"text-align: justify;\">Tropical Health and Medical Research, with registered number ISSN 2684-740X (online) is a scientific journal published by Baiman Bauntung Batuah Center Banjarmasin.&nbsp;Tropical Health and Medical Research is an open access, peer-reviewed journal that publishes original research on all aspects of tropical medicine and global health. The journal welcomes clinical, epidemiological and laboratory.&nbsp;</p>\r\n<p>Key topics include:&nbsp;&nbsp;Viral, bacterial and parasitic infectious diseases,&nbsp;Vectors,&nbsp;Noncommunicable diseases,&nbsp;Epidemiology and population health,&nbsp;Drug, vaccine and diagnostic tool development,&nbsp;Other health issues related to the tropics</p>\r\n<p style=\"text-align: justify;\">Please read these guidelines carefully. Authors who want to submit their manuscript to the editorial office of Tropical Health and Medical Research should obey the writing guidelines. If the manuscript submitted is not appropriate with the guidelines or written in a different format, it will BE REJECTED by the editors before further reviewed. The editors will only accept the manuscripts which meet the assigned format.</p>\r\n<p>&nbsp;</p>','string'),(1,'en_US','acronym','THMR','string'),(1,'en_US','additionalHomeContent','<p style=\"text-align: center;\"><strong>Indexed Online :</strong></p>\r\n<p style=\"text-align: center;\"><strong>&nbsp;</strong></p>\r\n<p style=\"text-align: center;\"><a href=\"http://garuda.ristekbrin.go.id/journal/view/15812\" target=\"_blank\" rel=\"noopener\"><img style=\"vertical-align: middle;\" src=\"http://garuda.ristekdikti.go.id/assets/img/garuda1.png\" alt=\"\" width=\"250\" height=\"80\"></a><a href=\"https://search.crossref.org/?q=2684-740X\" target=\"_blank\" rel=\"noopener\"><img style=\"vertical-align: middle;\" src=\"https://assets.crossref.org/logo/crossref-logo-landscape-200.png\" alt=\"\" width=\"250\" height=\"57\" data-reactid=\"28\"></a><a href=\"https://tinyurl.com/googlescholarTHMR\" target=\"_blank\" rel=\"noopener\"><img style=\"vertical-align: middle;\" src=\"https://scholar.google.com/intl/en/scholar/images/1x/scholar_logo_64dp.png\" alt=\"\" width=\"250\" height=\"80\"></a><a href=\"https://app.dimensions.ai/discover/publication?search_text=10.35916%2Fthmr.v1i2&amp;search_type=kws&amp;search_field=doi\" target=\"_blank\" rel=\"noopener\"><img style=\"vertical-align: middle;\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAW8AAACJCAMAAADUiEkNAAABtlBMVEX///8zMzMvLy/8/Pzx8fEqKir19fUjIyM3Nze/v7/g4ODn5+dfX19ycnLR0dGWlpbKysqGhoa3t7ecnJxISEgcHBxqamqQkJCpqalAQEDj7PV+fn5RUVEcQpZlZWUYhMc5q+Ell9bwzQAAVabfzQBrksSMrtRVwOveAF3SAHYAdL743evsXgCl2PDfAFLgAES6yQD8uAD977399uLl55LmMADGywD2mwAqLIn8xQDvcQDp2E2tBoD3owBxxsn0kQDiABn837WKLYZ4xbrzyN/cAGuTy+pixd3R6vft8LziAC/9xin5tCrxgQCZxVKOxYToTgCJyaCUxW7K10P3pCqdEn5+x6vv8c/86NalxyXvgKHztcZeKIe926/B1Of94Zv40NLE5uGQ1NfnZJas0or74YX2v6/TiriZgLLujJ7MwdnaqMxGZqX7x0b0rarmQVT1pVn4y6PPO5DhR4jA4cfsb1Pyjim/SZfvgWfzpYAAAADOdK3seIb61WXsXXx5R5jucS/vgHnb32j0s5e71neXbqjwhkD4t13xk4npRCTxlGDtXl+XQJHPr8z80HgQFIL4voHqS0NtupARAAARBElEQVR4nO2bh3/URhbH1ftqVbbJ2ix2gtu5UIwhLoApLrTY4AuYahJaCDWkh1RSSHJ3yeU/vjejNiq7a0yCc/7M7+5DbGlGb/TV05v3RmOGoaKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiovo/VU8nCVs9uu2mnrGB/nZ6D/Q+v9Uj3FaSBvp27PgH0huhXgv0JtKVK1e+eX+rh7itdA1wY+Bp2hFxAP4eDSl/nnoGEO4dA2ndj3j/Th38z9W1PuzfC3wohuGv9b8R0P79ynvme1euHP2xZ6tHuW3UM9jX19cLyEOkEsAOYsqb9wfQsfevHD169D9bOcRtpTHAPdYDvAfAsXsW4jnz/kAYtHXE+98jWzvKbaOl3r6+BZ4Zg4gyttAX0r7fP5AEEOkb4P32PWkLB7l9JC309fUuwQ9xSviP+/0LqXREenoUAT++NQPcZlrq7e0dQ+XMYJAT7hi4lp0a+f8g3G8/LcoJeU0lZZmmphcVR7ypqvqfP/qXEYzceuVGpYXe3sGewM0x8B0L+UzERLhnZ4scXPerMinOa/oNVcsh15rVqvtX3MDmBSOvvvKyYixwb4S7r29wAIUUMnQH0v8NtGdnPy2YMrUSp3AcJ0b/RxKVmmtmiJtNlvP/srvYlHxOqWqv2KY02Nu7IDFLC72I9xikgmjC7B9Iz43C07dnP/10dvZp/gLAm/PrsWzfUGSO5VjDTd8K5Y0F7j24xCwBdcwb15ooP+lP1ZPSnbdn7zydfTJ7L3cB4C2rQiJdM1W7IrOcUrJIFzebctX+q+/mxeTL4hevOJ4sDQ4OjmHcvQuDmDcj9QyAi7/2Rv8S0e44+Pa9J8PDw7krIN5m+hAvaE6FY9mmQwDnnXL5VTtTF1luufGKTY4B76WeRcA9yAP0MXxQuoaAv3b/WtJuZHb2yfE7wDvn4AW8GZSNtESF9cgTvPR3y995XnrFy8w9i4uLYz0LQHpRYmLeoAFUzr/5Y+yQI0+GZ4+PfAjAs9CKeUPIL4ssq/zNPHqr9S7wXlrEMYVJ8Wak/tfQOuy9MGUeeTo8fJm5Mzw//yRziXa8GcZRWNb7u/n0lmoJcCPki0G9Q/IGkP1vomWTewI6x18eHr4xwn84Pz+fScLb82YaHit2SUnwYmTXQ6mTHUNAl9MbUTcTmzcivXvo0OKhxcVD7+D+i4GbJ5d9/0dc5dxDWffx4fknI+jf+Rvpi3TgzdcVpRqfk/Q4FxCCHwXddBzH1IkcQdCt4FDRHUF71XHUVAdkJmwt6VrbzihtQpWvQL5vvKBnXj8+MOFAy+yZ8KpwoXAMxUasrBFC7xzCeved4Nd3M7zhAvcg534y/OQ4Jj0M3O8MDc1fTrXpwJvRWizXin5ptGohJ6Fs1HlGUH0PV6Seb4UnJMtW8CHFV3OJmh61Rx3IlQHVKEFZLpiuIQadS05mRUG37CaHymCv5lpJ6Wv5Rqri5bXYBNt0TXIEvNoqmchIvRKNIbs6oal2Ew8AjJhFKxfCMVCCGwXzsWybkTsoCRy+cXzkxtAQgObnh4a+TlWZnXgzDQjh4UmpJVbV4EfTEKu8ZotQFolQkcK/dTyv6q4XH+L8dIEqWTVURkUdfMJkSeTKjFauoOI2PF1zBLKrHxW+qEHLiSbxMlyPMKE7TdKEYpuJnwq2XHUYrc6KSYMSufgioc6xEfCXXKYgvXMMK8LNQHRZyjZieMgChyBqXwLel8D+5fGhobtkg468hSbLlkJzNaiLgh9NA56CASP3SvVyvYQgl2B4ms+youeXg0Nii7yq4CrQqgLty/Ua+rGpxo+jxCl1GAVUWC3bhc4VVN6Wk+DVgAOi1/JtvwQ1LsvJtXAcZYVVEhOWDwkVNuHWfdywmTw1weZEx2zhC9nl0IjiJDBdqDe40Aj2l3S1B/roPFbiCMcOJexTxC8NYY1/CI7N3xjH/90Yb6YOKYpWwFsxOFaxVU2C2khFN2pLgg0jjg7ZMNWWkqEJgIarQCyQeDhr2aiYUgneLYS75JgCPu0iGOXotONBXlq2IKxCeHXqTQRSCnkrCW8Hn2hYmiDxEkRxH/FzoyEAb86vgdk6NMBGyuiyMfAGCyMKjViqrYgw/HRMEc6fPXv+/FkitB87X8gbml4GyMB7CHEeGRofv0T06szbAhdqFPFGg41uRq/LrFeG2KO40RgFF4DHwZWHc2Ipeb0FB+7ciKwCb/Q0GvH9SSo8TTZ82zWgVLGSrpqryOG6AunfapNVIKwlPqmr8AC8RtgReMPD4SrJtCJZ8O5WIiPwc0uLjcB8IXPllH/zH50FXSVnUjjyURtsI5c/3DU+vuvGJdDQ+K4hIifszJvxWKUejC/NWxGJYl+CF9WrsJybDEeqA4zo5gBGxl1U9EqEpzHvpkPeimWArwY/QhUgqmRXyWyEHQn/NlusIjvpvMKsiawXdsW8WS+1XA6+xJaCm4DMl02NT7CctHtLV88uL3+UMnBzefkC00b8yF3gvWscqKP/EhG8C+84gGd4p9cKNRm5qE8OERrJ4euq+xzbTA+fb8gxixI8PaWRjpZOhZUDOA0x25eJmib+zZdZpdrIZnimwXGtoC/mzTnpFnV4c4Ix2ApXy3TOXEy4urx89mbq4M1z564y7cTfBcyx7iYdu/AuceFIMrzFVL7Htzgl5hfdTZxLql4Ejxg/eHDo4GgB3s+kj3wpWv1FvNssAib+DbFBdvMJtQrvRsAY8U77A7olWWGDl9fuutbMA+/l5RTfm2+91Zb3yNcnAfP4EIoqICIF78LbBxcJqpEUb85INyuLCs5RCME7GtDgXZEzssh4B3Lk4CEg/86t84HvVoLLQFBo8x0v8W/UqOCh6DBLBrM25q1mz0MWEwQUCH7NYhuxLiyfW0479A9teQuX5uZOntx1Epnmh3ad/JIY2wZ44x/SvGUn3cySFTHjYOBzVXxEa3Gyk3M+HSJGEO8hNzFyI7AqrIjPwssh2sUFX8wb7iFrPRB05rAXAG/WyKXUrhgehBxIdLJn0+KvnkMiQsqzixf3FbUUbs9NIt4ncX7ycG7XOFlhduddFE+y31X0qqJkBqxBK+yYlle0zogzNHwehY4cUB18Dw8Lgr8i1rSikBLzhofDFq5kopvDjxpZq+euYUXvmA4TPmdrHZd3hZvn3gLdnIgOrO7eXcBbuP4voD336NHc3JdwVyMA/kvysl14G8XzZTUDSIDpr4B34DwiV8tHBN6BwIwNg3/nPxxJMFEH5iwDF6SqllvxiHmr8byYNVLmODvkLebmU0arRmUASh5xVVm48BPowltYP0TAi3hLa59Ngv64e/m7ucnLcK2v504+up6yual8UM7yFqOpPrlwyBstpLccNSd4mb2Qt1JmcoI5Iryg5eNlgorvmFrKbMzbkaO5N6sGy9VQH+CdDYEMeivZSnhUreEav2JnjRC6iXBfvPhDmAWu7t6f5b32+SjQ/uXn68z1P+bmrkM5D4ElVc534W22qXfEjfOGSQvSBDknEbIL/DIX8uYT3lAe+R6q1dG2AXJdI+ItuaJYLobkeEEx2pZ3XOZqbs3DK0IeGCmeoCcANtKzAPjq/gzvtQ9+Gh1dWfnsNvj19cm5P64za0D9UXpTRGfebvxR7eV4c2KR2I3xRsViQqMREyd5u5vkTYxai40ovlNI/CbAXr24e/cqBr66fyfJW1p/fGZ6dPTX22to+A8nJ78TmO8gkj/MYOnEWzLiEmzTvHFqUHaLFJTwG+CN1lotx68gGlwtyuUj3nxDFPOTIZajcMbG/BvfY2zE84t2bvGI977dAPwE/DaT4n3k+YEzZ6Z/wrTB3s+Tkw9RNJl7lJkQOvJGa0Wh4U3zBhqQmktFCoayId7okK6pviJCpR8OKYnfYq5gCtXggtxnI/6dGOHQ8k4R8BPAeh/6ZxVIz+xMeK89P33w8OHDH6yFdNc+nvzlugSZymR2i1Un3notKWw2zRtVedmKPKWN8mbwTo06BPJWtD4Y5SftLKC0xA3zk87zZdpITc5Xo1irKJic2L8fhe6E98St03sOHjjw21rsy2srkx+vPfxlcvKz7BU68S4T39M2z9tssmKnfZUvwBudaLBR6hnzBgu5BYNopMHNbSyexBL8/P1gTVxESSACvvPZzM7XMW/+1h7QgdN7iXZrQPr2x5Cr5HPQ9rxR1VWKftk8b6hYuDYVItaL8YYqnFOCfD3mjWunIgsOx1b0sMWG/Ru3h5SqcC/Rs937IXifWN2JhHnvnUK4T6+TraTPV1YeQgifvJ27wEb3Q2yeN+OwrJwv/zQ1WY99Id6QzweLS8n6CQy1WuDgaKBB4vKivKUWK5aLSp+J3TgL3Idovw68J25NId4P9qa7/7oy+jm498d5J2jHm0cll5Lc8kvwRutbOffTS2I5Xh/swDu/q6vO5XijL2X5CC414A6Ce+sST3JGEO/CFRlmH8QSyE5OzCDgX+09NTU1derBrUyjtdGVb79dmVxZy/dvs59Nh8yb84gS+CV483AtOVNN63WZC5f/O/LWy+XsXvRmVPIS33cg9HG5ZXLw+mjRpLN/6/V69mM9zMrFexMnoMx5BiX9hZnXsaamHuydyDZaG0WFz+T3BU+siLegOehzcGq/5kvwBhsQURpkxqbZMqtswL9Ram04ZDCS0HwZmCJ4CzawNVJPRkC4a1p0vlM+WOZkwyKHh7+QFM/xPAolKP3GwJF3r+dw89+PIuDfFrg35m0lKTHej1wH2ixbU8nhvwxv/EVftOMdIboKBpQo4erEW2ooeHtE1FUw0XvnBwMjv1+iR8pVnHjtQ0Afpbl4nbczbxf6crYVdRZMX1TYNhUUMwGRZAYhDnlPnfpqfe+R9OAfI96jt4sCEt5vX45Vt2tNEW3SaGb2278Ub7TIp3CVumOZpqk6Pou+7kcnO8cTF31354w6XvHCn+fFaCE7tR9CAw+HzNxVAxO2BzdRi/c0dIkneEcA2yqHRipi8mbkdQIcfB/PXADcMzM4Odlz6sH6OvEtU5qGwn7015zf43Giz1nEmgbe78IZrpkh+nK8mWB7EFsxDKMC5ZtIfI5vw5sL50vLRosaIudVKl6w/SRy2vT+E7TdB56M0jSMJl4GUeqJ+W7zJbwNwDgwghYKE2/IayKIKODeMxMTF9Yf7An0/Pn6kfDxTowC7+kjhb2zfy8li5WSa+XXJPla9YswoplGNc9bzny+ZASj+gUxC+lqS4x2ScksuffJrnIFf4hlyFGGh3a6ydFfFpHR3OVkj+yiuU05NsH5ZESW6tVqnrfwhRx5iW7alWh8sliy2gQTLMhNXp9ZB/dGSSA/MbH+1Z49Bw9CgfnP5//FkD9A/v15ccnBaw4p1dRyex3Du3HU8DhvOtnNR7zlWNleppOaAOCW3FLTU9Dfv6U+1+hO0fqnGZtDOznNhl8zjJbfMImthYLqZGKeZtVbFUXxjIwJbKQAITlqQTMbdguM2A2t8x8+8utBajITH+CP/Hb6AAAH5I8frzOPp6enfyqaLMPWpDqYKfzxRQ5JwZ8IZT9bFRtNH+Wlgp4FHduYaGsk/VuRkQKFueCtvaTWHxw8cBjpzCeAe/r7bheh2rjWo9x7KpgvDx7E8QSEeIOmH7d1b6oXF38r5j0VTpcB8cMB7+kzH2z1ELeXJjDwU4FOB/pnpE8++YTi/pPFp2L3Efjf3iOJ1rpOAVRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFT/AwYZNgwGTgR3AAAAAElFTkSuQmCC\" alt=\"\" width=\"250\" height=\"80\"></a></p>','string'),(1,'en_US','announcementsIntroduction','<p>While this website is being maintained, please be patient and wait for more information.</p>',NULL),(1,'en_US','authorInformation','Interested in submitting to this journal? We recommend that you review the <a href=\"http://medlabtechnojournal.com/index.php/mediatech/about\">About the Journal</a> page for the journal\'s section policies, as well as the <a href=\"http://medlabtechnojournal.com/index.php/mediatech/about/submissions#authorGuidelines\">Author Guidelines</a>. Authors need to <a href=\"http://medlabtechnojournal.com/index.php/mediatech/user/register\">register</a> with the journal prior to submitting or, if already registered, can simply <a href=\"http://medlabtechnojournal.com/index.php/index/login\">log in</a> and begin the five-step process.','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','clockssLicense','This journal utilizes the CLOCKSS 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://clockss.org/\">More...</a>','string'),(1,'en_US','contactAffiliation','Poltekkes Kemenkes Banjarmasin','string'),(1,'en_US','contactTitle','S.KM., M.Si','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,'en_US','description','<p style=\"text-align: justify;\">Tropical Health and Medical Research, with registered number ISSN 2684-740X (online) is a scientific journal published by Baiman Bauntung Batuah Center Banjarmasin.&nbsp;Tropical Health and Medical Research is an open access, peer-reviewed journal that publishes original research on all aspects of tropical medicine and global health. The journal welcomes clinical, epidemiological and laboratory.&nbsp;</p>\r\n<p>Key topics include:&nbsp;&nbsp;Viral, bacterial and parasitic infectious diseases,&nbsp;Vectors,&nbsp;Noncommunicable diseases,&nbsp;Epidemiology and population health,&nbsp;Drug, vaccine and diagnostic tool development,&nbsp;Other health issues related to the tropics</p>\r\n<p style=\"text-align: justify;\">Please read these guidelines carefully. Authors who want to submit their manuscript to the editorial office of Tropical Health and Medical Research should obey the writing guidelines. If the manuscript submitted is not appropriate with the guidelines or written in a different format, it will BE REJECTED by the editors before further reviewed. The editors will only accept the manuscripts which meet the assigned format.</p>','string'),(1,'en_US','editorialTeam','<h3>Editor in Chief</h3>\r\n<p><a href=\"https://scholar.google.co.id/citations?user=cYquMkgAAAAJ&amp;hl=en\">Leka Lutpiatina</a>, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=57204557330\">Scopus ID: 57204557330</a>) Department of Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin, Indonesia</p>\r\n<h3>Editorial Boards Regional Europe</h3>\r\n<p><a href=\"https://orcid.org/0000-0002-6574-273X\">Mehmet Sargın</a>, Selcuk University Medical School, Ordu University Medical School, Turkey<strong><br></strong></p>\r\n<p><a href=\"https://scholar.google.com/citations?hl=en&amp;user=YL8-b6gAAAAJ\">Yusuf Atakan Baltrak</a>, University of Health Sciences, Derince Training and Research Hospital, Pediatric Surgery Clinic, Turkey</p>\r\n<h3>Editorial Boards Regional Africa</h3>\r\n<p>Festus Abiose Olajubu, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=55542617600&amp;amp;eid=2-s2.0-84871814653\">Scopus ID: 55542617600</a>) Department of Microbiology, Adekunle Ajasin University, Akungba-Akoko, Ondo State, Nigeria</p>\r\n<p><a href=\"https://orcid.org/0000-0002-5463-9892\">Ahmed Bakheet Abd Alla</a>, Department of Parasitology and medical entomology College of medical laboratory science, Sudan University for Science and Technology, Khartoum, Sudan.</p>\r\n<h3>Editorial Boards Regional Asia</h3>\r\n<p><a href=\"https://scholar.google.com/citations?user=iEbo_RsAAAAJ&amp;hl=en\">Maria Tuntun</a>, Department of Medical Laboratory Technology Poltekkes Kemenkes Tanjung Karang, Indonesia</p>\r\n<p><a href=\"https://scholar.google.co.id/citations?user=iUGpsXUAAAAJ&amp;hl=id&amp;gmla=AJsN-F5x4chULbvAoSS_DtM2HvKU5oqOVKjZ6ALuhWdPG7M-Df81UC75dgFjiyyxiy02K_vby8XqyaCHlS7z-8_RjrPwWYxsT3cJP4npv2vwctSAYxkTzsRPoJyb4gLMU8fo4mwzqRyM&amp;sciund=2927044768074464995&amp;gmla=AJsN-F5Di2IDmug4JPwNGfFI_dHhneZxepRRfhf38wl5AcOZO78el_TmNoghQbSXn7hJqNo_9mNmpLjQ90vkXx4APEaOy-cN-TS51hBTdYci-r9EhaFb61o&amp;sciund=11851988707857351566&amp;gmla=AJsN-F7Md7Ehqhnx97GFnsjagMP_Hq-AcqUAzl8fEus9pQAd0dmJ-eWFhpoztlwalo9S_7iku7o067d9goq4Zhjv0AfIoZicBYCFfTvvhynxJ50B6VlBvOA&amp;sciund=350249199469912318\">M Ibraar Ayatullah</a>, Department of Medical Laboratory Technology Poltekkes Kemenkes Kupang, Indonesia</p>\r\n<p>Gita Indah Febriani,&nbsp;(<a href=\"https://www.scopus.com/authid/detail.uri?authorId=57208244806&amp;amp;eid=2-s2.0-85064203016\">Scopus ID: 57208244806</a>) Department of Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin, Indonesia</p>\r\n<p>Nudia Kurniati, (<a href=\"https://www.scopus.com/authid/detail.uri?origin=resultslist&amp;authorId=57211393741&amp;zone=\">Scopus ID: 57211393741</a>) Department of Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin, Indonesia</p>\r\n<p>Pebri Fitria Lestari, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=57218120652&amp;amp;eid=2-s2.0-85087988446\">Scopus ID: 57218120652</a>) Department of Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin, Indonesia</p>\r\n<p>Dwi Intan Purnama Sari, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=57218128835&amp;amp;eid=2-s2.0-85087988446\">Scopus ID: 57218128835</a>) Department of Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin, Indonesia</p>\r\n<div class=\"member\">&nbsp;</div>','string'),(1,'en_US','favicon','{\"name\":\"logo thmr 2.png\",\"uploadName\":\"favicon_en_US.png\",\"width\":1700,\"height\":1000,\"dateUploaded\":\"2020-11-03 19:53:30\",\"altText\":\"\"}','object'),(1,'en_US','homepageImage','{\"name\":\"cover_issue coba 3 2020.png\",\"uploadName\":\"homepageImage_en_US.png\",\"width\":1275,\"height\":1400,\"dateUploaded\":\"2020-09-01 11:27:49\",\"altText\":\"\"}','object'),(1,'en_US','journalThumbnail','{\"name\":\"logo thmr 2.png\",\"uploadName\":\"journalThumbnail_en_US.png\",\"width\":1700,\"height\":1000,\"dateUploaded\":\"2020-11-03 19:53:42\",\"altText\":\"\"}','object'),(1,'en_US','librarianInformation','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>).','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://www.lockss.org/\">More...</a>','string'),(1,'en_US','metaCitations','1','string'),(1,'en_US','name','Tropical Health and Medical Research','string'),(1,'en_US','openAccessPolicy','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.','string'),(1,'en_US','pageFooter','<div class=\"pkp_footer_content\"><center>\r\n<p><span style=\"font-size: small;\">Published by Baiman Bauntung Batuah Center Banjarmasin Indonesia.</span>&nbsp;<br><span style=\"font-size: small;\">This work by Tropical Health and Medicine Research&nbsp; is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.</span></p>\r\n<p><a href=\"http://creativecommons.org/licenses/by-sa/4.0/\" rel=\"license\"><img src=\"https://i.creativecommons.org/l/by-sa/4.0/88x31.png\" alt=\"Creative Commons License\"></a></p>\r\n<div id=\"standardFooter\">\r\n<p>ISSN: 2684-740X</p>\r\n</div>\r\n</center></div>\r\n<div class=\"pkp_brand_footer\" role=\"complementary\" aria-label=\"About this Publishing System\">&nbsp;</div>','string'),(1,'en_US','pageHeaderLogoImage','{\"name\":\"logo thmr 2.png\",\"uploadName\":\"pageHeaderLogoImage_en_US.png\",\"width\":1700,\"height\":1000,\"dateUploaded\":\"2020-11-03 19:52:43\",\"altText\":\"\"}','object'),(1,'en_US','privacyStatement','<p>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.</p>','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','readerInformation','We encourage readers to sign up for the publishing notification service for this journal. Use the <a href=\"http://medlabtechnojournal.com/index.php/mediatech/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=\"http://medlabtechnojournal.com/index.php/mediatech/about/submissions#privacyStatement\">Privacy Statement</a>, which assures readers that their name and email address will not be used for other purposes.','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','submissionChecklist','[{\"order\":1,\"content\":\"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).\"},{\"order\":2,\"content\":\"The submission file is in OpenOffice, Microsoft Word, or RTF document file format.\"},{\"order\":3,\"content\":\"Where available, URLs for the references have been provided.\"},{\"order\":4,\"content\":\"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.\"},{\"order\":5,\"content\":\"The text adheres to the stylistic and bibliographic requirements outlined in the Author Guidelines.\"}]','object');
/*!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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!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,'JAK',1,'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=InnoDB DEFAULT CHARSET=utf8;
/*!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 */;
/*!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_context_id` (`context_id`),
  KEY `library_files_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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 */;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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=InnoDB DEFAULT CHARSET=utf8;
/*!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,
  `context_id` bigint(20) NOT NULL,
  `pkp_section_id` bigint(20) DEFAULT NULL,
  `assoc_object_type` bigint(20) DEFAULT NULL,
  `assoc_object_id` bigint(20) DEFAULT NULL,
  `submission_id` bigint(20) DEFAULT NULL,
  `representation_id` bigint(20) DEFAULT NULL,
  `assoc_type` bigint(20) NOT 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,
  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=InnoDB DEFAULT CHARSET=utf8;
/*!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 ('usage_events_20190116.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190116','201901',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20190117.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190117','201901',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190119.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190119','201901',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190121.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190121','201901',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190122.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190122','201901',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20190123.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190123','201901',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20190124.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190124','201901',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20190125.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190125','201901',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190126.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190126','201901',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190127.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190127','201901',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190128.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190128','201901',NULL,NULL,NULL,NULL,'ojs::counter',21),('usage_events_20190129.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190129','201901',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190130.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190130','201901',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190131.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190131','201901',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190201.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190201','201902',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190202.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190202','201902',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190203.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190203','201902',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190204.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190204','201902',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190205.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190205','201902',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190206.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190206','201902',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190207.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190207','201902',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190209.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190209','201902',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190211.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190211','201902',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190212.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190212','201902',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190214.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190214','201902',NULL,NULL,NULL,NULL,'ojs::counter',21),('usage_events_20190215.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190215','201902',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190216.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190216','201902',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190218.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190218','201902',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190219.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190219','201902',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190220.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190220','201902',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190221.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190221','201902',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20190222.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190222','201902',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190224.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190224','201902',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190223.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190223','201902',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190225.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190225','201902',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20190226.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190226','201902',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20190227.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190227','201902',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190228.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190228','201902',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190301.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190301','201903',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190302.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190302','201903',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190303.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190303','201903',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190305.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190305','201903',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190306.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190306','201903',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190307.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190307','201903',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190308.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190308','201903',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190309.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190309','201903',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190311.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190311','201903',NULL,NULL,NULL,NULL,'ojs::counter',23),('usage_events_20190310.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190310','201903',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190313.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190313','201903',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20190314.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190314','201903',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190318.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190318','201903',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190319.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190319','201903',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190320.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190320','201903',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190321.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190321','201903',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190322.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190322','201903',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190323.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190323','201903',NULL,NULL,NULL,NULL,'ojs::counter',36),('usage_events_20190324.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190324','201903',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190327.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190327','201903',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190326.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190326','201903',NULL,NULL,NULL,NULL,'ojs::counter',41),('usage_events_20190328.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190328','201903',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190329.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190329','201903',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190331.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190331','201903',NULL,NULL,NULL,NULL,'ojs::counter',24),('usage_events_20190331.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190331','201903',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190401.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20190401.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190401.log',1,1,259,1,5,6,515,31,'20190401','201904',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190401.log',1,1,259,1,3,8,515,33,'20190401','201904',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190401.log',1,1,259,1,1,NULL,1048585,1,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190401.log',1,1,259,1,2,NULL,1048585,2,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190401.log',1,1,259,1,3,NULL,1048585,3,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190401.log',1,1,259,1,5,NULL,1048585,5,'20190401','201904',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190402.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190402','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190403.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190403','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190404.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190404','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190406.log',1,1,259,1,1,5,515,30,'20190406','201904',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190407.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190407','201904',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190407.log',1,1,259,1,2,2,515,12,'20190407','201904',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190407.log',1,1,259,1,4,7,515,32,'20190407','201904',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190407.log',1,1,259,1,3,NULL,1048585,3,'20190407','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190407.log',1,1,259,1,5,NULL,1048585,5,'20190407','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190408.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190408.log',1,1,259,1,1,5,515,30,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190408.log',1,1,259,1,3,8,515,33,'20190408','201904',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190408.log',1,1,259,1,1,NULL,1048585,1,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190408.log',1,1,259,1,3,NULL,1048585,3,'20190408','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190409.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190409','201904',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190409.log',1,1,259,1,4,NULL,1048585,4,'20190409','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190410.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190410','201904',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190412.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190412','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190413.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190413','201904',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190413.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190413','201904',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190414.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190414.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190414','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190415.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190415','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190416.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190416','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190416.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190416','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190416.log',1,1,259,1,3,NULL,1048585,3,'20190416','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190417.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190417','201904',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20190417.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190417','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190418.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190418','201904',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20190418.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190418','201904',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20190419.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190419','201904',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190419.log',1,1,259,1,1,5,515,30,'20190419','201904',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190420.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190420','201904',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190420.log',1,1,259,1,5,NULL,1048585,5,'20190420','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190421.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190421','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190421.log',1,1,259,1,5,6,515,31,'20190421','201904',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190421.log',1,1,259,1,5,NULL,1048585,5,'20190421','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190423.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190423','201904',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190422.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190422','201904',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190424.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20190424.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190424.log',1,1,259,1,2,NULL,1048585,2,'20190424','201904',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190425.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190425.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190425.log',1,1,259,1,1,NULL,1048585,1,'20190425','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190427.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190427','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190428.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190428','201904',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190428.log',1,1,259,1,1,5,515,30,'20190428','201904',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190428.log',1,1,259,1,2,NULL,1048585,2,'20190428','201904',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190429.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190429','201904',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190430.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190430','201904',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190501.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190501','201905',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190501.log',1,1,259,1,4,7,515,32,'20190501','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190502.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190502','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190502.log',1,1,259,1,1,5,515,30,'20190502','201905',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190503.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190503','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190504.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190504','201905',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20190505.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190505','201905',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190505.log',1,1,259,1,3,NULL,1048585,3,'20190505','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190505.log',1,1,259,1,5,NULL,1048585,5,'20190505','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190506.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190506','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190508.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190508','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190508.log',1,1,259,1,1,5,515,30,'20190508','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190509.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190509','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190510.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190510','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190510.log',1,1,259,1,2,2,515,12,'20190510','201905',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190510.log',1,1,259,1,2,NULL,1048585,2,'20190510','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190511.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190511.log',1,1,259,1,1,NULL,1048585,1,'20190511','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190512.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190512','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190514.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190514.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190514','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190515.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190515','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190516.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190516.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190516.log',1,1,259,1,1,NULL,1048585,1,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190516.log',1,1,259,1,2,NULL,1048585,2,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190516.log',1,1,259,1,3,NULL,1048585,3,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190516.log',1,1,259,1,4,NULL,1048585,4,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190516.log',1,1,259,1,5,NULL,1048585,5,'20190516','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190517.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190517','201905',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190517.log',1,1,259,1,1,5,515,30,'20190517','201905',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190518.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190518','201905',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190519.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20190519.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190519.log',1,1,259,1,1,5,515,30,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190519.log',1,1,259,1,5,6,515,31,'20190519','201905',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190519.log',1,1,259,1,1,NULL,1048585,1,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190519.log',1,1,259,1,2,NULL,1048585,2,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190519.log',1,1,259,1,3,NULL,1048585,3,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190519.log',1,1,259,1,4,NULL,1048585,4,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190519.log',1,1,259,1,5,NULL,1048585,5,'20190519','201905',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190520.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190520','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190521.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190521','201905',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190522.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190522','201905',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190522.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190522','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190522.log',1,1,259,1,2,2,515,12,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190522.log',1,1,259,1,1,5,515,30,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190522.log',1,1,259,1,5,6,515,31,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190522.log',1,1,259,1,4,7,515,32,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190522.log',1,1,259,1,3,8,515,33,'20190522','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190522.log',1,1,259,1,4,NULL,1048585,4,'20190522','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190522.log',1,1,259,1,5,NULL,1048585,5,'20190522','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190523.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190523','201905',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190524.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190524.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190524.log',1,1,259,1,1,NULL,1048585,1,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190524.log',1,1,259,1,2,NULL,1048585,2,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190524.log',1,1,259,1,3,NULL,1048585,3,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190524.log',1,1,259,1,4,NULL,1048585,4,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190524.log',1,1,259,1,5,NULL,1048585,5,'20190524','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190525.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190525','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190527.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190527','201905',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190528.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190528','201905',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190528.log',1,1,259,1,2,2,515,12,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190528.log',1,1,259,1,1,5,515,30,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190528.log',1,1,259,1,5,6,515,31,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190528.log',1,1,259,1,4,7,515,32,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190528.log',1,1,259,1,3,8,515,33,'20190528','201905',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190529.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190529.log',1,1,259,1,1,NULL,1048585,1,'20190529','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190530.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190530','201905',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190530.log',1,1,259,1,4,7,515,32,'20190530','201905',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190531.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190531','201905',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190603.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190603','201906',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190604.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190604','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190605.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190605.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190605','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190605.log',1,1,259,1,1,5,515,30,'20190605','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190606.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190606','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190609.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190609','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190608.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190608','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190608.log',1,1,259,1,4,7,515,32,'20190608','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190610.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190610','201906',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190610.log',1,1,259,1,4,7,515,32,'20190610','201906',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190611.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190611','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190611.log',1,1,259,1,2,2,515,12,'20190611','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190612.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190612.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190612','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190612.log',1,1,259,1,4,7,515,32,'20190612','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190613.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190613.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190613','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190613.log',1,1,259,1,4,7,515,32,'20190613','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190614.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190614','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190615.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190615','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190616.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190616','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190616.log',1,1,259,1,4,7,515,32,'20190616','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190618.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190618','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190619.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190619.log',1,1,259,1,5,6,515,31,'20190619','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190619.log',1,1,259,1,4,7,515,32,'20190619','201906',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190619.log',1,1,259,1,3,NULL,1048585,3,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190619.log',1,1,259,1,4,NULL,1048585,4,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190619.log',1,1,259,1,5,NULL,1048585,5,'20190619','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190620.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190620','201906',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190621.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190621','201906',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190621.log',1,1,259,1,1,5,515,30,'20190621','201906',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190621.log',1,1,259,1,1,NULL,1048585,1,'20190621','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190622.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190622','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190624.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190624.log',1,1,259,1,2,2,515,12,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,1,5,515,30,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,5,6,515,31,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,4,7,515,32,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190624.log',1,1,259,1,3,8,515,33,'20190624','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,1,NULL,1048585,1,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,2,NULL,1048585,2,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,3,NULL,1048585,3,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,4,NULL,1048585,4,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190624.log',1,1,259,1,5,NULL,1048585,5,'20190624','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190625.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190625','201906',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190626.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190626.log',1,1,259,1,2,NULL,1048585,2,'20190626','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190627.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190627','201906',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190627.log',1,1,259,1,1,5,515,30,'20190627','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190627.log',1,1,259,1,1,NULL,1048585,1,'20190627','201906',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190628.log',1,1,259,1,1,5,515,30,'20190628','201906',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190629.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190629','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190630.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190630','201906',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190701.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190701.log',1,1,259,1,1,5,515,30,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190701.log',1,1,259,1,3,8,515,33,'20190701','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190701.log',1,1,259,1,1,NULL,1048585,1,'20190701','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190702.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190702','201907',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190702.log',1,1,259,1,3,8,515,33,'20190702','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190703.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190703','201907',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190704.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190704','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190705.log',1,1,259,1,5,6,515,31,'20190705','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190705.log',1,1,259,1,2,NULL,1048585,2,'20190705','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190707.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190707','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190706.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190706','201907',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190708.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190708','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190709.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190709.log',1,1,259,1,3,8,515,33,'20190709','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190709.log',1,1,259,1,3,NULL,1048585,3,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190709.log',1,1,259,1,4,NULL,1048585,4,'20190709','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190710.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190710','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190711.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190711.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190711.log',1,1,259,1,3,NULL,1048585,3,'20190711','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190712.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190712.log',1,1,259,1,5,6,515,31,'20190712','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190712.log',1,1,259,1,5,NULL,1048585,5,'20190712','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190713.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190713','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190714.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190714.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190714.log',1,1,259,1,3,8,515,33,'20190714','201907',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190714.log',1,1,259,1,3,NULL,1048585,3,'20190714','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190715.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190715','201907',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190715.log',1,1,259,1,1,5,515,30,'20190715','201907',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190716.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20190716.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190716','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190716.log',1,1,259,1,1,5,515,30,'20190716','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190716.log',1,1,259,1,5,6,515,31,'20190716','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190717.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190717','201907',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190718.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190718.log',1,1,259,1,4,NULL,1048585,4,'20190718','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190719.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20190719.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190719.log',1,1,259,1,2,2,515,12,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190719.log',1,1,259,1,1,5,515,30,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190719.log',1,1,259,1,5,6,515,31,'20190719','201907',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190719.log',1,1,259,1,5,NULL,1048585,5,'20190719','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190720.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190720.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190720','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190721.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190721','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190722.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190722','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190723.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190723','201907',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190723.log',1,1,259,1,4,7,515,32,'20190723','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190723.log',1,1,259,1,4,NULL,1048585,4,'20190723','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190724.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190724','201907',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20190724.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190724','201907',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190724.log',1,1,259,1,3,NULL,1048585,3,'20190724','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190724.log',1,1,259,1,5,NULL,1048585,5,'20190724','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190725.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190725','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190726.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190726','201907',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190727.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190727','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190728.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190728','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190729.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190729','201907',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190729.log',1,1,259,1,5,6,515,31,'20190729','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190729.log',1,1,259,1,5,NULL,1048585,5,'20190729','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190731.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190731','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190731.log',1,1,259,1,4,7,515,32,'20190731','201907',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190730.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190730','201907',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190730.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190730','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190730.log',1,1,259,1,5,6,515,31,'20190730','201907',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190730.log',1,1,259,1,5,NULL,1048585,5,'20190730','201907',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190801.log',1,1,259,1,3,NULL,1048585,3,'20190801','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190802.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190802','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190803.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190803','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190804.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190804','201908',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190804.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190804','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,2,2,515,12,'20190804','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,1,5,515,30,'20190804','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,5,6,515,31,'20190804','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,4,7,515,32,'20190804','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,3,8,515,33,'20190804','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,1,NULL,1048585,1,'20190804','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,2,NULL,1048585,2,'20190804','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,3,NULL,1048585,3,'20190804','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,4,NULL,1048585,4,'20190804','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190804.log',1,1,259,1,5,NULL,1048585,5,'20190804','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190805.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190805','201908',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190806.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190806','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190807.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190807','201908',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20190807.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190807','201908',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190807.log',1,1,259,1,1,5,515,30,'20190807','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190807.log',1,1,259,1,5,6,515,31,'20190807','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190807.log',1,1,259,1,4,7,515,32,'20190807','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190807.log',1,1,259,1,3,8,515,33,'20190807','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190807.log',1,1,259,1,1,NULL,1048585,1,'20190807','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190807.log',1,1,259,1,2,NULL,1048585,2,'20190807','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190807.log',1,1,259,1,3,NULL,1048585,3,'20190807','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190807.log',1,1,259,1,4,NULL,1048585,4,'20190807','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190807.log',1,1,259,1,5,NULL,1048585,5,'20190807','201908',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190808.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190808','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190808.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190808','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190808.log',1,1,259,1,2,2,515,12,'20190808','201908',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190808.log',1,1,259,1,1,5,515,30,'20190808','201908',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190808.log',1,1,259,1,5,6,515,31,'20190808','201908',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190808.log',1,1,259,1,4,7,515,32,'20190808','201908',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190808.log',1,1,259,1,3,8,515,33,'20190808','201908',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190808.log',1,1,259,1,1,NULL,1048585,1,'20190808','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190808.log',1,1,259,1,2,NULL,1048585,2,'20190808','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190808.log',1,1,259,1,3,NULL,1048585,3,'20190808','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190808.log',1,1,259,1,4,NULL,1048585,4,'20190808','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190808.log',1,1,259,1,5,NULL,1048585,5,'20190808','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190809.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190809','201908',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190809.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190809','201908',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20190809.log',1,1,259,1,2,2,515,12,'20190809','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190809.log',1,1,259,1,5,6,515,31,'20190809','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190809.log',1,1,259,1,2,NULL,1048585,2,'20190809','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190809.log',1,1,259,1,5,NULL,1048585,5,'20190809','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190810.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190810','201908',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190810.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190810','201908',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190811.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190811','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190813.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190813','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190814.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190814.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190814','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190815.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190815','201908',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190816.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190816','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190817.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190817','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190817.log',1,1,259,1,4,7,515,32,'20190817','201908',2,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20190818.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190818','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190819.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190819','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190819.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190819','201908',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190820.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',30),('usage_events_20190820.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',32),('usage_events_20190820.log',1,1,259,1,5,NULL,1048585,5,'20190820','201908',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190821.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20190821.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190821','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190822.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190822.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190822.log',1,1,259,1,2,2,515,12,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190822.log',1,1,259,1,4,7,515,32,'20190822','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190822.log',1,1,259,1,2,NULL,1048585,2,'20190822','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190823.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190823.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190823.log',1,1,259,1,1,5,515,30,'20190823','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190823.log',1,1,259,1,1,NULL,1048585,1,'20190823','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190825.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190825','201908',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20190824.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',19),('usage_events_20190824.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190824.log',1,1,259,1,1,NULL,1048585,1,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190824.log',1,1,259,1,2,NULL,1048585,2,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190824.log',1,1,259,1,3,NULL,1048585,3,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190824.log',1,1,259,1,4,NULL,1048585,4,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190824.log',1,1,259,1,5,NULL,1048585,5,'20190824','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190826.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190826.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190826','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190827.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190827.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190827.log',1,1,259,1,5,6,515,31,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190827.log',1,1,259,1,3,8,515,33,'20190827','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190827.log',1,1,259,1,5,NULL,1048585,5,'20190827','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190828.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20190828.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190828','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190829.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190829.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190829.log',1,1,259,1,1,5,515,30,'20190829','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190829.log',1,1,259,1,1,NULL,1048585,1,'20190829','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190830.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20190830.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190830.log',1,1,259,1,2,2,515,12,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190830.log',1,1,259,1,1,5,515,30,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190830.log',1,1,259,1,5,6,515,31,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190830.log',1,1,259,1,4,7,515,32,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190830.log',1,1,259,1,3,8,515,33,'20190830','201908',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190830.log',1,1,259,1,1,NULL,1048585,1,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190830.log',1,1,259,1,2,NULL,1048585,2,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190830.log',1,1,259,1,3,NULL,1048585,3,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190830.log',1,1,259,1,4,NULL,1048585,4,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190830.log',1,1,259,1,5,NULL,1048585,5,'20190830','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190831.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190831.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20190831.log',1,1,259,3,9,11,515,61,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190831.log',1,1,259,3,6,13,515,63,'20190831','201908',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190831.log',1,1,259,3,6,NULL,1048585,6,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190831.log',1,1,259,3,7,NULL,1048585,7,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190831.log',1,1,259,3,8,NULL,1048585,8,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190831.log',1,1,259,3,9,NULL,1048585,9,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190831.log',1,1,259,3,10,NULL,1048585,10,'20190831','201908',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190901.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20190901.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190901.log',1,1,259,3,10,9,515,59,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190901.log',1,1,259,3,7,10,515,60,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190901.log',1,1,259,3,9,11,515,61,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',27),('usage_events_20190901.log',1,1,259,3,8,12,515,62,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190901.log',1,1,259,3,6,13,515,63,'20190901','201909',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190901.log',1,1,259,3,6,NULL,1048585,6,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190901.log',1,1,259,3,7,NULL,1048585,7,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190901.log',1,1,259,3,8,NULL,1048585,8,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190901.log',1,1,259,3,9,NULL,1048585,9,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190901.log',1,1,259,3,10,NULL,1048585,10,'20190901','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190902.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190902.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190902.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190902.log',1,1,259,3,10,9,515,59,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190902.log',1,1,259,3,9,11,515,61,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20190902.log',1,1,259,3,8,12,515,62,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190902.log',1,1,259,3,6,13,515,63,'20190902','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190902.log',1,1,259,1,1,NULL,1048585,1,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190902.log',1,1,259,3,6,NULL,1048585,6,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190902.log',1,1,259,3,7,NULL,1048585,7,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190902.log',1,1,259,3,8,NULL,1048585,8,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190902.log',1,1,259,3,9,NULL,1048585,9,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190902.log',1,1,259,3,10,NULL,1048585,10,'20190902','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190903.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20190903.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190903.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190903.log',1,1,259,3,9,11,515,61,'20190903','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190903.log',1,1,259,3,9,NULL,1048585,9,'20190903','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190904.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190904','201909',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20190904.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190904','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190904.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190904','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190904.log',1,1,259,3,6,13,515,63,'20190904','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190904.log',1,1,259,3,6,NULL,1048585,6,'20190904','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190905.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190905','201909',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190905.log',1,1,259,1,2,2,515,12,'20190905','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190905.log',1,1,259,1,1,5,515,30,'20190905','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190905.log',1,1,259,1,5,6,515,31,'20190905','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190905.log',1,1,259,1,4,7,515,32,'20190905','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190905.log',1,1,259,1,3,8,515,33,'20190905','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190905.log',1,1,259,3,9,NULL,1048585,9,'20190905','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190906.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20190906.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,10,9,515,59,'20190906','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,7,10,515,60,'20190906','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,9,11,515,61,'20190906','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,8,12,515,62,'20190906','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,6,13,515,63,'20190906','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,1,1,NULL,1048585,1,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,1,2,NULL,1048585,2,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,1,3,NULL,1048585,3,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,1,4,NULL,1048585,4,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,1,5,NULL,1048585,5,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,6,NULL,1048585,6,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,7,NULL,1048585,7,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,8,NULL,1048585,8,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,9,NULL,1048585,9,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190906.log',1,1,259,3,10,NULL,1048585,10,'20190906','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190907.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190907','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190907.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190907','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190907.log',1,1,259,3,10,9,515,59,'20190907','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190907.log',1,1,259,3,6,13,515,63,'20190907','201909',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190907.log',1,1,259,3,6,NULL,1048585,6,'20190907','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190907.log',1,1,259,3,9,NULL,1048585,9,'20190907','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190908.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190908','201909',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190908.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190908','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190908.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190908','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190908.log',1,1,259,1,5,6,515,31,'20190908','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190908.log',1,1,259,3,7,10,515,60,'20190908','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190908.log',1,1,259,3,6,13,515,63,'20190908','201909',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190908.log',1,1,259,3,8,NULL,1048585,8,'20190908','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190909.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190909','201909',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20190909.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190909','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190909.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190909','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190909.log',1,1,259,1,1,5,515,30,'20190909','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190909.log',1,1,259,1,5,6,515,31,'20190909','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190909.log',1,1,259,1,4,7,515,32,'20190909','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190909.log',1,1,259,3,10,9,515,59,'20190909','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190909.log',1,1,259,3,9,11,515,61,'20190909','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190909.log',1,1,259,3,8,12,515,62,'20190909','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190909.log',1,1,259,3,6,13,515,63,'20190909','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190909.log',1,1,259,1,1,NULL,1048585,1,'20190909','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190909.log',1,1,259,1,5,NULL,1048585,5,'20190909','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190909.log',1,1,259,3,6,NULL,1048585,6,'20190909','201909',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190909.log',1,1,259,3,9,NULL,1048585,9,'20190909','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190910.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190910','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190910.log',1,1,259,1,1,5,515,30,'20190910','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190910.log',1,1,259,3,6,13,515,63,'20190910','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190910.log',1,1,259,1,1,NULL,1048585,1,'20190910','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190910.log',1,1,259,3,6,NULL,1048585,6,'20190910','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190910.log',1,1,259,3,7,NULL,1048585,7,'20190910','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190910.log',1,1,259,3,8,NULL,1048585,8,'20190910','201909',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190911.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190911','201909',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190911.log',1,1,259,3,8,12,515,62,'20190911','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190911.log',1,1,259,3,6,13,515,63,'20190911','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190911.log',1,1,259,3,6,NULL,1048585,6,'20190911','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190912.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190912','201909',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20190912.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190912','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190912.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190912','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190912.log',1,1,259,1,4,7,515,32,'20190912','201909',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190912.log',1,1,259,3,10,9,515,59,'20190912','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190912.log',1,1,259,3,7,10,515,60,'20190912','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190912.log',1,1,259,3,7,NULL,1048585,7,'20190912','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190913.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190913','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190913.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20190913','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190913.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190913','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190913.log',1,1,259,1,4,7,515,32,'20190913','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190913.log',1,1,259,3,10,9,515,59,'20190913','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190913.log',1,1,259,3,9,11,515,61,'20190913','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190913.log',1,1,259,3,6,13,515,63,'20190913','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190913.log',1,1,259,1,2,NULL,1048585,2,'20190913','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190913.log',1,1,259,3,6,NULL,1048585,6,'20190913','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190913.log',1,1,259,3,10,NULL,1048585,10,'20190913','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190914.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190914','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190915.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190915','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190915.log',1,1,259,1,2,2,515,12,'20190915','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190916.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190916','201909',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20190916.log',1,1,259,3,7,10,515,60,'20190916','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190916.log',1,1,259,3,6,13,515,63,'20190916','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190916.log',1,1,259,3,7,NULL,1048585,7,'20190916','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190917.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190917.log',1,1,259,1,5,6,515,31,'20190917','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190917.log',1,1,259,1,5,NULL,1048585,5,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190917.log',1,1,259,3,9,NULL,1048585,9,'20190917','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190918.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190918','201909',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20190918.log',1,1,259,3,6,13,515,63,'20190918','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190919.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190919','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190920.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190920.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190920.log',1,1,259,1,4,7,515,32,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190920.log',1,1,259,3,10,9,515,59,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190920.log',1,1,259,3,7,10,515,60,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190920.log',1,1,259,3,8,12,515,62,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190920.log',1,1,259,3,6,13,515,63,'20190920','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190920.log',1,1,259,3,6,NULL,1048585,6,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190920.log',1,1,259,3,7,NULL,1048585,7,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190920.log',1,1,259,3,8,NULL,1048585,8,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190920.log',1,1,259,3,10,NULL,1048585,10,'20190920','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190921.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190921.log',1,1,259,1,4,7,515,32,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190921.log',1,1,259,3,8,12,515,62,'20190921','201909',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190921.log',1,1,259,1,4,NULL,1048585,4,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190921.log',1,1,259,3,8,NULL,1048585,8,'20190921','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190922.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190922','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190923.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190923','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190924.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20190924.log',1,1,259,1,2,2,515,12,'20190924','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190924.log',1,1,259,1,2,NULL,1048585,2,'20190924','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190925.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190925.log',1,1,259,3,9,NULL,1048585,9,'20190925','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190926.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190926','201909',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20190927.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190927','201909',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20190928.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190928','201909',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20190929.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190929','201909',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20190930.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20190930','201909',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20190930.log',1,1,259,1,2,2,515,12,'20190930','201909',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191001.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191001.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191001.log',1,1,259,1,1,5,515,30,'20191001','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191001.log',1,1,259,1,1,NULL,1048585,1,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191001.log',1,1,259,1,2,NULL,1048585,2,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191001.log',1,1,259,1,3,NULL,1048585,3,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191001.log',1,1,259,1,4,NULL,1048585,4,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191001.log',1,1,259,1,5,NULL,1048585,5,'20191001','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191003.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191003.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191003.log',1,1,259,1,1,5,515,30,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191003.log',1,1,259,1,4,7,515,32,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191003.log',1,1,259,1,3,8,515,33,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191003.log',1,1,259,3,10,9,515,59,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191003.log',1,1,259,3,9,11,515,61,'20191003','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191003.log',1,1,259,1,1,NULL,1048585,1,'20191003','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191002.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191002.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191002.log',1,1,259,3,7,10,515,60,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191002.log',1,1,259,3,9,11,515,61,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191002.log',1,1,259,3,6,13,515,63,'20191002','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191002.log',1,1,259,3,6,NULL,1048585,6,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191002.log',1,1,259,3,7,NULL,1048585,7,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191002.log',1,1,259,3,8,NULL,1048585,8,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191002.log',1,1,259,3,9,NULL,1048585,9,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191002.log',1,1,259,3,10,NULL,1048585,10,'20191002','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191004.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191004.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,1,2,2,515,12,'20191004','201910',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191004.log',1,1,259,1,5,6,515,31,'20191004','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,10,9,515,59,'20191004','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,7,10,515,60,'20191004','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,9,11,515,61,'20191004','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,8,12,515,62,'20191004','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,6,13,515,63,'20191004','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191004.log',1,1,259,1,2,NULL,1048585,2,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,6,NULL,1048585,6,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,7,NULL,1048585,7,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191004.log',1,1,259,3,8,NULL,1048585,8,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191004.log',1,1,259,3,9,NULL,1048585,9,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191004.log',1,1,259,3,10,NULL,1048585,10,'20191004','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191005.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191005','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191005.log',1,1,259,3,8,12,515,62,'20191005','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191005.log',1,1,259,3,6,13,515,63,'20191005','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191006.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191006','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191007.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191007','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191007.log',1,1,259,1,3,8,515,33,'20191007','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191007.log',1,1,259,1,3,NULL,1048585,3,'20191007','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191008.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191008','201910',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191008.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191008','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191009.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191009','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191009.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191009','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191009.log',1,1,259,1,5,6,515,31,'20191009','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191009.log',1,1,259,1,5,NULL,1048585,5,'20191009','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191010.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191010','201910',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191011.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191011','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191012.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191012','201910',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191012.log',1,1,259,1,2,2,515,12,'20191012','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191012.log',1,1,259,3,10,9,515,59,'20191012','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191012.log',1,1,259,3,9,11,515,61,'20191012','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191012.log',1,1,259,3,8,12,515,62,'20191012','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191012.log',1,1,259,3,6,13,515,63,'20191012','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191014.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191014','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191014.log',1,1,259,1,2,2,515,12,'20191014','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191015','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191015.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191015','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,2,2,515,12,'20191015','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,1,5,515,30,'20191015','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,5,6,515,31,'20191015','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,4,7,515,32,'20191015','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,3,8,515,33,'20191015','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,1,NULL,1048585,1,'20191015','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,2,NULL,1048585,2,'20191015','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,3,NULL,1048585,3,'20191015','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,4,NULL,1048585,4,'20191015','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191015.log',1,1,259,1,5,NULL,1048585,5,'20191015','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191016.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191016','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191016.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191016','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191016.log',1,1,259,3,6,13,515,63,'20191016','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191017.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191017','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191017.log',1,1,259,1,1,5,515,30,'20191017','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191017.log',1,1,259,1,3,8,515,33,'20191017','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191017.log',1,1,259,1,1,NULL,1048585,1,'20191017','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191018.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191018','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191018.log',1,1,259,1,2,2,515,12,'20191018','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191018.log',1,1,259,1,1,5,515,30,'20191018','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191018.log',1,1,259,1,5,6,515,31,'20191018','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191018.log',1,1,259,1,4,7,515,32,'20191018','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191018.log',1,1,259,1,3,8,515,33,'20191018','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191019.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191019','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191020.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191020','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191020.log',1,1,259,3,8,NULL,1048585,8,'20191020','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191021','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191021.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191021','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191021.log',1,1,259,1,2,2,515,12,'20191021','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,10,9,515,59,'20191021','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,7,10,515,60,'20191021','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,9,11,515,61,'20191021','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,8,12,515,62,'20191021','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,6,13,515,63,'20191021','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,6,NULL,1048585,6,'20191021','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,7,NULL,1048585,7,'20191021','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,8,NULL,1048585,8,'20191021','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,9,NULL,1048585,9,'20191021','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191021.log',1,1,259,3,10,NULL,1048585,10,'20191021','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191022.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191022','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191022.log',1,1,259,1,4,NULL,1048585,4,'20191022','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191023.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191023','201910',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191023.log',1,1,259,1,2,2,515,12,'20191023','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191023.log',1,1,259,3,9,11,515,61,'20191023','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191023.log',1,1,259,1,1,NULL,1048585,1,'20191023','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191023.log',1,1,259,3,6,NULL,1048585,6,'20191023','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191023.log',1,1,259,3,7,NULL,1048585,7,'20191023','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191024.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191024','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191024.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191024','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191024.log',1,1,259,1,1,5,515,30,'20191024','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191024.log',1,1,259,3,6,13,515,63,'20191024','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191024.log',1,1,259,1,1,NULL,1048585,1,'20191024','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191025.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191025','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191025.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191025','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191025.log',1,1,259,3,9,NULL,1048585,9,'20191025','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191026.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191026','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191026.log',1,1,259,1,5,6,515,31,'20191026','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191026.log',1,1,259,3,6,13,515,63,'20191026','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191026.log',1,1,259,3,6,NULL,1048585,6,'20191026','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191027.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191027','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191027.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191027','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191027.log',1,1,259,1,4,7,515,32,'20191027','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191027.log',1,1,259,3,9,11,515,61,'20191027','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191027.log',1,1,259,3,9,NULL,1048585,9,'20191027','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191028.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191028','201910',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191028.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191028','201910',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191028.log',1,1,259,1,2,2,515,12,'20191028','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191028.log',1,1,259,1,5,6,515,31,'20191028','201910',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191028.log',1,1,259,3,6,13,515,63,'20191028','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191028.log',1,1,259,1,5,NULL,1048585,5,'20191028','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191029.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191029','201910',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191029.log',1,1,259,1,1,5,515,30,'20191029','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191030.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191030','201910',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20191030.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191030','201910',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191030.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191030','201910',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191030.log',1,1,259,1,2,2,515,12,'20191030','201910',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191030.log',1,1,259,3,10,NULL,1048585,10,'20191030','201910',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191031.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191031','201910',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191101.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',32),('usage_events_20191101.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191101.log',1,1,259,3,9,11,515,61,'20191101','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191101.log',1,1,259,1,1,NULL,1048585,1,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191101.log',1,1,259,3,6,NULL,1048585,6,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191101.log',1,1,259,3,7,NULL,1048585,7,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191101.log',1,1,259,3,8,NULL,1048585,8,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191101.log',1,1,259,3,9,NULL,1048585,9,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191101.log',1,1,259,3,10,NULL,1048585,10,'20191101','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191102.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191102','201911',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191103.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191103','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191104.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191104','201911',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191105.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191105','201911',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191105.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191105','201911',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191105.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191105','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191105.log',1,1,259,1,1,5,515,30,'20191105','201911',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191106.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191106','201911',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20191107.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191107','201911',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191108.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191108','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191109.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191109','201911',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20191109.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191109','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191109.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191109','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191109.log',1,1,259,1,2,2,515,12,'20191109','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191109.log',1,1,259,1,1,5,515,30,'20191109','201911',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191109.log',1,1,259,1,5,6,515,31,'20191109','201911',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191109.log',1,1,259,1,4,7,515,32,'20191109','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191109.log',1,1,259,1,3,8,515,33,'20191109','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191109.log',1,1,259,3,6,13,515,63,'20191109','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191109.log',1,1,259,1,5,NULL,1048585,5,'20191109','201911',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191109.log',1,1,259,3,6,NULL,1048585,6,'20191109','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191110.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191110','201911',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20191110.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191110','201911',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191110.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191110','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191110.log',1,1,259,1,5,6,515,31,'20191110','201911',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191110.log',1,1,259,1,5,NULL,1048585,5,'20191110','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191110.log',1,1,259,3,10,NULL,1048585,10,'20191110','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191111.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191111','201911',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20191111.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191111','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191111.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191111','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191111.log',1,1,259,3,7,NULL,1048585,7,'20191111','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191111.log',1,1,259,3,9,NULL,1048585,9,'20191111','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191112.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191112','201911',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191112.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191112','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191112.log',1,1,259,1,1,5,515,30,'20191112','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191112.log',1,1,259,3,6,13,515,63,'20191112','201911',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191112.log',1,1,259,1,1,NULL,1048585,1,'20191112','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191112.log',1,1,259,3,6,NULL,1048585,6,'20191112','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191113','201911',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191113.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191113','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191113','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,1,2,2,515,12,'20191113','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,1,1,5,515,30,'20191113','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,1,5,6,515,31,'20191113','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,1,4,7,515,32,'20191113','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,1,3,8,515,33,'20191113','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,3,9,11,515,61,'20191113','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,3,6,13,515,63,'20191113','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191113.log',1,1,259,1,2,NULL,1048585,2,'20191113','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191114.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191114','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191114.log',1,1,259,3,6,NULL,1048585,6,'20191114','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191115.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,1,4,7,515,32,'20191115','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,10,9,515,59,'20191115','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,7,10,515,60,'20191115','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,9,11,515,61,'20191115','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,8,12,515,62,'20191115','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,6,13,515,63,'20191115','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,1,1,NULL,1048585,1,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,1,3,NULL,1048585,3,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,1,4,NULL,1048585,4,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,6,NULL,1048585,6,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,7,NULL,1048585,7,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,8,NULL,1048585,8,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,9,NULL,1048585,9,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191115.log',1,1,259,3,10,NULL,1048585,10,'20191115','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191116.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191116','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191116.log',1,1,259,1,4,7,515,32,'20191116','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191116.log',1,1,259,1,4,NULL,1048585,4,'20191116','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191116.log',1,1,259,3,6,NULL,1048585,6,'20191116','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191117.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191117','201911',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191118.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191118','201911',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191119.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191119','201911',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191119.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191119','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191119.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191119','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191119.log',1,1,259,3,7,NULL,1048585,7,'20191119','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191119.log',1,1,259,3,9,NULL,1048585,9,'20191119','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191120.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191120','201911',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191120.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191120','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191120.log',1,1,259,1,2,2,515,12,'20191120','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191120.log',1,1,259,1,4,7,515,32,'20191120','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191120.log',1,1,259,1,4,NULL,1048585,4,'20191120','201911',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191121.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191121.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191121.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191121.log',1,1,259,1,1,NULL,1048585,1,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191121.log',1,1,259,1,2,NULL,1048585,2,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191121.log',1,1,259,1,3,NULL,1048585,3,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191121.log',1,1,259,1,4,NULL,1048585,4,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191121.log',1,1,259,1,5,NULL,1048585,5,'20191121','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191122.log',1,1,259,1,1,5,515,30,'20191122','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191122.log',1,1,259,3,6,NULL,1048585,6,'20191122','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191123.log',1,1,259,1,3,8,515,33,'20191123','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191123.log',1,1,259,1,5,NULL,1048585,5,'20191123','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191123.log',1,1,259,3,9,NULL,1048585,9,'20191123','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191124.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191124','201911',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191124.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191124','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191124.log',1,1,259,3,10,NULL,1048585,10,'20191124','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191125.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191125','201911',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191125.log',1,1,259,1,5,6,515,31,'20191125','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191125.log',1,1,259,1,5,NULL,1048585,5,'20191125','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191126.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191126','201911',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191126.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191126','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191126.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191126','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191126.log',1,1,259,3,7,10,515,60,'20191126','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191127.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191127','201911',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191127.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191127','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191127.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191127','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191128.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191128','201911',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191128.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191128','201911',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20191128.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191128','201911',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191128.log',1,1,259,1,1,5,515,30,'20191128','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191128.log',1,1,259,1,3,8,515,33,'20191128','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191128.log',1,1,259,3,10,9,515,59,'20191128','201911',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191128.log',1,1,259,3,8,12,515,62,'20191128','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191128.log',1,1,259,3,9,NULL,1048585,9,'20191128','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191129.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191129','201911',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191129.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191129','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191129.log',1,1,259,1,4,7,515,32,'20191129','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191129.log',1,1,259,3,7,10,515,60,'20191129','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191129.log',1,1,259,3,8,12,515,62,'20191129','201911',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191129.log',1,1,259,3,8,NULL,1048585,8,'20191129','201911',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191130.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191130','201911',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191130.log',1,1,259,3,7,NULL,1048585,7,'20191130','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191130.log',1,1,259,3,10,NULL,1048585,10,'20191130','201911',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191201.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191201','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191202.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191202.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191202.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191202.log',1,1,259,3,9,11,515,61,'20191202','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191202.log',1,1,259,3,8,12,515,62,'20191202','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191202.log',1,1,259,1,5,NULL,1048585,5,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191202.log',1,1,259,3,6,NULL,1048585,6,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191202.log',1,1,259,3,7,NULL,1048585,7,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191202.log',1,1,259,3,8,NULL,1048585,8,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191202.log',1,1,259,3,9,NULL,1048585,9,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191202.log',1,1,259,3,10,NULL,1048585,10,'20191202','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191204.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191204','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191204.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191204','201912',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191204.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191204','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191204.log',1,1,259,3,6,13,515,63,'20191204','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191204.log',1,1,259,3,6,NULL,1048585,6,'20191204','201912',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191205.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191205','201912',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191205.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191205','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,1,2,2,515,12,'20191205','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,1,3,8,515,33,'20191205','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,10,9,515,59,'20191205','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,7,10,515,60,'20191205','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,9,11,515,61,'20191205','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,6,NULL,1048585,6,'20191205','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,7,NULL,1048585,7,'20191205','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,8,NULL,1048585,8,'20191205','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,9,NULL,1048585,9,'20191205','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191205.log',1,1,259,3,10,NULL,1048585,10,'20191205','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191206.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191206','201912',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20191207.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191207','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191207.log',1,1,259,1,1,5,515,30,'20191207','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191208.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191208','201912',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191208.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191208','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191208.log',1,1,259,1,5,6,515,31,'20191208','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191208.log',1,1,259,3,6,NULL,1048585,6,'20191208','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191208.log',1,1,259,3,7,NULL,1048585,7,'20191208','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191208.log',1,1,259,3,9,NULL,1048585,9,'20191208','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191209.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191209','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191210.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191210','201912',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20191210.log',1,1,259,1,2,2,515,12,'20191210','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191210.log',1,1,259,1,2,NULL,1048585,2,'20191210','201912',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191211.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191211','201912',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20191211.log',1,1,259,1,1,5,515,30,'20191211','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191211.log',1,1,259,3,6,13,515,63,'20191211','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191212.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191212','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191212.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191212','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191212.log',1,1,259,1,1,5,515,30,'20191212','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191212.log',1,1,259,1,1,NULL,1048585,1,'20191212','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191212.log',1,1,259,3,10,NULL,1048585,10,'20191212','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191213','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191213.log',1,1,259,1,2,2,515,12,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,1,1,5,515,30,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,1,5,6,515,31,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,1,4,7,515,32,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,1,3,8,515,33,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,3,10,9,515,59,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,3,7,10,515,60,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,3,9,11,515,61,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,3,8,12,515,62,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,3,6,13,515,63,'20191213','201912',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191213.log',1,1,259,3,6,NULL,1048585,6,'20191213','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191213.log',1,1,259,3,7,NULL,1048585,7,'20191213','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191213.log',1,1,259,3,8,NULL,1048585,8,'20191213','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191214.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191214','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191215.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191215','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191215.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191215','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191215.log',1,1,259,3,6,13,515,63,'20191215','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191215.log',1,1,259,3,6,NULL,1048585,6,'20191215','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191216.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191216','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191216.log',1,1,259,3,6,NULL,1048585,6,'20191216','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191217.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191217','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191217.log',1,1,259,1,1,5,515,30,'20191217','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191217.log',1,1,259,1,3,8,515,33,'20191217','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191218.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191218','201912',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191219.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191219.log',1,1,259,1,2,2,515,12,'20191219','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,7,10,515,60,'20191219','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,9,11,515,61,'20191219','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,8,12,515,62,'20191219','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,6,13,515,63,'20191219','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,1,1,NULL,1048585,1,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,1,2,NULL,1048585,2,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,1,5,NULL,1048585,5,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,6,NULL,1048585,6,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,7,NULL,1048585,7,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,8,NULL,1048585,8,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191219.log',1,1,259,3,10,NULL,1048585,10,'20191219','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191220.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,10,9,515,59,'20191220','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,7,10,515,60,'20191220','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,9,11,515,61,'20191220','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,8,12,515,62,'20191220','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,6,13,515,63,'20191220','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,1,4,NULL,1048585,4,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,6,NULL,1048585,6,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,7,NULL,1048585,7,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,8,NULL,1048585,8,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,9,NULL,1048585,9,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191220.log',1,1,259,3,10,NULL,1048585,10,'20191220','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191221.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191221','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191221.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191221','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191221.log',1,1,259,1,2,2,515,12,'20191221','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191221.log',1,1,259,1,3,NULL,1048585,3,'20191221','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191221.log',1,1,259,3,6,NULL,1048585,6,'20191221','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191221.log',1,1,259,3,10,NULL,1048585,10,'20191221','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191222.log',1,1,259,3,9,NULL,1048585,9,'20191222','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191223.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191223','201912',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20191223.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191223','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191223.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191223','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191223.log',1,1,259,3,10,9,515,59,'20191223','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191223.log',1,1,259,1,4,NULL,1048585,4,'20191223','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191224.log',1,1,259,3,9,11,515,61,'20191224','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191224.log',1,1,259,3,8,12,515,62,'20191224','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191224.log',1,1,259,1,2,NULL,1048585,2,'20191224','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191224.log',1,1,259,3,6,NULL,1048585,6,'20191224','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191225.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191225','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191225.log',1,1,259,3,6,13,515,63,'20191225','201912',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191226.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191226','201912',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191226.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191226','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191226.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191226','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191226.log',1,1,259,3,10,9,515,59,'20191226','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191226.log',1,1,259,3,8,NULL,1048585,8,'20191226','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191227.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191227','201912',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20191228.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20191228.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,1,2,2,515,12,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,1,1,5,515,30,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,1,5,6,515,31,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,1,4,7,515,32,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,1,3,8,515,33,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,3,10,9,515,59,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,3,7,10,515,60,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,3,6,13,515,63,'20191228','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,1,1,NULL,1048585,1,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,3,7,NULL,1048585,7,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,3,8,NULL,1048585,8,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,3,9,NULL,1048585,9,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191228.log',1,1,259,3,10,NULL,1048585,10,'20191228','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191229.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191229','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191229.log',1,1,259,3,6,13,515,63,'20191229','201912',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191229.log',1,1,259,3,7,NULL,1048585,7,'20191229','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191230.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191230','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191230.log',1,1,259,3,7,NULL,1048585,7,'20191230','201912',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20191231.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20191231','201912',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20191231.log',1,1,259,3,7,10,515,60,'20191231','201912',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200101.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200101','202001',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200101.log',1,1,259,1,2,2,515,12,'20200101','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200101.log',1,1,259,3,8,12,515,62,'20200101','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200101.log',1,1,259,1,2,NULL,1048585,2,'20200101','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200101.log',1,1,259,3,6,NULL,1048585,6,'20200101','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200102.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200102','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200102.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200102','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200102.log',1,1,259,3,8,12,515,62,'20200102','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200102.log',1,1,259,3,8,NULL,1048585,8,'20200102','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200103.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200103','202001',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20200103.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200103','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200103.log',1,1,259,1,1,5,515,30,'20200103','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200103.log',1,1,259,3,9,11,515,61,'20200103','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200103.log',1,1,259,3,8,12,515,62,'20200103','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200103.log',1,1,259,3,6,13,515,63,'20200103','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200104.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200104','202001',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200104.log',1,1,259,1,4,NULL,1048585,4,'20200104','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200105.log',1,1,259,1,4,NULL,1048585,4,'20200105','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200105.log',1,1,259,3,9,NULL,1048585,9,'20200105','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200105.log',1,1,259,3,10,NULL,1048585,10,'20200105','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200106.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200106','202001',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200107.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200107','202001',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200107.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200107','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200107.log',1,1,259,3,6,NULL,1048585,6,'20200107','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200107.log',1,1,259,3,8,NULL,1048585,8,'20200107','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200107.log',1,1,259,3,10,NULL,1048585,10,'20200107','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200108.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200108','202001',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200108.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200108','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200108.log',1,1,259,1,4,NULL,1048585,4,'20200108','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200108.log',1,1,259,3,7,NULL,1048585,7,'20200108','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200108.log',1,1,259,3,9,NULL,1048585,9,'20200108','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200108.log',1,1,259,3,10,NULL,1048585,10,'20200108','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200109.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200109','202001',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200109.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200109','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200109.log',1,1,259,3,6,NULL,1048585,6,'20200109','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200109.log',1,1,259,3,7,NULL,1048585,7,'20200109','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200109.log',1,1,259,3,8,NULL,1048585,8,'20200109','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200109.log',1,1,259,3,9,NULL,1048585,9,'20200109','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200109.log',1,1,259,3,10,NULL,1048585,10,'20200109','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200110','202001',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200110.log',1,1,259,1,2,2,515,12,'20200110','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,1,5,515,30,'20200110','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,5,6,515,31,'20200110','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,4,7,515,32,'20200110','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,3,8,515,33,'20200110','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,1,NULL,1048585,1,'20200110','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,2,NULL,1048585,2,'20200110','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,3,NULL,1048585,3,'20200110','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,4,NULL,1048585,4,'20200110','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200110.log',1,1,259,1,5,NULL,1048585,5,'20200110','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200111.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20200111.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200111.log',1,1,259,1,2,2,515,12,'20200111','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200111.log',1,1,259,1,3,8,515,33,'20200111','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200111.log',1,1,259,1,2,NULL,1048585,2,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200111.log',1,1,259,1,3,NULL,1048585,3,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200111.log',1,1,259,3,6,NULL,1048585,6,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200111.log',1,1,259,3,7,NULL,1048585,7,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200111.log',1,1,259,3,8,NULL,1048585,8,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200111.log',1,1,259,3,9,NULL,1048585,9,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200111.log',1,1,259,3,10,NULL,1048585,10,'20200111','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200112.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200112','202001',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200112.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200112','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200112.log',1,1,259,1,5,6,515,31,'20200112','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200112.log',1,1,259,3,10,9,515,59,'20200112','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200112.log',1,1,259,3,9,11,515,61,'20200112','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200112.log',1,1,259,1,1,NULL,1048585,1,'20200112','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200112.log',1,1,259,1,2,NULL,1048585,2,'20200112','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200112.log',1,1,259,1,5,NULL,1048585,5,'20200112','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200112.log',1,1,259,3,6,NULL,1048585,6,'20200112','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200112.log',1,1,259,3,7,NULL,1048585,7,'20200112','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200113.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200113','202001',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200113.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200113','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200113.log',1,1,259,3,6,13,515,63,'20200113','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200113.log',1,1,259,1,1,NULL,1048585,1,'20200113','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200113.log',1,1,259,1,4,NULL,1048585,4,'20200113','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200113.log',1,1,259,3,6,NULL,1048585,6,'20200113','202001',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200113.log',1,1,259,3,9,NULL,1048585,9,'20200113','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200114.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200114','202001',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200114.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200114','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200114.log',1,1,259,3,8,12,515,62,'20200114','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200114.log',1,1,259,1,4,NULL,1048585,4,'20200114','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200114.log',1,1,259,3,10,NULL,1048585,10,'20200114','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200115.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200115','202001',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200115.log',1,1,259,1,1,5,515,30,'20200115','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200115.log',1,1,259,1,2,NULL,1048585,2,'20200115','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200115.log',1,1,259,1,4,NULL,1048585,4,'20200115','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200115.log',1,1,259,3,6,NULL,1048585,6,'20200115','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200115.log',1,1,259,3,8,NULL,1048585,8,'20200115','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200115.log',1,1,259,3,9,NULL,1048585,9,'20200115','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200115.log',1,1,259,3,10,NULL,1048585,10,'20200115','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200116.log',1,1,259,3,9,11,515,61,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,1,259,3,8,12,515,62,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,1,259,3,6,13,515,63,'20200116','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,1,259,1,1,NULL,1048585,1,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,1,259,1,2,NULL,1048585,2,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,1,259,3,6,NULL,1048585,6,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,1,259,3,8,NULL,1048585,8,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200116.log',1,1,259,3,10,NULL,1048585,10,'20200116','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200117.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200117','202001',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20200117.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200117','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200117.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200117','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200117.log',1,1,259,1,2,2,515,12,'20200117','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200117.log',1,1,259,1,3,NULL,1048585,3,'20200117','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200117.log',1,1,259,1,5,NULL,1048585,5,'20200117','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200118.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200118','202001',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200118.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200118','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200118.log',1,1,259,1,5,6,515,31,'20200118','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200118.log',1,1,259,3,10,9,515,59,'20200118','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200118.log',1,1,259,3,8,12,515,62,'20200118','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200118.log',1,1,259,1,1,NULL,1048585,1,'20200118','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200118.log',1,1,259,3,6,NULL,1048585,6,'20200118','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200118.log',1,1,259,3,7,NULL,1048585,7,'20200118','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200119.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200119','202001',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200119.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200119','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200119.log',1,1,259,1,4,7,515,32,'20200119','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200120.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200120','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200120.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200120','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200120.log',1,1,259,3,9,11,515,61,'20200120','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200120.log',1,1,259,1,4,NULL,1048585,4,'20200120','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200120.log',1,1,259,3,10,NULL,1048585,10,'20200120','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200121.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200121','202001',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200121.log',1,1,259,1,2,2,515,12,'20200121','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200121.log',1,1,259,1,1,5,515,30,'20200121','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200121.log',1,1,259,3,10,9,515,59,'20200121','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200121.log',1,1,259,3,7,10,515,60,'20200121','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200121.log',1,1,259,1,2,NULL,1048585,2,'20200121','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200121.log',1,1,259,3,10,NULL,1048585,10,'20200121','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200122.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200122.log',1,1,259,1,3,8,515,33,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200122.log',1,1,259,3,8,12,515,62,'20200122','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200122.log',1,1,259,3,8,NULL,1048585,8,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200122.log',1,1,259,3,9,NULL,1048585,9,'20200122','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200123.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200123','202001',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200124.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200124.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200124.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200124.log',1,1,259,3,10,9,515,59,'20200124','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200124.log',1,1,259,1,1,NULL,1048585,1,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200124.log',1,1,259,1,5,NULL,1048585,5,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200124.log',1,1,259,3,6,NULL,1048585,6,'20200124','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200125.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200125.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200125.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200125.log',1,1,259,1,2,2,515,12,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200125.log',1,1,259,3,10,9,515,59,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200125.log',1,1,259,3,6,13,515,63,'20200125','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200125.log',1,1,259,1,2,NULL,1048585,2,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200125.log',1,1,259,3,6,NULL,1048585,6,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200125.log',1,1,259,3,7,NULL,1048585,7,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200125.log',1,1,259,3,10,NULL,1048585,10,'20200125','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200126.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200126.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200126.log',1,1,259,1,5,6,515,31,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200126.log',1,1,259,3,9,11,515,61,'20200126','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200126.log',1,1,259,1,3,NULL,1048585,3,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200126.log',1,1,259,3,6,NULL,1048585,6,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200126.log',1,1,259,3,10,NULL,1048585,10,'20200126','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200127.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200127.log',1,1,259,1,2,2,515,12,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200127.log',1,1,259,1,5,6,515,31,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200127.log',1,1,259,3,9,11,515,61,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200127.log',1,1,259,3,8,12,515,62,'20200127','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200127.log',1,1,259,1,4,NULL,1048585,4,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200127.log',1,1,259,3,6,NULL,1048585,6,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200127.log',1,1,259,3,9,NULL,1048585,9,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200127.log',1,1,259,3,10,NULL,1048585,10,'20200127','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200128.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200128.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200128.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200128.log',1,1,259,1,2,2,515,12,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200128.log',1,1,259,1,3,8,515,33,'20200128','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200128.log',1,1,259,1,3,NULL,1048585,3,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200128.log',1,1,259,1,5,NULL,1048585,5,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200128.log',1,1,259,3,8,NULL,1048585,8,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200128.log',1,1,259,3,10,NULL,1048585,10,'20200128','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200129.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200129.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200129.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200129.log',1,1,259,3,10,9,515,59,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200129.log',1,1,259,3,9,11,515,61,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200129.log',1,1,259,3,8,12,515,62,'20200129','202001',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200129.log',1,1,259,1,1,NULL,1048585,1,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200129.log',1,1,259,1,4,NULL,1048585,4,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200129.log',1,1,259,3,6,NULL,1048585,6,'20200129','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200130.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200130.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200130','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200130.log',1,1,259,3,8,12,515,62,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200130.log',1,1,259,3,6,13,515,63,'20200130','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200131.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200131.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200131.log',1,1,259,3,10,9,515,59,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,1,259,3,7,10,515,60,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,1,259,3,9,11,515,61,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,1,259,3,8,12,515,62,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,1,259,3,6,13,515,63,'20200131','202001',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,1,259,3,6,NULL,1048585,6,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,1,259,3,7,NULL,1048585,7,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200131.log',1,1,259,3,8,NULL,1048585,8,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200131.log',1,1,259,3,9,NULL,1048585,9,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200131.log',1,1,259,3,10,NULL,1048585,10,'20200131','202001',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200201.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200201','202002',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200201.log',1,1,259,1,4,7,515,32,'20200201','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200202.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200202.log',1,1,259,3,6,NULL,1048585,6,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200202.log',1,1,259,3,9,NULL,1048585,9,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200202.log',1,1,259,3,10,NULL,1048585,10,'20200202','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200203.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200203.log',1,1,259,1,2,NULL,1048585,2,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200203.log',1,1,259,3,8,NULL,1048585,8,'20200203','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',21),('usage_events_20200204.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200204.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200204.log',1,1,259,1,4,7,515,32,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,1,259,1,3,8,515,33,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,1,259,3,7,10,515,60,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,1,259,3,9,11,515,61,'20200204','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,1,259,1,1,NULL,1048585,1,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,1,259,1,4,NULL,1048585,4,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,1,259,1,5,NULL,1048585,5,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200204.log',1,1,259,3,10,NULL,1048585,10,'20200204','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200205.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200205.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200205.log',1,1,259,1,4,7,515,32,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200205.log',1,1,259,1,3,8,515,33,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200205.log',1,1,259,3,7,10,515,60,'20200205','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200205.log',1,1,259,1,5,NULL,1048585,5,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200205.log',1,1,259,3,7,NULL,1048585,7,'20200205','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200206.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200206.log',1,1,259,1,4,7,515,32,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200206.log',1,1,259,3,10,9,515,59,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200206.log',1,1,259,3,9,11,515,61,'20200206','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200206.log',1,1,259,1,1,NULL,1048585,1,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200206.log',1,1,259,3,6,NULL,1048585,6,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200206.log',1,1,259,3,7,NULL,1048585,7,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200206.log',1,1,259,3,8,NULL,1048585,8,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200206.log',1,1,259,3,10,NULL,1048585,10,'20200206','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200207.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20200207.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200207.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200207.log',1,1,259,3,9,11,515,61,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200207.log',1,1,259,3,6,13,515,63,'20200207','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200207.log',1,1,259,1,2,NULL,1048585,2,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200207.log',1,1,259,1,4,NULL,1048585,4,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200207.log',1,1,259,3,8,NULL,1048585,8,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200207.log',1,1,259,3,9,NULL,1048585,9,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200207.log',1,1,259,3,10,NULL,1048585,10,'20200207','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200208.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200208.log',1,1,259,1,1,5,515,30,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200208.log',1,1,259,3,7,10,515,60,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200208.log',1,1,259,3,6,13,515,63,'20200208','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200208.log',1,1,259,1,2,NULL,1048585,2,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200208.log',1,1,259,3,9,NULL,1048585,9,'20200208','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200209.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200209.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200209.log',1,1,259,3,10,9,515,59,'20200209','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200209.log',1,1,259,1,3,NULL,1048585,3,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200209.log',1,1,259,3,6,NULL,1048585,6,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200209.log',1,1,259,3,7,NULL,1048585,7,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200209.log',1,1,259,3,8,NULL,1048585,8,'20200209','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200210.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200210.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200210.log',1,1,259,1,2,2,515,12,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200210.log',1,1,259,3,10,9,515,59,'20200210','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200210.log',1,1,259,1,3,NULL,1048585,3,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200210.log',1,1,259,1,4,NULL,1048585,4,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200210.log',1,1,259,1,5,NULL,1048585,5,'20200210','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200211.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200211.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200211.log',1,1,259,1,4,7,515,32,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200211.log',1,1,259,1,3,8,515,33,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200211.log',1,1,259,3,7,10,515,60,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200211.log',1,1,259,3,6,13,515,63,'20200211','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200211.log',1,1,259,1,5,NULL,1048585,5,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200211.log',1,1,259,3,10,NULL,1048585,10,'20200211','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200212.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200212.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200212.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200212.log',1,1,259,3,9,11,515,61,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200212.log',1,1,259,3,6,13,515,63,'20200212','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200212.log',1,1,259,3,6,NULL,1048585,6,'20200212','202002',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200213.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200213.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200213.log',1,1,259,1,5,6,515,31,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,3,10,9,515,59,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,3,7,10,515,60,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,3,9,11,515,61,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,3,8,12,515,62,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200213.log',1,1,259,3,6,13,515,63,'20200213','202002',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200213.log',1,1,259,1,1,NULL,1048585,1,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,1,3,NULL,1048585,3,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,3,6,NULL,1048585,6,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200213.log',1,1,259,3,7,NULL,1048585,7,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,3,8,NULL,1048585,8,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200213.log',1,1,259,3,9,NULL,1048585,9,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200213.log',1,1,259,3,10,NULL,1048585,10,'20200213','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200214.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,1,259,1,2,2,515,12,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,1,259,1,3,8,515,33,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,1,259,3,9,11,515,61,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,1,259,3,6,13,515,63,'20200214','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,1,259,1,3,NULL,1048585,3,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,1,259,3,7,NULL,1048585,7,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200214.log',1,1,259,3,10,NULL,1048585,10,'20200214','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200215.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200215.log',1,1,259,1,1,5,515,30,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200215.log',1,1,259,1,5,6,515,31,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200215.log',1,1,259,3,6,13,515,63,'20200215','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200215.log',1,1,259,1,2,NULL,1048585,2,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200215.log',1,1,259,1,3,NULL,1048585,3,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200215.log',1,1,259,3,7,NULL,1048585,7,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200215.log',1,1,259,3,8,NULL,1048585,8,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200215.log',1,1,259,3,9,NULL,1048585,9,'20200215','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200216.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200216.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200216.log',1,1,259,1,1,5,515,30,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200216.log',1,1,259,3,9,11,515,61,'20200216','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200216.log',1,1,259,1,1,NULL,1048585,1,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200216.log',1,1,259,1,5,NULL,1048585,5,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200216.log',1,1,259,3,6,NULL,1048585,6,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200216.log',1,1,259,3,9,NULL,1048585,9,'20200216','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200217.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,1,1,5,515,30,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200217.log',1,1,259,1,5,6,515,31,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200217.log',1,1,259,3,10,9,515,59,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,3,9,11,515,61,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,3,6,13,515,63,'20200217','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,1,2,NULL,1048585,2,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,1,4,NULL,1048585,4,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,1,5,NULL,1048585,5,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,3,7,NULL,1048585,7,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200217.log',1,1,259,3,9,NULL,1048585,9,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200217.log',1,1,259,3,10,NULL,1048585,10,'20200217','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200218.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200218.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200218.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200218.log',1,1,259,1,5,6,515,31,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200218.log',1,1,259,1,4,7,515,32,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200218.log',1,1,259,1,3,8,515,33,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200218.log',1,1,259,3,9,11,515,61,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200218.log',1,1,259,3,8,12,515,62,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200218.log',1,1,259,3,6,13,515,63,'20200218','202002',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200218.log',1,1,259,1,1,NULL,1048585,1,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200218.log',1,1,259,1,4,NULL,1048585,4,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200218.log',1,1,259,3,6,NULL,1048585,6,'20200218','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200219.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200219.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200219.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200219.log',1,1,259,1,2,2,515,12,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200219.log',1,1,259,1,1,5,515,30,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200219.log',1,1,259,1,4,7,515,32,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200219.log',1,1,259,3,9,11,515,61,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200219.log',1,1,259,3,6,13,515,63,'20200219','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200219.log',1,1,259,1,3,NULL,1048585,3,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200219.log',1,1,259,3,6,NULL,1048585,6,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200219.log',1,1,259,3,9,NULL,1048585,9,'20200219','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200220.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200220.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200220.log',1,1,259,1,2,2,515,12,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200220.log',1,1,259,1,4,7,515,32,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200220.log',1,1,259,3,6,13,515,63,'20200220','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200220.log',1,1,259,3,6,NULL,1048585,6,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200220.log',1,1,259,3,7,NULL,1048585,7,'20200220','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200221.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200221.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200221.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200221.log',1,1,259,1,3,8,515,33,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200221.log',1,1,259,3,8,12,515,62,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200221.log',1,1,259,3,6,13,515,63,'20200221','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200221.log',1,1,259,1,1,NULL,1048585,1,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200221.log',1,1,259,1,2,NULL,1048585,2,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200221.log',1,1,259,1,5,NULL,1048585,5,'20200221','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200222.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200222.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200222.log',1,1,259,1,3,8,515,33,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200222.log',1,1,259,3,10,9,515,59,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200222.log',1,1,259,3,6,13,515,63,'20200222','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200222.log',1,1,259,1,2,NULL,1048585,2,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200222.log',1,1,259,3,9,NULL,1048585,9,'20200222','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200223.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200223.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200223.log',1,1,259,1,4,7,515,32,'20200223','202002',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200223.log',1,1,259,3,7,NULL,1048585,7,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200223.log',1,1,259,3,9,NULL,1048585,9,'20200223','202002',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200224.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200224.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200224.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200224.log',1,1,259,1,1,5,515,30,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,1,5,6,515,31,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,3,10,9,515,59,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,3,7,10,515,60,'20200224','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,1,2,NULL,1048585,2,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,1,4,NULL,1048585,4,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,1,5,NULL,1048585,5,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,3,8,NULL,1048585,8,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200224.log',1,1,259,3,9,NULL,1048585,9,'20200224','202002',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200225.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200225.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200225.log',1,1,259,1,2,2,515,12,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,3,10,9,515,59,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,3,7,10,515,60,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,3,8,12,515,62,'20200225','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200225.log',1,1,259,1,1,NULL,1048585,1,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,1,2,NULL,1048585,2,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,1,3,NULL,1048585,3,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,1,4,NULL,1048585,4,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,3,6,NULL,1048585,6,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,3,8,NULL,1048585,8,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200225.log',1,1,259,3,9,NULL,1048585,9,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200225.log',1,1,259,3,10,NULL,1048585,10,'20200225','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200226.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200226.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200226.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200226.log',1,1,259,1,5,6,515,31,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200226.log',1,1,259,1,4,7,515,32,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200226.log',1,1,259,1,3,8,515,33,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200226.log',1,1,259,3,6,13,515,63,'20200226','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200226.log',1,1,259,1,3,NULL,1048585,3,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200226.log',1,1,259,1,5,NULL,1048585,5,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200226.log',1,1,259,3,7,NULL,1048585,7,'20200226','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200227.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200227.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200227.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200227.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200227','202002',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200227.log',1,1,259,3,10,9,515,59,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200227.log',1,1,259,4,13,14,515,99,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200227.log',1,1,259,4,15,15,515,100,'20200227','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200228.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200228.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200228.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200228.log',1,1,259,1,3,8,515,33,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200228.log',1,1,259,4,13,14,515,99,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200228.log',1,1,259,4,15,15,515,100,'20200228','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200228.log',1,1,259,1,1,NULL,1048585,1,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200228.log',1,1,259,3,9,NULL,1048585,9,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200228.log',1,1,259,4,13,NULL,1048585,13,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200228.log',1,1,259,4,14,NULL,1048585,14,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200228.log',1,1,259,4,15,NULL,1048585,15,'20200228','202002',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200301.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200301.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200301.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200301.log',1,1,259,1,1,5,515,30,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200301.log',1,1,259,1,4,7,515,32,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200301.log',1,1,259,3,6,13,515,63,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200301.log',1,1,259,4,14,16,515,102,'20200301','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200301.log',1,1,259,3,6,NULL,1048585,6,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200301.log',1,1,259,3,7,NULL,1048585,7,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200301.log',1,1,259,3,8,NULL,1048585,8,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200301.log',1,1,259,3,9,NULL,1048585,9,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200301.log',1,1,259,4,14,NULL,1048585,14,'20200301','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200229.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20200229.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200229.log',1,1,259,1,1,5,515,30,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,1,4,7,515,32,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,3,8,12,515,62,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,4,13,14,515,99,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200229.log',1,1,259,4,15,15,515,100,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,4,14,16,515,102,'20200229','202002',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200229.log',1,1,259,3,7,NULL,1048585,7,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,3,9,NULL,1048585,9,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,3,10,NULL,1048585,10,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,4,13,NULL,1048585,13,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200229.log',1,1,259,4,14,NULL,1048585,14,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200229.log',1,1,259,4,15,NULL,1048585,15,'20200229','202002',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200302.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200302.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,1,1,5,515,30,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,3,6,13,515,63,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,4,14,16,515,102,'20200302','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,1,2,NULL,1048585,2,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200302.log',1,1,259,1,4,NULL,1048585,4,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,3,6,NULL,1048585,6,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200302.log',1,1,259,3,7,NULL,1048585,7,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,3,8,NULL,1048585,8,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,3,10,NULL,1048585,10,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200302.log',1,1,259,4,14,NULL,1048585,14,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200302.log',1,1,259,4,15,NULL,1048585,15,'20200302','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',21),('usage_events_20200303.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200303.log',1,1,259,1,2,2,515,12,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,1,1,5,515,30,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,1,4,7,515,32,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,3,6,13,515,63,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,4,13,14,515,99,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,1,259,4,15,15,515,100,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,1,259,4,14,16,515,102,'20200303','202003',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200303.log',1,1,259,1,2,NULL,1048585,2,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,1,3,NULL,1048585,3,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,1,259,1,5,NULL,1048585,5,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,3,6,NULL,1048585,6,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,3,7,NULL,1048585,7,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,1,259,3,8,NULL,1048585,8,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,3,9,NULL,1048585,9,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200303.log',1,1,259,3,10,NULL,1048585,10,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200303.log',1,1,259,4,13,NULL,1048585,13,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200303.log',1,1,259,4,14,NULL,1048585,14,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200303.log',1,1,259,4,15,NULL,1048585,15,'20200303','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200304.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200304.log',1,1,259,3,10,9,515,59,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200304.log',1,1,259,4,13,14,515,99,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200304.log',1,1,259,4,14,16,515,102,'20200304','202003',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200304.log',1,1,259,1,1,NULL,1048585,1,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200304.log',1,1,259,1,5,NULL,1048585,5,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200304.log',1,1,259,3,9,NULL,1048585,9,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200304.log',1,1,259,3,10,NULL,1048585,10,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200304.log',1,1,259,4,13,NULL,1048585,13,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200304.log',1,1,259,4,14,NULL,1048585,14,'20200304','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200305.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200305.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200305.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200305.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200305.log',1,1,259,3,10,9,515,59,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200305.log',1,1,259,3,7,10,515,60,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200305.log',1,1,259,4,13,14,515,99,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200305.log',1,1,259,4,15,15,515,100,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200305.log',1,1,259,4,14,16,515,102,'20200305','202003',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200305.log',1,1,259,1,1,NULL,1048585,1,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200305.log',1,1,259,1,4,NULL,1048585,4,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200305.log',1,1,259,1,5,NULL,1048585,5,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200305.log',1,1,259,3,6,NULL,1048585,6,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200305.log',1,1,259,3,7,NULL,1048585,7,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200305.log',1,1,259,3,8,NULL,1048585,8,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200305.log',1,1,259,3,9,NULL,1048585,9,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200305.log',1,1,259,3,10,NULL,1048585,10,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200305.log',1,1,259,4,13,NULL,1048585,13,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200305.log',1,1,259,4,14,NULL,1048585,14,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200305.log',1,1,259,4,15,NULL,1048585,15,'20200305','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200306.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200306.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200306.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200306.log',1,1,259,3,10,9,515,59,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200306.log',1,1,259,4,15,15,515,100,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200306.log',1,1,259,4,14,16,515,102,'20200306','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200306.log',1,1,259,1,3,NULL,1048585,3,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200306.log',1,1,259,3,7,NULL,1048585,7,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200306.log',1,1,259,4,13,NULL,1048585,13,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200306.log',1,1,259,4,14,NULL,1048585,14,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200306.log',1,1,259,4,15,NULL,1048585,15,'20200306','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200307.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200307.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200307.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200307.log',1,1,259,1,1,5,515,30,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200307.log',1,1,259,3,6,13,515,63,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200307.log',1,1,259,4,13,14,515,99,'20200307','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200307.log',1,1,259,1,1,NULL,1048585,1,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200307.log',1,1,259,1,2,NULL,1048585,2,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200307.log',1,1,259,1,3,NULL,1048585,3,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200307.log',1,1,259,1,4,NULL,1048585,4,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200307.log',1,1,259,3,6,NULL,1048585,6,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200307.log',1,1,259,4,13,NULL,1048585,13,'20200307','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200308.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200308.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,1,2,2,515,12,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,1,1,5,515,30,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,1,3,8,515,33,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,3,8,12,515,62,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,4,13,14,515,99,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,4,15,15,515,100,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200308.log',1,1,259,4,14,16,515,102,'20200308','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,1,4,NULL,1048585,4,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200308.log',1,1,259,1,5,NULL,1048585,5,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,3,6,NULL,1048585,6,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,4,14,NULL,1048585,14,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200308.log',1,1,259,4,15,NULL,1048585,15,'20200308','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200309.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200309.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200309.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200309.log',1,1,259,1,1,5,515,30,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200309.log',1,1,259,3,9,11,515,61,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200309.log',1,1,259,3,8,12,515,62,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200309.log',1,1,259,4,14,16,515,102,'20200309','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200309.log',1,1,259,1,2,NULL,1048585,2,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200309.log',1,1,259,1,3,NULL,1048585,3,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200309.log',1,1,259,1,5,NULL,1048585,5,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200309.log',1,1,259,3,10,NULL,1048585,10,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200309.log',1,1,259,4,15,NULL,1048585,15,'20200309','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200310.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20200310.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200310.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200310.log',1,1,259,1,2,2,515,12,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200310.log',1,1,259,1,1,5,515,30,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200310.log',1,1,259,1,4,7,515,32,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200310.log',1,1,259,4,13,14,515,99,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200310.log',1,1,259,4,15,15,515,100,'20200310','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200310.log',1,1,259,1,2,NULL,1048585,2,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200310.log',1,1,259,4,13,NULL,1048585,13,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200310.log',1,1,259,4,15,NULL,1048585,15,'20200310','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200311.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200311.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200311.log',1,1,259,1,3,8,515,33,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,4,13,14,515,99,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200311.log',1,1,259,4,15,15,515,100,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200311.log',1,1,259,4,14,16,515,102,'20200311','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,1,5,NULL,1048585,5,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,3,6,NULL,1048585,6,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,3,7,NULL,1048585,7,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200311.log',1,1,259,3,8,NULL,1048585,8,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,3,9,NULL,1048585,9,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,3,10,NULL,1048585,10,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,4,13,NULL,1048585,13,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200311.log',1,1,259,4,14,NULL,1048585,14,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200311.log',1,1,259,4,15,NULL,1048585,15,'20200311','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200312.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200312.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200312.log',1,1,259,1,4,7,515,32,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200312.log',1,1,259,3,6,13,515,63,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200312.log',1,1,259,4,13,14,515,99,'20200312','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200312.log',1,1,259,3,6,NULL,1048585,6,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200312.log',1,1,259,4,13,NULL,1048585,13,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200312.log',1,1,259,4,14,NULL,1048585,14,'20200312','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200313.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200313.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200313.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200313.log',1,1,259,3,7,10,515,60,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200313.log',1,1,259,3,9,11,515,61,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200313.log',1,1,259,3,6,13,515,63,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200313.log',1,1,259,4,13,14,515,99,'20200313','202003',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200313.log',1,1,259,3,9,NULL,1048585,9,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200313.log',1,1,259,4,13,NULL,1048585,13,'20200313','202003',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200314.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20200314.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200314.log',1,1,259,1,1,5,515,30,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,3,9,11,515,61,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,4,13,14,515,99,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,4,15,15,515,100,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,4,14,16,515,102,'20200314','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200314.log',1,1,259,1,5,NULL,1048585,5,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,3,6,NULL,1048585,6,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,3,7,NULL,1048585,7,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200314.log',1,1,259,3,8,NULL,1048585,8,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,3,9,NULL,1048585,9,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,3,10,NULL,1048585,10,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,4,13,NULL,1048585,13,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200314.log',1,1,259,4,14,NULL,1048585,14,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200314.log',1,1,259,4,15,NULL,1048585,15,'20200314','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200315.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200315.log',1,1,259,1,1,5,515,30,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,1,259,1,5,6,515,31,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,1,259,3,9,11,515,61,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,1,259,3,6,13,515,63,'20200315','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,1,259,1,1,NULL,1048585,1,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,1,259,3,7,NULL,1048585,7,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200315.log',1,1,259,3,9,NULL,1048585,9,'20200315','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200316.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200316.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200316','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200317.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200317.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200317.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200317','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200317.log',1,1,259,4,15,15,515,100,'20200317','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200318.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200318.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200318.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200318.log',1,1,259,3,7,10,515,60,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200318.log',1,1,259,3,6,13,515,63,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200318.log',1,1,259,4,13,14,515,99,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200318.log',1,1,259,4,14,16,515,102,'20200318','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200318.log',1,1,259,3,6,NULL,1048585,6,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200318.log',1,1,259,4,14,NULL,1048585,14,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200318.log',1,1,259,4,15,NULL,1048585,15,'20200318','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200319.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200319.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200319.log',1,1,259,1,2,2,515,12,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200319.log',1,1,259,1,1,5,515,30,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200319.log',1,1,259,3,9,11,515,61,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200319.log',1,1,259,4,13,14,515,99,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200319.log',1,1,259,4,15,15,515,100,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200319.log',1,1,259,4,14,16,515,102,'20200319','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200319.log',1,1,259,1,1,NULL,1048585,1,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200319.log',1,1,259,1,5,NULL,1048585,5,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200319.log',1,1,259,3,9,NULL,1048585,9,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200319.log',1,1,259,4,14,NULL,1048585,14,'20200319','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200320.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200320.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200320.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200320.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200320.log',1,1,259,1,5,6,515,31,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200320.log',1,1,259,3,10,9,515,59,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200320.log',1,1,259,3,9,11,515,61,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200320.log',1,1,259,3,6,13,515,63,'20200320','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200320.log',1,1,259,3,9,NULL,1048585,9,'20200320','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200321.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200321.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200321.log',1,1,259,1,1,5,515,30,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200321.log',1,1,259,1,4,7,515,32,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200321.log',1,1,259,3,6,13,515,63,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200321.log',1,1,259,4,14,16,515,102,'20200321','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200321.log',1,1,259,1,1,NULL,1048585,1,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200321.log',1,1,259,1,2,NULL,1048585,2,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200321.log',1,1,259,1,4,NULL,1048585,4,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200321.log',1,1,259,3,6,NULL,1048585,6,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200321.log',1,1,259,3,7,NULL,1048585,7,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200321.log',1,1,259,4,15,NULL,1048585,15,'20200321','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200322.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200322.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200322.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200322.log',1,1,259,3,9,11,515,61,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200322.log',1,1,259,4,13,14,515,99,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200322.log',1,1,259,4,15,15,515,100,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200322.log',1,1,259,4,14,16,515,102,'20200322','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200322.log',1,1,259,3,6,NULL,1048585,6,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200322.log',1,1,259,3,9,NULL,1048585,9,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200322.log',1,1,259,4,13,NULL,1048585,13,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200322.log',1,1,259,4,14,NULL,1048585,14,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200322.log',1,1,259,4,15,NULL,1048585,15,'20200322','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200323.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200323.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200323.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200323.log',1,1,259,1,4,7,515,32,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200323.log',1,1,259,4,13,14,515,99,'20200323','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200323.log',1,1,259,1,3,NULL,1048585,3,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200323.log',1,1,259,1,4,NULL,1048585,4,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200323.log',1,1,259,1,5,NULL,1048585,5,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200323.log',1,1,259,3,9,NULL,1048585,9,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200323.log',1,1,259,3,10,NULL,1048585,10,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200323.log',1,1,259,4,13,NULL,1048585,13,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200323.log',1,1,259,4,14,NULL,1048585,14,'20200323','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200324.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200324.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200324.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200324.log',1,1,259,1,3,8,515,33,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200324.log',1,1,259,3,10,9,515,59,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200324.log',1,1,259,3,6,13,515,63,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200324.log',1,1,259,4,13,14,515,99,'20200324','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200324.log',1,1,259,1,4,NULL,1048585,4,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200324.log',1,1,259,4,14,NULL,1048585,14,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200324.log',1,1,259,4,15,NULL,1048585,15,'20200324','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200325.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200325.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200325.log',1,1,259,1,2,2,515,12,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200325.log',1,1,259,1,4,7,515,32,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200325.log',1,1,259,3,8,12,515,62,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,1,259,4,13,14,515,99,'20200325','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200325.log',1,1,259,3,7,NULL,1048585,7,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,1,259,3,8,NULL,1048585,8,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,1,259,4,13,NULL,1048585,13,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200325.log',1,1,259,4,14,NULL,1048585,14,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,1,259,4,15,NULL,1048585,15,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,1,259,4,16,NULL,1048585,16,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200325.log',1,1,259,4,17,NULL,1048585,17,'20200325','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200326.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200326.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200326.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200326.log',1,1,259,3,9,11,515,61,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200326.log',1,1,259,4,14,16,515,102,'20200326','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200326.log',1,1,259,3,9,NULL,1048585,9,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200326.log',1,1,259,4,14,NULL,1048585,14,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200326.log',1,1,259,4,16,NULL,1048585,16,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200326.log',1,1,259,4,17,NULL,1048585,17,'20200326','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200327.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',19),('usage_events_20200327.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200327.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200327.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200327.log',1,1,259,1,4,7,515,32,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200327.log',1,1,259,4,13,17,515,117,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200327.log',1,1,259,4,15,18,515,118,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200327.log',1,1,259,4,14,19,515,119,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200327.log',1,1,259,4,16,20,515,120,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200327.log',1,1,259,4,17,21,515,121,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200327.log',1,1,259,4,11,22,515,122,'20200327','202003',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200327.log',1,1,259,3,9,NULL,1048585,9,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200327.log',1,1,259,4,11,NULL,1048585,11,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200327.log',1,1,259,4,15,NULL,1048585,15,'20200327','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',30),('usage_events_20200328.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200328.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200328.log',1,1,259,1,5,6,515,31,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,3,9,11,515,61,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,3,6,13,515,63,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,4,13,17,515,117,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200328.log',1,1,259,4,11,22,515,122,'20200328','202003',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200328.log',1,1,259,1,1,NULL,1048585,1,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,1,2,NULL,1048585,2,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,1,4,NULL,1048585,4,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200328.log',1,1,259,1,5,NULL,1048585,5,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,3,6,NULL,1048585,6,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,3,9,NULL,1048585,9,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200328.log',1,1,259,3,10,NULL,1048585,10,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200328.log',1,1,259,4,11,NULL,1048585,11,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200328.log',1,1,259,4,13,NULL,1048585,13,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200328.log',1,1,259,4,17,NULL,1048585,17,'20200328','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20200329.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200329.log',1,1,259,1,1,5,515,30,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,3,9,11,515,61,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,3,6,13,515,63,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,4,11,22,515,122,'20200329','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,1,1,NULL,1048585,1,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,1,4,NULL,1048585,4,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,3,7,NULL,1048585,7,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,3,9,NULL,1048585,9,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200329.log',1,1,259,3,10,NULL,1048585,10,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200329.log',1,1,259,4,11,NULL,1048585,11,'20200329','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200330.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200330.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200330.log',1,1,259,1,2,2,515,12,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,1,259,1,1,5,515,30,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,1,259,3,6,13,515,63,'20200330','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,1,259,1,3,NULL,1048585,3,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,1,259,3,8,NULL,1048585,8,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,1,259,3,9,NULL,1048585,9,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200330.log',1,1,259,4,13,NULL,1048585,13,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200330.log',1,1,259,4,14,NULL,1048585,14,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200330.log',1,1,259,4,16,NULL,1048585,16,'20200330','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200331.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200331.log',1,1,259,3,9,11,515,61,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,4,14,19,515,119,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,4,17,21,515,121,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,4,11,22,515,122,'20200331','202003',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,1,1,NULL,1048585,1,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,1,2,NULL,1048585,2,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,1,3,NULL,1048585,3,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,1,4,NULL,1048585,4,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,1,5,NULL,1048585,5,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,4,11,NULL,1048585,11,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200331.log',1,1,259,4,14,NULL,1048585,14,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200331.log',1,1,259,4,16,NULL,1048585,16,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200331.log',1,1,259,4,17,NULL,1048585,17,'20200331','202003',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200401.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200401.log',1,1,259,3,9,11,515,61,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,3,8,12,515,62,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,3,6,13,515,63,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200401.log',1,1,259,4,13,17,515,117,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,4,15,18,515,118,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,4,11,22,515,122,'20200401','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200401.log',1,1,259,1,1,NULL,1048585,1,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,1,2,NULL,1048585,2,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,1,3,NULL,1048585,3,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,1,4,NULL,1048585,4,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,1,5,NULL,1048585,5,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200401.log',1,1,259,3,6,NULL,1048585,6,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200401.log',1,1,259,4,17,NULL,1048585,17,'20200401','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200402.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200402.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200402.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200402.log',1,1,259,3,6,13,515,63,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200402.log',1,1,259,4,16,20,515,120,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200402.log',1,1,259,4,17,21,515,121,'20200402','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200402.log',1,1,259,3,6,NULL,1048585,6,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200402.log',1,1,259,3,7,NULL,1048585,7,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200402.log',1,1,259,4,13,NULL,1048585,13,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200402.log',1,1,259,4,16,NULL,1048585,16,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200402.log',1,1,259,4,17,NULL,1048585,17,'20200402','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200403.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,1,1,NULL,1048585,1,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200403.log',1,1,259,1,2,NULL,1048585,2,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,1,3,NULL,1048585,3,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,1,4,NULL,1048585,4,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200403.log',1,1,259,1,5,NULL,1048585,5,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200403.log',1,1,259,3,6,NULL,1048585,6,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200403.log',1,1,259,3,7,NULL,1048585,7,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,3,8,NULL,1048585,8,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,3,9,NULL,1048585,9,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,3,10,NULL,1048585,10,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200403.log',1,1,259,4,11,NULL,1048585,11,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,4,13,NULL,1048585,13,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200403.log',1,1,259,4,14,NULL,1048585,14,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200403.log',1,1,259,4,15,NULL,1048585,15,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200403.log',1,1,259,4,16,NULL,1048585,16,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200403.log',1,1,259,4,17,NULL,1048585,17,'20200403','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200404.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200404.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200404.log',1,1,259,1,5,6,515,31,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200404.log',1,1,259,3,10,9,515,59,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200404.log',1,1,259,4,11,22,515,122,'20200404','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200404.log',1,1,259,3,6,NULL,1048585,6,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200404.log',1,1,259,4,11,NULL,1048585,11,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200404.log',1,1,259,4,14,NULL,1048585,14,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200404.log',1,1,259,4,15,NULL,1048585,15,'20200404','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200405.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,1,2,2,515,12,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,1,1,5,515,30,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,1,4,7,515,32,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,3,10,9,515,59,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,3,9,11,515,61,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,3,6,13,515,63,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200405.log',1,1,259,4,13,17,515,117,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,4,15,18,515,118,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200405.log',1,1,259,4,14,19,515,119,'20200405','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,3,7,NULL,1048585,7,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,3,9,NULL,1048585,9,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,4,11,NULL,1048585,11,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,4,13,NULL,1048585,13,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,4,16,NULL,1048585,16,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200405.log',1,1,259,4,17,NULL,1048585,17,'20200405','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200406.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200406.log',1,1,259,1,1,5,515,30,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,3,7,10,515,60,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,3,8,12,515,62,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,4,13,17,515,117,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200406.log',1,1,259,4,14,19,515,119,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,4,17,21,515,121,'20200406','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,3,8,NULL,1048585,8,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200406.log',1,1,259,4,11,NULL,1048585,11,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200406.log',1,1,259,4,13,NULL,1048585,13,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,4,14,NULL,1048585,14,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,4,15,NULL,1048585,15,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,4,16,NULL,1048585,16,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200406.log',1,1,259,4,17,NULL,1048585,17,'20200406','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200407.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200407.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200407.log',1,1,259,1,4,7,515,32,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200407.log',1,1,259,3,9,11,515,61,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200407.log',1,1,259,4,11,22,515,122,'20200407','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200407.log',1,1,259,4,11,NULL,1048585,11,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200407.log',1,1,259,4,13,NULL,1048585,13,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200407.log',1,1,259,4,14,NULL,1048585,14,'20200407','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200408.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200408.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200408.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200408.log',1,1,259,3,7,10,515,60,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200408.log',1,1,259,3,9,11,515,61,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200408.log',1,1,259,4,16,20,515,120,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200408.log',1,1,259,4,17,21,515,121,'20200408','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200408.log',1,1,259,4,13,NULL,1048585,13,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200408.log',1,1,259,4,15,NULL,1048585,15,'20200408','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200409.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200409.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200409.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200409.log',1,1,259,3,6,13,515,63,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200409.log',1,1,259,4,13,17,515,117,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200409.log',1,1,259,4,14,19,515,119,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200409.log',1,1,259,4,16,20,515,120,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200409.log',1,1,259,4,11,22,515,122,'20200409','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200409.log',1,1,259,3,6,NULL,1048585,6,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200409.log',1,1,259,4,13,NULL,1048585,13,'20200409','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200410.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200410.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,1,1,5,515,30,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,3,8,12,515,62,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,4,14,19,515,119,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,4,16,20,515,120,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,4,11,22,515,122,'20200410','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,4,11,NULL,1048585,11,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,4,14,NULL,1048585,14,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200410.log',1,1,259,4,16,NULL,1048585,16,'20200410','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200411.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200411.log',1,1,259,3,7,10,515,60,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200411.log',1,1,259,3,6,13,515,63,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200411.log',1,1,259,4,15,18,515,118,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200411.log',1,1,259,4,14,19,515,119,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200411.log',1,1,259,4,11,22,515,122,'20200411','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200411.log',1,1,259,4,14,NULL,1048585,14,'20200411','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200412.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200412','202004',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200412.log',1,1,259,4,17,21,515,121,'20200412','202004',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200413.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200413.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,1,259,4,14,19,515,119,'20200413','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200413.log',1,1,259,3,7,NULL,1048585,7,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,1,259,3,8,NULL,1048585,8,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,1,259,3,9,NULL,1048585,9,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,1,259,3,10,NULL,1048585,10,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,1,259,4,11,NULL,1048585,11,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200413.log',1,1,259,4,13,NULL,1048585,13,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,1,259,4,14,NULL,1048585,14,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200413.log',1,1,259,4,15,NULL,1048585,15,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200413.log',1,1,259,4,16,NULL,1048585,16,'20200413','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200414.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200414','202004',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200414.log',1,1,259,4,14,19,515,119,'20200414','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200415.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200415','202004',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200416.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200416.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200416.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200416.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200416.log',1,1,259,3,8,NULL,1048585,8,'20200416','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200417.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200417.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200417.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200417','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200417.log',1,1,259,1,3,8,515,33,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200417.log',1,1,259,3,9,11,515,61,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200417.log',1,1,259,3,6,13,515,63,'20200417','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200418.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200418.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200418.log',1,1,259,1,1,5,515,30,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200418.log',1,1,259,3,6,13,515,63,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200418.log',1,1,259,4,11,22,515,122,'20200418','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200418.log',1,1,259,3,6,NULL,1048585,6,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200418.log',1,1,259,4,11,NULL,1048585,11,'20200418','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200419.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200419.log',1,1,259,3,7,10,515,60,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200419.log',1,1,259,3,8,12,515,62,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200419.log',1,1,259,3,6,13,515,63,'20200419','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200419.log',1,1,259,1,1,NULL,1048585,1,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200419.log',1,1,259,3,6,NULL,1048585,6,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200419.log',1,1,259,3,8,NULL,1048585,8,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200419.log',1,1,259,4,13,NULL,1048585,13,'20200419','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200420.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200420.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200420.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200420.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200420.log',1,1,259,1,4,7,515,32,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200420.log',1,1,259,3,7,10,515,60,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200420.log',1,1,259,3,9,11,515,61,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200420.log',1,1,259,4,15,18,515,118,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200420.log',1,1,259,4,17,21,515,121,'20200420','202004',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200420.log',1,1,259,3,7,NULL,1048585,7,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200420.log',1,1,259,4,11,NULL,1048585,11,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200420.log',1,1,259,4,17,NULL,1048585,17,'20200420','202004',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200421.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20200421.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200421.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200421.log',1,1,259,1,4,7,515,32,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200421.log',1,1,259,4,15,18,515,118,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200421.log',1,1,259,4,16,20,515,120,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200421.log',1,1,259,4,17,21,515,121,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200421.log',1,1,259,4,11,22,515,122,'20200421','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200421.log',1,1,259,4,11,NULL,1048585,11,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200421.log',1,1,259,4,16,NULL,1048585,16,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200421.log',1,1,259,4,17,NULL,1048585,17,'20200421','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200422.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200422.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200422.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200422.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200422.log',1,1,259,1,4,7,515,32,'20200422','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200422.log',1,1,259,3,9,NULL,1048585,9,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200422.log',1,1,259,4,13,NULL,1048585,13,'20200422','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200423.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,1,1,5,515,30,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200423.log',1,1,259,3,10,9,515,59,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,3,8,12,515,62,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,4,13,17,515,117,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,4,15,18,515,118,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,4,17,21,515,121,'20200423','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,1,1,NULL,1048585,1,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200423.log',1,1,259,3,8,NULL,1048585,8,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,4,13,NULL,1048585,13,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200423.log',1,1,259,4,15,NULL,1048585,15,'20200423','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200424.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200424.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200424.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200424.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200424.log',1,1,259,1,1,5,515,30,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200424.log',1,1,259,3,7,10,515,60,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200424.log',1,1,259,3,8,12,515,62,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200424.log',1,1,259,3,6,13,515,63,'20200424','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200424.log',1,1,259,1,1,NULL,1048585,1,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200424.log',1,1,259,3,6,NULL,1048585,6,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200424.log',1,1,259,4,15,NULL,1048585,15,'20200424','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',36),('usage_events_20200425.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200425.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200425.log',1,1,259,1,5,6,515,31,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,1,259,3,9,11,515,61,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,1,259,3,8,12,515,62,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,1,259,4,13,17,515,117,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200425.log',1,1,259,4,14,19,515,119,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200425.log',1,1,259,4,16,20,515,120,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200425.log',1,1,259,4,17,21,515,121,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,1,259,4,11,22,515,122,'20200425','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,1,259,1,1,NULL,1048585,1,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,1,259,1,2,NULL,1048585,2,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200425.log',1,1,259,4,13,NULL,1048585,13,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200425.log',1,1,259,4,14,NULL,1048585,14,'20200425','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',29),('usage_events_20200426.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,1,259,1,5,6,515,31,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,1,259,1,4,7,515,32,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200426.log',1,1,259,1,3,8,515,33,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,1,259,4,11,22,515,122,'20200426','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,1,259,1,2,NULL,1048585,2,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,1,259,3,6,NULL,1048585,6,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200426.log',1,1,259,4,11,NULL,1048585,11,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200426.log',1,1,259,4,16,NULL,1048585,16,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200426.log',1,1,259,4,17,NULL,1048585,17,'20200426','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200427.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200427.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200427.log',1,1,259,3,6,13,515,63,'20200427','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200427.log',1,1,259,3,6,NULL,1048585,6,'20200427','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200428.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200428.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200428.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200428.log',1,1,259,1,1,5,515,30,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200428.log',1,1,259,3,8,12,515,62,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200428.log',1,1,259,4,11,22,515,122,'20200428','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200428.log',1,1,259,3,6,NULL,1048585,6,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200428.log',1,1,259,4,11,NULL,1048585,11,'20200428','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200429.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200429.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200429.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200429.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200429.log',1,1,259,4,14,19,515,119,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200429.log',1,1,259,4,16,20,515,120,'20200429','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200429.log',1,1,259,4,14,NULL,1048585,14,'20200429','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200430.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20200430.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200430.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200430.log',1,1,259,1,4,7,515,32,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200430.log',1,1,259,3,8,12,515,62,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200430.log',1,1,259,3,6,13,515,63,'20200430','202004',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200430.log',1,1,259,1,3,NULL,1048585,3,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200430.log',1,1,259,1,4,NULL,1048585,4,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200430.log',1,1,259,3,6,NULL,1048585,6,'20200430','202004',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200501.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200501.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200501.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200501.log',1,1,259,1,3,8,515,33,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200501.log',1,1,259,3,8,12,515,62,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200501.log',1,1,259,3,6,13,515,63,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200501.log',1,1,259,4,13,17,515,117,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200501.log',1,1,259,4,15,18,515,118,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200501.log',1,1,259,4,14,19,515,119,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200501.log',1,1,259,4,16,20,515,120,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200501.log',1,1,259,4,17,21,515,121,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200501.log',1,1,259,4,11,22,515,122,'20200501','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200501.log',1,1,259,4,13,NULL,1048585,13,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200501.log',1,1,259,4,17,NULL,1048585,17,'20200501','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200502.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200502.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200502.log',1,1,259,1,2,2,515,12,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200502.log',1,1,259,1,4,7,515,32,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200502.log',1,1,259,4,13,17,515,117,'20200502','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200502.log',1,1,259,4,11,NULL,1048585,11,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200502.log',1,1,259,4,13,NULL,1048585,13,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200502.log',1,1,259,4,14,NULL,1048585,14,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200502.log',1,1,259,4,15,NULL,1048585,15,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200502.log',1,1,259,4,16,NULL,1048585,16,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200502.log',1,1,259,4,17,NULL,1048585,17,'20200502','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200503.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200503','202005',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200503.log',1,1,259,4,11,22,515,122,'20200503','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200504.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200504.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200504.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,3,7,10,515,60,'20200504','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,1,1,NULL,1048585,1,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,1,2,NULL,1048585,2,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,1,3,NULL,1048585,3,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,1,4,NULL,1048585,4,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,1,5,NULL,1048585,5,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,3,6,NULL,1048585,6,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,3,7,NULL,1048585,7,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,3,8,NULL,1048585,8,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,3,9,NULL,1048585,9,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,3,10,NULL,1048585,10,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,4,11,NULL,1048585,11,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,4,13,NULL,1048585,13,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,4,14,NULL,1048585,14,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,4,15,NULL,1048585,15,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,4,16,NULL,1048585,16,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200504.log',1,1,259,4,17,NULL,1048585,17,'20200504','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200505.log',1,1,259,1,1,NULL,1048585,1,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,1,4,NULL,1048585,4,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,3,7,NULL,1048585,7,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,3,10,NULL,1048585,10,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,4,11,NULL,1048585,11,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200505.log',1,1,259,4,13,NULL,1048585,13,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,4,14,NULL,1048585,14,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,4,15,NULL,1048585,15,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,4,16,NULL,1048585,16,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200505.log',1,1,259,4,17,NULL,1048585,17,'20200505','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200506.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,1,1,5,515,30,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,4,17,21,515,121,'20200506','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,1,2,NULL,1048585,2,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,1,3,NULL,1048585,3,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,1,5,NULL,1048585,5,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,3,6,NULL,1048585,6,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,3,8,NULL,1048585,8,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,3,9,NULL,1048585,9,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200506.log',1,1,259,4,17,NULL,1048585,17,'20200506','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200507.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200507.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200507.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200507.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200507.log',1,1,259,3,9,11,515,61,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200507.log',1,1,259,3,8,12,515,62,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200507.log',1,1,259,3,6,13,515,63,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200507.log',1,1,259,4,16,20,515,120,'20200507','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200507.log',1,1,259,1,4,NULL,1048585,4,'20200507','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200508.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200508.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200508.log',1,1,259,1,1,5,515,30,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200508.log',1,1,259,1,5,6,515,31,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200508.log',1,1,259,1,4,7,515,32,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200508.log',1,1,259,3,9,11,515,61,'20200508','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200508.log',1,1,259,3,8,NULL,1048585,8,'20200508','202005',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200509.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200509.log',1,1,259,4,11,NULL,1048585,11,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200509.log',1,1,259,4,15,NULL,1048585,15,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200509.log',1,1,259,4,17,NULL,1048585,17,'20200509','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200510.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200510.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200510.log',1,1,259,3,7,10,515,60,'20200510','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200510.log',1,1,259,1,1,NULL,1048585,1,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200510.log',1,1,259,4,14,NULL,1048585,14,'20200510','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200511.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200511.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200511.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200511.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200511.log',1,1,259,1,1,5,515,30,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200511.log',1,1,259,1,3,8,515,33,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200511.log',1,1,259,3,6,13,515,63,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200511.log',1,1,259,4,16,20,515,120,'20200511','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200511.log',1,1,259,1,2,NULL,1048585,2,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200511.log',1,1,259,1,3,NULL,1048585,3,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200511.log',1,1,259,4,14,NULL,1048585,14,'20200511','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',31),('usage_events_20200512.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200512.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200512.log',1,1,259,3,8,12,515,62,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,1,259,4,14,19,515,119,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,1,259,4,16,20,515,120,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,1,259,4,17,21,515,121,'20200512','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200512.log',1,1,259,5,19,23,515,136,'20200512','202005',3,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200512.log',1,1,259,1,2,NULL,1048585,2,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,1,259,1,4,NULL,1048585,4,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,1,259,4,14,NULL,1048585,14,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200512.log',1,1,259,4,15,NULL,1048585,15,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200512.log',1,1,259,5,19,NULL,1048585,19,'20200512','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200513.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',21),('usage_events_20200513.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200513.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200513.log',1,1,259,1,1,5,515,30,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,1,5,6,515,31,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,1,4,7,515,32,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,3,7,10,515,60,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,4,14,19,515,119,'20200513','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200513.log',1,1,259,5,19,23,515,136,'20200513','202005',3,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200513.log',1,1,259,1,1,NULL,1048585,1,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,1,2,NULL,1048585,2,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,1,3,NULL,1048585,3,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,1,4,NULL,1048585,4,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,1,5,NULL,1048585,5,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200513.log',1,1,259,3,6,NULL,1048585,6,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200513.log',1,1,259,3,7,NULL,1048585,7,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,3,8,NULL,1048585,8,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,3,9,NULL,1048585,9,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,3,10,NULL,1048585,10,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,4,11,NULL,1048585,11,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,4,13,NULL,1048585,13,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,4,14,NULL,1048585,14,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,4,15,NULL,1048585,15,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200513.log',1,1,259,4,16,NULL,1048585,16,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',29),('usage_events_20200513.log',1,1,259,4,17,NULL,1048585,17,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',29),('usage_events_20200513.log',1,1,259,5,19,NULL,1048585,19,'20200513','202005',NULL,NULL,NULL,NULL,'ojs::counter',23),('usage_events_20200514.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20200514.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200514.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200514.log',1,1,259,1,5,6,515,31,'20200514','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200514.log',1,1,259,5,19,23,515,136,'20200514','202005',3,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200514.log',1,1,259,3,7,NULL,1048585,7,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200514.log',1,1,259,4,16,NULL,1048585,16,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200514.log',1,1,259,4,17,NULL,1048585,17,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200514.log',1,1,259,5,19,NULL,1048585,19,'20200514','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200515.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200515.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200515.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200515.log',1,1,259,3,10,9,515,59,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200515.log',1,1,259,3,8,12,515,62,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200515.log',1,1,259,4,14,19,515,119,'20200515','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200515.log',1,1,259,5,19,23,515,136,'20200515','202005',3,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200515.log',1,1,259,1,3,NULL,1048585,3,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200515.log',1,1,259,4,11,NULL,1048585,11,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200515.log',1,1,259,4,14,NULL,1048585,14,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200515.log',1,1,259,4,16,NULL,1048585,16,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200515.log',1,1,259,5,19,NULL,1048585,19,'20200515','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200516.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200516.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200516.log',1,1,259,3,7,10,515,60,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200516.log',1,1,259,3,6,13,515,63,'20200516','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200516.log',1,1,259,5,19,23,515,136,'20200516','202005',3,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200516.log',1,1,259,4,11,NULL,1048585,11,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200516.log',1,1,259,5,19,NULL,1048585,19,'20200516','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200517.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200517.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200517.log',1,1,259,3,7,10,515,60,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200517.log',1,1,259,3,8,12,515,62,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200517.log',1,1,259,3,6,13,515,63,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200517.log',1,1,259,4,16,20,515,120,'20200517','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200517.log',1,1,259,5,19,23,515,136,'20200517','202005',3,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200517.log',1,1,259,4,13,NULL,1048585,13,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200517.log',1,1,259,5,19,NULL,1048585,19,'20200517','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200518.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200518.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200518.log',1,1,259,4,13,17,515,117,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200518.log',1,1,259,4,15,18,515,118,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200518.log',1,1,259,4,11,22,515,122,'20200518','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200518.log',1,1,259,5,19,23,515,136,'20200518','202005',3,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200518.log',1,1,259,4,11,NULL,1048585,11,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200518.log',1,1,259,5,19,NULL,1048585,19,'20200518','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200519.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200519.log',1,1,259,1,1,5,515,30,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200519.log',1,1,259,3,6,13,515,63,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200519.log',1,1,259,4,14,19,515,119,'20200519','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200519.log',1,1,259,5,19,23,515,136,'20200519','202005',3,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200519.log',1,1,259,4,11,NULL,1048585,11,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200519.log',1,1,259,4,14,NULL,1048585,14,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200519.log',1,1,259,5,19,NULL,1048585,19,'20200519','202005',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200520.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20200520.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200520.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200520.log',1,1,259,1,1,5,515,30,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200520.log',1,1,259,1,4,7,515,32,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200520.log',1,1,259,3,6,13,515,63,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200520.log',1,1,259,4,13,17,515,117,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200520.log',1,1,259,4,14,19,515,119,'20200520','202005',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200520.log',1,1,259,4,14,NULL,1048585,14,'20200520','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200521.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200521.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200521.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200521.log',1,1,259,1,1,5,515,30,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200521.log',1,1,259,3,7,10,515,60,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200521.log',1,1,259,3,6,13,515,63,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200521.log',1,1,259,4,15,18,515,118,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200521.log',1,1,259,4,17,21,515,121,'20200521','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200521.log',1,1,259,5,19,NULL,1048585,19,'20200521','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200522.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,1,1,5,515,30,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200522.log',1,1,259,3,8,12,515,62,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,3,6,13,515,63,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200522.log',1,1,259,4,16,20,515,120,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,4,17,21,515,121,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,4,11,22,515,122,'20200522','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,1,3,NULL,1048585,3,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,3,8,NULL,1048585,8,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,4,11,NULL,1048585,11,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200522.log',1,1,259,4,17,NULL,1048585,17,'20200522','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200523.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200523.log',1,1,259,1,4,7,515,32,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200523.log',1,1,259,4,14,19,515,119,'20200523','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200523.log',1,1,259,3,6,NULL,1048585,6,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200523.log',1,1,259,4,14,NULL,1048585,14,'20200523','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200524.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200524','202005',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200524.log',1,1,259,1,3,8,515,33,'20200524','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200525.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,1,2,2,515,12,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200525.log',1,1,259,3,8,12,515,62,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200525.log',1,1,259,4,13,17,515,117,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,4,16,20,515,120,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,4,17,21,515,121,'20200525','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,1,2,NULL,1048585,2,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,3,8,NULL,1048585,8,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,4,13,NULL,1048585,13,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,4,16,NULL,1048585,16,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200525.log',1,1,259,4,17,NULL,1048585,17,'20200525','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200526.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',20),('usage_events_20200526.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200526.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200526.log',1,1,259,4,16,20,515,120,'20200526','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200526.log',1,1,259,4,13,NULL,1048585,13,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200526.log',1,1,259,4,16,NULL,1048585,16,'20200526','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200527.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',19),('usage_events_20200527.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200527.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200527.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200527.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200527.log',1,1,259,1,2,2,515,12,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,1,1,5,515,30,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,1,5,6,515,31,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,1,4,7,515,32,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,1,3,8,515,33,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,3,10,9,515,59,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,3,7,10,515,60,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200527.log',1,1,259,3,9,11,515,61,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200527.log',1,1,259,3,8,12,515,62,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200527.log',1,1,259,3,6,13,515,63,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200527.log',1,1,259,4,13,17,515,117,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,15,18,515,118,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,14,19,515,119,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,16,20,515,120,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,17,21,515,121,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,11,22,515,122,'20200527','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,5,19,23,515,136,'20200527','202005',3,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200527.log',1,1,259,1,1,NULL,1048585,1,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,1,2,NULL,1048585,2,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,1,3,NULL,1048585,3,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,1,4,NULL,1048585,4,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200527.log',1,1,259,1,5,NULL,1048585,5,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,3,6,NULL,1048585,6,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,3,7,NULL,1048585,7,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,3,8,NULL,1048585,8,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,3,9,NULL,1048585,9,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200527.log',1,1,259,3,10,NULL,1048585,10,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,11,NULL,1048585,11,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,13,NULL,1048585,13,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,14,NULL,1048585,14,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,15,NULL,1048585,15,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,16,NULL,1048585,16,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,4,17,NULL,1048585,17,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200527.log',1,1,259,5,19,NULL,1048585,19,'20200527','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200528.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200528.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,1,4,7,515,32,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,3,8,12,515,62,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,3,6,13,515,63,'20200528','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,1,1,NULL,1048585,1,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,1,2,NULL,1048585,2,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,1,3,NULL,1048585,3,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,3,6,NULL,1048585,6,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200528.log',1,1,259,3,7,NULL,1048585,7,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,3,8,NULL,1048585,8,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200528.log',1,1,259,3,10,NULL,1048585,10,'20200528','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200529.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200529.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200529.log',1,1,259,3,6,13,515,63,'20200529','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200529.log',1,1,259,1,1,NULL,1048585,1,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200529.log',1,1,259,1,2,NULL,1048585,2,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200529.log',1,1,259,5,19,NULL,1048585,19,'20200529','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200530.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200530.log',1,1,259,3,6,13,515,63,'20200530','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200530.log',1,1,259,4,13,NULL,1048585,13,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200530.log',1,1,259,5,19,NULL,1048585,19,'20200530','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200531.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200531.log',1,1,259,3,7,10,515,60,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200531.log',1,1,259,3,6,13,515,63,'20200531','202005',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200531.log',1,1,259,5,19,23,515,136,'20200531','202005',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200531.log',1,1,259,1,3,NULL,1048585,3,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200531.log',1,1,259,3,7,NULL,1048585,7,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200531.log',1,1,259,4,14,NULL,1048585,14,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200531.log',1,1,259,5,19,NULL,1048585,19,'20200531','202005',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200601.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200601.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200601.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200601.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200601.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200601.log',1,1,259,1,3,8,515,33,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,4,14,19,515,119,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,4,16,20,515,120,'20200601','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,1,3,NULL,1048585,3,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,1,4,NULL,1048585,4,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,3,8,NULL,1048585,8,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,3,9,NULL,1048585,9,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200601.log',1,1,259,4,13,NULL,1048585,13,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,4,14,NULL,1048585,14,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200601.log',1,1,259,4,15,NULL,1048585,15,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200601.log',1,1,259,5,19,NULL,1048585,19,'20200601','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200602.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200602.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200602.log',1,1,259,5,19,23,515,136,'20200602','202006',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200602.log',1,1,259,5,19,NULL,1048585,19,'20200602','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200603.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200603.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200603.log',1,1,259,1,2,2,515,12,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,1,259,1,1,5,515,30,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,1,259,1,3,8,515,33,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,1,259,4,16,20,515,120,'20200603','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,1,259,5,19,23,515,136,'20200603','202006',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,1,259,1,1,NULL,1048585,1,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200603.log',1,1,259,1,3,NULL,1048585,3,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,1,259,3,9,NULL,1048585,9,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200603.log',1,1,259,5,19,NULL,1048585,19,'20200603','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200604.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200604.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200604.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200604.log',1,1,259,4,15,NULL,1048585,15,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200604.log',1,1,259,5,19,NULL,1048585,19,'20200604','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200605.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200605.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200605.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200605.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200605.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200605','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200605.log',1,1,259,3,7,10,515,60,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200605.log',1,1,259,4,14,19,515,119,'20200605','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200605.log',1,1,259,5,19,23,515,136,'20200605','202006',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200606.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200606.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200606.log',1,1,259,4,17,21,515,121,'20200606','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200606.log',1,1,259,4,11,NULL,1048585,11,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200606.log',1,1,259,4,17,NULL,1048585,17,'20200606','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200607.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200607.log',1,1,259,3,9,11,515,61,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200607.log',1,1,259,3,6,13,515,63,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200607.log',1,1,259,4,13,17,515,117,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200607.log',1,1,259,4,16,20,515,120,'20200607','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200607.log',1,1,259,4,13,NULL,1048585,13,'20200607','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200608.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200608.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200608.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200608.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200608.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200608.log',1,1,259,1,5,6,515,31,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200608.log',1,1,259,3,6,13,515,63,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200608.log',1,1,259,4,17,21,515,121,'20200608','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200608.log',1,1,259,1,3,NULL,1048585,3,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200608.log',1,1,259,1,5,NULL,1048585,5,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200608.log',1,1,259,4,11,NULL,1048585,11,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200608.log',1,1,259,5,19,NULL,1048585,19,'20200608','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200609.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200609.log',1,1,259,1,1,5,515,30,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200609.log',1,1,259,3,7,10,515,60,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,1,259,3,9,11,515,61,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,1,259,3,6,13,515,63,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200609.log',1,1,259,4,13,17,515,117,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,1,259,4,16,20,515,120,'20200609','202006',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200609.log',1,1,259,1,1,NULL,1048585,1,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,1,259,3,7,NULL,1048585,7,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200609.log',1,1,259,3,9,NULL,1048585,9,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200609.log',1,1,259,4,13,NULL,1048585,13,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200609.log',1,1,259,4,16,NULL,1048585,16,'20200609','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200610.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200610.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200610.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200610.log',1,1,259,1,1,5,515,30,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200610.log',1,1,259,1,4,7,515,32,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200610.log',1,1,259,3,10,9,515,59,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200610.log',1,1,259,4,11,22,515,122,'20200610','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200610.log',1,1,259,3,8,NULL,1048585,8,'20200610','202006',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200611.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200611.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200611.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200611.log',1,1,259,1,1,5,515,30,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200611.log',1,1,259,3,7,10,515,60,'20200611','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200611.log',1,1,259,1,1,NULL,1048585,1,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200611.log',1,1,259,4,11,NULL,1048585,11,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200611.log',1,1,259,4,13,NULL,1048585,13,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200611.log',1,1,259,4,14,NULL,1048585,14,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200611.log',1,1,259,4,15,NULL,1048585,15,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200611.log',1,1,259,4,17,NULL,1048585,17,'20200611','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200612.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200612.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200612.log',1,1,259,3,9,11,515,61,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200612.log',1,1,259,4,13,17,515,117,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200612.log',1,1,259,4,16,20,515,120,'20200612','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200612.log',1,1,259,5,19,23,515,136,'20200612','202006',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200612.log',1,1,259,3,6,NULL,1048585,6,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200612.log',1,1,259,4,11,NULL,1048585,11,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200612.log',1,1,259,4,13,NULL,1048585,13,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200612.log',1,1,259,4,14,NULL,1048585,14,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200612.log',1,1,259,4,15,NULL,1048585,15,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200612.log',1,1,259,4,16,NULL,1048585,16,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200612.log',1,1,259,5,19,NULL,1048585,19,'20200612','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200613.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200613.log',1,1,259,1,3,8,515,33,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200613.log',1,1,259,3,7,10,515,60,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200613.log',1,1,259,4,14,19,515,119,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200613.log',1,1,259,4,17,21,515,121,'20200613','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200613.log',1,1,259,3,7,NULL,1048585,7,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200613.log',1,1,259,5,19,NULL,1048585,19,'20200613','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200614.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200614.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200614.log',1,1,259,3,8,12,515,62,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200614.log',1,1,259,4,15,18,515,118,'20200614','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200614.log',1,1,259,5,19,NULL,1048585,19,'20200614','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200615.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200615.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200615.log',1,1,259,1,4,7,515,32,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200615.log',1,1,259,3,6,13,515,63,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200615.log',1,1,259,4,16,20,515,120,'20200615','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200615.log',1,1,259,5,19,23,515,136,'20200615','202006',3,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200615.log',1,1,259,1,4,NULL,1048585,4,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200615.log',1,1,259,4,14,NULL,1048585,14,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200615.log',1,1,259,5,19,NULL,1048585,19,'20200615','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200616.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,1,259,1,5,6,515,31,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200616.log',1,1,259,3,6,13,515,63,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,1,259,4,14,19,515,119,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,1,259,4,17,21,515,121,'20200616','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,1,259,5,19,23,515,136,'20200616','202006',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200616.log',1,1,259,1,5,NULL,1048585,5,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200616.log',1,1,259,3,6,NULL,1048585,6,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200616.log',1,1,259,5,19,NULL,1048585,19,'20200616','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200617.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20200617.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200617.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200617.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200617.log',1,1,259,1,1,5,515,30,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,1,5,6,515,31,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,1,4,7,515,32,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200617.log',1,1,259,3,9,11,515,61,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,4,13,17,515,117,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,5,20,24,515,144,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200617.log',1,1,259,5,19,25,515,145,'20200617','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200617.log',1,1,259,1,3,NULL,1048585,3,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,3,9,NULL,1048585,9,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,4,13,NULL,1048585,13,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200617.log',1,1,259,4,14,NULL,1048585,14,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,4,15,NULL,1048585,15,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,4,17,NULL,1048585,17,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200617.log',1,1,259,5,20,NULL,1048585,20,'20200617','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200618.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200618.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200618.log',1,1,259,4,14,19,515,119,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,1,259,4,16,20,515,120,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,1,259,5,20,24,515,144,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200618.log',1,1,259,5,19,25,515,145,'20200618','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,1,259,4,13,NULL,1048585,13,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,1,259,4,14,NULL,1048585,14,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200618.log',1,1,259,4,16,NULL,1048585,16,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,1,259,5,19,NULL,1048585,19,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200618.log',1,1,259,5,20,NULL,1048585,20,'20200618','202006',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200619.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200619.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200619.log',1,1,259,1,2,2,515,12,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200619.log',1,1,259,3,9,11,515,61,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200619.log',1,1,259,3,8,12,515,62,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200619.log',1,1,259,4,16,20,515,120,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200619.log',1,1,259,4,11,22,515,122,'20200619','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200619.log',1,1,259,4,11,NULL,1048585,11,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200619.log',1,1,259,4,16,NULL,1048585,16,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200619.log',1,1,259,5,20,NULL,1048585,20,'20200619','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200620.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200620.log',1,1,259,3,9,11,515,61,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200620.log',1,1,259,3,6,13,515,63,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200620.log',1,1,259,5,20,24,515,144,'20200620','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200620.log',1,1,259,3,6,NULL,1048585,6,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200620.log',1,1,259,5,19,NULL,1048585,19,'20200620','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200621.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200621.log',1,1,259,1,1,5,515,30,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200621.log',1,1,259,3,6,13,515,63,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200621.log',1,1,259,4,16,20,515,120,'20200621','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200621.log',1,1,259,3,6,NULL,1048585,6,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200621.log',1,1,259,4,11,NULL,1048585,11,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200621.log',1,1,259,4,15,NULL,1048585,15,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200621.log',1,1,259,5,19,NULL,1048585,19,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200621.log',1,1,259,5,20,NULL,1048585,20,'20200621','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200622.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20200622.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200622.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200622.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200622.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200622.log',1,1,259,1,1,5,515,30,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200622.log',1,1,259,3,8,12,515,62,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200622.log',1,1,259,4,16,20,515,120,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200622.log',1,1,259,4,17,21,515,121,'20200622','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200622.log',1,1,259,3,6,NULL,1048585,6,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200622.log',1,1,259,4,15,NULL,1048585,15,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200622.log',1,1,259,5,19,NULL,1048585,19,'20200622','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200623.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20200623.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200623.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200623.log',1,1,259,1,1,5,515,30,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200623.log',1,1,259,1,5,6,515,31,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200623.log',1,1,259,3,6,13,515,63,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200623.log',1,1,259,5,20,24,515,144,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200623.log',1,1,259,5,19,25,515,145,'20200623','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200623.log',1,1,259,4,16,NULL,1048585,16,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200623.log',1,1,259,5,19,NULL,1048585,19,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200623.log',1,1,259,5,20,NULL,1048585,20,'20200623','202006',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200624.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',19),('usage_events_20200624.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200624.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200624.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200624.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200624.log',1,1,259,1,1,5,515,30,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200624.log',1,1,259,1,5,6,515,31,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200624.log',1,1,259,3,9,11,515,61,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200624.log',1,1,259,3,8,12,515,62,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200624.log',1,1,259,5,20,24,515,144,'20200624','202006',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200624.log',1,1,259,3,9,NULL,1048585,9,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200624.log',1,1,259,5,20,NULL,1048585,20,'20200624','202006',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200625.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200625','202006',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200625.log',1,1,259,4,17,21,515,121,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200625.log',1,1,259,5,20,24,515,144,'20200625','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200626.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200626.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,1,1,5,515,30,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,1,3,8,515,33,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,3,9,11,515,61,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,3,8,12,515,62,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,4,13,17,515,117,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,4,15,18,515,118,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,5,19,25,515,145,'20200626','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200626.log',1,1,259,4,13,NULL,1048585,13,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,4,15,NULL,1048585,15,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,4,16,NULL,1048585,16,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,4,17,NULL,1048585,17,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200626.log',1,1,259,5,19,NULL,1048585,19,'20200626','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200627.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200627.log',1,1,259,1,1,5,515,30,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200627.log',1,1,259,1,5,6,515,31,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200627.log',1,1,259,1,4,7,515,32,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200627.log',1,1,259,3,6,13,515,63,'20200627','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200627.log',1,1,259,3,6,NULL,1048585,6,'20200627','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20200628.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,1,1,5,515,30,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200628.log',1,1,259,4,14,19,515,119,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200628.log',1,1,259,4,17,21,515,121,'20200628','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200628.log',1,1,259,1,1,NULL,1048585,1,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,1,2,NULL,1048585,2,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,1,3,NULL,1048585,3,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,1,4,NULL,1048585,4,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,1,5,NULL,1048585,5,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,3,6,NULL,1048585,6,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,3,7,NULL,1048585,7,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,3,8,NULL,1048585,8,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,3,9,NULL,1048585,9,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,3,10,NULL,1048585,10,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,4,11,NULL,1048585,11,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200628.log',1,1,259,4,13,NULL,1048585,13,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,4,14,NULL,1048585,14,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200628.log',1,1,259,4,15,NULL,1048585,15,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200628.log',1,1,259,4,16,NULL,1048585,16,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200628.log',1,1,259,4,17,NULL,1048585,17,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200628.log',1,1,259,5,19,NULL,1048585,19,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200628.log',1,1,259,5,20,NULL,1048585,20,'20200628','202006',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200629.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200629.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200629.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200629.log',1,1,259,1,3,8,515,33,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200629.log',1,1,259,4,14,19,515,119,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200629.log',1,1,259,4,17,21,515,121,'20200629','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200629.log',1,1,259,4,14,NULL,1048585,14,'20200629','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200630.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20200630.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200630.log',1,1,259,1,1,5,515,30,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200630.log',1,1,259,1,3,8,515,33,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200630.log',1,1,259,4,16,20,515,120,'20200630','202006',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200630.log',1,1,259,1,3,NULL,1048585,3,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200630.log',1,1,259,3,8,NULL,1048585,8,'20200630','202006',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200701.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200701.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200701.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200701.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200701','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200701.log',1,1,259,1,1,5,515,30,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200701.log',1,1,259,3,8,12,515,62,'20200701','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200702.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200702.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200702.log',1,1,259,1,1,5,515,30,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200702.log',1,1,259,3,10,9,515,59,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200702.log',1,1,259,3,8,12,515,62,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200702.log',1,1,259,3,6,13,515,63,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200702.log',1,1,259,4,15,18,515,118,'20200702','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200702.log',1,1,259,3,6,NULL,1048585,6,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200702.log',1,1,259,4,15,NULL,1048585,15,'20200702','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200703.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200703.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200703.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,1,2,2,515,12,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,1,1,5,515,30,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,1,5,6,515,31,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,1,4,7,515,32,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,1,3,8,515,33,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,3,10,9,515,59,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,3,7,10,515,60,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,3,9,11,515,61,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,3,8,12,515,62,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,3,6,13,515,63,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,4,13,17,515,117,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,4,15,18,515,118,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,4,14,19,515,119,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,4,16,20,515,120,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,4,17,21,515,121,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,4,11,22,515,122,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,5,20,24,515,144,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,5,19,25,515,145,'20200703','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200703.log',1,1,259,4,13,NULL,1048585,13,'20200703','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200704.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200704','202007',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200704.log',1,1,259,3,6,13,515,63,'20200704','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200705.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200705.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200705.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200705','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200705.log',1,1,259,1,4,7,515,32,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200705.log',1,1,259,1,3,8,515,33,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200705.log',1,1,259,4,15,18,515,118,'20200705','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200706.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200706.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200706.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200706.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200706.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200706.log',1,1,259,4,16,20,515,120,'20200706','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200706.log',1,1,259,4,16,NULL,1048585,16,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200706.log',1,1,259,5,19,NULL,1048585,19,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200706.log',1,1,259,5,20,NULL,1048585,20,'20200706','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200707.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200707.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200707.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200707.log',1,1,259,1,1,5,515,30,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200707.log',1,1,259,3,8,12,515,62,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200707.log',1,1,259,5,20,24,515,144,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200707.log',1,1,259,5,19,25,515,145,'20200707','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200707.log',1,1,259,3,8,NULL,1048585,8,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200707.log',1,1,259,4,14,NULL,1048585,14,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200707.log',1,1,259,4,16,NULL,1048585,16,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200707.log',1,1,259,5,19,NULL,1048585,19,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200707.log',1,1,259,5,20,NULL,1048585,20,'20200707','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200708.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200708.log',1,1,259,3,10,9,515,59,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,1,259,3,8,12,515,62,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200708.log',1,1,259,4,17,21,515,121,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,1,259,5,19,25,515,145,'20200708','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200708.log',1,1,259,1,2,NULL,1048585,2,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,1,259,4,14,NULL,1048585,14,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200708.log',1,1,259,5,19,NULL,1048585,19,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200708.log',1,1,259,5,20,NULL,1048585,20,'20200708','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200709.log',1,1,259,1,1,5,515,30,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200709.log',1,1,259,3,10,9,515,59,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200709.log',1,1,259,4,11,22,515,122,'20200709','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,1,1,NULL,1048585,1,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,1,2,NULL,1048585,2,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,1,3,NULL,1048585,3,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,1,4,NULL,1048585,4,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,1,5,NULL,1048585,5,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200709.log',1,1,259,3,6,NULL,1048585,6,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,3,7,NULL,1048585,7,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,3,8,NULL,1048585,8,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,3,9,NULL,1048585,9,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,3,10,NULL,1048585,10,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,4,11,NULL,1048585,11,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,4,13,NULL,1048585,13,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,4,14,NULL,1048585,14,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200709.log',1,1,259,4,15,NULL,1048585,15,'20200709','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200710.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200710.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200710.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200710.log',1,1,259,4,14,19,515,119,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200710.log',1,1,259,5,20,24,515,144,'20200710','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200710.log',1,1,259,3,8,NULL,1048585,8,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200710.log',1,1,259,4,16,NULL,1048585,16,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200710.log',1,1,259,4,17,NULL,1048585,17,'20200710','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200711.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,4,13,17,515,117,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,4,15,18,515,118,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,4,14,19,515,119,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,4,16,20,515,120,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,4,17,21,515,121,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200711.log',1,1,259,5,20,24,515,144,'20200711','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,4,14,NULL,1048585,14,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,5,19,NULL,1048585,19,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200711.log',1,1,259,5,20,NULL,1048585,20,'20200711','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200712.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200712.log',1,1,259,3,9,11,515,61,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200712.log',1,1,259,4,17,21,515,121,'20200712','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200712.log',1,1,259,4,17,NULL,1048585,17,'20200712','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200713.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200713.log',1,1,259,1,5,6,515,31,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200713.log',1,1,259,3,7,10,515,60,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200713.log',1,1,259,3,6,13,515,63,'20200713','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200713.log',1,1,259,5,20,NULL,1048585,20,'20200713','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200714.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200714.log',1,1,259,3,8,12,515,62,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200714.log',1,1,259,3,6,13,515,63,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200714.log',1,1,259,4,14,19,515,119,'20200714','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200714.log',1,1,259,3,10,NULL,1048585,10,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200714.log',1,1,259,4,15,NULL,1048585,15,'20200714','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20200715.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200715.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200715.log',1,1,259,1,1,5,515,30,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200715.log',1,1,259,1,5,6,515,31,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200715.log',1,1,259,3,10,9,515,59,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200715.log',1,1,259,3,6,13,515,63,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200715.log',1,1,259,4,17,21,515,121,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,1,259,4,11,22,515,122,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,1,259,5,20,24,515,144,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200715.log',1,1,259,5,19,25,515,145,'20200715','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200715.log',1,1,259,1,1,NULL,1048585,1,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200715.log',1,1,259,1,5,NULL,1048585,5,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200715.log',1,1,259,3,7,NULL,1048585,7,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,1,259,3,9,NULL,1048585,9,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,1,259,4,11,NULL,1048585,11,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200715.log',1,1,259,5,19,NULL,1048585,19,'20200715','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200716.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200716.log',1,1,259,1,5,6,515,31,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200716.log',1,1,259,3,10,9,515,59,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200716.log',1,1,259,3,7,10,515,60,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200716.log',1,1,259,4,14,19,515,119,'20200716','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200716.log',1,1,259,1,4,NULL,1048585,4,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200716.log',1,1,259,1,5,NULL,1048585,5,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200716.log',1,1,259,4,11,NULL,1048585,11,'20200716','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200717.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200717.log',1,1,259,3,9,11,515,61,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200717.log',1,1,259,3,6,13,515,63,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200717.log',1,1,259,4,17,21,515,121,'20200717','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200717.log',1,1,259,4,15,NULL,1048585,15,'20200717','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200718.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200718.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200718.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200718.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200718.log',1,1,259,1,1,5,515,30,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200718.log',1,1,259,3,10,9,515,59,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200718.log',1,1,259,3,6,13,515,63,'20200718','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200718.log',1,1,259,1,1,NULL,1048585,1,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200718.log',1,1,259,5,20,NULL,1048585,20,'20200718','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200719.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200719.log',1,1,259,1,5,6,515,31,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200719.log',1,1,259,1,3,8,515,33,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200719.log',1,1,259,3,9,11,515,61,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200719.log',1,1,259,4,17,21,515,121,'20200719','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200719.log',1,1,259,1,5,NULL,1048585,5,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200719.log',1,1,259,5,20,NULL,1048585,20,'20200719','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200720.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200720.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200720.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200720.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200720.log',1,1,259,3,7,10,515,60,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200720.log',1,1,259,3,9,11,515,61,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200720.log',1,1,259,3,6,13,515,63,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200720.log',1,1,259,5,19,25,515,145,'20200720','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200720.log',1,1,259,3,6,NULL,1048585,6,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200720.log',1,1,259,3,9,NULL,1048585,9,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200720.log',1,1,259,4,11,NULL,1048585,11,'20200720','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200721.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200721.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200721.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200721.log',1,1,259,3,7,10,515,60,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200721.log',1,1,259,3,8,12,515,62,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200721.log',1,1,259,3,6,13,515,63,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200721.log',1,1,259,4,17,21,515,121,'20200721','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200721.log',1,1,259,3,6,NULL,1048585,6,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200721.log',1,1,259,3,9,NULL,1048585,9,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200721.log',1,1,259,4,11,NULL,1048585,11,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200721.log',1,1,259,5,20,NULL,1048585,20,'20200721','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200722.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,1,1,5,515,30,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200722.log',1,1,259,3,6,13,515,63,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200722.log',1,1,259,4,16,20,515,120,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,4,11,22,515,122,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,5,20,24,515,144,'20200722','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,1,1,NULL,1048585,1,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200722.log',1,1,259,1,2,NULL,1048585,2,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,1,3,NULL,1048585,3,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,3,7,NULL,1048585,7,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,4,11,NULL,1048585,11,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200722.log',1,1,259,4,13,NULL,1048585,13,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,4,16,NULL,1048585,16,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,5,19,NULL,1048585,19,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200722.log',1,1,259,5,20,NULL,1048585,20,'20200722','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200723.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200723.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,1,259,1,1,5,515,30,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,1,259,3,6,13,515,63,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200723.log',1,1,259,4,14,19,515,119,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,1,259,5,20,24,515,144,'20200723','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,1,259,1,1,NULL,1048585,1,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,1,259,1,5,NULL,1048585,5,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,1,259,3,6,NULL,1048585,6,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200723.log',1,1,259,4,14,NULL,1048585,14,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200723.log',1,1,259,5,20,NULL,1048585,20,'20200723','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200724.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,1,2,2,515,12,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200724.log',1,1,259,4,13,17,515,117,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,15,18,515,118,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,16,20,515,120,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,17,21,515,121,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,11,22,515,122,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,5,20,24,515,144,'20200724','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200724.log',1,1,259,1,2,NULL,1048585,2,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200724.log',1,1,259,3,9,NULL,1048585,9,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,11,NULL,1048585,11,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,13,NULL,1048585,13,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,14,NULL,1048585,14,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,15,NULL,1048585,15,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,16,NULL,1048585,16,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,4,17,NULL,1048585,17,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200724.log',1,1,259,5,20,NULL,1048585,20,'20200724','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200725.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200725','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200725.log',1,1,259,1,2,2,515,12,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200725.log',1,1,259,3,8,12,515,62,'20200725','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200725.log',1,1,259,1,4,NULL,1048585,4,'20200725','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200726.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200726.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200726.log',1,1,259,3,6,13,515,63,'20200726','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200726.log',1,1,259,1,4,NULL,1048585,4,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200726.log',1,1,259,3,6,NULL,1048585,6,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200726.log',1,1,259,4,14,NULL,1048585,14,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200726.log',1,1,259,4,16,NULL,1048585,16,'20200726','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200727.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200727.log',1,1,259,1,4,7,515,32,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,1,259,3,10,9,515,59,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,1,259,4,16,20,515,120,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,1,259,4,17,21,515,121,'20200727','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200727.log',1,1,259,1,4,NULL,1048585,4,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,1,259,3,8,NULL,1048585,8,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,1,259,4,14,NULL,1048585,14,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,1,259,4,16,NULL,1048585,16,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200727.log',1,1,259,4,17,NULL,1048585,17,'20200727','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200728.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200728.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200728.log',1,1,259,1,1,5,515,30,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200728.log',1,1,259,3,8,12,515,62,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200728.log',1,1,259,3,6,13,515,63,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200728.log',1,1,259,4,16,20,515,120,'20200728','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200728.log',1,1,259,3,6,NULL,1048585,6,'20200728','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200729.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200729.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200729.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200729.log',1,1,259,3,7,10,515,60,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200729.log',1,1,259,3,8,12,515,62,'20200729','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200729.log',1,1,259,4,17,NULL,1048585,17,'20200729','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200730.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200730.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200730.log',1,1,259,1,1,5,515,30,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200730.log',1,1,259,3,8,12,515,62,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200730.log',1,1,259,4,15,18,515,118,'20200730','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200730.log',1,1,259,1,1,NULL,1048585,1,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200730.log',1,1,259,3,7,NULL,1048585,7,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200730.log',1,1,259,4,11,NULL,1048585,11,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200730.log',1,1,259,4,15,NULL,1048585,15,'20200730','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200731.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200731.log',1,1,259,1,1,5,515,30,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,10,9,515,59,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,7,10,515,60,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,9,11,515,61,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,8,12,515,62,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200731.log',1,1,259,3,6,13,515,63,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,4,16,20,515,120,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,4,17,21,515,121,'20200731','202007',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,6,NULL,1048585,6,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,7,NULL,1048585,7,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,8,NULL,1048585,8,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,9,NULL,1048585,9,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,3,10,NULL,1048585,10,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200731.log',1,1,259,4,11,NULL,1048585,11,'20200731','202007',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200801.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200801.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200801.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200801.log',1,1,259,1,1,5,515,30,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200801.log',1,1,259,3,9,11,515,61,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200801.log',1,1,259,5,20,24,515,144,'20200801','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200801.log',1,1,259,1,1,NULL,1048585,1,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200801.log',1,1,259,1,3,NULL,1048585,3,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200801.log',1,1,259,4,11,NULL,1048585,11,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200801.log',1,1,259,5,20,NULL,1048585,20,'20200801','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200802.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200802.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200802.log',1,1,259,1,1,5,515,30,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200802.log',1,1,259,3,8,12,515,62,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200802.log',1,1,259,5,20,24,515,144,'20200802','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200802.log',1,1,259,1,1,NULL,1048585,1,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200802.log',1,1,259,1,3,NULL,1048585,3,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200802.log',1,1,259,3,8,NULL,1048585,8,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200802.log',1,1,259,4,11,NULL,1048585,11,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200802.log',1,1,259,5,20,NULL,1048585,20,'20200802','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200803.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200803','202008',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200803.log',1,1,259,1,1,5,515,30,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200803.log',1,1,259,3,10,9,515,59,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200803.log',1,1,259,3,6,13,515,63,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200803.log',1,1,259,4,11,22,515,122,'20200803','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200804.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200804.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200804.log',1,1,259,4,13,17,515,117,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200804.log',1,1,259,4,16,20,515,120,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200804.log',1,1,259,4,17,21,515,121,'20200804','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200804.log',1,1,259,4,11,NULL,1048585,11,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200804.log',1,1,259,5,20,NULL,1048585,20,'20200804','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200805.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200805.log',1,1,259,3,6,13,515,63,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,1,259,4,14,19,515,119,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,1,259,4,16,20,515,120,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,1,259,4,17,21,515,121,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,1,259,5,19,25,515,145,'20200805','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,1,259,4,11,NULL,1048585,11,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200805.log',1,1,259,4,17,NULL,1048585,17,'20200805','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200806.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200806.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200806.log',1,1,259,3,10,9,515,59,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200806.log',1,1,259,3,7,10,515,60,'20200806','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200806.log',1,1,259,3,7,NULL,1048585,7,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200806.log',1,1,259,4,11,NULL,1048585,11,'20200806','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200807.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200807.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200807.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200807.log',1,1,259,1,1,5,515,30,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200807.log',1,1,259,3,9,11,515,61,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200807.log',1,1,259,3,8,12,515,62,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200807.log',1,1,259,4,14,19,515,119,'20200807','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200807.log',1,1,259,1,1,NULL,1048585,1,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200807.log',1,1,259,4,11,NULL,1048585,11,'20200807','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200808.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200808.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200808.log',1,1,259,1,2,NULL,1048585,2,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200808.log',1,1,259,3,7,NULL,1048585,7,'20200808','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200809.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200809.log',1,1,259,1,2,2,515,12,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,1,259,1,3,8,515,33,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,1,259,3,10,9,515,59,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200809.log',1,1,259,3,9,11,515,61,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,1,259,4,14,19,515,119,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200809.log',1,1,259,5,19,25,515,145,'20200809','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200809.log',1,1,259,1,2,NULL,1048585,2,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,1,259,3,7,NULL,1048585,7,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,1,259,4,11,NULL,1048585,11,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200809.log',1,1,259,5,19,NULL,1048585,19,'20200809','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200810.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,1,259,1,1,5,515,30,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,1,259,3,8,12,515,62,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,1,259,4,14,19,515,119,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,1,259,4,16,20,515,120,'20200810','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,1,259,4,11,NULL,1048585,11,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,1,259,5,19,NULL,1048585,19,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200810.log',1,1,259,5,20,NULL,1048585,20,'20200810','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200811.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20200811.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200811.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200811.log',1,1,259,3,7,10,515,60,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200811.log',1,1,259,3,6,13,515,63,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200811.log',1,1,259,4,17,21,515,121,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200811.log',1,1,259,5,19,25,515,145,'20200811','202008',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200811.log',1,1,259,3,6,NULL,1048585,6,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200811.log',1,1,259,4,11,NULL,1048585,11,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200811.log',1,1,259,4,17,NULL,1048585,17,'20200811','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200812.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200812.log',1,1,259,1,4,7,515,32,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200812.log',1,1,259,4,14,19,515,119,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200812.log',1,1,259,4,17,21,515,121,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200812.log',1,1,259,5,20,24,515,144,'20200812','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200812.log',1,1,259,4,14,NULL,1048585,14,'20200812','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200813.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200813.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200813.log',1,1,259,3,7,10,515,60,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200813.log',1,1,259,3,6,13,515,63,'20200813','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200813.log',1,1,259,4,13,NULL,1048585,13,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200813.log',1,1,259,5,19,NULL,1048585,19,'20200813','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200814.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200814.log',1,1,259,1,2,2,515,12,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,1,1,5,515,30,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,1,5,6,515,31,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,1,4,7,515,32,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,3,10,9,515,59,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,4,16,20,515,120,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,4,17,21,515,121,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200814.log',1,1,259,5,19,25,515,145,'20200814','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,1,4,NULL,1048585,4,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,3,10,NULL,1048585,10,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200814.log',1,1,259,4,11,NULL,1048585,11,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,4,17,NULL,1048585,17,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200814.log',1,1,259,5,19,NULL,1048585,19,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200814.log',1,1,259,5,20,NULL,1048585,20,'20200814','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200815.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200815.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200815.log',1,1,259,4,11,NULL,1048585,11,'20200815','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200816.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200816.log',1,1,259,1,1,5,515,30,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200816.log',1,1,259,4,13,17,515,117,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200816.log',1,1,259,4,16,20,515,120,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200816.log',1,1,259,5,20,24,515,144,'20200816','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200816.log',1,1,259,1,1,NULL,1048585,1,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200816.log',1,1,259,4,13,NULL,1048585,13,'20200816','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200817.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200817.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200817.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200817.log',1,1,259,1,3,8,515,33,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200817.log',1,1,259,3,7,10,515,60,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200817.log',1,1,259,3,6,13,515,63,'20200817','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200817.log',1,1,259,4,15,NULL,1048585,15,'20200817','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200818.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200818.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200818.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200818.log',1,1,259,3,9,11,515,61,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,1,259,3,8,12,515,62,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,1,259,3,6,13,515,63,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,1,259,4,13,17,515,117,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,1,259,5,19,25,515,145,'20200818','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200818.log',1,1,259,3,8,NULL,1048585,8,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,1,259,4,11,NULL,1048585,11,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200818.log',1,1,259,5,19,NULL,1048585,19,'20200818','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200819.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20200819.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200819.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200819.log',1,1,259,1,3,8,515,33,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200819.log',1,1,259,3,6,13,515,63,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200819.log',1,1,259,4,16,20,515,120,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200819.log',1,1,259,5,19,25,515,145,'20200819','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200819.log',1,1,259,3,6,NULL,1048585,6,'20200819','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200820.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200820.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200820.log',1,1,259,1,4,7,515,32,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200820.log',1,1,259,3,9,11,515,61,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200820.log',1,1,259,3,8,12,515,62,'20200820','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200820.log',1,1,259,4,11,NULL,1048585,11,'20200820','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200821.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200821.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200821.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200821.log',1,1,259,1,1,5,515,30,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200821.log',1,1,259,1,5,6,515,31,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200821.log',1,1,259,4,16,20,515,120,'20200821','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200821.log',1,1,259,3,7,NULL,1048585,7,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200821.log',1,1,259,4,16,NULL,1048585,16,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200821.log',1,1,259,4,17,NULL,1048585,17,'20200821','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200822.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200822.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200822.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200822.log',1,1,259,1,1,5,515,30,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200822.log',1,1,259,1,3,8,515,33,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200822.log',1,1,259,5,19,25,515,145,'20200822','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200822.log',1,1,259,1,2,NULL,1048585,2,'20200822','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200823.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200823.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200823.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200823.log',1,1,259,1,5,6,515,31,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200823.log',1,1,259,3,6,13,515,63,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200823.log',1,1,259,4,16,20,515,120,'20200823','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200823.log',1,1,259,5,19,NULL,1048585,19,'20200823','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200824.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200824.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200824.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200824.log',1,1,259,3,10,9,515,59,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200824.log',1,1,259,3,6,13,515,63,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200824.log',1,1,259,5,20,24,515,144,'20200824','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200824.log',1,1,259,4,11,NULL,1048585,11,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200824.log',1,1,259,5,20,NULL,1048585,20,'20200824','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20200825.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200825.log',1,1,259,1,1,5,515,30,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,1,259,1,3,8,515,33,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,1,259,3,8,12,515,62,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,1,259,4,13,17,515,117,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,1,259,4,16,20,515,120,'20200825','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,1,259,1,2,NULL,1048585,2,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200825.log',1,1,259,4,11,NULL,1048585,11,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200825.log',1,1,259,4,13,NULL,1048585,13,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200825.log',1,1,259,4,14,NULL,1048585,14,'20200825','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',20),('usage_events_20200826.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200826.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200826.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200826.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200826.log',1,1,259,1,1,5,515,30,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,1,3,8,515,33,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,3,10,9,515,59,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,3,8,12,515,62,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,4,13,17,515,117,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,4,16,20,515,120,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,4,17,21,515,121,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,5,19,26,515,176,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,5,20,27,515,177,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,5,18,30,515,180,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200826.log',1,1,259,5,24,31,515,181,'20200826','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200826.log',1,1,259,1,3,NULL,1048585,3,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,1,5,NULL,1048585,5,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,4,11,NULL,1048585,11,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200826.log',1,1,259,5,18,NULL,1048585,18,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200826.log',1,1,259,5,19,NULL,1048585,19,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200826.log',1,1,259,5,20,NULL,1048585,20,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200826.log',1,1,259,5,22,NULL,1048585,22,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200826.log',1,1,259,5,23,NULL,1048585,23,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200826.log',1,1,259,5,24,NULL,1048585,24,'20200826','202008',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20200827.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200827.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200827.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200827.log',1,1,259,1,1,5,515,30,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200827.log',1,1,259,1,3,8,515,33,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200827.log',1,1,259,3,6,13,515,63,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200827.log',1,1,259,4,15,18,515,118,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200827.log',1,1,259,4,17,21,515,121,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200827.log',1,1,259,5,22,28,515,178,'20200827','202008',3,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200827.log',1,1,259,5,23,29,515,179,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200827.log',1,1,259,5,18,30,515,180,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200827.log',1,1,259,5,24,31,515,181,'20200827','202008',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200827.log',1,1,259,1,3,NULL,1048585,3,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200827.log',1,1,259,1,5,NULL,1048585,5,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200827.log',1,1,259,4,15,NULL,1048585,15,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200827.log',1,1,259,5,18,NULL,1048585,18,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200827.log',1,1,259,5,22,NULL,1048585,22,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200827.log',1,1,259,5,23,NULL,1048585,23,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200827.log',1,1,259,5,24,NULL,1048585,24,'20200827','202008',NULL,NULL,NULL,NULL,'ojs::counter',25),('usage_events_20200828.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200828.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200828.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200828.log',1,1,259,1,3,8,515,33,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,3,6,13,515,63,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200828.log',1,1,259,4,15,18,515,118,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,4,14,19,515,119,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,5,22,28,515,178,'20200828','202008',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,5,18,30,515,180,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,5,24,31,515,181,'20200828','202008',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200828.log',1,1,259,1,3,NULL,1048585,3,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,3,6,NULL,1048585,6,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,4,14,NULL,1048585,14,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,5,18,NULL,1048585,18,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200828.log',1,1,259,5,19,NULL,1048585,19,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,5,20,NULL,1048585,20,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200828.log',1,1,259,5,22,NULL,1048585,22,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200828.log',1,1,259,5,23,NULL,1048585,23,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200828.log',1,1,259,5,24,NULL,1048585,24,'20200828','202008',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200829.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200829.log',1,1,259,3,7,10,515,60,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,3,9,11,515,61,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,5,20,27,515,177,'20200829','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,1,2,NULL,1048585,2,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,3,7,NULL,1048585,7,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,3,8,NULL,1048585,8,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200829.log',1,1,259,4,13,NULL,1048585,13,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,5,18,NULL,1048585,18,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,5,20,NULL,1048585,20,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200829.log',1,1,259,5,22,NULL,1048585,22,'20200829','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200830.log',1,1,259,5,18,30,515,180,'20200830','202008',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200830.log',1,1,259,4,14,NULL,1048585,14,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200830.log',1,1,259,5,18,NULL,1048585,18,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200830.log',1,1,259,5,24,NULL,1048585,24,'20200830','202008',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200831.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200831.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200831','202008',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200831.log',1,1,259,5,19,26,515,176,'20200831','202008',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200901.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',22),('usage_events_20200901.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200901.log',1,1,259,5,22,28,515,178,'20200901','202009',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200901.log',1,1,259,5,18,NULL,1048585,18,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200901.log',1,1,259,5,19,NULL,1048585,19,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200901.log',1,1,259,5,22,NULL,1048585,22,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200901.log',1,1,259,5,23,NULL,1048585,23,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200901.log',1,1,259,5,24,NULL,1048585,24,'20200901','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200902.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200902.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200902.log',1,1,259,5,24,31,515,181,'20200902','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200902.log',1,1,259,5,24,NULL,1048585,24,'20200902','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200903.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200903','202009',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200904.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200904','202009',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200904.log',1,1,259,5,23,29,515,179,'20200904','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200905.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200905.log',1,1,259,3,6,13,515,63,'20200905','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200905.log',1,1,259,3,6,NULL,1048585,6,'20200905','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200906.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20200906.log',1,1,259,5,19,26,515,176,'20200906','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200906.log',1,1,259,5,19,NULL,1048585,19,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200906.log',1,1,259,5,23,NULL,1048585,23,'20200906','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200907.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200907.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200907.log',1,1,259,3,6,13,515,63,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200907.log',1,1,259,5,18,30,515,180,'20200907','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200907.log',1,1,259,5,20,NULL,1048585,20,'20200907','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200908.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',21),('usage_events_20200908.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200908.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200908.log',1,1,259,1,3,8,515,33,'20200908','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200908.log',1,1,259,1,1,NULL,1048585,1,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200908.log',1,1,259,1,3,NULL,1048585,3,'20200908','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200909.log',1,1,259,5,23,29,515,179,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200909.log',1,1,259,5,18,30,515,180,'20200909','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200909.log',1,1,259,1,3,NULL,1048585,3,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200909.log',1,1,259,5,18,NULL,1048585,18,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200909.log',1,1,259,5,23,NULL,1048585,23,'20200909','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200910.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20200910.log',1,1,259,4,14,19,515,119,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200910.log',1,1,259,4,16,20,515,120,'20200910','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200910.log',1,1,259,1,4,NULL,1048585,4,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200910.log',1,1,259,3,8,NULL,1048585,8,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200910.log',1,1,259,4,14,NULL,1048585,14,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200910.log',1,1,259,5,18,NULL,1048585,18,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200910.log',1,1,259,5,23,NULL,1048585,23,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200910.log',1,1,259,5,24,NULL,1048585,24,'20200910','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200911.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200911','202009',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200911.log',1,1,259,1,5,6,515,31,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200911.log',1,1,259,3,10,9,515,59,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200911.log',1,1,259,3,8,12,515,62,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200911.log',1,1,259,3,6,13,515,63,'20200911','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200912.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200912.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200912.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200912.log',1,1,259,1,3,8,515,33,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200912.log',1,1,259,3,8,12,515,62,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200912.log',1,1,259,3,6,13,515,63,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200912.log',1,1,259,5,18,30,515,180,'20200912','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200912.log',1,1,259,4,13,NULL,1048585,13,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200912.log',1,1,259,5,18,NULL,1048585,18,'20200912','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200913.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20200913.log',1,1,259,1,3,8,515,33,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200913.log',1,1,259,3,9,11,515,61,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200913.log',1,1,259,3,8,12,515,62,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200913.log',1,1,259,3,6,13,515,63,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200913.log',1,1,259,4,16,20,515,120,'20200913','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200913.log',1,1,259,1,2,NULL,1048585,2,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200913.log',1,1,259,1,4,NULL,1048585,4,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200913.log',1,1,259,5,23,NULL,1048585,23,'20200913','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200914.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200914.log',1,1,259,1,1,5,515,30,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200914.log',1,1,259,4,13,17,515,117,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200914.log',1,1,259,4,15,18,515,118,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200914.log',1,1,259,4,16,20,515,120,'20200914','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200914.log',1,1,259,1,1,NULL,1048585,1,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200914.log',1,1,259,4,13,NULL,1048585,13,'20200914','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20200915.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200915.log',1,1,259,1,3,8,515,33,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200915.log',1,1,259,3,6,13,515,63,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200915.log',1,1,259,4,16,20,515,120,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200915.log',1,1,259,5,22,28,515,178,'20200915','202009',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,1,259,5,23,29,515,179,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,1,259,5,18,30,515,180,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200915.log',1,1,259,5,24,31,515,181,'20200915','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,1,259,5,18,NULL,1048585,18,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,1,259,5,20,NULL,1048585,20,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',35),('usage_events_20200915.log',1,1,259,5,22,NULL,1048585,22,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,1,259,5,23,NULL,1048585,23,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200915.log',1,1,259,5,24,NULL,1048585,24,'20200915','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200916.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200916.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200916.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200916.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200916.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200916.log',1,1,259,1,3,8,515,33,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200916.log',1,1,259,3,10,9,515,59,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200916.log',1,1,259,3,7,10,515,60,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200916.log',1,1,259,3,6,13,515,63,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200916.log',1,1,259,4,13,17,515,117,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200916.log',1,1,259,4,16,20,515,120,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200916.log',1,1,259,5,20,27,515,177,'20200916','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200916.log',1,1,259,3,6,NULL,1048585,6,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200916.log',1,1,259,3,7,NULL,1048585,7,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200916.log',1,1,259,3,10,NULL,1048585,10,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200916.log',1,1,259,4,17,NULL,1048585,17,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200916.log',1,1,259,5,20,NULL,1048585,20,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20200916.log',1,1,259,5,22,NULL,1048585,22,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200916.log',1,1,259,5,24,NULL,1048585,24,'20200916','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200917.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200917.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200917.log',1,1,259,5,18,NULL,1048585,18,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200917.log',1,1,259,5,20,NULL,1048585,20,'20200917','202009',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20200918.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200918.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200918.log',1,1,259,3,10,9,515,59,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200918.log',1,1,259,3,7,10,515,60,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,3,6,13,515,63,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,4,13,17,515,117,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,4,15,18,515,118,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,4,14,19,515,119,'20200918','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,3,10,NULL,1048585,10,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,4,13,NULL,1048585,13,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,5,20,NULL,1048585,20,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200918.log',1,1,259,5,24,NULL,1048585,24,'20200918','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200919.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200919.log',1,1,259,1,3,8,515,33,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200919.log',1,1,259,3,7,10,515,60,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200919.log',1,1,259,4,14,19,515,119,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200919.log',1,1,259,4,16,20,515,120,'20200919','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200919.log',1,1,259,1,2,NULL,1048585,2,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200919.log',1,1,259,5,20,NULL,1048585,20,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200919.log',1,1,259,5,23,NULL,1048585,23,'20200919','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200920.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200920.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200920.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20200920.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200920.log',1,1,259,1,2,2,515,12,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,1,5,6,515,31,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200920.log',1,1,259,1,3,8,515,33,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,3,10,9,515,59,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,3,7,10,515,60,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,3,8,12,515,62,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200920.log',1,1,259,3,6,13,515,63,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,4,16,20,515,120,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200920.log',1,1,259,4,17,21,515,121,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200920.log',1,1,259,5,18,30,515,180,'20200920','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,1,1,NULL,1048585,1,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,1,2,NULL,1048585,2,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200920.log',1,1,259,1,3,NULL,1048585,3,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,1,4,NULL,1048585,4,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,1,5,NULL,1048585,5,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200920.log',1,1,259,3,6,NULL,1048585,6,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,3,7,NULL,1048585,7,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,3,8,NULL,1048585,8,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,3,9,NULL,1048585,9,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,3,10,NULL,1048585,10,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,4,11,NULL,1048585,11,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,4,13,NULL,1048585,13,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,4,14,NULL,1048585,14,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200920.log',1,1,259,4,15,NULL,1048585,15,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,4,16,NULL,1048585,16,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200920.log',1,1,259,4,17,NULL,1048585,17,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200920.log',1,1,259,5,18,NULL,1048585,18,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200920.log',1,1,259,5,19,NULL,1048585,19,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,5,20,NULL,1048585,20,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,5,22,NULL,1048585,22,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200920.log',1,1,259,5,23,NULL,1048585,23,'20200920','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200921.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20200921.log',1,1,259,3,6,13,515,63,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200921.log',1,1,259,4,16,20,515,120,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200921.log',1,1,259,5,20,27,515,177,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200921.log',1,1,259,5,23,29,515,179,'20200921','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200921.log',1,1,259,5,20,NULL,1048585,20,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200921.log',1,1,259,5,23,NULL,1048585,23,'20200921','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200922.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200922.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200922.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,1,5,6,515,31,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,3,7,10,515,60,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,3,9,11,515,61,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,3,8,12,515,62,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,4,13,17,515,117,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,4,17,21,515,121,'20200922','202009',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20200922.log',1,1,259,4,13,NULL,1048585,13,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,4,17,NULL,1048585,17,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200922.log',1,1,259,5,22,NULL,1048585,22,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200922.log',1,1,259,5,23,NULL,1048585,23,'20200922','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200923.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20200923.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200923.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200923.log',1,1,259,1,2,2,515,12,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200923.log',1,1,259,3,7,10,515,60,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200923.log',1,1,259,3,8,12,515,62,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200923.log',1,1,259,5,19,26,515,176,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200923.log',1,1,259,5,18,30,515,180,'20200923','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200923.log',1,1,259,4,13,NULL,1048585,13,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200923.log',1,1,259,5,18,NULL,1048585,18,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200923.log',1,1,259,5,22,NULL,1048585,22,'20200923','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200924.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20200924.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200924.log',1,1,259,1,2,2,515,12,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200924.log',1,1,259,1,3,8,515,33,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200924.log',1,1,259,3,6,13,515,63,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200924.log',1,1,259,4,16,20,515,120,'20200924','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200924.log',1,1,259,1,1,NULL,1048585,1,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200924.log',1,1,259,1,2,NULL,1048585,2,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200924.log',1,1,259,4,13,NULL,1048585,13,'20200924','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200925.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,1,259,1,3,8,515,33,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200925.log',1,1,259,3,7,10,515,60,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,1,259,3,8,12,515,62,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200925.log',1,1,259,3,6,13,515,63,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,1,259,4,16,20,515,120,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,1,259,4,17,21,515,121,'20200925','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,1,259,3,6,NULL,1048585,6,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200925.log',1,1,259,4,15,NULL,1048585,15,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200925.log',1,1,259,5,23,NULL,1048585,23,'20200925','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200926.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200926','202009',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20200926.log',1,1,259,1,5,6,515,31,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200926.log',1,1,259,3,10,9,515,59,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200926.log',1,1,259,3,8,12,515,62,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200926.log',1,1,259,3,6,13,515,63,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200926.log',1,1,259,4,13,17,515,117,'20200926','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200927.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200927.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,1,4,7,515,32,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,3,7,10,515,60,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,3,6,13,515,63,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,4,16,20,515,120,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200927.log',1,1,259,5,18,30,515,180,'20200927','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,1,2,NULL,1048585,2,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,1,3,NULL,1048585,3,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,1,4,NULL,1048585,4,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,5,18,NULL,1048585,18,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200927.log',1,1,259,5,22,NULL,1048585,22,'20200927','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20200928.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20200928.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20200928.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20200928.log',1,1,259,1,2,2,515,12,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,3,8,12,515,62,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200928.log',1,1,259,3,6,13,515,63,'20200928','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,1,3,NULL,1048585,3,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,1,5,NULL,1048585,5,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,3,8,NULL,1048585,8,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,4,11,NULL,1048585,11,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,4,13,NULL,1048585,13,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,4,14,NULL,1048585,14,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,4,15,NULL,1048585,15,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,4,16,NULL,1048585,16,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,4,17,NULL,1048585,17,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200928.log',1,1,259,5,18,NULL,1048585,18,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200928.log',1,1,259,5,19,NULL,1048585,19,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,5,20,NULL,1048585,20,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200928.log',1,1,259,5,22,NULL,1048585,22,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20200928.log',1,1,259,5,23,NULL,1048585,23,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20200928.log',1,1,259,5,24,NULL,1048585,24,'20200928','202009',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20200929.log',1,1,259,5,23,29,515,179,'20200929','202009',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201001.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201001.log',1,1,259,1,5,6,515,31,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201001.log',1,1,259,3,6,13,515,63,'20201001','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201001.log',1,1,259,3,6,NULL,1048585,6,'20201001','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201002.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201002.log',1,1,259,1,1,5,515,30,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201002.log',1,1,259,1,5,6,515,31,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201002.log',1,1,259,1,4,7,515,32,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201002.log',1,1,259,1,3,8,515,33,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201002.log',1,1,259,3,7,10,515,60,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201002.log',1,1,259,3,8,12,515,62,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201002.log',1,1,259,4,11,22,515,122,'20201002','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201002.log',1,1,259,1,1,NULL,1048585,1,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201002.log',1,1,259,4,14,NULL,1048585,14,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201002.log',1,1,259,5,23,NULL,1048585,23,'20201002','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201003.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20201003.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201003.log',1,1,259,1,1,5,515,30,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201003.log',1,1,259,1,4,7,515,32,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201003.log',1,1,259,1,3,8,515,33,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201003.log',1,1,259,3,8,12,515,62,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201003.log',1,1,259,3,6,13,515,63,'20201003','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201003.log',1,1,259,3,10,NULL,1048585,10,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201003.log',1,1,259,5,23,NULL,1048585,23,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201003.log',1,1,259,5,24,NULL,1048585,24,'20201003','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201004.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201004.log',1,1,259,1,2,2,515,12,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201004.log',1,1,259,1,1,5,515,30,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201004.log',1,1,259,3,7,10,515,60,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201004.log',1,1,259,4,13,17,515,117,'20201004','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201004.log',1,1,259,5,22,NULL,1048585,22,'20201004','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201005.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201005.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,1,1,5,515,30,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,3,10,9,515,59,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201005.log',1,1,259,3,7,10,515,60,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,3,8,12,515,62,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,4,16,20,515,120,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,4,17,21,515,121,'20201005','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,5,22,28,515,178,'20201005','202010',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,3,10,NULL,1048585,10,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,4,17,NULL,1048585,17,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,5,18,NULL,1048585,18,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,5,19,NULL,1048585,19,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,5,20,NULL,1048585,20,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,5,22,NULL,1048585,22,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201005.log',1,1,259,5,23,NULL,1048585,23,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201005.log',1,1,259,5,24,NULL,1048585,24,'20201005','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',21),('usage_events_20201006.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201006.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201006.log',1,1,259,1,2,2,515,12,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,1,1,5,515,30,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,1,3,8,515,33,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,3,8,12,515,62,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,3,6,13,515,63,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,4,13,17,515,117,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,4,15,18,515,118,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,4,14,19,515,119,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,5,19,26,515,176,'20201006','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201006.log',1,1,259,1,2,NULL,1048585,2,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,3,10,NULL,1048585,10,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,4,13,NULL,1048585,13,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201006.log',1,1,259,4,14,NULL,1048585,14,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201006.log',1,1,259,4,15,NULL,1048585,15,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,5,19,NULL,1048585,19,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201006.log',1,1,259,5,24,NULL,1048585,24,'20201006','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201007.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20201007.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201007.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201007.log',1,1,259,1,1,5,515,30,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201007.log',1,1,259,3,7,10,515,60,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201007.log',1,1,259,3,6,13,515,63,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201007.log',1,1,259,4,16,20,515,120,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201007.log',1,1,259,4,17,21,515,121,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201007.log',1,1,259,5,19,26,515,176,'20201007','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201007.log',1,1,259,1,4,NULL,1048585,4,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201007.log',1,1,259,3,6,NULL,1048585,6,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201007.log',1,1,259,4,14,NULL,1048585,14,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201007.log',1,1,259,5,18,NULL,1048585,18,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201007.log',1,1,259,5,19,NULL,1048585,19,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201007.log',1,1,259,5,22,NULL,1048585,22,'20201007','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20201008.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,1,4,7,515,32,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201008.log',1,1,259,3,8,12,515,62,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201008.log',1,1,259,3,6,13,515,63,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,20,27,515,177,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,22,28,515,178,'20201008','202010',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,23,29,515,179,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,18,30,515,180,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,24,31,515,181,'20201008','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,1,4,NULL,1048585,4,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,4,16,NULL,1048585,16,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,18,NULL,1048585,18,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,22,NULL,1048585,22,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,23,NULL,1048585,23,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201008.log',1,1,259,5,24,NULL,1048585,24,'20201008','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201009.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20201009.log',1,1,259,1,1,5,515,30,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201009.log',1,1,259,1,3,8,515,33,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201009.log',1,1,259,3,9,11,515,61,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201009.log',1,1,259,3,6,13,515,63,'20201009','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201009.log',1,1,259,3,6,NULL,1048585,6,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201009.log',1,1,259,3,8,NULL,1048585,8,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201009.log',1,1,259,5,18,NULL,1048585,18,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201009.log',1,1,259,5,22,NULL,1048585,22,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201009.log',1,1,259,5,23,NULL,1048585,23,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201009.log',1,1,259,5,24,NULL,1048585,24,'20201009','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201010.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201010.log',1,1,259,3,8,12,515,62,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201010.log',1,1,259,4,16,20,515,120,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201010.log',1,1,259,4,17,21,515,121,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201010.log',1,1,259,5,19,26,515,176,'20201010','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201010.log',1,1,259,1,2,NULL,1048585,2,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201010.log',1,1,259,4,11,NULL,1048585,11,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201010.log',1,1,259,5,18,NULL,1048585,18,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201010.log',1,1,259,5,22,NULL,1048585,22,'20201010','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201011.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20201011.log',1,1,259,1,1,5,515,30,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201011.log',1,1,259,1,3,8,515,33,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201011.log',1,1,259,3,8,12,515,62,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201011.log',1,1,259,3,6,13,515,63,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201011.log',1,1,259,4,16,20,515,120,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201011.log',1,1,259,5,20,27,515,177,'20201011','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201011.log',1,1,259,4,13,NULL,1048585,13,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201011.log',1,1,259,5,24,NULL,1048585,24,'20201011','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201012.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20201012.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,1,1,5,515,30,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201012.log',1,1,259,1,3,8,515,33,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201012.log',1,1,259,3,7,10,515,60,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201012.log',1,1,259,3,8,12,515,62,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201012.log',1,1,259,3,6,13,515,63,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201012.log',1,1,259,4,17,21,515,121,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201012.log',1,1,259,5,19,26,515,176,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,20,27,515,177,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,22,28,515,178,'20201012','202010',3,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,5,23,29,515,179,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,18,30,515,180,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,24,31,515,181,'20201012','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,1,2,NULL,1048585,2,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,3,6,NULL,1048585,6,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,3,7,NULL,1048585,7,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,3,10,NULL,1048585,10,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,4,16,NULL,1048585,16,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,4,17,NULL,1048585,17,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201012.log',1,1,259,5,18,NULL,1048585,18,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,19,NULL,1048585,19,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,20,NULL,1048585,20,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,22,NULL,1048585,22,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201012.log',1,1,259,5,23,NULL,1048585,23,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201012.log',1,1,259,5,24,NULL,1048585,24,'20201012','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201013.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',20),('usage_events_20201013.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201013.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201013.log',1,1,259,1,5,6,515,31,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201013.log',1,1,259,1,4,7,515,32,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201013.log',1,1,259,1,3,8,515,33,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201013.log',1,1,259,3,10,9,515,59,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201013.log',1,1,259,4,13,17,515,117,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201013.log',1,1,259,4,11,22,515,122,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201013.log',1,1,259,5,22,28,515,178,'20201013','202010',3,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201013.log',1,1,259,5,23,29,515,179,'20201013','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201013.log',1,1,259,1,2,NULL,1048585,2,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201013.log',1,1,259,1,4,NULL,1048585,4,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201013.log',1,1,259,3,10,NULL,1048585,10,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201013.log',1,1,259,4,13,NULL,1048585,13,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201013.log',1,1,259,5,18,NULL,1048585,18,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201013.log',1,1,259,5,19,NULL,1048585,19,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201013.log',1,1,259,5,20,NULL,1048585,20,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201013.log',1,1,259,5,22,NULL,1048585,22,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201013.log',1,1,259,5,23,NULL,1048585,23,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201013.log',1,1,259,5,24,NULL,1048585,24,'20201013','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201014.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20201014.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201014.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,1,5,6,515,31,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,1,4,7,515,32,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201014.log',1,1,259,1,3,8,515,33,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,3,9,11,515,61,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,4,13,17,515,117,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,4,16,20,515,120,'20201014','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,5,22,28,515,178,'20201014','202010',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,5,22,NULL,1048585,22,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201014.log',1,1,259,5,24,NULL,1048585,24,'20201014','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201015.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201015.log',1,1,259,1,5,6,515,31,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201015.log',1,1,259,1,4,7,515,32,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201015.log',1,1,259,3,7,10,515,60,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201015.log',1,1,259,3,8,12,515,62,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201015.log',1,1,259,3,6,13,515,63,'20201015','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201015.log',1,1,259,1,4,NULL,1048585,4,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201015.log',1,1,259,5,23,NULL,1048585,23,'20201015','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201016.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201016.log',1,1,259,3,7,10,515,60,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201016.log',1,1,259,3,8,12,515,62,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201016.log',1,1,259,4,13,17,515,117,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,4,14,19,515,119,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,4,16,20,515,120,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,5,23,29,515,179,'20201016','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,3,6,NULL,1048585,6,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,4,16,NULL,1048585,16,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,4,17,NULL,1048585,17,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,5,18,NULL,1048585,18,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201016.log',1,1,259,5,23,NULL,1048585,23,'20201016','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201017.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201017.log',1,1,259,1,1,5,515,30,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201017.log',1,1,259,1,4,7,515,32,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201017.log',1,1,259,3,10,9,515,59,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201017.log',1,1,259,3,8,12,515,62,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201017.log',1,1,259,3,6,13,515,63,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201017.log',1,1,259,4,16,20,515,120,'20201017','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201017.log',1,1,259,1,3,NULL,1048585,3,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201017.log',1,1,259,3,10,NULL,1048585,10,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201017.log',1,1,259,4,14,NULL,1048585,14,'20201017','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201018.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,3,8,12,515,62,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,4,16,20,515,120,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,5,19,26,515,176,'20201018','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,1,4,NULL,1048585,4,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,3,6,NULL,1048585,6,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,3,8,NULL,1048585,8,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,4,16,NULL,1048585,16,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,4,17,NULL,1048585,17,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201018.log',1,1,259,5,19,NULL,1048585,19,'20201018','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',26),('usage_events_20201019.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201019.log',1,1,259,1,1,5,515,30,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201019.log',1,1,259,1,4,7,515,32,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201019.log',1,1,259,1,3,8,515,33,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,1,259,3,10,9,515,59,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,1,259,3,7,10,515,60,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,1,259,3,9,11,515,61,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201019.log',1,1,259,3,8,12,515,62,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201019.log',1,1,259,3,6,13,515,63,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201019.log',1,1,259,4,16,20,515,120,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201019.log',1,1,259,4,17,21,515,121,'20201019','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201019.log',1,1,259,5,22,28,515,178,'20201019','202010',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,1,259,1,2,NULL,1048585,2,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,1,259,1,4,NULL,1048585,4,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201019.log',1,1,259,3,6,NULL,1048585,6,'20201019','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',17),('usage_events_20201020.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201020.log',1,1,259,1,2,2,515,12,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,1,1,5,515,30,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201020.log',1,1,259,3,10,9,515,59,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,3,7,10,515,60,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,3,9,11,515,61,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,3,8,12,515,62,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,3,6,13,515,63,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,4,16,20,515,120,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201020.log',1,1,259,4,11,22,515,122,'20201020','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,5,22,28,515,178,'20201020','202010',3,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201020.log',1,1,259,1,2,NULL,1048585,2,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201020.log',1,1,259,3,6,NULL,1048585,6,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201020.log',1,1,259,3,10,NULL,1048585,10,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201020.log',1,1,259,5,18,NULL,1048585,18,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,5,19,NULL,1048585,19,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,5,20,NULL,1048585,20,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,5,22,NULL,1048585,22,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201020.log',1,1,259,5,23,NULL,1048585,23,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201020.log',1,1,259,5,24,NULL,1048585,24,'20201020','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20201021.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201021.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201021.log',1,1,259,1,2,2,515,12,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201021.log',1,1,259,1,1,5,515,30,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,1,3,8,515,33,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,3,8,12,515,62,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,3,6,13,515,63,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,4,17,21,515,121,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201021.log',1,1,259,5,22,28,515,178,'20201021','202010',3,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201021.log',1,1,259,5,24,31,515,181,'20201021','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201021.log',1,1,259,1,2,NULL,1048585,2,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201021.log',1,1,259,3,6,NULL,1048585,6,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,3,7,NULL,1048585,7,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,3,10,NULL,1048585,10,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,4,16,NULL,1048585,16,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,4,17,NULL,1048585,17,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,5,18,NULL,1048585,18,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,5,19,NULL,1048585,19,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201021.log',1,1,259,5,20,NULL,1048585,20,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201021.log',1,1,259,5,22,NULL,1048585,22,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201021.log',1,1,259,5,23,NULL,1048585,23,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201021.log',1,1,259,5,24,NULL,1048585,24,'20201021','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201022.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20201022.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201022.log',1,1,259,4,13,17,515,117,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201022.log',1,1,259,4,11,22,515,122,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201022.log',1,1,259,5,18,30,515,180,'20201022','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201022.log',1,1,259,1,2,NULL,1048585,2,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201022.log',1,1,259,3,7,NULL,1048585,7,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201022.log',1,1,259,4,13,NULL,1048585,13,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201022.log',1,1,259,5,22,NULL,1048585,22,'20201022','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20201023.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201023.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201023.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,1,2,2,515,12,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,1,1,5,515,30,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,1,5,6,515,31,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,1,4,7,515,32,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,1,3,8,515,33,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,3,10,9,515,59,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201023.log',1,1,259,3,7,10,515,60,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,3,9,11,515,61,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,3,8,12,515,62,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201023.log',1,1,259,3,6,13,515,63,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,4,13,17,515,117,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201023.log',1,1,259,5,23,29,515,179,'20201023','202010',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201023.log',1,1,259,1,1,NULL,1048585,1,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,1,3,NULL,1048585,3,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,4,11,NULL,1048585,11,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201023.log',1,1,259,4,17,NULL,1048585,17,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201023.log',1,1,259,5,23,NULL,1048585,23,'20201023','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201024.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201024.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201024.log',1,1,259,1,1,5,515,30,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201024.log',1,1,259,3,10,9,515,59,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201024.log',1,1,259,3,8,12,515,62,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201024.log',1,1,259,3,6,13,515,63,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201024.log',1,1,259,4,16,20,515,120,'20201024','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201024.log',1,1,259,5,22,28,515,178,'20201024','202010',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201024.log',1,1,259,3,6,NULL,1048585,6,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201024.log',1,1,259,3,7,NULL,1048585,7,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201024.log',1,1,259,3,8,NULL,1048585,8,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201024.log',1,1,259,3,10,NULL,1048585,10,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201024.log',1,1,259,5,22,NULL,1048585,22,'20201024','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201025.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201025.log',1,1,259,1,5,6,515,31,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201025.log',1,1,259,3,10,9,515,59,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201025.log',1,1,259,3,6,13,515,63,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201025.log',1,1,259,4,14,19,515,119,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201025.log',1,1,259,4,17,21,515,121,'20201025','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201025.log',1,1,259,5,22,28,515,178,'20201025','202010',3,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201025.log',1,1,259,1,1,NULL,1048585,1,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201025.log',1,1,259,1,5,NULL,1048585,5,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201025.log',1,1,259,4,17,NULL,1048585,17,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201025.log',1,1,259,5,22,NULL,1048585,22,'20201025','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201026.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20201026.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201026.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201026.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201026.log',1,1,259,1,1,5,515,30,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201026.log',1,1,259,1,5,6,515,31,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201026.log',1,1,259,1,3,8,515,33,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201026.log',1,1,259,3,8,12,515,62,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201026.log',1,1,259,4,15,18,515,118,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201026.log',1,1,259,4,14,19,515,119,'20201026','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201026.log',1,1,259,5,22,28,515,178,'20201026','202010',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201026.log',1,1,259,1,1,NULL,1048585,1,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201026.log',1,1,259,1,2,NULL,1048585,2,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201026.log',1,1,259,1,3,NULL,1048585,3,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201026.log',1,1,259,1,4,NULL,1048585,4,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201026.log',1,1,259,1,5,NULL,1048585,5,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201026.log',1,1,259,4,14,NULL,1048585,14,'20201026','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20201027.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201027.log',1,1,259,1,1,5,515,30,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201027.log',1,1,259,1,5,6,515,31,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,3,10,9,515,59,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,3,7,10,515,60,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,3,9,11,515,61,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,3,8,12,515,62,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,4,14,19,515,119,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,4,16,20,515,120,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201027.log',1,1,259,4,17,21,515,121,'20201027','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,1,2,NULL,1048585,2,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201027.log',1,1,259,3,7,NULL,1048585,7,'20201027','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201028.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201028.log',1,1,259,1,1,5,515,30,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201028.log',1,1,259,1,5,6,515,31,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,1,3,8,515,33,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201028.log',1,1,259,3,9,11,515,61,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,4,13,17,515,117,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,4,14,19,515,119,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,4,16,20,515,120,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,4,17,21,515,121,'20201028','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201028.log',1,1,259,1,3,NULL,1048585,3,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,3,9,NULL,1048585,9,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201028.log',1,1,259,4,13,NULL,1048585,13,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,4,14,NULL,1048585,14,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201028.log',1,1,259,5,22,NULL,1048585,22,'20201028','202010',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201029.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201029.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201029.log',1,1,259,1,2,2,515,12,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201029.log',1,1,259,1,1,5,515,30,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201029.log',1,1,259,1,4,7,515,32,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201029.log',1,1,259,3,7,10,515,60,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201029.log',1,1,259,3,8,12,515,62,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201029.log',1,1,259,3,6,13,515,63,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201029.log',1,1,259,4,11,22,515,122,'20201029','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201029.log',1,1,259,1,4,NULL,1048585,4,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201029.log',1,1,259,3,6,NULL,1048585,6,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201029.log',1,1,259,5,22,NULL,1048585,22,'20201029','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201030.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20201030.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201030.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201030.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201030.log',1,1,259,1,1,5,515,30,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201030.log',1,1,259,1,3,8,515,33,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201030.log',1,1,259,3,7,10,515,60,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201030.log',1,1,259,3,6,13,515,63,'20201030','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201030.log',1,1,259,1,2,NULL,1048585,2,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201030.log',1,1,259,5,22,NULL,1048585,22,'20201030','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20201031.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,1,1,5,515,30,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,3,9,11,515,61,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,19,26,515,176,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,20,27,515,177,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201031.log',1,1,259,5,22,28,515,178,'20201031','202010',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,18,30,515,180,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,24,31,515,181,'20201031','202010',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,4,11,NULL,1048585,11,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,4,13,NULL,1048585,13,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,4,15,NULL,1048585,15,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,18,NULL,1048585,18,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,19,NULL,1048585,19,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,20,NULL,1048585,20,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,22,NULL,1048585,22,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201031.log',1,1,259,5,23,NULL,1048585,23,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201031.log',1,1,259,5,24,NULL,1048585,24,'20201031','202010',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201101.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20201101.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201101.log',1,1,259,1,3,8,515,33,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201101.log',1,1,259,4,17,21,515,121,'20201101','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201101.log',1,1,259,5,22,28,515,178,'20201101','202011',3,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201101.log',1,1,259,4,14,NULL,1048585,14,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201101.log',1,1,259,5,18,NULL,1048585,18,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201101.log',1,1,259,5,19,NULL,1048585,19,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201101.log',1,1,259,5,20,NULL,1048585,20,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201101.log',1,1,259,5,22,NULL,1048585,22,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201101.log',1,1,259,5,23,NULL,1048585,23,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201101.log',1,1,259,5,24,NULL,1048585,24,'20201101','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',20),('usage_events_20201102.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,1,1,5,515,30,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,1,5,6,515,31,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201102.log',1,1,259,1,4,7,515,32,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,3,7,10,515,60,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201102.log',1,1,259,3,9,11,515,61,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,3,8,12,515,62,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,3,6,13,515,63,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,4,15,18,515,118,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,4,14,19,515,119,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,4,11,22,515,122,'20201102','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,5,22,28,515,178,'20201102','202011',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,1,2,NULL,1048585,2,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201102.log',1,1,259,1,5,NULL,1048585,5,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,3,7,NULL,1048585,7,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,4,17,NULL,1048585,17,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,5,19,NULL,1048585,19,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,5,20,NULL,1048585,20,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201102.log',1,1,259,5,22,NULL,1048585,22,'20201102','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201103.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',26),('usage_events_20201103.log',1,1,259,1,3,8,515,33,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201103.log',1,1,259,3,7,10,515,60,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201103.log',1,1,259,3,8,12,515,62,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201103.log',1,1,259,3,6,13,515,63,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201103.log',1,1,259,4,16,20,515,120,'20201103','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201103.log',1,1,259,3,7,NULL,1048585,7,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201103.log',1,1,259,3,10,NULL,1048585,10,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201103.log',1,1,259,4,16,NULL,1048585,16,'20201103','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201104.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20201104.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201104.log',1,1,259,1,2,2,515,12,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201104.log',1,1,259,1,5,6,515,31,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,3,8,12,515,62,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201104.log',1,1,259,3,6,13,515,63,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,4,17,21,515,121,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,5,19,26,515,176,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,5,18,30,515,180,'20201104','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,5,18,NULL,1048585,18,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,5,19,NULL,1048585,19,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201104.log',1,1,259,5,20,NULL,1048585,20,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201104.log',1,1,259,5,22,NULL,1048585,22,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,5,23,NULL,1048585,23,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201104.log',1,1,259,5,24,NULL,1048585,24,'20201104','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201105.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201105.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201105.log',1,1,259,1,3,8,515,33,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201105.log',1,1,259,3,8,12,515,62,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201105.log',1,1,259,3,6,13,515,63,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201105.log',1,1,259,4,14,19,515,119,'20201105','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201105.log',1,1,259,3,6,NULL,1048585,6,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201105.log',1,1,259,3,10,NULL,1048585,10,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201105.log',1,1,259,4,11,NULL,1048585,11,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201105.log',1,1,259,5,20,NULL,1048585,20,'20201105','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201106.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201106.log',1,1,259,1,1,5,515,30,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201106.log',1,1,259,3,10,9,515,59,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201106.log',1,1,259,3,6,13,515,63,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201106.log',1,1,259,4,16,20,515,120,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201106.log',1,1,259,5,20,27,515,177,'20201106','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201106.log',1,1,259,5,22,28,515,178,'20201106','202011',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201106.log',1,1,259,5,20,NULL,1048585,20,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201106.log',1,1,259,5,22,NULL,1048585,22,'20201106','202011',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201107.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',22),('usage_events_20201107.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201107.log',1,1,259,1,1,5,515,30,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,1,3,8,515,33,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,3,10,9,515,59,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,3,7,10,515,60,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,3,8,12,515,62,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201107.log',1,1,259,4,16,20,515,120,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201107.log',1,1,259,4,17,21,515,121,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,4,11,22,515,122,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,20,27,515,177,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,22,28,515,178,'20201107','202011',3,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,24,31,515,181,'20201107','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201107.log',1,1,259,1,3,NULL,1048585,3,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,3,7,NULL,1048585,7,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201107.log',1,1,259,3,10,NULL,1048585,10,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,18,NULL,1048585,18,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,19,NULL,1048585,19,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,20,NULL,1048585,20,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,22,NULL,1048585,22,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201107.log',1,1,259,5,24,NULL,1048585,24,'20201107','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201108.log',1,1,259,1,2,2,515,12,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,1,259,1,1,5,515,30,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,1,259,1,3,8,515,33,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201108.log',1,1,259,3,10,9,515,59,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201108.log',1,1,259,3,8,12,515,62,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201108.log',1,1,259,4,16,20,515,120,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,1,259,4,17,21,515,121,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201108.log',1,1,259,5,23,29,515,179,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201108.log',1,1,259,5,18,30,515,180,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,1,259,5,24,31,515,181,'20201108','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,1,259,1,3,NULL,1048585,3,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,1,259,4,17,NULL,1048585,17,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201108.log',1,1,259,5,19,NULL,1048585,19,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201108.log',1,1,259,5,23,NULL,1048585,23,'20201108','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20201109.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,1,1,5,515,30,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,3,10,9,515,59,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,3,7,10,515,60,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,3,9,11,515,61,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,3,6,13,515,63,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,4,16,20,515,120,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201109.log',1,1,259,4,17,21,515,121,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201109.log',1,1,259,5,19,26,515,176,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,5,23,29,515,179,'20201109','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,1,1,NULL,1048585,1,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,3,10,NULL,1048585,10,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201109.log',1,1,259,4,11,NULL,1048585,11,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,4,13,NULL,1048585,13,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201109.log',1,1,259,4,17,NULL,1048585,17,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201109.log',1,1,259,5,22,NULL,1048585,22,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201109.log',1,1,259,5,24,NULL,1048585,24,'20201109','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201110.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201110.log',1,1,259,1,3,8,515,33,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201110.log',1,1,259,3,10,9,515,59,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201110.log',1,1,259,3,7,10,515,60,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201110.log',1,1,259,3,9,11,515,61,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201110.log',1,1,259,3,6,13,515,63,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201110.log',1,1,259,4,13,17,515,117,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201110.log',1,1,259,5,19,26,515,176,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201110.log',1,1,259,5,20,27,515,177,'20201110','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201110.log',1,1,259,1,3,NULL,1048585,3,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201110.log',1,1,259,3,10,NULL,1048585,10,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201110.log',1,1,259,4,13,NULL,1048585,13,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201110.log',1,1,259,5,23,NULL,1048585,23,'20201110','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201111.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201111.log',1,1,259,1,1,5,515,30,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,1,5,6,515,31,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,3,10,9,515,59,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,3,8,12,515,62,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201111.log',1,1,259,3,6,13,515,63,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201111.log',1,1,259,4,13,17,515,117,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,4,15,18,515,118,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,4,16,20,515,120,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,4,17,21,515,121,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,4,11,22,515,122,'20201111','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,4,13,NULL,1048585,13,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,4,15,NULL,1048585,15,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,5,23,NULL,1048585,23,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201111.log',1,1,259,5,24,NULL,1048585,24,'20201111','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201112.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201112.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201112.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201112.log',1,1,259,1,2,2,515,12,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201112.log',1,1,259,1,1,5,515,30,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201112.log',1,1,259,1,5,6,515,31,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201112.log',1,1,259,1,3,8,515,33,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201112.log',1,1,259,3,8,12,515,62,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201112.log',1,1,259,3,6,13,515,63,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201112.log',1,1,259,4,16,20,515,120,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201112.log',1,1,259,4,17,21,515,121,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201112.log',1,1,259,5,22,28,515,178,'20201112','202011',3,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201112.log',1,1,259,5,23,29,515,179,'20201112','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201112.log',1,1,259,1,2,NULL,1048585,2,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201112.log',1,1,259,1,5,NULL,1048585,5,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201112.log',1,1,259,3,6,NULL,1048585,6,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201112.log',1,1,259,5,22,NULL,1048585,22,'20201112','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201113.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201113.log',1,1,259,1,1,5,515,30,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201113.log',1,1,259,1,3,8,515,33,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201113.log',1,1,259,3,6,13,515,63,'20201113','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201113.log',1,1,259,5,22,NULL,1048585,22,'20201113','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201114.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201114.log',1,1,259,1,1,5,515,30,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201114.log',1,1,259,1,3,8,515,33,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201114.log',1,1,259,3,8,12,515,62,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201114.log',1,1,259,4,13,17,515,117,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201114.log',1,1,259,4,14,19,515,119,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201114.log',1,1,259,4,17,21,515,121,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201114.log',1,1,259,5,23,29,515,179,'20201114','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201114.log',1,1,259,1,2,NULL,1048585,2,'20201114','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201115.log',1,1,259,1,3,8,515,33,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201115.log',1,1,259,3,10,9,515,59,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,1,259,3,7,10,515,60,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201115.log',1,1,259,3,9,11,515,61,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,1,259,3,8,12,515,62,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201115.log',1,1,259,3,6,13,515,63,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201115.log',1,1,259,4,14,19,515,119,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,1,259,4,16,20,515,120,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,1,259,4,17,21,515,121,'20201115','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201115.log',1,1,259,5,22,28,515,178,'20201115','202011',3,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201115.log',1,1,259,1,2,NULL,1048585,2,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,1,259,3,7,NULL,1048585,7,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,1,259,3,10,NULL,1048585,10,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201115.log',1,1,259,5,22,NULL,1048585,22,'20201115','202011',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201116.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20201116.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201116.log',1,1,259,1,1,5,515,30,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201116.log',1,1,259,3,7,10,515,60,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201116.log',1,1,259,3,8,12,515,62,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201116.log',1,1,259,3,6,13,515,63,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,4,15,18,515,118,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,4,16,20,515,120,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,4,17,21,515,121,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,19,26,515,176,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,20,27,515,177,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,23,29,515,179,'20201116','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,1,1,NULL,1048585,1,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,18,NULL,1048585,18,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,19,NULL,1048585,19,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,20,NULL,1048585,20,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,22,NULL,1048585,22,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,23,NULL,1048585,23,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201116.log',1,1,259,5,24,NULL,1048585,24,'20201116','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201117.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20201117.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201117.log',1,1,259,1,2,2,515,12,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201117.log',1,1,259,1,4,7,515,32,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201117.log',1,1,259,3,8,12,515,62,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201117.log',1,1,259,3,6,13,515,63,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201117.log',1,1,259,4,16,20,515,120,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201117.log',1,1,259,4,11,22,515,122,'20201117','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201117.log',1,1,259,1,4,NULL,1048585,4,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201117.log',1,1,259,5,22,NULL,1048585,22,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201117.log',1,1,259,5,24,NULL,1048585,24,'20201117','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',32),('usage_events_20201118.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201118.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201118.log',1,1,259,1,1,5,515,30,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,1,259,1,5,6,515,31,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,1,259,4,14,19,515,119,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,1,259,4,16,20,515,120,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,4,17,21,515,121,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,1,259,5,19,26,515,176,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,5,20,27,515,177,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,5,22,28,515,178,'20201118','202011',3,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201118.log',1,1,259,5,23,29,515,179,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,5,18,30,515,180,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,5,24,31,515,181,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,6,28,34,515,207,'20201118','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,1,2,NULL,1048585,2,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,3,6,NULL,1048585,6,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,3,7,NULL,1048585,7,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,3,10,NULL,1048585,10,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201118.log',1,1,259,4,13,NULL,1048585,13,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201118.log',1,1,259,4,16,NULL,1048585,16,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201118.log',1,1,259,4,17,NULL,1048585,17,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201118.log',1,1,259,5,18,NULL,1048585,18,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201118.log',1,1,259,5,19,NULL,1048585,19,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201118.log',1,1,259,5,20,NULL,1048585,20,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201118.log',1,1,259,5,22,NULL,1048585,22,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201118.log',1,1,259,5,23,NULL,1048585,23,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201118.log',1,1,259,5,24,NULL,1048585,24,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201118.log',1,1,259,6,28,NULL,1048585,28,'20201118','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201119.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20201119.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201119.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201119.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201119.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201119.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201119.log',1,1,259,1,2,2,515,12,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201119.log',1,1,259,1,1,5,515,30,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201119.log',1,1,259,3,10,9,515,59,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201119.log',1,1,259,3,8,12,515,62,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201119.log',1,1,259,3,6,13,515,63,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,4,14,19,515,119,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,4,16,20,515,120,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201119.log',1,1,259,4,17,21,515,121,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201119.log',1,1,259,5,23,29,515,179,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,5,18,30,515,180,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,5,22,35,515,208,'20201119','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,1,1,NULL,1048585,1,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,1,2,NULL,1048585,2,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,1,3,NULL,1048585,3,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,4,14,NULL,1048585,14,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,4,15,NULL,1048585,15,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,4,17,NULL,1048585,17,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,5,18,NULL,1048585,18,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,5,22,NULL,1048585,22,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201119.log',1,1,259,5,23,NULL,1048585,23,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201119.log',1,1,259,6,28,NULL,1048585,28,'20201119','202011',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201120.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20201120.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,3,8,12,515,62,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,4,13,17,515,117,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,4,14,19,515,119,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,4,17,21,515,121,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201120.log',1,1,259,5,20,27,515,177,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201120.log',1,1,259,5,23,29,515,179,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,6,28,34,515,207,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201120.log',1,1,259,5,22,35,515,208,'20201120','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,4,14,NULL,1048585,14,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,4,16,NULL,1048585,16,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201120.log',1,1,259,5,22,NULL,1048585,22,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201120.log',1,1,259,5,23,NULL,1048585,23,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201120.log',1,1,259,6,28,NULL,1048585,28,'20201120','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201121.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201121.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,1,2,2,515,12,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,1,1,5,515,30,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201121.log',1,1,259,1,5,6,515,31,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,1,4,7,515,32,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,1,3,8,515,33,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201121.log',1,1,259,3,10,9,515,59,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,3,7,10,515,60,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,3,8,12,515,62,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,4,13,17,515,117,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201121.log',1,1,259,4,15,18,515,118,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201121.log',1,1,259,4,14,19,515,119,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201121.log',1,1,259,4,16,20,515,120,'20201121','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201121.log',1,1,259,1,1,NULL,1048585,1,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,1,2,NULL,1048585,2,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201121.log',1,1,259,6,28,NULL,1048585,28,'20201121','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201122.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201122.log',1,1,259,1,1,5,515,30,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201122.log',1,1,259,3,8,12,515,62,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201122.log',1,1,259,4,14,19,515,119,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201122.log',1,1,259,4,16,20,515,120,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201122.log',1,1,259,6,28,34,515,207,'20201122','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201122.log',1,1,259,3,8,NULL,1048585,8,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201122.log',1,1,259,5,18,NULL,1048585,18,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201122.log',1,1,259,6,28,NULL,1048585,28,'20201122','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201123.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20201123.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201123.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201123.log',1,1,259,1,1,5,515,30,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201123.log',1,1,259,3,8,12,515,62,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201123.log',1,1,259,4,14,19,515,119,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201123.log',1,1,259,6,28,34,515,207,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201123.log',1,1,259,5,22,35,515,208,'20201123','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201123.log',1,1,259,1,1,NULL,1048585,1,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201123.log',1,1,259,4,13,NULL,1048585,13,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201123.log',1,1,259,5,22,NULL,1048585,22,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201123.log',1,1,259,6,28,NULL,1048585,28,'20201123','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201124.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',15),('usage_events_20201124.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201124.log',1,1,259,1,1,5,515,30,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201124.log',1,1,259,4,17,21,515,121,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201124.log',1,1,259,6,28,34,515,207,'20201124','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201124.log',1,1,259,4,14,NULL,1048585,14,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201124.log',1,1,259,6,28,NULL,1048585,28,'20201124','202011',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201125.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201125.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201125.log',1,1,259,1,1,5,515,30,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201125.log',1,1,259,1,3,8,515,33,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201125.log',1,1,259,3,6,13,515,63,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201125.log',1,1,259,4,11,22,515,122,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201125.log',1,1,259,6,28,34,515,207,'20201125','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201125.log',1,1,259,1,3,NULL,1048585,3,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201125.log',1,1,259,1,4,NULL,1048585,4,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201125.log',1,1,259,4,16,NULL,1048585,16,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201125.log',1,1,259,5,22,NULL,1048585,22,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201125.log',1,1,259,6,28,NULL,1048585,28,'20201125','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201126.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20201126.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,1,3,8,515,33,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201126.log',1,1,259,3,10,9,515,59,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,3,8,12,515,62,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201126.log',1,1,259,4,14,19,515,119,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,5,18,30,515,180,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,6,28,34,515,207,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201126.log',1,1,259,5,22,35,515,208,'20201126','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201126.log',1,1,259,1,1,NULL,1048585,1,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,4,13,NULL,1048585,13,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,5,18,NULL,1048585,18,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,5,19,NULL,1048585,19,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201126.log',1,1,259,5,22,NULL,1048585,22,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201126.log',1,1,259,6,28,NULL,1048585,28,'20201126','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201127.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20201127.log',1,1,259,1,3,8,515,33,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201127.log',1,1,259,3,8,12,515,62,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201127.log',1,1,259,3,6,13,515,63,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201127.log',1,1,259,4,13,17,515,117,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201127.log',1,1,259,4,14,19,515,119,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201127.log',1,1,259,4,17,21,515,121,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201127.log',1,1,259,4,11,22,515,122,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201127.log',1,1,259,6,28,34,515,207,'20201127','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201127.log',1,1,259,1,3,NULL,1048585,3,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201127.log',1,1,259,4,13,NULL,1048585,13,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201127.log',1,1,259,4,15,NULL,1048585,15,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201127.log',1,1,259,4,17,NULL,1048585,17,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201127.log',1,1,259,6,28,NULL,1048585,28,'20201127','202011',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201128.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201128.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,1,1,5,515,30,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,1,4,7,515,32,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,1,3,8,515,33,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,3,10,9,515,59,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201128.log',1,1,259,3,7,10,515,60,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,3,9,11,515,61,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,3,8,12,515,62,'20201128','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,1,4,NULL,1048585,4,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,5,18,NULL,1048585,18,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201128.log',1,1,259,6,28,NULL,1048585,28,'20201128','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201129.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20201129.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,1,2,2,515,12,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,1,1,5,515,30,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201129.log',1,1,259,1,5,6,515,31,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,1,3,8,515,33,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,3,10,9,515,59,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,3,8,12,515,62,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201129.log',1,1,259,4,17,21,515,121,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201129.log',1,1,259,5,23,29,515,179,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,5,18,30,515,180,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,5,24,31,515,181,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201129.log',1,1,259,6,28,34,515,207,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,5,22,35,515,208,'20201129','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201129.log',1,1,259,1,1,NULL,1048585,1,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201129.log',1,1,259,5,18,NULL,1048585,18,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,5,20,NULL,1048585,20,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,5,22,NULL,1048585,22,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,5,23,NULL,1048585,23,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,5,24,NULL,1048585,24,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201129.log',1,1,259,6,28,NULL,1048585,28,'20201129','202011',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201130.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20201130.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201130.log',1,1,259,1,1,5,515,30,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201130.log',1,1,259,1,3,8,515,33,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201130.log',1,1,259,3,6,13,515,63,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201130.log',1,1,259,4,13,17,515,117,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201130.log',1,1,259,4,16,20,515,120,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201130.log',1,1,259,5,22,35,515,208,'20201130','202011',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201130.log',1,1,259,6,28,NULL,1048585,28,'20201130','202011',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201201.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201201.log',1,1,259,1,2,2,515,12,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201201.log',1,1,259,1,1,5,515,30,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,3,6,13,515,63,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,5,22,35,515,208,'20201201','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,1,1,NULL,1048585,1,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,1,2,NULL,1048585,2,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,1,3,NULL,1048585,3,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,1,4,NULL,1048585,4,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,1,5,NULL,1048585,5,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,5,18,NULL,1048585,18,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201201.log',1,1,259,5,22,NULL,1048585,22,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201201.log',1,1,259,6,28,NULL,1048585,28,'20201201','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201202.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201202.log',1,1,259,1,1,5,515,30,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,1,4,7,515,32,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,3,8,12,515,62,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,4,16,20,515,120,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201202.log',1,1,259,4,17,21,515,121,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,5,23,29,515,179,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,6,28,34,515,207,'20201202','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,1,2,NULL,1048585,2,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201202.log',1,1,259,3,7,NULL,1048585,7,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201202.log',1,1,259,4,11,NULL,1048585,11,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,5,18,NULL,1048585,18,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201202.log',1,1,259,5,22,NULL,1048585,22,'20201202','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201203.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20201203.log',1,1,259,1,2,2,515,12,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201203.log',1,1,259,1,3,8,515,33,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201203.log',1,1,259,4,16,20,515,120,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201203.log',1,1,259,5,22,35,515,208,'20201203','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201203.log',1,1,259,3,6,NULL,1048585,6,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201203.log',1,1,259,3,10,NULL,1048585,10,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201203.log',1,1,259,5,22,NULL,1048585,22,'20201203','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201204.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201204.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201204.log',1,1,259,1,1,5,515,30,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201204.log',1,1,259,3,7,10,515,60,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201204.log',1,1,259,3,6,13,515,63,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201204.log',1,1,259,4,16,20,515,120,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201204.log',1,1,259,6,28,34,515,207,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201204.log',1,1,259,5,22,35,515,208,'20201204','202012',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201204.log',1,1,259,1,1,NULL,1048585,1,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201204.log',1,1,259,3,6,NULL,1048585,6,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201204.log',1,1,259,5,22,NULL,1048585,22,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201204.log',1,1,259,6,28,NULL,1048585,28,'20201204','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201205.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201205.log',1,1,259,1,1,5,515,30,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201205.log',1,1,259,1,4,7,515,32,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201205.log',1,1,259,1,3,8,515,33,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201205.log',1,1,259,3,10,9,515,59,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201205.log',1,1,259,3,8,12,515,62,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201205.log',1,1,259,4,16,20,515,120,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201205.log',1,1,259,5,22,35,515,208,'20201205','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201205.log',1,1,259,1,3,NULL,1048585,3,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201205.log',1,1,259,1,4,NULL,1048585,4,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201205.log',1,1,259,3,6,NULL,1048585,6,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201205.log',1,1,259,4,13,NULL,1048585,13,'20201205','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201206.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201206.log',1,1,259,1,2,2,515,12,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201206.log',1,1,259,1,1,5,515,30,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20201206.log',1,1,259,1,4,7,515,32,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,3,10,9,515,59,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,3,7,10,515,60,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,3,8,12,515,62,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,3,6,13,515,63,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201206.log',1,1,259,4,16,20,515,120,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,5,19,26,515,176,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,6,28,34,515,207,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201206.log',1,1,259,5,22,35,515,208,'20201206','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,1,2,NULL,1048585,2,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201206.log',1,1,259,1,4,NULL,1048585,4,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201206.log',1,1,259,5,18,NULL,1048585,18,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,5,19,NULL,1048585,19,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,5,22,NULL,1048585,22,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201206.log',1,1,259,6,28,NULL,1048585,28,'20201206','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201207.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,1,1,5,515,30,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,3,10,9,515,59,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201207.log',1,1,259,4,15,18,515,118,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,4,14,19,515,119,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,4,16,20,515,120,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,4,11,22,515,122,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,6,28,34,515,207,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201207.log',1,1,259,5,22,35,515,208,'20201207','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,1,1,NULL,1048585,1,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,1,2,NULL,1048585,2,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,1,3,NULL,1048585,3,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,1,4,NULL,1048585,4,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,1,5,NULL,1048585,5,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,3,7,NULL,1048585,7,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,3,8,NULL,1048585,8,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,3,9,NULL,1048585,9,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,3,10,NULL,1048585,10,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201207.log',1,1,259,4,11,NULL,1048585,11,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,4,15,NULL,1048585,15,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,4,16,NULL,1048585,16,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,5,20,NULL,1048585,20,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201207.log',1,1,259,6,28,NULL,1048585,28,'20201207','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201208.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201208.log',1,1,259,1,2,2,515,12,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,1,1,5,515,30,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201208.log',1,1,259,1,5,6,515,31,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,1,4,7,515,32,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,1,3,8,515,33,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,3,8,12,515,62,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201208.log',1,1,259,3,6,13,515,63,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,5,18,30,515,180,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201208.log',1,1,259,5,22,35,515,208,'20201208','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201208.log',1,1,259,1,1,NULL,1048585,1,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,1,2,NULL,1048585,2,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,1,3,NULL,1048585,3,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,1,4,NULL,1048585,4,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,1,5,NULL,1048585,5,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201208.log',1,1,259,3,6,NULL,1048585,6,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201208.log',1,1,259,5,22,NULL,1048585,22,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201208.log',1,1,259,5,23,NULL,1048585,23,'20201208','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201209.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201209.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201209.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201209.log',1,1,259,1,3,8,515,33,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201209.log',1,1,259,3,7,10,515,60,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201209.log',1,1,259,3,8,12,515,62,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201209.log',1,1,259,4,16,20,515,120,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201209.log',1,1,259,4,17,21,515,121,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201209.log',1,1,259,5,19,26,515,176,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201209.log',1,1,259,5,23,29,515,179,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201209.log',1,1,259,6,28,34,515,207,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201209.log',1,1,259,5,22,35,515,208,'20201209','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201209.log',1,1,259,1,3,NULL,1048585,3,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201209.log',1,1,259,4,15,NULL,1048585,15,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201209.log',1,1,259,5,23,NULL,1048585,23,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201209.log',1,1,259,6,28,NULL,1048585,28,'20201209','202012',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201210.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201210','202012',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20201211.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20201211.log',1,1,259,1,1,5,515,30,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201211.log',1,1,259,3,6,13,515,63,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201211.log',1,1,259,6,28,34,515,207,'20201211','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201211.log',1,1,259,4,14,NULL,1048585,14,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201211.log',1,1,259,6,28,NULL,1048585,28,'20201211','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201212.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,1,259,1,1,5,515,30,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,1,259,4,16,20,515,120,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,1,259,5,23,29,515,179,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,1,259,6,28,34,515,207,'20201212','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,1,259,5,19,NULL,1048585,19,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,1,259,5,23,NULL,1048585,23,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201212.log',1,1,259,6,28,NULL,1048585,28,'20201212','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201213.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,1,1,5,515,30,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,3,9,11,515,61,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,3,6,13,515,63,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,6,28,34,515,207,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,5,22,35,515,208,'20201213','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,4,16,NULL,1048585,16,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,5,22,NULL,1048585,22,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201213.log',1,1,259,6,28,NULL,1048585,28,'20201213','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201214.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201214.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,3,8,12,515,62,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,4,16,20,515,120,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,19,26,515,176,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,23,29,515,179,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,18,30,515,180,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,24,31,515,181,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,6,28,34,515,207,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,22,35,515,208,'20201214','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201214.log',1,1,259,4,11,NULL,1048585,11,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,18,NULL,1048585,18,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,23,NULL,1048585,23,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,5,24,NULL,1048585,24,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201214.log',1,1,259,6,28,NULL,1048585,28,'20201214','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201215.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201215.log',1,1,259,1,1,5,515,30,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201215.log',1,1,259,4,16,20,515,120,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201215.log',1,1,259,4,17,21,515,121,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201215.log',1,1,259,5,23,29,515,179,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201215.log',1,1,259,6,28,34,515,207,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201215.log',1,1,259,5,22,35,515,208,'20201215','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201215.log',1,1,259,5,22,NULL,1048585,22,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201215.log',1,1,259,5,23,NULL,1048585,23,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201215.log',1,1,259,6,28,NULL,1048585,28,'20201215','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201216.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201216.log',1,1,259,1,1,5,515,30,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201216.log',1,1,259,3,9,11,515,61,'20201216','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201216.log',1,1,259,1,5,NULL,1048585,5,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201216.log',1,1,259,3,6,NULL,1048585,6,'20201216','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201217.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201217.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201217.log',1,1,259,4,11,22,515,122,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201217.log',1,1,259,6,28,34,515,207,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201217.log',1,1,259,5,22,35,515,208,'20201217','202012',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201217.log',1,1,259,4,11,NULL,1048585,11,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201217.log',1,1,259,4,13,NULL,1048585,13,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201217.log',1,1,259,5,22,NULL,1048585,22,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201217.log',1,1,259,6,28,NULL,1048585,28,'20201217','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201218.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201218.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201218.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201218.log',1,1,259,1,2,2,515,12,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201218.log',1,1,259,4,13,17,515,117,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201218.log',1,1,259,4,16,20,515,120,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201218.log',1,1,259,4,11,22,515,122,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201218.log',1,1,259,6,28,34,515,207,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201218.log',1,1,259,5,22,35,515,208,'20201218','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201218.log',1,1,259,1,2,NULL,1048585,2,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201218.log',1,1,259,4,11,NULL,1048585,11,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201218.log',1,1,259,5,22,NULL,1048585,22,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201218.log',1,1,259,5,24,NULL,1048585,24,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201218.log',1,1,259,6,28,NULL,1048585,28,'20201218','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201219.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201219.log',1,1,259,4,17,21,515,121,'20201219','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201219.log',1,1,259,1,2,NULL,1048585,2,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201219.log',1,1,259,5,22,NULL,1048585,22,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201219.log',1,1,259,5,23,NULL,1048585,23,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201219.log',1,1,259,5,24,NULL,1048585,24,'20201219','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201220.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201220.log',1,1,259,1,2,2,515,12,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201220.log',1,1,259,1,3,8,515,33,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201220.log',1,1,259,3,9,11,515,61,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201220.log',1,1,259,3,6,13,515,63,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201220.log',1,1,259,5,23,29,515,179,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201220.log',1,1,259,6,28,34,515,207,'20201220','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201220.log',1,1,259,3,6,NULL,1048585,6,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201220.log',1,1,259,4,13,NULL,1048585,13,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201220.log',1,1,259,5,23,NULL,1048585,23,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201220.log',1,1,259,6,28,NULL,1048585,28,'20201220','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201221.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201221.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201221.log',1,1,259,1,2,2,515,12,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201221.log',1,1,259,4,13,17,515,117,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201221.log',1,1,259,4,14,19,515,119,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201221.log',1,1,259,4,16,20,515,120,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201221.log',1,1,259,4,17,21,515,121,'20201221','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201221.log',1,1,259,3,7,NULL,1048585,7,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201221.log',1,1,259,3,10,NULL,1048585,10,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201221.log',1,1,259,4,13,NULL,1048585,13,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201221.log',1,1,259,4,14,NULL,1048585,14,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201221.log',1,1,259,4,16,NULL,1048585,16,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201221.log',1,1,259,4,17,NULL,1048585,17,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201221.log',1,1,259,5,18,NULL,1048585,18,'20201221','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201222.log',1,1,259,3,9,11,515,61,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,3,8,12,515,62,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,3,6,13,515,63,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,4,13,17,515,117,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,5,20,27,515,177,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,6,28,34,515,207,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,5,22,35,515,208,'20201222','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,3,10,NULL,1048585,10,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201222.log',1,1,259,4,13,NULL,1048585,13,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201222.log',1,1,259,4,14,NULL,1048585,14,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201222.log',1,1,259,4,17,NULL,1048585,17,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201222.log',1,1,259,6,28,NULL,1048585,28,'20201222','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20201223.log',1,1,259,1,2,2,515,12,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,1,259,1,5,6,515,31,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,1,259,3,10,9,515,59,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,1,259,4,16,20,515,120,'20201223','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,1,259,1,3,NULL,1048585,3,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,1,259,1,5,NULL,1048585,5,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,1,259,5,22,NULL,1048585,22,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201223.log',1,1,259,5,23,NULL,1048585,23,'20201223','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20201224.log',1,1,259,1,1,5,515,30,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,3,7,10,515,60,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,3,8,12,515,62,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,4,16,20,515,120,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,4,17,21,515,121,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,6,28,34,515,207,'20201224','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,1,1,NULL,1048585,1,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201224.log',1,1,259,1,3,NULL,1048585,3,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,4,11,NULL,1048585,11,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201224.log',1,1,259,5,22,NULL,1048585,22,'20201224','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201225.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20201225.log',1,1,259,1,1,5,515,30,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201225.log',1,1,259,6,28,34,515,207,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201225.log',1,1,259,5,22,35,515,208,'20201225','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201225.log',1,1,259,1,1,NULL,1048585,1,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201225.log',1,1,259,5,22,NULL,1048585,22,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201225.log',1,1,259,6,28,NULL,1048585,28,'20201225','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201226.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201226.log',1,1,259,1,3,8,515,33,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201226.log',1,1,259,3,10,9,515,59,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201226.log',1,1,259,3,8,12,515,62,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201226.log',1,1,259,3,6,13,515,63,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201226.log',1,1,259,4,17,21,515,121,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201226.log',1,1,259,5,23,29,515,179,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201226.log',1,1,259,5,18,30,515,180,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201226.log',1,1,259,5,24,31,515,181,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201226.log',1,1,259,5,22,35,515,208,'20201226','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201226.log',1,1,259,1,3,NULL,1048585,3,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201226.log',1,1,259,5,22,NULL,1048585,22,'20201226','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201227.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20201227.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201227.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201227.log',1,1,259,3,6,13,515,63,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201227.log',1,1,259,4,13,17,515,117,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201227.log',1,1,259,4,14,19,515,119,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201227.log',1,1,259,4,11,22,515,122,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201227.log',1,1,259,6,28,34,515,207,'20201227','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201227.log',1,1,259,4,13,NULL,1048585,13,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201227.log',1,1,259,6,28,NULL,1048585,28,'20201227','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201228.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20201228.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201228.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201228.log',1,1,259,3,9,11,515,61,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201228.log',1,1,259,4,16,20,515,120,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201228.log',1,1,259,6,28,34,515,207,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201228.log',1,1,259,5,22,35,515,208,'20201228','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201228.log',1,1,259,3,9,NULL,1048585,9,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201228.log',1,1,259,4,11,NULL,1048585,11,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20201228.log',1,1,259,5,22,NULL,1048585,22,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201228.log',1,1,259,6,28,NULL,1048585,28,'20201228','202012',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201229.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20201229.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201229.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201229.log',1,1,259,4,13,17,515,117,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201229.log',1,1,259,4,11,22,515,122,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201229.log',1,1,259,6,28,34,515,207,'20201229','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201229.log',1,1,259,4,11,NULL,1048585,11,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201229.log',1,1,259,4,13,NULL,1048585,13,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20201229.log',1,1,259,5,18,NULL,1048585,18,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201229.log',1,1,259,6,28,NULL,1048585,28,'20201229','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201230.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20201230.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201230.log',1,1,259,1,2,2,515,12,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,1,259,3,6,13,515,63,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201230.log',1,1,259,4,13,17,515,117,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,1,259,4,16,20,515,120,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,1,259,4,17,21,515,121,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,1,259,6,28,34,515,207,'20201230','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201230.log',1,1,259,1,2,NULL,1048585,2,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,1,259,3,6,NULL,1048585,6,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201230.log',1,1,259,4,16,NULL,1048585,16,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201230.log',1,1,259,5,22,NULL,1048585,22,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201230.log',1,1,259,6,28,NULL,1048585,28,'20201230','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201231.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20201231.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201231.log',1,1,259,1,3,8,515,33,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201231.log',1,1,259,3,9,11,515,61,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201231.log',1,1,259,3,8,12,515,62,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201231.log',1,1,259,4,14,19,515,119,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201231.log',1,1,259,4,16,20,515,120,'20201231','202012',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201231.log',1,1,259,1,3,NULL,1048585,3,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20201231.log',1,1,259,4,14,NULL,1048585,14,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20201231.log',1,1,259,5,22,NULL,1048585,22,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20201231.log',1,1,259,6,28,NULL,1048585,28,'20201231','202012',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210101.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210101.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210101.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210101.log',1,1,259,6,28,34,515,207,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210101.log',1,1,259,5,22,35,515,208,'20210101','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210101.log',1,1,259,5,22,NULL,1048585,22,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210101.log',1,1,259,6,28,NULL,1048585,28,'20210101','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210102.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210102.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210102.log',1,1,259,3,8,12,515,62,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210102.log',1,1,259,4,14,19,515,119,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210102.log',1,1,259,4,16,20,515,120,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210102.log',1,1,259,6,29,36,515,217,'20210102','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210102.log',1,1,259,4,14,NULL,1048585,14,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210102.log',1,1,259,4,16,NULL,1048585,16,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210102.log',1,1,259,6,28,NULL,1048585,28,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210102.log',1,1,259,6,29,NULL,1048585,29,'20210102','202101',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210103.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210103.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210103.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210103.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210103.log',1,1,259,1,2,2,515,12,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210103.log',1,1,259,3,9,11,515,61,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210103.log',1,1,259,5,22,35,515,208,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210103.log',1,1,259,6,29,36,515,217,'20210103','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210103.log',1,1,259,3,9,NULL,1048585,9,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210103.log',1,1,259,4,15,NULL,1048585,15,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210103.log',1,1,259,5,18,NULL,1048585,18,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210103.log',1,1,259,5,19,NULL,1048585,19,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210103.log',1,1,259,5,22,NULL,1048585,22,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210103.log',1,1,259,6,28,NULL,1048585,28,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210103.log',1,1,259,6,29,NULL,1048585,29,'20210103','202101',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210104.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20210104.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210104.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210104.log',1,1,259,1,4,7,515,32,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210104.log',1,1,259,3,8,12,515,62,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210104.log',1,1,259,4,16,20,515,120,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210104.log',1,1,259,5,20,27,515,177,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210104.log',1,1,259,5,22,35,515,208,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210104.log',1,1,259,6,29,36,515,217,'20210104','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210104.log',1,1,259,4,16,NULL,1048585,16,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210104.log',1,1,259,6,28,NULL,1048585,28,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210104.log',1,1,259,6,29,NULL,1048585,29,'20210104','202101',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210105.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210105.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210105.log',1,1,259,1,5,6,515,31,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,3,8,12,515,62,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,4,11,22,515,122,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,5,19,26,515,176,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,5,18,30,515,180,'20210105','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,1,2,NULL,1048585,2,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,1,5,NULL,1048585,5,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,4,11,NULL,1048585,11,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210105.log',1,1,259,4,14,NULL,1048585,14,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210105.log',1,1,259,5,18,NULL,1048585,18,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210105.log',1,1,259,6,28,NULL,1048585,28,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210105.log',1,1,259,6,29,NULL,1048585,29,'20210105','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20210106.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210106.log',1,1,259,1,2,2,515,12,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,1,1,5,515,30,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,1,5,6,515,31,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,1,4,7,515,32,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,1,3,8,515,33,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,10,9,515,59,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,3,7,10,515,60,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210106.log',1,1,259,3,9,11,515,61,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,8,12,515,62,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,6,13,515,63,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,13,17,515,117,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,15,18,515,118,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,14,19,515,119,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,4,16,20,515,120,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,17,21,515,121,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,11,22,515,122,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,5,19,26,515,176,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210106.log',1,1,259,5,20,27,515,177,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210106.log',1,1,259,5,23,29,515,179,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,5,18,30,515,180,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,5,24,31,515,181,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,6,28,34,515,207,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210106.log',1,1,259,5,22,35,515,208,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,6,29,36,515,217,'20210106','202101',2,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210106.log',1,1,259,1,1,NULL,1048585,1,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,1,2,NULL,1048585,2,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,1,3,NULL,1048585,3,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,1,4,NULL,1048585,4,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,1,5,NULL,1048585,5,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,6,NULL,1048585,6,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,7,NULL,1048585,7,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,8,NULL,1048585,8,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,9,NULL,1048585,9,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,3,10,NULL,1048585,10,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,11,NULL,1048585,11,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,13,NULL,1048585,13,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,14,NULL,1048585,14,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,15,NULL,1048585,15,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,16,NULL,1048585,16,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,4,17,NULL,1048585,17,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,5,18,NULL,1048585,18,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,5,19,NULL,1048585,19,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,5,20,NULL,1048585,20,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,5,22,NULL,1048585,22,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210106.log',1,1,259,5,23,NULL,1048585,23,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,5,24,NULL,1048585,24,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210106.log',1,1,259,6,28,NULL,1048585,28,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210106.log',1,1,259,6,29,NULL,1048585,29,'20210106','202101',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20210107.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210107.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210107.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210107.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210107.log',1,1,259,1,1,5,515,30,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210107.log',1,1,259,5,19,26,515,176,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210107.log',1,1,259,5,18,30,515,180,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210107.log',1,1,259,5,22,35,515,208,'20210107','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210107.log',1,1,259,1,1,NULL,1048585,1,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210107.log',1,1,259,4,16,NULL,1048585,16,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210107.log',1,1,259,5,19,NULL,1048585,19,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210107.log',1,1,259,5,22,NULL,1048585,22,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210107.log',1,1,259,6,28,NULL,1048585,28,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210107.log',1,1,259,6,29,NULL,1048585,29,'20210107','202101',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210108.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210108.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210108.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210108.log',1,1,259,1,1,5,515,30,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210108.log',1,1,259,3,7,10,515,60,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210108.log',1,1,259,3,8,12,515,62,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210108.log',1,1,259,3,6,13,515,63,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210108.log',1,1,259,4,16,20,515,120,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210108.log',1,1,259,4,17,21,515,121,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210108.log',1,1,259,5,22,35,515,208,'20210108','202101',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210108.log',1,1,259,3,7,NULL,1048585,7,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210108.log',1,1,259,4,17,NULL,1048585,17,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210108.log',1,1,259,5,22,NULL,1048585,22,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210108.log',1,1,259,6,28,NULL,1048585,28,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210108.log',1,1,259,6,29,NULL,1048585,29,'20210108','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210109.log',1,1,259,3,7,10,515,60,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,1,259,3,6,13,515,63,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,1,259,5,23,29,515,179,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,1,259,5,18,30,515,180,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,1,259,5,22,35,515,208,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210109.log',1,1,259,6,29,36,515,217,'20210109','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210109.log',1,1,259,3,6,NULL,1048585,6,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210109.log',1,1,259,3,9,NULL,1048585,9,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,1,259,4,13,NULL,1048585,13,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210109.log',1,1,259,5,19,NULL,1048585,19,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210109.log',1,1,259,5,20,NULL,1048585,20,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210109.log',1,1,259,5,22,NULL,1048585,22,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,1,259,5,23,NULL,1048585,23,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210109.log',1,1,259,6,29,NULL,1048585,29,'20210109','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20210110.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210110.log',1,1,259,3,7,10,515,60,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,1,259,4,16,20,515,120,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210110.log',1,1,259,4,17,21,515,121,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,1,259,5,24,31,515,181,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,1,259,6,28,34,515,207,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,1,259,5,22,35,515,208,'20210110','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210110.log',1,1,259,3,7,NULL,1048585,7,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,1,259,5,22,NULL,1048585,22,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210110.log',1,1,259,5,24,NULL,1048585,24,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210110.log',1,1,259,6,28,NULL,1048585,28,'20210110','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210111.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210111.log',1,1,259,1,5,6,515,31,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,3,7,10,515,60,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210111.log',1,1,259,3,6,13,515,63,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,4,16,20,515,120,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210111.log',1,1,259,5,20,27,515,177,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,5,18,30,515,180,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,6,28,34,515,207,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210111.log',1,1,259,6,29,36,515,217,'20210111','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210111.log',1,1,259,4,11,NULL,1048585,11,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,4,16,NULL,1048585,16,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210111.log',1,1,259,5,18,NULL,1048585,18,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,5,19,NULL,1048585,19,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,5,20,NULL,1048585,20,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,5,22,NULL,1048585,22,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210111.log',1,1,259,6,28,NULL,1048585,28,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210111.log',1,1,259,6,29,NULL,1048585,29,'20210111','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210112.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20210112.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210112.log',1,1,259,5,23,29,515,179,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210112.log',1,1,259,6,28,34,515,207,'20210112','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210112.log',1,1,259,1,2,NULL,1048585,2,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210112.log',1,1,259,1,5,NULL,1048585,5,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210112.log',1,1,259,3,9,NULL,1048585,9,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210112.log',1,1,259,4,15,NULL,1048585,15,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210112.log',1,1,259,5,18,NULL,1048585,18,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210112.log',1,1,259,6,28,NULL,1048585,28,'20210112','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210113.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20210113.log',1,1,259,1,1,5,515,30,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210113.log',1,1,259,3,7,10,515,60,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210113.log',1,1,259,4,16,20,515,120,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210113.log',1,1,259,5,24,31,515,181,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210113.log',1,1,259,5,22,35,515,208,'20210113','202101',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210113.log',1,1,259,4,13,NULL,1048585,13,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210113.log',1,1,259,5,22,NULL,1048585,22,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210113.log',1,1,259,5,24,NULL,1048585,24,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210113.log',1,1,259,6,28,NULL,1048585,28,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210113.log',1,1,259,6,29,NULL,1048585,29,'20210113','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210114.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20210114.log',1,1,259,1,2,2,515,12,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210114.log',1,1,259,1,3,8,515,33,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210114.log',1,1,259,3,7,10,515,60,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210114.log',1,1,259,3,6,13,515,63,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210114.log',1,1,259,4,16,20,515,120,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210114.log',1,1,259,5,23,29,515,179,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210114.log',1,1,259,6,28,34,515,207,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210114.log',1,1,259,5,22,35,515,208,'20210114','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210114.log',1,1,259,1,3,NULL,1048585,3,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210114.log',1,1,259,3,6,NULL,1048585,6,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210114.log',1,1,259,4,14,NULL,1048585,14,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210114.log',1,1,259,6,28,NULL,1048585,28,'20210114','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210115.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210115.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,1,1,5,515,30,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,1,3,8,515,33,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,3,7,10,515,60,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210115.log',1,1,259,3,8,12,515,62,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,3,6,13,515,63,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210115.log',1,1,259,5,18,30,515,180,'20210115','202101',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210115.log',1,1,259,1,1,NULL,1048585,1,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,1,4,NULL,1048585,4,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,1,5,NULL,1048585,5,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,3,8,NULL,1048585,8,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210115.log',1,1,259,3,9,NULL,1048585,9,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,4,15,NULL,1048585,15,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210115.log',1,1,259,5,18,NULL,1048585,18,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210115.log',1,1,259,5,19,NULL,1048585,19,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210115.log',1,1,259,5,20,NULL,1048585,20,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,5,22,NULL,1048585,22,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210115.log',1,1,259,5,23,NULL,1048585,23,'20210115','202101',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210202.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210202.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210202.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210202.log',1,1,259,3,6,13,515,63,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210202.log',1,1,259,4,16,20,515,120,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210202.log',1,1,259,6,28,34,515,207,'20210202','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210202.log',1,1,259,6,28,NULL,1048585,28,'20210202','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210203.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210203.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,4,13,17,515,117,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,4,16,20,515,120,'20210203','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210203.log',1,1,259,1,1,NULL,1048585,1,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,1,5,NULL,1048585,5,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,3,7,NULL,1048585,7,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,3,10,NULL,1048585,10,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,4,14,NULL,1048585,14,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,5,19,NULL,1048585,19,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210203.log',1,1,259,5,20,NULL,1048585,20,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,5,23,NULL,1048585,23,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,6,28,NULL,1048585,28,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210203.log',1,1,259,6,29,NULL,1048585,29,'20210203','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210204.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,1,1,5,515,30,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,6,28,34,515,207,'20210204','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210204.log',1,1,259,1,2,NULL,1048585,2,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,4,13,NULL,1048585,13,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,4,15,NULL,1048585,15,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,4,16,NULL,1048585,16,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,4,17,NULL,1048585,17,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,5,18,NULL,1048585,18,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,5,19,NULL,1048585,19,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,5,22,NULL,1048585,22,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,5,23,NULL,1048585,23,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210204.log',1,1,259,6,28,NULL,1048585,28,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210204.log',1,1,259,6,29,NULL,1048585,29,'20210204','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210205.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210205.log',1,1,259,3,7,10,515,60,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210205.log',1,1,259,3,8,12,515,62,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210205.log',1,1,259,3,6,13,515,63,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210205.log',1,1,259,4,17,21,515,121,'20210205','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210205.log',1,1,259,1,3,NULL,1048585,3,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210205.log',1,1,259,1,4,NULL,1048585,4,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210205.log',1,1,259,3,7,NULL,1048585,7,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210205.log',1,1,259,3,9,NULL,1048585,9,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210205.log',1,1,259,4,11,NULL,1048585,11,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210205.log',1,1,259,4,13,NULL,1048585,13,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210205.log',1,1,259,5,22,NULL,1048585,22,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210205.log',1,1,259,5,24,NULL,1048585,24,'20210205','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210206.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20210206.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210206.log',1,1,259,3,10,9,515,59,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210206.log',1,1,259,3,7,10,515,60,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210206.log',1,1,259,3,8,12,515,62,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210206.log',1,1,259,3,6,13,515,63,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210206.log',1,1,259,4,14,19,515,119,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210206.log',1,1,259,5,20,27,515,177,'20210206','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210206.log',1,1,259,3,6,NULL,1048585,6,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210206.log',1,1,259,3,7,NULL,1048585,7,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210206.log',1,1,259,3,8,NULL,1048585,8,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210206.log',1,1,259,4,15,NULL,1048585,15,'20210206','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210207.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20210207.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210207.log',1,1,259,3,8,12,515,62,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210207.log',1,1,259,3,6,13,515,63,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210207.log',1,1,259,4,17,21,515,121,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210207.log',1,1,259,5,18,30,515,180,'20210207','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210207.log',1,1,259,4,11,NULL,1048585,11,'20210207','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',32),('usage_events_20210208.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210208.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210208.log',1,1,259,1,1,5,515,30,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210208.log',1,1,259,1,3,8,515,33,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,3,7,10,515,60,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,3,9,11,515,61,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,3,8,12,515,62,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,3,6,13,515,63,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210208.log',1,1,259,4,11,22,515,122,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210208.log',1,1,259,5,19,26,515,176,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,5,23,29,515,179,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210208.log',1,1,259,5,18,30,515,180,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,6,28,34,515,207,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,5,22,35,515,208,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210208.log',1,1,259,6,29,36,515,217,'20210208','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,1,1,NULL,1048585,1,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,1,2,NULL,1048585,2,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,1,3,NULL,1048585,3,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,1,4,NULL,1048585,4,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210208.log',1,1,259,3,10,NULL,1048585,10,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210208.log',1,1,259,4,11,NULL,1048585,11,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,4,13,NULL,1048585,13,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210208.log',1,1,259,4,17,NULL,1048585,17,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,5,18,NULL,1048585,18,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,5,19,NULL,1048585,19,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,5,20,NULL,1048585,20,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210208.log',1,1,259,5,22,NULL,1048585,22,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,5,23,NULL,1048585,23,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210208.log',1,1,259,6,28,NULL,1048585,28,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210208.log',1,1,259,6,29,NULL,1048585,29,'20210208','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210209.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',49),('usage_events_20210209.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210209.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210209.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20210209.log',1,1,259,1,2,2,515,12,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,1,1,5,515,30,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,1,5,6,515,31,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,1,4,7,515,32,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210209.log',1,1,259,1,3,8,515,33,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,3,10,9,515,59,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,3,7,10,515,60,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,3,9,11,515,61,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,3,8,12,515,62,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210209.log',1,1,259,3,6,13,515,63,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210209.log',1,1,259,4,13,17,515,117,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,4,15,18,515,118,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,4,14,19,515,119,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,4,16,20,515,120,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210209.log',1,1,259,4,17,21,515,121,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,5,19,26,515,176,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,5,18,30,515,180,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210209.log',1,1,259,6,28,34,515,207,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210209.log',1,1,259,5,22,35,515,208,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210209.log',1,1,259,6,29,36,515,217,'20210209','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,1,1,NULL,1048585,1,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,1,2,NULL,1048585,2,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210209.log',1,1,259,1,3,NULL,1048585,3,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,1,4,NULL,1048585,4,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,1,259,1,5,NULL,1048585,5,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210209.log',1,1,259,3,6,NULL,1048585,6,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,1,259,3,7,NULL,1048585,7,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,1,259,3,8,NULL,1048585,8,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210209.log',1,1,259,3,9,NULL,1048585,9,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,1,259,3,10,NULL,1048585,10,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,1,259,4,11,NULL,1048585,11,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,4,13,NULL,1048585,13,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210209.log',1,1,259,4,14,NULL,1048585,14,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,4,15,NULL,1048585,15,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,1,259,4,16,NULL,1048585,16,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210209.log',1,1,259,4,17,NULL,1048585,17,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,5,18,NULL,1048585,18,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210209.log',1,1,259,5,19,NULL,1048585,19,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210209.log',1,1,259,5,20,NULL,1048585,20,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210209.log',1,1,259,5,22,NULL,1048585,22,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210209.log',1,1,259,5,23,NULL,1048585,23,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210209.log',1,1,259,5,24,NULL,1048585,24,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210209.log',1,1,259,6,28,NULL,1048585,28,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210209.log',1,1,259,6,29,NULL,1048585,29,'20210209','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210210.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20210210.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210210.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20210210.log',1,1,259,1,2,2,515,12,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,1,1,5,515,30,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210210.log',1,1,259,1,3,8,515,33,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,3,10,9,515,59,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210210.log',1,1,259,3,7,10,515,60,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210210.log',1,1,259,3,9,11,515,61,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,3,8,12,515,62,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210210.log',1,1,259,3,6,13,515,63,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,4,13,17,515,117,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,4,15,18,515,118,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,4,14,19,515,119,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,4,16,20,515,120,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,5,19,26,515,176,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,5,23,29,515,179,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,5,18,30,515,180,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,6,28,34,515,207,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,5,22,35,515,208,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,6,29,36,515,217,'20210210','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,1,1,NULL,1048585,1,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210210.log',1,1,259,1,2,NULL,1048585,2,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,1,4,NULL,1048585,4,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,1,5,NULL,1048585,5,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,3,8,NULL,1048585,8,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,3,9,NULL,1048585,9,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,3,10,NULL,1048585,10,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210210.log',1,1,259,4,11,NULL,1048585,11,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,4,13,NULL,1048585,13,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,4,14,NULL,1048585,14,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,4,15,NULL,1048585,15,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,4,16,NULL,1048585,16,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,4,17,NULL,1048585,17,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210210.log',1,1,259,5,18,NULL,1048585,18,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,5,20,NULL,1048585,20,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,5,22,NULL,1048585,22,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210210.log',1,1,259,5,23,NULL,1048585,23,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,5,24,NULL,1048585,24,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210210.log',1,1,259,6,29,NULL,1048585,29,'20210210','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',26),('usage_events_20210211.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210211.log',1,1,259,1,2,2,515,12,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,1,1,5,515,30,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,1,4,7,515,32,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,1,3,8,515,33,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,3,10,9,515,59,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,3,7,10,515,60,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,3,9,11,515,61,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210211.log',1,1,259,3,8,12,515,62,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,3,6,13,515,63,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,4,15,18,515,118,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,4,14,19,515,119,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210211.log',1,1,259,4,16,20,515,120,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,5,19,26,515,176,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,5,20,27,515,177,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,5,23,29,515,179,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,5,18,30,515,180,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,5,24,31,515,181,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,5,22,35,515,208,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210211.log',1,1,259,6,29,36,515,217,'20210211','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,1,1,NULL,1048585,1,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210211.log',1,1,259,1,2,NULL,1048585,2,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,1,3,NULL,1048585,3,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,1,4,NULL,1048585,4,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,1,5,NULL,1048585,5,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,3,7,NULL,1048585,7,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210211.log',1,1,259,3,8,NULL,1048585,8,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210211.log',1,1,259,3,10,NULL,1048585,10,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210211.log',1,1,259,4,11,NULL,1048585,11,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,4,17,NULL,1048585,17,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210211.log',1,1,259,5,18,NULL,1048585,18,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210211.log',1,1,259,5,19,NULL,1048585,19,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,5,20,NULL,1048585,20,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,5,22,NULL,1048585,22,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,5,23,NULL,1048585,23,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,6,28,NULL,1048585,28,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210211.log',1,1,259,6,29,NULL,1048585,29,'20210211','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',25),('usage_events_20210212.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210212.log',1,1,259,1,2,2,515,12,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,1,1,5,515,30,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210212.log',1,1,259,1,5,6,515,31,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210212.log',1,1,259,1,4,7,515,32,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,1,3,8,515,33,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210212.log',1,1,259,3,7,10,515,60,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210212.log',1,1,259,3,9,11,515,61,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,3,8,12,515,62,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,3,6,13,515,63,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,4,14,19,515,119,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210212.log',1,1,259,4,16,20,515,120,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210212.log',1,1,259,4,17,21,515,121,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210212.log',1,1,259,4,11,22,515,122,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,5,18,30,515,180,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,5,24,31,515,181,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,6,28,34,515,207,'20210212','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,1,1,NULL,1048585,1,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,1,2,NULL,1048585,2,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,1,3,NULL,1048585,3,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,1,4,NULL,1048585,4,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,1,5,NULL,1048585,5,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,3,6,NULL,1048585,6,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,3,7,NULL,1048585,7,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210212.log',1,1,259,3,10,NULL,1048585,10,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,4,14,NULL,1048585,14,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210212.log',1,1,259,4,15,NULL,1048585,15,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,4,16,NULL,1048585,16,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,5,19,NULL,1048585,19,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210212.log',1,1,259,5,20,NULL,1048585,20,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210212.log',1,1,259,5,22,NULL,1048585,22,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210212.log',1,1,259,5,23,NULL,1048585,23,'20210212','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20210213.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210213.log',1,1,259,1,2,2,515,12,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210213.log',1,1,259,1,1,5,515,30,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210213.log',1,1,259,1,5,6,515,31,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,1,4,7,515,32,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,1,3,8,515,33,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,3,10,9,515,59,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210213.log',1,1,259,3,7,10,515,60,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210213.log',1,1,259,3,9,11,515,61,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,3,8,12,515,62,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210213.log',1,1,259,3,6,13,515,63,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210213.log',1,1,259,4,13,17,515,117,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210213.log',1,1,259,4,15,18,515,118,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,4,14,19,515,119,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,4,16,20,515,120,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210213.log',1,1,259,4,17,21,515,121,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210213.log',1,1,259,5,19,26,515,176,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,5,20,27,515,177,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,5,23,29,515,179,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210213.log',1,1,259,5,18,30,515,180,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,6,28,34,515,207,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210213.log',1,1,259,5,22,35,515,208,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,6,29,36,515,217,'20210213','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,1,1,NULL,1048585,1,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,1,2,NULL,1048585,2,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,1,3,NULL,1048585,3,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,1,4,NULL,1048585,4,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,1,5,NULL,1048585,5,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210213.log',1,1,259,3,6,NULL,1048585,6,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210213.log',1,1,259,3,7,NULL,1048585,7,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210213.log',1,1,259,3,8,NULL,1048585,8,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210213.log',1,1,259,3,9,NULL,1048585,9,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,3,10,NULL,1048585,10,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,4,11,NULL,1048585,11,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,4,15,NULL,1048585,15,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,4,16,NULL,1048585,16,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,4,17,NULL,1048585,17,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,5,19,NULL,1048585,19,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210213.log',1,1,259,5,22,NULL,1048585,22,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210213.log',1,1,259,5,23,NULL,1048585,23,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210213.log',1,1,259,5,24,NULL,1048585,24,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210213.log',1,1,259,6,28,NULL,1048585,28,'20210213','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210214.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20210214.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210214.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20210214.log',1,1,259,1,1,5,515,30,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210214.log',1,1,259,1,5,6,515,31,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,1,4,7,515,32,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,1,3,8,515,33,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,3,10,9,515,59,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,3,7,10,515,60,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,3,8,12,515,62,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210214.log',1,1,259,4,13,17,515,117,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210214.log',1,1,259,4,15,18,515,118,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,4,16,20,515,120,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,4,17,21,515,121,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,4,11,22,515,122,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,5,19,26,515,176,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,5,20,27,515,177,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,5,23,29,515,179,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,5,18,30,515,180,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,5,24,31,515,181,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,6,28,34,515,207,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,5,22,35,515,208,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,6,29,36,515,217,'20210214','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,1,1,NULL,1048585,1,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,1,2,NULL,1048585,2,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,1,3,NULL,1048585,3,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210214.log',1,1,259,3,6,NULL,1048585,6,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,3,7,NULL,1048585,7,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,3,8,NULL,1048585,8,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210214.log',1,1,259,3,9,NULL,1048585,9,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,3,10,NULL,1048585,10,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210214.log',1,1,259,4,11,NULL,1048585,11,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,4,14,NULL,1048585,14,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,4,15,NULL,1048585,15,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,4,16,NULL,1048585,16,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210214.log',1,1,259,4,17,NULL,1048585,17,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,5,18,NULL,1048585,18,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,5,19,NULL,1048585,19,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,5,20,NULL,1048585,20,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,5,22,NULL,1048585,22,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210214.log',1,1,259,5,23,NULL,1048585,23,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210214.log',1,1,259,5,24,NULL,1048585,24,'20210214','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210215.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',20),('usage_events_20210215.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210215.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210215.log',1,1,259,1,2,2,515,12,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,1,1,5,515,30,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,1,5,6,515,31,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,1,4,7,515,32,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210215.log',1,1,259,3,10,9,515,59,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,3,8,12,515,62,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,3,6,13,515,63,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210215.log',1,1,259,4,16,20,515,120,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,5,24,31,515,181,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,6,28,34,515,207,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,6,29,36,515,217,'20210215','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,1,1,NULL,1048585,1,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,1,2,NULL,1048585,2,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,1,3,NULL,1048585,3,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,1,4,NULL,1048585,4,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210215.log',1,1,259,3,6,NULL,1048585,6,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,3,7,NULL,1048585,7,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,3,8,NULL,1048585,8,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,3,9,NULL,1048585,9,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,3,10,NULL,1048585,10,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210215.log',1,1,259,4,11,NULL,1048585,11,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,4,13,NULL,1048585,13,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,4,14,NULL,1048585,14,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,4,15,NULL,1048585,15,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,4,16,NULL,1048585,16,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,4,17,NULL,1048585,17,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210215.log',1,1,259,5,18,NULL,1048585,18,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,5,19,NULL,1048585,19,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,5,20,NULL,1048585,20,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,5,22,NULL,1048585,22,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210215.log',1,1,259,6,28,NULL,1048585,28,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20210215.log',1,1,259,6,29,NULL,1048585,29,'20210215','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',22),('usage_events_20210216.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210216.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210216.log',1,1,259,1,2,2,515,12,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,1,1,5,515,30,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,1,4,7,515,32,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,1,3,8,515,33,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,3,10,9,515,59,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,3,9,11,515,61,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,3,8,12,515,62,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,3,6,13,515,63,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,4,15,18,515,118,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,4,14,19,515,119,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,4,16,20,515,120,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210216.log',1,1,259,4,11,22,515,122,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210216.log',1,1,259,5,19,26,515,176,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,5,20,27,515,177,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,5,23,29,515,179,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,5,18,30,515,180,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,5,24,31,515,181,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,6,28,34,515,207,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,5,22,35,515,208,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,6,29,36,515,217,'20210216','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,1,1,NULL,1048585,1,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210216.log',1,1,259,1,2,NULL,1048585,2,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210216.log',1,1,259,1,3,NULL,1048585,3,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,1,4,NULL,1048585,4,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,1,5,NULL,1048585,5,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,3,6,NULL,1048585,6,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210216.log',1,1,259,3,7,NULL,1048585,7,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,3,8,NULL,1048585,8,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,3,9,NULL,1048585,9,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210216.log',1,1,259,3,10,NULL,1048585,10,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210216.log',1,1,259,4,11,NULL,1048585,11,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,4,13,NULL,1048585,13,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,4,14,NULL,1048585,14,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,4,15,NULL,1048585,15,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,4,16,NULL,1048585,16,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,4,17,NULL,1048585,17,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210216.log',1,1,259,5,18,NULL,1048585,18,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,5,19,NULL,1048585,19,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210216.log',1,1,259,5,20,NULL,1048585,20,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,5,22,NULL,1048585,22,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,5,23,NULL,1048585,23,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210216.log',1,1,259,5,24,NULL,1048585,24,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210216.log',1,1,259,6,28,NULL,1048585,28,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210216.log',1,1,259,6,29,NULL,1048585,29,'20210216','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',24),('usage_events_20210217.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210217.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210217.log',1,1,259,1,2,2,515,12,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,1,5,6,515,31,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,1,4,7,515,32,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,1,259,1,3,8,515,33,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,1,259,3,7,10,515,60,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,3,8,12,515,62,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,3,6,13,515,63,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,1,259,4,15,18,515,118,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,4,14,19,515,119,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,1,259,4,16,20,515,120,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,4,17,21,515,121,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210217.log',1,1,259,5,24,31,515,181,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,5,22,35,515,208,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,6,29,36,515,217,'20210217','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,1,259,1,1,NULL,1048585,1,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,1,2,NULL,1048585,2,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,1,3,NULL,1048585,3,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,1,4,NULL,1048585,4,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210217.log',1,1,259,1,5,NULL,1048585,5,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,3,6,NULL,1048585,6,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210217.log',1,1,259,3,7,NULL,1048585,7,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210217.log',1,1,259,3,8,NULL,1048585,8,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,3,9,NULL,1048585,9,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,3,10,NULL,1048585,10,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,4,11,NULL,1048585,11,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,4,13,NULL,1048585,13,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,1,259,4,14,NULL,1048585,14,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,4,15,NULL,1048585,15,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,4,16,NULL,1048585,16,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,4,17,NULL,1048585,17,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,5,18,NULL,1048585,18,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,5,19,NULL,1048585,19,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,5,20,NULL,1048585,20,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210217.log',1,1,259,5,22,NULL,1048585,22,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,5,23,NULL,1048585,23,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210217.log',1,1,259,5,24,NULL,1048585,24,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210217.log',1,1,259,6,28,NULL,1048585,28,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210217.log',1,1,259,6,29,NULL,1048585,29,'20210217','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210218.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',14),('usage_events_20210218.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210218.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',12),('usage_events_20210218.log',1,1,259,1,2,2,515,12,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210218.log',1,1,259,1,1,5,515,30,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,1,5,6,515,31,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,1,3,8,515,33,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,3,10,9,515,59,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210218.log',1,1,259,3,7,10,515,60,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210218.log',1,1,259,3,8,12,515,62,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210218.log',1,1,259,3,6,13,515,63,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210218.log',1,1,259,4,13,17,515,117,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,4,14,19,515,119,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,4,16,20,515,120,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210218.log',1,1,259,5,19,26,515,176,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,5,23,29,515,179,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210218.log',1,1,259,5,18,30,515,180,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,6,28,34,515,207,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210218.log',1,1,259,5,22,35,515,208,'20210218','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,1,1,NULL,1048585,1,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,1,2,NULL,1048585,2,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,1,4,NULL,1048585,4,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,1,5,NULL,1048585,5,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,3,6,NULL,1048585,6,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210218.log',1,1,259,3,8,NULL,1048585,8,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,3,9,NULL,1048585,9,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,3,10,NULL,1048585,10,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,4,11,NULL,1048585,11,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,4,13,NULL,1048585,13,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,4,15,NULL,1048585,15,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,4,17,NULL,1048585,17,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,5,20,NULL,1048585,20,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,5,23,NULL,1048585,23,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,5,24,NULL,1048585,24,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210218.log',1,1,259,6,28,NULL,1048585,28,'20210218','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210219.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',18),('usage_events_20210219.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',9),('usage_events_20210219.log',1,1,259,1,2,2,515,12,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,1,1,5,515,30,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,1,5,6,515,31,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,3,9,11,515,61,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,4,13,17,515,117,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,4,15,18,515,118,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,4,14,19,515,119,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,4,16,20,515,120,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,19,26,515,176,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,20,27,515,177,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,23,29,515,179,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,18,30,515,180,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,24,31,515,181,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,22,35,515,208,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,6,33,37,515,230,'20210219','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,1,1,NULL,1048585,1,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,1,2,NULL,1048585,2,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,1,3,NULL,1048585,3,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,1,4,NULL,1048585,4,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,1,5,NULL,1048585,5,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,3,7,NULL,1048585,7,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,4,11,NULL,1048585,11,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,4,14,NULL,1048585,14,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,4,15,NULL,1048585,15,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,4,16,NULL,1048585,16,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,18,NULL,1048585,18,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,5,20,NULL,1048585,20,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,5,22,NULL,1048585,22,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210219.log',1,1,259,6,28,NULL,1048585,28,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,6,29,NULL,1048585,29,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210219.log',1,1,259,6,33,NULL,1048585,33,'20210219','202102',NULL,NULL,NULL,NULL,'ojs::counter',11),('usage_events_20210220.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',24),('usage_events_20210220.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210220.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210220.log',1,1,259,1,2,2,515,12,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,1,1,5,515,30,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,1,4,7,515,32,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,1,3,8,515,33,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210220.log',1,1,259,3,10,9,515,59,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,3,9,11,515,61,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210220.log',1,1,259,3,8,12,515,62,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,3,6,13,515,63,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,4,14,19,515,119,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210220.log',1,1,259,4,16,20,515,120,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,4,17,21,515,121,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210220.log',1,1,259,5,23,29,515,179,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,5,18,30,515,180,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,5,24,31,515,181,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,6,28,34,515,207,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210220.log',1,1,259,6,33,37,515,230,'20210220','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210220.log',1,1,259,1,2,NULL,1048585,2,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210220.log',1,1,259,1,3,NULL,1048585,3,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,1,5,NULL,1048585,5,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,3,8,NULL,1048585,8,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,3,9,NULL,1048585,9,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210220.log',1,1,259,4,14,NULL,1048585,14,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,4,17,NULL,1048585,17,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210220.log',1,1,259,5,19,NULL,1048585,19,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,5,20,NULL,1048585,20,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210220.log',1,1,259,5,22,NULL,1048585,22,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210220.log',1,1,259,6,28,NULL,1048585,28,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210220.log',1,1,259,6,29,NULL,1048585,29,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210220.log',1,1,259,6,33,NULL,1048585,33,'20210220','202102',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210221.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',16),('usage_events_20210221.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210221.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,NULL,NULL,NULL,NULL,NULL,259,4,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210221.log',1,1,259,1,2,2,515,12,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,1,1,5,515,30,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,1,259,1,5,6,515,31,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,1,259,1,4,7,515,32,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,3,7,10,515,60,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,3,8,12,515,62,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,4,15,18,515,118,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,4,16,20,515,120,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,5,23,29,515,179,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,5,18,30,515,180,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,6,28,34,515,207,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,1,259,6,33,37,515,230,'20210221','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,1,259,1,1,NULL,1048585,1,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,1,2,NULL,1048585,2,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,1,259,1,5,NULL,1048585,5,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,3,7,NULL,1048585,7,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,1,259,3,8,NULL,1048585,8,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,3,9,NULL,1048585,9,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',7),('usage_events_20210221.log',1,1,259,4,11,NULL,1048585,11,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210221.log',1,1,259,4,13,NULL,1048585,13,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,4,16,NULL,1048585,16,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210221.log',1,1,259,4,17,NULL,1048585,17,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,5,18,NULL,1048585,18,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210221.log',1,1,259,5,23,NULL,1048585,23,'20210221','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210222.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20210222.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210222.log',1,NULL,NULL,NULL,NULL,NULL,259,6,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210222.log',1,1,259,1,2,2,515,12,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210222.log',1,1,259,3,8,12,515,62,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210222.log',1,1,259,3,6,13,515,63,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210222.log',1,1,259,4,16,20,515,120,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210222.log',1,1,259,4,17,21,515,121,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210222.log',1,1,259,6,33,37,515,230,'20210222','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210222.log',1,1,259,3,6,NULL,1048585,6,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',5),('usage_events_20210222.log',1,1,259,5,18,NULL,1048585,18,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210222.log',1,1,259,5,19,NULL,1048585,19,'20210222','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210223.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',13),('usage_events_20210223.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210223.log',1,1,259,3,7,10,515,60,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210223.log',1,1,259,5,22,35,515,208,'20210223','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210223.log',1,1,259,5,22,NULL,1048585,22,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210223.log',1,1,259,5,23,NULL,1048585,23,'20210223','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210224.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',20),('usage_events_20210224.log',1,NULL,NULL,NULL,NULL,NULL,259,1,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210224.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210224.log',1,1,259,1,1,5,515,30,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210224.log',1,1,259,1,5,6,515,31,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210224.log',1,1,259,1,3,8,515,33,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210224.log',1,1,259,3,8,12,515,62,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',8),('usage_events_20210224.log',1,1,259,3,6,13,515,63,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210224.log',1,1,259,6,28,34,515,207,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210224.log',1,1,259,6,33,37,515,230,'20210224','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210224.log',1,1,259,1,1,NULL,1048585,1,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210224.log',1,1,259,1,3,NULL,1048585,3,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210224.log',1,1,259,1,5,NULL,1048585,5,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210224.log',1,1,259,3,6,NULL,1048585,6,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210224.log',1,1,259,3,8,NULL,1048585,8,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',4),('usage_events_20210224.log',1,1,259,6,28,NULL,1048585,28,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210224.log',1,1,259,6,29,NULL,1048585,29,'20210224','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210225.log',1,NULL,NULL,NULL,NULL,NULL,256,1,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',6),('usage_events_20210225.log',1,NULL,NULL,NULL,NULL,NULL,259,3,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210225.log',1,NULL,NULL,NULL,NULL,NULL,259,5,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210225.log',1,1,259,3,10,9,515,59,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210225.log',1,1,259,3,8,12,515,62,'20210225','202102',2,NULL,NULL,NULL,'ojs::counter',2),('usage_events_20210225.log',1,1,259,1,1,NULL,1048585,1,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210225.log',1,1,259,3,7,NULL,1048585,7,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',3),('usage_events_20210225.log',1,1,259,3,10,NULL,1048585,10,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',10),('usage_events_20210225.log',1,1,259,5,18,NULL,1048585,18,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1),('usage_events_20210225.log',1,1,259,6,28,NULL,1048585,28,'20210225','202102',NULL,NULL,NULL,NULL,'ojs::counter',1);
/*!40000 ALTER TABLE `metrics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `navigation_menu_item_assignment_settings`
--

DROP TABLE IF EXISTS `navigation_menu_item_assignment_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_menu_item_assignment_settings` (
  `navigation_menu_item_assignment_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 `navigation_menu_item_assignment_settings_pkey` (`navigation_menu_item_assignment_id`,`locale`,`setting_name`),
  KEY `assignment_settings_navigation_menu_item_assignment_id` (`navigation_menu_item_assignment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `navigation_menu_item_assignment_settings`
--

LOCK TABLES `navigation_menu_item_assignment_settings` WRITE;
/*!40000 ALTER TABLE `navigation_menu_item_assignment_settings` DISABLE KEYS */;
INSERT INTO `navigation_menu_item_assignment_settings` VALUES (0,'en_US','title','Contact','string'),(1,'en_US','title','Register','string'),(2,'en_US','title','Login','string'),(3,'en_US','title','{$loggedInUsername}','string'),(4,'en_US','title','Dashboard','string'),(5,'en_US','title','View Profile','string'),(6,'en_US','title','Administration','string'),(7,'en_US','title','Logout','string');
/*!40000 ALTER TABLE `navigation_menu_item_assignment_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `navigation_menu_item_assignments`
--

DROP TABLE IF EXISTS `navigation_menu_item_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_menu_item_assignments` (
  `navigation_menu_item_assignment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `navigation_menu_id` bigint(20) NOT NULL,
  `navigation_menu_item_id` bigint(20) NOT NULL,
  `parent_id` bigint(20) DEFAULT NULL,
  `seq` bigint(20) DEFAULT 0,
  PRIMARY KEY (`navigation_menu_item_assignment_id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `navigation_menu_item_assignments`
--

LOCK TABLES `navigation_menu_item_assignments` WRITE;
/*!40000 ALTER TABLE `navigation_menu_item_assignments` DISABLE KEYS */;
INSERT INTO `navigation_menu_item_assignments` VALUES (1,1,1,0,0),(2,1,2,0,1),(3,1,3,0,2),(4,1,4,3,0),(5,1,5,3,1),(6,1,6,3,2),(7,1,7,3,3),(8,2,8,0,0),(9,2,9,0,1),(10,2,10,0,2),(11,2,11,10,0),(12,2,12,10,1),(13,2,13,10,2),(14,2,14,10,3),(15,3,15,0,0),(16,3,16,0,1),(17,3,17,0,2),(18,3,18,0,3),(19,3,19,18,0),(20,3,20,18,1),(21,3,21,18,2),(22,3,22,18,3),(23,3,23,18,4);
/*!40000 ALTER TABLE `navigation_menu_item_assignments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `navigation_menu_item_settings`
--

DROP TABLE IF EXISTS `navigation_menu_item_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_menu_item_settings` (
  `navigation_menu_item_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` longtext DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `navigation_menu_item_settings_pkey` (`navigation_menu_item_id`,`locale`,`setting_name`),
  KEY `navigation_menu_item_settings_navigation_menu_id` (`navigation_menu_item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `navigation_menu_item_settings`
--

LOCK TABLES `navigation_menu_item_settings` WRITE;
/*!40000 ALTER TABLE `navigation_menu_item_settings` DISABLE KEYS */;
INSERT INTO `navigation_menu_item_settings` VALUES (1,'','titleLocaleKey','navigation.register','string'),(1,'en_US','title','Register','string'),(2,'','titleLocaleKey','navigation.login','string'),(2,'en_US','title','Login','string'),(3,'','titleLocaleKey','{$loggedInUsername}','string'),(3,'en_US','title','{$loggedInUsername}','string'),(4,'','titleLocaleKey','navigation.dashboard','string'),(4,'en_US','title','Dashboard','string'),(5,'','titleLocaleKey','common.viewProfile','string'),(5,'en_US','title','View Profile','string'),(6,'','titleLocaleKey','navigation.admin','string'),(6,'en_US','title','Administration','string'),(7,'','titleLocaleKey','user.logOut','string'),(7,'en_US','title','Logout','string'),(8,'','titleLocaleKey','navigation.register','string'),(8,'en_US','title','Register','string'),(9,'','titleLocaleKey','navigation.login','string'),(9,'en_US','title','Login','string'),(10,'','titleLocaleKey','{$loggedInUsername}','string'),(10,'en_US','title','{$loggedInUsername}','string'),(11,'','titleLocaleKey','navigation.dashboard','string'),(11,'en_US','content','','string'),(11,'en_US','title','Dashboard','string'),(12,'','titleLocaleKey','common.viewProfile','string'),(12,'en_US','title','View Profile','string'),(13,'','titleLocaleKey','navigation.admin','string'),(13,'en_US','title','Administration','string'),(14,'','titleLocaleKey','user.logOut','string'),(14,'en_US','title','Logout','string'),(15,'','titleLocaleKey','navigation.current','string'),(15,'en_US','title','Current','string'),(16,'','titleLocaleKey','navigation.archives','string'),(16,'en_US','title','Archives','string'),(17,'','titleLocaleKey','manager.announcements','string'),(17,'en_US','title','Announcements','string'),(18,'','titleLocaleKey','navigation.about','string'),(18,'en_US','title','About','string'),(19,'','titleLocaleKey','about.aboutContext','string'),(19,'en_US','title','About the Journal','string'),(20,'','titleLocaleKey','about.submissions','string'),(20,'en_US','title','Submissions','string'),(21,'','titleLocaleKey','about.editorialTeam','string'),(21,'en_US','content','','string'),(21,'en_US','title','Editorial Team','string'),(22,'','titleLocaleKey','manager.setup.privacyStatement','string'),(22,'en_US','title','Privacy Statement','string'),(23,'','titleLocaleKey','about.contact','string'),(23,'en_US','title','Contact','string'),(24,'','titleLocaleKey','common.search','string'),(24,'en_US','title','Search','string'),(25,'en_US','content','<p>Tropical Health and Medical Research is an open access, peer-reviewed journal that publishes original research on all aspects of tropical medicine and global health. The journal welcomes clinical, epidemiological and laboratory.&nbsp;</p>\r\n<p>Key topics include:&nbsp;&nbsp;Viral, bacterial and parasitic infectious diseases,&nbsp;Vectors,&nbsp;Noncommunicable diseases,&nbsp;Epidemiology and population health,&nbsp;Drug, vaccine and diagnostic tool development,&nbsp;Other health issues related to the tropics</p>','string'),(25,'en_US','title','Aim and Scope','string'),(26,'en_US','content','<p style=\"text-align: justify;\">Tropical Health and Medical Research Journal Editors receive a scientific article in the form of research, scientific analysis of secondary data, policy analysis, and assessment (review) about current topics in medical laboratory’s field. Scripts are written in English only, has never been published or are being submitted for publication in other media. The scripts that has been submitted will be discussed by the Editorial Board with the experts according to their field to determine is it qualified to be published. For the published script, the Editorial Board reserves the right to edit the script as long he does not change the meaning or the content of the article for purposes of arrangement. The submitted script must be in accordance with the systematics, i.e :<br><br>1. The script should be sent in hardcopy or electronic file. Typed using Microsoft Word, spacing of 1 lines, Arial font with size 12, 6-10 pages, with A4 paper.<br>2. The script for the systematic writing research results follow the rules as follows:<br>a. The concise title in English using capital letters maximum 14 words;<br>b. Authors Identity include: the author\'s name without the degree (placed after the title). The origin of the author and institution address and e-mail address of the main author / corresponding author;<br>c. Abstract along with keywords written in English only. Abstract created clear and concise, written in one paragraph with 150-200 words. Abstract includes: introduction (background), purpose (objective), method (method), outcomes (results), discussion (conclusion), accompanied with 3-5 keywords (keywords).<br>d. Introduction contains the problem that will be analyze, important background information, as well as the purpose of the research;<br>e. Methods include study design, sample / participant, variable, data source / measurement, analysis method, and statistical methods;<br>f. Results presented the main outcomes of the related problem that will be analyze;<br>g. Discussion of the main results, interpretation, comparison with previous research, and the limitations of the study;<br>h. The conclusion is written in narrative form (not a pointer), and not the conclusion of the table or statistical test;<br>i. Suggestions (optional) written in narrative form (not a pointer);<br>j. Gratitude written in narrative form (not a pointer), addressed to the professionals who help the preparation of the manuscript, giving technical support, funding, and support of the institution;<br>k. Tables and Figures, number and title of the table is written at the top of the table, while the number and title of the picture was written after the picture is presented.<br>l. Symbols, abbreviations or acronyms can be used after their explanation or meaning.<br>m. Referral at least 10 references (primary reference approximately 80%). It is advisable to use the newest publication, preferably the last 5 years (maximum 10 years), written using Vancouver Style Format<br>n. Writing Bibliography Based on Vancouver Style Format<br>Some characteristics of writing with Vancouver bibliography style are :</p>\r\n<p><strong>•&nbsp;</strong>A number in parentheses (round brackets), placed in the text of the essay, indicates the relevant reference.</p>\r\n<p><strong>•</strong>&nbsp;Citations are numbered consecutively in the order in which they appear in the text and each citation corresponds to a numbered reference, containing publication information about the source cited, in the reference list at the end of the publication, essay or assignment.</p>\r\n<p><strong>•</strong>&nbsp;Once a source has been cited, the same number is used in all subsequent citations.</p>\r\n<p><strong>•</strong>&nbsp;No distinction is made between print and electronic references when citing within the text.</p>\r\n<p><strong>•</strong>&nbsp;Here are some examples of this kind of referencing :</p>\r\n<p>The largest lesion in the first study was 10 cm (13).<br>The theory was first put forward in 1987 (1).<br>Scholtz (2) has argued that...<br>Several recent studies<sup>&nbsp;</sup>(3, 4, 15, 16) have suggested that...<br>For example, see (7).</p>\r\n<p><strong>•</strong>&nbsp;It is not necessary to mention either the author(s) or the date of the reference unless it is relevant to your text.</p>\r\n<p><strong>•</strong>&nbsp;It is not necessary to say \"In reference (26) ...\", \"In (26) ...\" is sufficient.</p>\r\n<p style=\"text-align: justify;\">Based on the type of reference, here are the guidelines and examples of writing a bibliography based on Vancouver style:<br><br>Book<br>The basic pattern of writing a reference from books are:</p>\r\n<p><strong>•</strong>&nbsp;&nbsp;Only the author\'s initials are included regardless of the presentation of the author\'s name in the source document.</p>\r\n<p><strong>•</strong>&nbsp; Capitalisation practice should be consistent.</p>\r\n<p><strong>•</strong>&nbsp; Titles and subtitles of books are given minimal capitalisation.</p>\r\n<p><strong>•</strong>&nbsp; Only the first letter of the first word of the title and proper nouns (the names of peoples, place or organisations, etc.) are capitalised.</p>\r\n<p><strong>•</strong>&nbsp; Capitalise the \"v\" in Volume for a book title.</p>\r\n<p><strong>•</strong>&nbsp;&nbsp;Information about places of publication should folllow the guidelines for&nbsp;place names.</p>\r\n<p style=\"text-align: justify;\"><br>Example:<br>1. Hoppert M. Microscopic techniques in biotechnology. Weinheim (Germany): Wiley-VCH; 2003.<br>2. Gilstrap LC, Cunningham FG, Van Dorsten JP, editors. Operative obstetrics. 2nd ed. New York: McGraw-Hill; 2002.<br><br>Journal Article<br>The basic pattern of writing references from the article :&nbsp;</p>\r\n<p style=\"text-align: justify;\"><strong>DOI available:&nbsp;</strong>Author A, Author B. Title of article. Abbreviated Title of Journal. year;vol(no):page numbers. doi:10.XXX/XXXXX.XX.</p>\r\n<p style=\"text-align: justify;\"><strong>No DOI available:&nbsp;</strong>Author A, Author B. Title of article. Abbreviated Title of Journal [format]. year [cited year abbreviated month day];vol(no):page numbers. Available from: Internet address.<br>Example:<br>1. Scholz T. Evidence based medicine: from science to patient. J Tissue Sci Eng. 2012;3:e113. doi: 10.4172/2157-7552.1000e113.</p>\r\n<p style=\"text-align: justify;\">2. Sillick TJ, Schutte NS.&nbsp;Emotional intelligence and self-esteem mediate between perceived early parental love and adult happiness. E-Jnl Appl Psych [Internet].<em>&nbsp;</em>2006 [cited 2010 Aug 6];2(2):38–48.&nbsp;Available from: http://ojs.lib.swin.edu.au/index.php/ejap/article/view/71/100.<br><br>Webpage<br>The basic pattern of writing web pages for references are;<br>#. Author A, Author B. Document title. Webpage name [format]. Source/production information; Date of internet publication [cited year month day]. Available from: URL.<br>Example :<br>1. Australia. Department of Health and Aged Care.&nbsp; National youth suicide prevention strategy [Internet]. Canberra: The Department; 2000 [cited 2005 Jul 1]. Available from: http://www.health.gov.au/hsdd/mentalhe/sp/nysps/about.htm.</p>\r\n<p style=\"text-align: justify;\">2. Stanley F. Information page: Professor Fiona Stanley. Telethon Institute for Child Health Research [Internet]. Perth: The Institute; 2005 [cited 2005 Jun 30]. Available from: http://www.ichr.uwa.edu.au/about/schools/.</p>\r\n<p style=\"text-align: justify;\">3. Flower R. How a simple formula for resolving problems and conflict can change your reality. 2015, Jun 1 [cited 2015 Jun 9]. In: Pick the Brain: grow yourself [Internet]. Available from http://www.pickthebrain.com/blog/how-a-simple-formula-for-resolving-problems-and-conflict-can-change-your-reality/.</p>','string'),(26,'en_US','title','Author Guidelines','string'),(27,'en_US','content','<p style=\"text-align: justify;\">The suitability of manuscripts for publication Tropical Health and Medical Research Journal is judged by peer reviewers and editorial board. All the review process are conducted in double blind review. Editor in Chief handles all correspondence with the author and makes the final decision as to whether the paper is recommended for acceptance, rejection, or needs to be returned to the author for revision.<br><br>Editor in Chief and Editorial Board will evaluate the submitted papers on praqualification step for suitability of further review process. The manuscripts will be evaluated by two qualified peer reviewers selected by Editor in Chief. The peer reviewers should examine the manuscript and return it with their recommendation to the Editor in Chief as soon as possible, usually within 3 weeks. The Editor in Chief decide the acceptance or rejection of the paper.<br><br>Papers needing revision will be returned to the authors, and the author must return the revised manuscript to the Editor in Chief via OJS of Medical Laboratory Technology Journal. Editor in Chief sends the revised manuscript to Editorial Board to check whether the manuscript is revised as suggested by peer reviewers. Editorial Board could give recommendation to Editor in Chief that the manuscript should return to authors, accept, or reject within 1 weeks. Editor in Chief would send an acceptance letter announcing the publication issue attached with manuscript reprint to authors.</p>','string'),(27,'en_US','title','Peer Review Process','string'),(28,'en_US','content','<p style=\"text-align: justify;\">Tropical Health and Medical Research, as a respected international journal, wants to ensure that all authors are careful and comply with international standards for academic integrity, particularly on the issue of plagiarism.<br><br>Plagiarism occurs when an author takes ideas, information, or words from another source without proper credit to the source. Even when it occurs unintentionally, plagiarism is still a serious academic violation and unacceptable in international academic publications.<br><br>When the author learns specific information (a name, date, place, statistical number, or other detailed information) from a specific source, a citation is required. (This is only forgiven in cases of general knowledge, where the data is readily available in more than five sources or is common knowledge, e.g., the fact that Malaria caused by Plasmodium sp.)<br><br>When the author takes an idea from another author, a citation is required—even if the author then develops the idea further. This might be an idea about how to interpret the data, either what methodology to use or what conclusion to draw. It might be an idea about broad developments in a field or general information. Regardless of the idea, the authors should cite their sources. In cases where the author develops the idea further, it is still necessary to cite the original source of the idea, and then in a subsequent sentence, the author can explain her or his more developed idea.<br><br>When the author takes words from another author, a citation and quotation marks are required. Whenever four or more consecutive words are identical to a source that the author has read, the author must use quotation marks to denote the use of another author’s original words; just a citation is no longer enough.<br><br>Medical Laboratory Technology Journal takes academic integrity very seriously, and the editors reserve the right to withdraw acceptance from a paper found to violate any of the standards set out above. For further information, potential authors can contact the editorial office at&nbsp;<a href=\"mailto:leka.zns@gmail.com\">leka.zns@gmail.com</a><br><br>Papers submitted to the Tropical Health and Medical Research will be screened and checked for plagiarism by using Similarity Check from Crossref, but an author should be checked it to before submitted.</p>','string'),(28,'en_US','title','Screening for Plagiarism','string'),(29,'en_US','content','<p>Tropical Health and Medical Research is a journal aims to be a leading peer-reviewed platform and an authoritative source of information. We publish original research papers, review articles and case studies focused on Haematology, Microbiology, Parasitology, Chemistry, Immunology Serology, and other clinical laboratory as well as related topics (see:<a href=\"http://medlabtechnojournal.com/index.php/THMR/aimandscope\">Aim and Scope</a>) that has neither been published elsewhere in any language, nor is it under review for publication anywhere. This following statement clarifies ethical behavior of all parties involved in the act of publishing an article in this journal, including the author, the editor, the reviewer, and the publisher (Baiman Bauntung Batuah Center). This statement is based on <a href=\"https://drive.google.com/file/d/19oOVzAEX2zJYhlgJdH5ZJKDpkeTX4Ksg/view?usp=sharing\"><strong>COPE’s Best Practice Guidelines for Journal Editors.</strong></a></p>','string'),(29,'en_US','title','Publication Ethics and Malpractice Statement','string'),(30,'en_US','content','<p>This journal charges the following author fees.</p>\r\n<ul>\r\n<ul>\r\n<li>Article Submission: 00.00 (USD)</li>\r\n<li>Fast-Track Review: 100.00 (USD)</li>\r\n<li>Article Publication: 50.00 (USD)</li>\r\n<li>Publication of articles from PoolText: 00.00 (USD)</li>\r\n</ul>\r\n</ul>','string'),(30,'en_US','title','Article Processing Charges','string'),(31,'en_US','content','<p>Kemal Atasayan, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=56556821700\">Scopus ID 56556821700</a>) Maltepe University, Faculty of Medicine, Department of Obstetrics and Gynecology, Turkey</p>\r\n<p>Christian Chukwukere Ogoke, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=57195967935\">Scopus ID 57195967935</a>) <a id=\"affilProfileLink\" class=\"secondaryLink\" title=\"Show affiliation details\" href=\"https://www.scopus.com/affil/profile.uri?afid=106333716\"></a><span class=\"anchorText\">Federal Medical Center Umuahia</span>, Umuahia, Nigeria</p>\r\n<p>Sevgi Yimenicioglu, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=54788420100\">Scopus ID 54788420100</a>) Eskisehir State Hospital,&nbsp;Eskisehir, Turkey</p>\r\n<p>Zübeyir Cebeci, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=46061791900\">Scopus ID 46061791900</a>) Selcuk University Medical School, Ordu University Medical School, Turkey<strong><br></strong></p>\r\n<p>Anny Thuraidah, (<a href=\"https://www.scopus.com/authid/detail.uri?origin=AuthorProfile&amp;authorId=57204567580&amp;zone=\">Scopus ID&nbsp;57204567580</a>)&nbsp;<span class=\"anchorText\">Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin</span>, Indonesia</p>\r\n<p>Nadiya Uswatun Hasanah,&nbsp;(<a href=\"https://www.scopus.com/authid/detail.uri?origin=AuthorProfile&amp;authorId=57208229659&amp;zone=\">Scopus ID 57208229659</a>)&nbsp;<span class=\"anchorText\">Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin</span>, Indonesia</p>\r\n<p>Yulia Tri Andini, (<a href=\"https://www.scopus.com/authid/detail.uri?origin=AuthorProfile&amp;authorId=57208238055&amp;zone=\">Scopus ID&nbsp;57208238055</a>)&nbsp;<span class=\"anchorText\">Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin</span>, Indonesia</p>\r\n<p><a href=\"https://orcid.org/0000-0002-9293-215X\">Sevgi Gunes</a>, Siirt Universty Medical Faculty, Turkey<strong><br></strong></p>\r\n<p>Emalia Kubarti,&nbsp;(<a href=\"https://www.scopus.com/authid/detail.uri?authorId=57208246851&amp;amp;eid=2-s2.0-85064203016\">Scopus ID: 57208246851</a>) Department of Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin, Indonesia</p>\r\n<p>Jihan Rahmah Naily,&nbsp;(<a href=\"https://www.scopus.com/authid/detail.uri?origin=AuthorProfile&amp;authorId=57208221740&amp;zone=\">Scopus ID: 57208221740</a>) Department of Medical Laboratory Technology Poltekkes Kemenkes Banjarmasin, Indonesia</p>\r\n<p>Tijen Yesim, (<a href=\"https://www.scopus.com/authid/detail.uri?authorId=23483313300\">Scopus ID: 23483313300</a>) Istambul Research and Education Hospital, Turkey</p>\r\n<div class=\"authId flexDisplay\">\r\n<div class=\"dropdownGroup\">&nbsp;</div>\r\n</div>\r\n<div class=\"nameSection pull-left col-md-5 noPadding\">&nbsp;</div>\r\n<div class=\"linkContainer pull-right col-md-7 noPadding\">&nbsp;</div>\r\n<div class=\"dropdownGroup pull-right\">&nbsp;</div>\r\n<div class=\"clearfix\">&nbsp;</div>\r\n<div class=\"member\">&nbsp;</div>','string'),(31,'en_US','title','Peer Reviewers','string'),(32,'en_US','content','<p style=\"text-align: justify;\">1.&nbsp;<a href=\"https://scholar.google.co.id/citations?hl=en&amp;view_op=list_works&amp;authuser=1&amp;gmla=AJsN-F7v6rU7mPHDYofafPBembq-Lh8Bjl79AUzIz61M9WIWFP-LUzU9avIn-3pl0Wivd4gExZSdCmsjvCtv9jfDaFFX1676-Q&amp;user=vIUahq8AAAAJ\">Google Scholar</a></p>\r\n<p style=\"text-align: justify;\">&nbsp;</p>\r\n<p style=\"text-align: justify;\">2. <a href=\"http://garuda.ristekdikti.go.id/journal/view/15812\">Garuda</a></p>\r\n<p style=\"text-align: justify;\">&nbsp;</p>\r\n<p style=\"text-align: justify;\">3. <a href=\"https://search.crossref.org/?q=2684-740X\" target=\"_blank\" rel=\"noopener\">Crossref</a></p>\r\n<p style=\"text-align: justify;\">&nbsp;</p>\r\n<p style=\"text-align: justify;\">4. <a href=\"https://app.dimensions.ai/discover/publication?search_text=10.35916%2Fthmr.v1i2&amp;search_type=kws&amp;search_field=doi\" target=\"_blank\" rel=\"noopener\">Dimensions</a></p>\r\n<p style=\"text-align: justify;\">&nbsp;</p>','string'),(32,'en_US','title','Indexing','string'),(33,'en_US','content','<p style=\"text-align: justify;\">The articles published in Tropical Health and Medical Research Journal are scientifically proved following the code of ethics of scientific publication. The code of ethics itself upholds three values of ethics in publications, namely, (1) Neutrality (free from conflicts of interest in public management), (2) Justice (giving the right of authorship to the beneficiary as the author), and (3) Honesty (free from duplication, fabrication, falsification and plagiarism (DF2P) in the publication. The articles published also follow the certain procedures or orders, such as double blind review and revision process that consistent with the journal’s regular review, to ensure that the quality is maintained properly.</p>','string'),(33,'en_US','title','Journal Scientific Statement','string'),(34,'en_US','content','<p><a href=\" http://u.lipi.go.id/1555201714\"> http://u.lipi.go.id/1555201714</a></p>','string'),(34,'en_US','title','ISSN 2684-740X (online)','string'),(35,'en_US','content','<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. This journal is open access journal which means that all content is freely available without charge to users or / institution. Users are allowed to read, download, copy, distribute, print, search, or link to full text articles in this journal without asking prior permission from the publisher or author. This is in accordance with Budapest Open Access Initiative...</p>\r\n<p>Below is the full statement of Open Acces Policy</p>\r\n<p><a href=\"https://drive.google.com/file/d/1eQVwutd57Ek88gWewr2aTlKdaiI2GSrj/view?usp=sharing\">Full Statement Pdf</a></p>','string'),(35,'en_US','title','Open Access Policy','string'),(36,'en_US','content','<p><iframe style=\"border: 0;\" tabindex=\"0\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d995.6472521283816!2d114.85224962917704!3d-3.449650899843072!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x2de6811eeebe54c5%3A0x78e6917b8fd45077!2sJl.%20Lestari%202%20No.59%2C%20Kemuning%2C%20Kec.%20Banjarbaru%20Selatan%2C%20Kota%20Banjar%20Baru%2C%20Kalimantan%20Selatan%2070714!5e0!3m2!1sen!2sid!4v1599980195576!5m2!1sen!2sid\" width=\"600\" height=\"450\" frameborder=\"0\" allowfullscreen=\"\" aria-hidden=\"false\"></iframe></p>','string'),(36,'en_US','title','Location','string');
/*!40000 ALTER TABLE `navigation_menu_item_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `navigation_menu_items`
--

DROP TABLE IF EXISTS `navigation_menu_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_menu_items` (
  `navigation_menu_item_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `path` varchar(255) DEFAULT '',
  `type` varchar(255) DEFAULT '',
  PRIMARY KEY (`navigation_menu_item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `navigation_menu_items`
--

LOCK TABLES `navigation_menu_items` WRITE;
/*!40000 ALTER TABLE `navigation_menu_items` DISABLE KEYS */;
INSERT INTO `navigation_menu_items` VALUES (1,0,NULL,'NMI_TYPE_USER_REGISTER'),(2,0,NULL,'NMI_TYPE_USER_LOGIN'),(3,0,NULL,'NMI_TYPE_USER_DASHBOARD'),(4,0,NULL,'NMI_TYPE_USER_DASHBOARD'),(5,0,NULL,'NMI_TYPE_USER_PROFILE'),(6,0,NULL,'NMI_TYPE_ADMINISTRATION'),(7,0,NULL,'NMI_TYPE_USER_LOGOUT'),(8,1,NULL,'NMI_TYPE_USER_REGISTER'),(9,1,NULL,'NMI_TYPE_USER_LOGIN'),(10,1,NULL,'NMI_TYPE_USER_DASHBOARD'),(11,1,'','NMI_TYPE_USER_DASHBOARD'),(12,1,NULL,'NMI_TYPE_USER_PROFILE'),(13,1,NULL,'NMI_TYPE_ADMINISTRATION'),(14,1,NULL,'NMI_TYPE_USER_LOGOUT'),(15,1,NULL,'NMI_TYPE_CURRENT'),(16,1,NULL,'NMI_TYPE_ARCHIVES'),(17,1,NULL,'NMI_TYPE_ANNOUNCEMENTS'),(18,1,NULL,'NMI_TYPE_ABOUT'),(19,1,NULL,'NMI_TYPE_ABOUT'),(20,1,NULL,'NMI_TYPE_SUBMISSIONS'),(21,1,'','NMI_TYPE_EDITORIAL_TEAM'),(22,1,NULL,'NMI_TYPE_PRIVACY'),(23,1,NULL,'NMI_TYPE_CONTACT'),(24,1,NULL,'NMI_TYPE_SEARCH'),(25,1,'aimandscope','NMI_TYPE_CUSTOM'),(26,1,'authorguidelines','NMI_TYPE_CUSTOM'),(27,1,'PeerReviewProcess','NMI_TYPE_CUSTOM'),(28,1,'ScreeningforPlagiarism','NMI_TYPE_CUSTOM'),(29,1,'PublicationEthicsandMalpracticeState','NMI_TYPE_CUSTOM'),(30,1,'articleprocessingcharges','NMI_TYPE_CUSTOM'),(31,1,'PeerReviewers','NMI_TYPE_CUSTOM'),(32,1,'Indexing','NMI_TYPE_CUSTOM'),(33,1,'JournalScientificStatement','NMI_TYPE_CUSTOM'),(34,1,'ISSN','NMI_TYPE_CUSTOM'),(35,1,'OpenAccessPolicy','NMI_TYPE_CUSTOM'),(36,1,'location','NMI_TYPE_CUSTOM');
/*!40000 ALTER TABLE `navigation_menu_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `navigation_menus`
--

DROP TABLE IF EXISTS `navigation_menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `navigation_menus` (
  `navigation_menu_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `area_name` varchar(255) DEFAULT '',
  `title` varchar(255) NOT NULL,
  PRIMARY KEY (`navigation_menu_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `navigation_menus`
--

LOCK TABLES `navigation_menus` WRITE;
/*!40000 ALTER TABLE `navigation_menus` DISABLE KEYS */;
INSERT INTO `navigation_menus` VALUES (1,0,'user','User Navigation Menu'),(2,1,'user','User Navigation Menu'),(3,1,'primary','Primary Navigation Menu');
/*!40000 ALTER TABLE `navigation_menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notes`
--

DROP TABLE IF EXISTS `notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notes` (
  `note_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_modified` datetime DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `contents` text DEFAULT NULL,
  PRIMARY KEY (`note_id`),
  KEY `notes_assoc` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notes`
--

LOCK TABLES `notes` WRITE;
/*!40000 ALTER TABLE `notes` DISABLE KEYS */;
INSERT INTO `notes` VALUES (1,1048586,1,6,'2019-03-29 07:39:50','2019-03-29 07:39:50',NULL,NULL),(2,1048586,1,1,'2019-08-30 12:17:19','2019-08-30 12:17:19','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Circumcision With Plastic Clamb In Newborn Infants\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(3,1048586,2,1,'2019-08-30 12:29:53','2019-08-30 12:29:53','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Effectiveness of Dayak (Eleutherine palmifollia (L) merr) Extract Against Escherichia Coli In Vitro\" is: Accept Submission<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(4,1048586,3,12,'2019-08-30 12:37:22','2019-08-30 12:37:22','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Inhibition Power of Rosella (Hibiscus sabdariffa L.) Stewet Water on Salmonella typhi in vitro\" is: Accept Submission<br> <br> Fetus Abiose Olajubu<br>fetusola@gmail.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(5,1048586,4,1,'2019-08-31 08:39:23','2019-08-31 08:39:23','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Contamination of Bacillus cereus in Elementary School Snack Food\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(6,1048586,5,1,'2019-08-31 08:42:19','2019-08-31 08:42:19','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Contamination of Bacillus cereus in Elementary School Snack Food\" is: Accept Submission<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(7,1048586,6,23,'2019-10-03 19:52:54','2019-10-03 19:52:54',NULL,NULL),(8,1048586,7,23,'2019-10-08 20:37:42','2019-10-08 20:37:42',NULL,NULL),(9,1048586,6,23,'2019-10-16 15:08:00','2019-10-16 15:08:00',NULL,NULL),(10,1048586,6,26,'2020-01-31 15:29:08','2020-01-31 15:29:08','Comments for the Editor','<p>Dear Editor:</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; We hereby submit our manuscript entitled “<em>COL4A1 and COL4A2 mutations analyses with perinatal arterial ischemic stroke</em>” to be considered for publication in Tropical Health and Medical Research. This study, containing original material and it has not been previously published and has been read and approved by all authors.</p>\r\n<p>The aim of the present study was to establish the relation of COL4A1 and COL4A2 mutations and perinatal arterial ischemic stroke. To the best of our knowledge this is the first study about this topic. Additionally we were present maternal/perinatal risk factors of perinatal arterial ischemic stroke. &nbsp;&nbsp;</p>\r\n<p>Thank you in advance for your efforts and the efforts of your reviewers.</p>\r\n<p>Yours faithfully.</p>\r\n<p>Corresponding author</p>\r\n<p>Ozan Kocak, M.D.</p>\r\n<p>Department of Pediatric Neurology, Osmangazi University Medicine Faculty</p>\r\n<p>Meşelik Yerleşkesi, 26040, Eskişehir / TURKEY</p>\r\n<p>Phone: +90 5057916232</p>\r\n<p>E-mail: ozankocak79@gmail.com</p>\r\n<p>ozank@ogu.edu.tr</p>'),(11,1048586,7,1,'2020-02-04 13:20:12','2020-02-04 13:20:12','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"COL4A1 and COL4A2 Mutations Analyses with Perinatal Arterial İschemic Stroke\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(13,1048586,9,26,'2020-02-07 14:44:59','2020-02-07 14:44:59',NULL,NULL),(14,1048586,10,26,'2020-02-07 14:46:33','2020-02-07 14:46:33',NULL,NULL),(15,1048586,11,26,'2020-02-07 14:50:59','2020-02-07 14:50:59',NULL,NULL),(16,1048586,12,25,'2020-02-07 16:29:08','2020-02-07 16:29:08',NULL,NULL),(17,1048586,13,25,'2020-02-07 18:51:01','2020-02-07 18:51:01',NULL,NULL),(18,1048586,14,25,'2020-02-07 18:52:31','2020-02-17 12:17:06','revision','<p>I can\'t see the revision file. Regards</p>'),(19,1048586,15,26,'2020-02-10 15:32:25','2020-02-10 15:32:25',NULL,NULL),(20,1048586,16,1,'2020-02-12 07:50:08','2020-02-12 07:50:08','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"COL4A1 and COL4A2 Mutations Analyses with Perinatal Arterial İschemic Stroke\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(21,1048586,17,1,'2020-02-12 07:51:21','2020-02-17 12:53:43','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Abstract\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p>\r\n<p><br><br> ________________________________________________________________________<br> <a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a></p>'),(22,1048586,18,28,'2020-02-16 16:18:09','2020-02-16 16:18:09','Comments for the Editor','<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I would like to submit my manuscript titled “<strong>The Effect of Age and Education Level as a Source of Information on Internet Use in Preoperative Patients</strong>” to be published in “<strong><em><strong class=\"tu\">Tropical Health and Medical Research</strong>&nbsp;</em></strong>” as an original research article.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I confirm that above submission has not been published before and is not under consideration for publication elsewhere.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Yours sincerely.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;February, 16, 2020</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dr. Yasin TİRE</p>'),(23,1048586,19,1,'2020-02-17 13:37:17','2020-02-19 08:00:05','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Abstract\" is: Accept Submission<br> <br> admin admin<br>admin@medlabtechnojournal.com</p>\r\n<p><br><br> ________________________________________________________________________<br> <a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a></p>'),(24,1048586,20,1,'2020-02-18 22:56:37','2020-02-18 22:56:37','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Abstract\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://www.medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(25,1048586,21,1,'2020-02-18 22:57:56','2020-02-18 22:57:56',NULL,NULL),(26,1048586,22,1,'2020-02-19 07:24:47','2020-02-19 07:24:47','Recommendation','<p>:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"The Effect of Age and Education Level as a Source of Information on Internet Use in Preoperative Patients\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(27,1048586,23,23,'2020-02-21 18:54:48','2020-02-21 18:54:48',NULL,NULL),(28,1048586,24,1,'2020-02-24 10:49:55','2020-02-24 10:49:55','Recommendation','<p>Ratih Dewi Dwiyanti:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Z Plasty Single Center Results in the Treatment of Pilonidal Sinus Disease in Children\" is: Request Revisions<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(29,1048586,25,1,'2020-02-27 10:01:50','2020-02-27 10:01:50','Recommendation','<p>Ratih Dewi Dwiyanti:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"The Effect of Age and Education Level as a Source of Information on Internet Use in Preoperative Patients\" is: Accept Submission<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(30,1048586,26,1,'2020-02-27 10:06:30','2020-02-27 10:06:30','Recommendation','<p>Ratih Dewi Dwiyanti:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Abstract\" is: Accept Submission<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(31,1048586,27,1,'2020-02-28 07:55:55','2020-02-28 07:55:55','Recommendation','<p>Ratih Dewi Dwiyanti, Administrator Administrator:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"COL4A1 and COL4A2 Mutations Analyses with Perinatal Arterial İschemic Stroke\" is: Accept Submission<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(32,1048586,28,23,'2020-03-26 14:27:04','2020-05-20 15:32:11','Comments for the Editor','<p><a name=\"_Toc11147518\"></a><strong>An Investigation on the Association Between Biliary Duct Variations and Stone Formation in the Choledochal Duct Caused by These Variations </strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>Abstract</strong></p>\r\n<p><strong>INTRODUCTION and OBJECTIVE: </strong>The aim of the present study was to investigate if there is an association between the diameter of the choledochal duct and choledochal duct stone formation.</p>\r\n<p><strong>MATERIALS and METHODS</strong> The present study consisted of 79 patients who had endoscopic interventions and MRCP procedure with surgery history, and some of whom were followed due to disorders of the liver, gall bladder and biliary tract, and some of whom presented hepatobiliary complaints between 2017 and 2019. The diameter of the choledochal duct was measured from MRCP images and choledochal duct stone was examined; the type was classified according to Huang classification.</p>\r\n<p><strong>FINDINGS:</strong> Among the cases classified, 29 patients were Huang Type A1, 27 patients were Huang Type A2, 16 patients were Huang Type A3 and 7 patients were Huang Type A4. There was not any statistically significant association in terms of choledochal diameter depending on the types. Choledochal duct diameter was statistically higher in female patients when compared with male patients. A statistically significant difference was detected for choledochal duct stone formation according to the age group; individuals over 45 years of age present an increase for choledochal duct stone.</p>\r\n<p><strong>DISCUSSION and CONCLUSION: </strong>Diameter of the choledochal duct was found higher in female patients when compared with male patients; stone formation was found increased in both gender over 45 years of age. This should be considered before surgical procedures and radiological tests.</p>\r\n<p><strong>Key words: </strong>Biliary tract variations, choledochal diameter, choledochal stone.</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><strong>INTRODUCTION</strong></p>\r\n<p>Biliary stone disease is a common gastrointestinal problem. Prolongation of the average life period results in an increase in elder population; however, an increase in prevalence is also detected due to the changes in nutritional habits (1). Gallbladder stone is one of the most common causes for elective abdominal procedures in general surgery. Although mortality is lower in gall bladder procedures, economical and health effects should be considered due to higher morbidity rates. Under the light of these data, we aimed to make a classification in biliary tract formations according to Huang variation types and to investigate any possible association between common bile duct (CBD) diameter, CBD stone, and gender as well as age.</p>\r\n<p><strong>Materials and Methods:</strong></p>\r\n<p>After approval of the Ethical Committee of Kocaeli University with GOKAEK-2018/18. 2018/86 dated and numbered decision, the present study included 79 patients who had endoscopic interventions and MRCP procedure with surgery history, and some of whom were followed due to disorders of the liver, gall bladder, and biliary tract, and some of whom presented hepatobiliary complaints in Derince Training and Research Hospital within Health Sciences University between 2017 and 2019.</p>\r\n<p>&nbsp;After review of age, gender, clinical presentation, history of any previous surgery were obtained in 79 patients, CBD diameter and cholelithiasis were reviewed on MRCP images in each case. The measurements on the images were performed by the same radiologist and taking the same points for measurement was considered for each case. CBD diameter was measured from the middle point of the distance from the junction point of the cystic duct (CD) and common hepatic duct (CHD) to ampulla of Vater.</p>\r\n<p>The biliary tract is divided into two parts incşuding intrahepatic and extrahepatic biliary tract. As identified by Couinaud, the liver consists of eight individual segments with individual portal circulation and venous blood flow (1). This also consists with anatomically segmental structure of the liver.</p>\r\n<p>Huang <strong>classification</strong> was used to classify anatomic variations of the biliary tract. This method is one of the <strong>classification</strong> methods used for radiological measurements and examinations. Variational states of the biliary tracts were identified and classified differently by the researchers. Couinaud, Champetier, Onkubu, Choi, and Huang made type classifications. Variation classification of the biliary tract is usually done depending on the junction status of the right posterior hepatic duct in general (2). We used Huang classification in our study.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n<p>In addition to descriptive statistics, data analyses were performed by Kolmogorov Smirnov test, chi-square test; T-test, Mann Whitney U test, ANOVA analysis, LSD and Tamhane\'s test as well as correlation analyses (Pearson\'s and Spearman\'s) for independent groups.</p>\r\n<p><strong>FINDINGS</strong></p>\r\n<p>The participants included 38 females (53.04±19.56 years) and 41 males (54.7±20.75 years). The youngest female patient was 22 years old and the oldest was 87 years old with a median age value of 56 years. The youngest male case was 19 years old whereas the oldest patient was 91 years old with a median age value of 58 years.</p>\r\n<p>Classification of anatomical variation of the biliary tract revealed the following;</p>\r\n<p>&nbsp;female patients; 11 (27.5%) patients in Huang A1 type, 20 (50%) patients in Huang A2 type, 5 (17.5%) patients in Huang A3 type, and 2 (5%) patients in Huang A4 type. In the male patients, 18 (43.9%) patients were Huang A1 type, 7 (17.07%) patients were Huang A2 type, 11 (26.8%) patients were Huang A3 type,&nbsp; 5 (12.1%) patients were Huang A4 type.</p>\r\n<p>Accordingly, 29 (36.70%) patients were Huang A1 type, 27 (34.2%) patients were Huang A2 type, 16 (20.3%) patients were Huang A3 type, 7 (8.64%) patients were Huang A4 type.</p>\r\n<p><strong>DISCUSSION</strong></p>\r\n<p>The biliary tract may present different anatomic variations both in intrahepatic and extrahepatic locations beyond its normal structure. Biliary tract junction forms may also present different variations; however, the normal anatomic structure is detected in approximately 58% of the global population (3, 4). Beyond identified anatomic pattern, the biliary tract may present intrahepatic or extrahepatic developmental variations (5); since such variations may potentially cause problems in surgical procedures in the patients, they may increase the risk of iatrogenic injury during surgical procedures such as open and laparoscopic gall bladder procedures, liver resection or liver transplantation from alive donor. Different anatomic variations were demonstrated to be associated with stone formation, recurrent pancreatitis, cholangitis and malignancies (4, 6).</p>\r\n<p>Recognition of all variations of the gall bladder and possible association of such variations with cholelithiasis is important to reduce the risks for malpractice and to reduce mortality and complication rates.</p>\r\n<p>The present study investigated any possible association between variations of the extrahepatic biliary tract and cholelithiasis; and there was not any statistically significant association between Huang variation types and cholelithiasis (Table 1).</p>\r\n<p>In the present study, any possible correlation between CHD diameter, CHD-CD angle and CHD stone dimension; consequently, a statistically significant correlation was detected. Another statistically significant output of such correlation was the increase of stone formation in individuals over 45 years of age. Many studies were conducted to search the association between CHD diameter and age, body weight, height s well as BMI. Kaude measured the diameter of the common bile duct on 600 individuals by ultrasound; CHD diameter was 2.8 mm in the individuals below 20 years of age whereas CHD diameter was measured 4.1 mm in the individuals over 71 years of age (7). Recent studies emphasize the effect of aging on CHD diameter. Bachar et al. detected an age-dependent change in CHD diameter by an annual dilatation of 0.04 mm through ultrasound (8). Daradkeh et al. reported that the factors affecting common bile duct diameter were age, cholecystectomy, and BMI (9). Tom et al. conducted a study on 187 individuals and measured a significant increase in CHD diameter by aging (10). Wu et al., Kaim et al., Niederau et al., and Bowie et al. carried out stıdied about CHD diameter increase by aging and their possible causes (11, 12, 13, 14). Kaim et al. stated that age-dependent increase in CHD diameter may appear due to age-dependent increase of the loss in the reticulo-elastic web&nbsp; along with the destruction of longitudinally extending myositis bands and destruction on intermediate connective tissue (11). Adibi and Givechian examined the association between CHD diameter and age, BMI, portal vein diameter and drug addiction; they observed that diameter of CHD increases along with wide portal vein in drug addicts in the advanced age (15) (Table2).</p>\r\n<p>In the present study, stone formation increased in individuals over 45 years of age (Table 3). Many studies of the literature showed that cholelithiasis prevalence increased by age. Attili et al. reported a linear increase in cholelithiasis and cholecystectomy in both genders by aging (16). Barbara et al. stated that the prevalence of cholelithiasis increases by aging between 18 and 65 years of age (17). This is probably due to the fact that stone formation becomes visible and / or manifest in the elder ages because of being a gradual and time-taking process. In our study, it was measured that the individuals with cholelithiasis have increased DCH diameter (Table 4). A statistically significant association of stone formation was observed with CHD diameter increase. This has been explained by the presence of the stone to produce a physical dilatation of the DCH. Boys et al. divided CHD diameter into three groups including 6 mm, 6 to 9.9 mm and over 10 mm; they measured the diameter smaller in the individuals without CHD stone. In that study, the stone formation rate was 14% in the first and second groups, and 39% i the third group (18).</p>\r\n<p>The previous studies show that there are differences in anatomic formations where the stone is developed in male and female patients. Within this context, a significant difference was found in CHD diameter in MRCP images between female and male patients. The normal range for CHD diameter is 4 to 6 mm; CHD diameter below 5 mm is accepted normal whereas a diameter at and above 8 mm is dilated. Mean CHD diameter was measured 9.10±4.91 mm in female patients and 6.28±4.15 mm in male patients. Poralla et al. measured CHD diameter and the pressure inside the canal in their study in both genders; both CHD diameter and the pressure inside the canal were detected higher in male patients when compared with female patients (19). Matcuk et al. detected in their study that CHD diameter is higher in females, and it increases in advanced age and in those who had cholecystectomy in both genders (20). The researchers state that cholelithiasis incidence is more in female patients with differences in biliary tract (21), and this may be therefore expressed with wider CHD diameter in females when compared with males (Table 5).</p>\r\n<p>In this study, cholelithiasis rate was statistically higher in female patients when compared with male patients of the present study; the incidence is 2.3-fold higher in female patients (Table 6). There are many studies focusing on possible risk factors or underlying causes for cholelithiasis among female and male patients.&nbsp; Palermo et al. conducted a study on 1,875 volunteers to investigate the association between cholelithiasis, age, gender, BMI, family history, sedentary life; cholelithiasis incidence was 2.6-fold higher in female volunteers (22). Another previous study reported that age, BMI, history of cholic pain, family history, smoking, and hepatosteatosis were all effective on choleltihiasis and radiological anatomy of the biliary vesicle and biliary duct (23, 24).</p>\r\n<p>Yıldırım (2008) conducted a study under the title of \"Incidence of cholelithiasis in adults in the province of Tokat and possible risk factors\" on 1,095 individuals in Tokat province of our country; he investigated the effect of gender, age, glucose, ALT, AST, total cholesterol, triglyceride,BMI and anthropometric measurements on frequency of cholelithiasis; he also evaluated anatomic formations and clinical findings through ultrasound.&nbsp; An association was detected between cholelithiasis and female gender, age, fasting glucose, total cholesterol, BMI, triglycerides and waist circumference (25). Some researches reported that stone prevalence in women is 1.7 to 4-fold more than men (26). In our country, Sezer (2016) carried out a study with 865 volunteers and detected biliary vesicle stone in 52 volunteers including 41 female individuals (27).</p>\r\n<p>&nbsp;There are studies indicating that higher cholelithiasis incidence in women may be associated with some factors such as fertility and sex hormones, an increase of estrogen hormone increases cholesterol secretion and causes cholesterol supersaturation 828). Some studies suggest that the risk of cholelithiasis increases in women receiving hormone replacement therapy (29, 30). Some studies demonstrated the association between oral contraceptive use and an increase in the risk of cholelithiasis (31, 32).</p>\r\n<p>A previous study showed that cholesterol and calcium bilirubin crystals in the bile sludge increase by more than 30% (33).</p>\r\n<p>According to the outcomes stated above, gender should be considered in the patients presenting colic pain without symptoms of cholelithiasis; furthermore, MRCP images show that CHD diameter may be wider in women when compared with men, which may increase the rate of small stone accumulation and stone formation in the biliary vesicle.</p>\r\n<p>Consideration of possible dilatation in CHD diameter by aging reveals that age may be a determinant factor in CHD diameter and stone formation in MRCP or radiological images.</p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>CONCLUSION</strong></p>\r\n<p>Review of the findings of the present study along with literature information, a wider CHD diameter may not necessarily indicate a stone; further studies are needed to investigate the effect of CHD stone existence on gender, and the effect of age on diameter increase.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>Referencess</strong></p>\r\n<p>1.Gazelle G.S, Lee M.J, Mueller PR, Cholangiographic segmental anatomy of the liver. Radiographics 1994;14:1005-1013.</p>\r\n<p>2.Hyodo T, Kumano S, Kushihata F, Okada M, Hirata M, Tsuda T, et al.CT and MR cgolangiography:advantage and pitfalls in perioperative evaluation of biliary tree.British Journal of&nbsp; Radiology 2012;85:887-96</p>\r\n<p>3.Pente SG, Bannura GC. Radiological anatomy of the biliary tract:variations and congenital abnormalities. World Journal of Surgery 1983; 7:271-6.</p>\r\n<p>4.Mortele. K, Ros P.R, Anatomic variants of the biliary tree: MR cholangiographic findings and clinical applications.<em> American&nbsp; Journal of&nbsp; Roentgenology</em>&nbsp; 2001;177:389-394.</p>\r\n<p>5.Berci G. Biliary ducral anatomy and anomalies:the role of intraoperative cholangiography during laparoscopic cholecystectomy.Surgical Clinics of .North America1992;72:1069-1075</p>\r\n<ol start=\"6\">\r\n<li>Sayed A.T, Ramin N, Sayed E.A, Fardad. E, Gholam R.S, Ahad E, Anatomical Variations of Biliary Tree Found with Endoscopic Retrograde Cholangiopancreatography in a Referral Center in Southern İran. <em>Middle East Journal Of Digestive Disease</em>/Vol.9/No.4/October 2017.</li>\r\n</ol>\r\n<p>7.Kaude JV. The width of the common bile duct in relation to age and stone disease. An ultrasonographic study. <em>Euro Journal of&nbsp; Radiology </em>1983, 3: 115-7.</p>\r\n<p>8.Bachar GN, Cohen M, Belenky A, Atar E, Gideon S. et al. Effect of aging on the adult extrahepatic bile duct: a sonographic study. <em>Jornal of&nbsp; Ultrasound in Medicine </em>2003,22: 879-82.</p>\r\n<p>9.Daradkeh S, Tarawneh E, AL-Hadidy A. Factors affecting common bile duct diameter. <em>Hepatogastroenterology </em>2005, 52: 1659-61.</p>\r\n<p>10.Tom C,Ruei-Hung C,ChiaoHung A,MingLii J,ChounChen R.The diameter of the common bile duct in an asymptomatic Taiwanese poplation:Measurment by magnetic resonance cloangiopancreatography.Journal of the Chinese Medical Association,Volume 75,issue 8, August 2012,page 384-388.</p>\r\n<ol start=\"11\">\r\n<li>Kaim A, Steinke K, Frank M, Enriquez R, Kirsch E, Bongartz G et al. Diameter of the common bile duct in the elderly patient: measurement by ultrasound. <em>European Radiology </em>1998; 8(8):1413-1415.</li>\r\n</ol>\r\n<p>12.Niederau C, Muller J, Sonnenberg A, Scholten T, Erckenbrecht J, Fritsch WP et al. Extrahepatic bile ducts inhealthy subjects, in patients with cholelithiasis, and in postcholecystectomy patients: a prospective ultrasonic study. <em>Jornal of&nbsp; Clinical Ultrasound </em>1983; 11(1):23-27.</p>\r\n<p>13.Bowie JD. What is the upper limit of normal for the common bile duct on ultrasound: how much do you want it to be? <em>American Jornal of Gastroenterology </em>2000; 95(4):897-900.</p>\r\n<p>14.Wu CC, Ho YH, Chen CY. Effect of aging on common bile duct diameter: a real-time ultrasonographic study. <em>Jornal of Clinical Ultrasound </em>1984; 12(8):473-478.</p>\r\n<p>15.Adibi A,Givechian B.Diameter of common bile duct:What are the predicting factors?Jornal of Resarch in Medical Sciences,May&amp;June 2007;Vol 2,No 3.121-124.</p>\r\n<p>16.Attili AF, et al. Epidemiology of galstone disease in italy:prevalance data of the Multicenter Italian Study on Cholecystolithiasis(M.I.COL). American&nbsp; Journal of Epidemiology 1995; 141: 158-65</p>\r\n<p>17.Barbara L, et al. A population study on the prevalance of galstone disease: the Sirmione study . Hepatology 1987; 7:913-17</p>\r\n<p>18.Boys JA,Doorly MG,Zehetner J,Dhanireddy KK,Senagore AJ.Can ultrsound common bile duct diameter predict common bile duct Stones in the setting of acute cholecystitis?American Journal of Surgery,Mar,2014;207(3):432-435.</p>\r\n<p>19.PorallaT,Staritz M,Manns M,Klose K,Hommel G,Meyer zum Büschenfelde KH.Age and sex dependency of bile duct diameter and bile duct pressure an ERC manometry study .Zeitschrift fur Gastroenterolgie ,01 May 1985,23(5):235-239.</p>\r\n<p>20.Matcuk GR Jr,Grant EG,Ralls PW.Ultrasound measurements of the bile ducts and gallbladder:normal ranges and effects of age,sex,cholecystectomy and pathologic states .Ultrasound quarterly,30(1):41-48,March 2014.</p>\r\n<p>21.Festi D, Dormi A, Capodicasa S, Staniscia T,&nbsp; Attili A, Loria P, Pazzi P, Mazzella G, Sama C, Roda E, Colecchia A., Incidence of gallstone disease in Italy: Results from amulticenter, population-based Italian study (the MICOLproject). World Journal of Gastroenterology 2008 September 14.</p>\r\n<p>22.Palermo M,&nbsp; Berkowski D.E, Córdoba J.P,&nbsp; Verde J.M, Giménez M.E, Prevalence of cholelithiasis in Buenos Aires,Argentina, Department of Gastrointestinal.Surgery. Hospital de Clínicas José de San Martín, University of Buenos Aires, <em>Argentina.Acta Gastroenterology&nbsp; Latinoam</em> 2013;43:98-105.</p>\r\n<p>23.McMichael AJ, Baghurst PA, Scragg RK. A case-control study of smoking and gallbladder disease:importance of examining time relations. Epidemiolgy 1992;3:519-522.</p>\r\n<p>24.Öztürk H, Beyler A.R, Safra kesesi taşlarında epdemiyoloji ve tedavi, <em>Güncel Gastroenteroloji</em>,1997.</p>\r\n<p>25.Yıldırım.B, Aktürk Y,&nbsp; Fırat M.M, Öztürk B, Özuğurlu F, Şahin İ,ve ark. Tokat ili erişkinleri’nde kolelitiazis sıklığı ve olası risk faktörleri, <em>Akademik&nbsp; Gastroenteroloji Dergisi</em>, 2008; 7 (2): 83-86).</p>\r\n<p>&nbsp;</p>\r\n<p>26.Pancorbo&nbsp; M.C, Carballo F,&nbsp; Horcajo P, Aldeguer M, de la Villa I, Nieto E.Marı´a&nbsp; Gaspar J., de la Morena1 J., Prevalence and Associated Factors for GallstoneDisease: Results of a Population Survey in Spain Department of Internal Medicine and Department of Biochemistry, University General Hospital ofGuadalajara and niversity of Alcala´ de Henares, Madrid, Spain.</p>\r\n<p>27.Sezer B, “Edirne ilinde Asemptomatik Erişkinlerde Kolelitiazis sıklığı”. Uzmanlık tezi. Trakya Üniversitesi Tıp fakültesi İç Hastalıkları A.D.Edirne, 2016.</p>\r\n<p>28.Sun H ,Tang H,Jiang S,Zeng L,En-Qiang C,Tao Z,You-Juan W. Gender and metabolic difference of gallstone disease.World Journal of Gastroenterology,2009 April 21;15(15)1886-1891.</p>\r\n<ol start=\"29\">\r\n<li>Youming D, Bin W, Weixing W, Binghua W, Ruoyu L,Bangchang C. The effect of h(1) calponin expression on gallstone formation in pregnancy. Saudi Medical Journal 2006;27:1661-1666.</li>\r\n<li>Tierney S, Nakeeb A, Wong O, Lipsett PA, Sostre S, Pitt HA,Lillemoe KD. Progesterone alters biliary flow dynamics. Annals of Surgery 1999; 229: 205-209.</li>\r\n<li>Maurer KR, Everhart JE, Knowler WC, Shawker TH,Roth HP. Risk factors for gallstone disease in the Hispanic populations of the United States. American Journal of Epidemiology 1990; 131:836-844.</li>\r\n</ol>\r\n<p>32.Khan MK, Jalil MA, Khan MS. Oral contraceptives in gallstone diseases. Mymensingh Medical Journal 2007; 16: S40-S45.</p>\r\n<ol start=\"33\">\r\n<li>Maringhini A, Ciambra M, Baccelliere P, Raimondo M, Orlando A, Tine F,Grasso R, Randazzo MA, Barresi L, Gullo D, et al. Biliary sludge and gallstones in pregnancy: incidence, risk factors, and natural history. Annals of Internal Medicine. 1993;119(2):116–20.1993;119(2):116–20.</li>\r\n</ol>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><strong>Table 1</strong> -Investigation of the association between variation type and common bile duct stone.</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" rowspan=\"2\" width=\"144\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td colspan=\"3\" width=\"195\">\r\n<p><strong>variation</strong></p>\r\n<p><strong>type</strong></p>\r\n</td>\r\n<td rowspan=\"2\" width=\"238\">\r\n<p>p</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"65\">\r\n<p>A1</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>A2</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>A3+A4</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"2\" width=\"94\">\r\n<p><strong>common bile duct stone</strong></p>\r\n</td>\r\n<td width=\"50\">\r\n<p><strong>no</strong></p>\r\n</td>\r\n<td width=\"65\">\r\n<p>20</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>16</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>16</p>\r\n</td>\r\n<td rowspan=\"3\" width=\"238\">\r\n<p>0.678</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"50\">\r\n<p><strong>yes</strong></p>\r\n</td>\r\n<td width=\"65\">\r\n<p>9</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>11</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>7</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"2\" width=\"144\">\r\n<p><strong>total</strong></p>\r\n</td>\r\n<td width=\"65\">\r\n<p>29</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>27</p>\r\n</td>\r\n<td width=\"65\">\r\n<p>23</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>There was not any difference in common bile duct stone according to the variation types (p&gt;0.05).</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><a name=\"_Toc11005778\"></a><a name=\"_Toc11005779\"></a><strong>Table 2</strong>. Investigation of the difference between CBD diameter and CD -CHD angle according to the age above and below 45 years</p>\r\n<table width=\"578\">\r\n<tbody>\r\n<tr>\r\n<td width=\"246\">\r\n<p>&nbsp;</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Age_</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Group</p>\r\n</td>\r\n<td width=\"47\">\r\n<p>&nbsp;</p>\r\n<p>N</p>\r\n</td>\r\n<td width=\"95\">\r\n<p>&nbsp;</p>\r\n<p>&nbsp;&nbsp; Mean</p>\r\n</td>\r\n<td width=\"94\">\r\n<p>Std. deviation</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>&nbsp;</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; p</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"246\">\r\n<p>CHD diameter&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 45≥</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 45&lt;</p>\r\n</td>\r\n<td width=\"47\">\r\n<p>&nbsp; 24</p>\r\n<p>&nbsp; 55</p>\r\n</td>\r\n<td width=\"95\">\r\n<p>5.25</p>\r\n<p>8.68</p>\r\n</td>\r\n<td width=\"94\">\r\n<p>3.86</p>\r\n<p>4.71</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>&nbsp;&nbsp;&nbsp; 0.001</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"246\">\r\n<p>CHD-CD angle&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 45≥</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 45&lt;</p>\r\n</td>\r\n<td width=\"47\">\r\n<p>&nbsp; 17</p>\r\n<p>&nbsp; 38</p>\r\n</td>\r\n<td width=\"95\">\r\n<p>45.17</p>\r\n<p>39.34</p>\r\n</td>\r\n<td width=\"94\">\r\n<p>30.08</p>\r\n<p>&nbsp;29.87</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>0,510</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>A significant increase was detected in CHD diameter over 45 years of age (p&lt;0.05). There was not any difference detected in CHD-CD angle according to the age group (p&gt;0.05).</p>\r\n<p>&nbsp;</p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>Table 3: </strong>Investigation of the difference for CHD stone formation according to the age above and below 45 years</p>\r\n<table width=\"576\">\r\n<tbody>\r\n<tr>\r\n<td rowspan=\"2\" width=\"201\">\r\n<p><strong>CHD stone present</strong></p>\r\n</td>\r\n<td colspan=\"2\" width=\"264\">\r\n<p><strong>Age_Group (years)</strong></p>\r\n</td>\r\n<td rowspan=\"2\" width=\"111\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp; p</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"139\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>45&lt;</strong></p>\r\n<p><strong>years</strong></p>\r\n</td>\r\n<td width=\"126\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>45&lt;</strong></p>\r\n<p><strong>years</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"201\">\r\n<p><strong>no</strong></p>\r\n</td>\r\n<td width=\"139\">\r\n<p>20</p>\r\n</td>\r\n<td width=\"126\">\r\n<p>32</p>\r\n</td>\r\n<td rowspan=\"2\" width=\"111\">\r\n<p><strong>0,025</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"201\">\r\n<p><strong>yes</strong></p>\r\n</td>\r\n<td width=\"139\">\r\n<p>4</p>\r\n</td>\r\n<td width=\"126\">\r\n<p>23</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>&nbsp;</p>\r\n<p>A statistically significant difference was detected in CHD stone formation according to the age group (p&lt;0.05). CHD stone incidence increases in patients over 45 years of age.</p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><a name=\"_Toc11005774\"></a><strong>Table 4:</strong> Analysis of the association between CHD-CD angle and age as well as CHD.</p>\r\n<table width=\"579\">\r\n<tbody>\r\n<tr>\r\n<td width=\"154\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"104\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>age</strong></p>\r\n</td>\r\n<td width=\"95\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>CHD diameter</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong></p>\r\n</td>\r\n<td width=\"116\">\r\n<p><strong>CHD-CD angle</strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\r\n</td>\r\n<td width=\"110\">\r\n<p><strong>CHD stone dimension</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p><strong>age</strong></p>\r\n</td>\r\n<td width=\"104\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"95\">\r\n<p>0.00</p>\r\n</td>\r\n<td width=\"116\">\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.43</p>\r\n</td>\r\n<td width=\"110\">\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0,154</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>CHD diameter</strong></p>\r\n</td>\r\n<td width=\"104\">\r\n<p>&nbsp;</p>\r\n<p><strong>0.000</strong></p>\r\n</td>\r\n<td width=\"95\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"116\">\r\n<p>&nbsp;</p>\r\n<p>0.106</p>\r\n</td>\r\n<td width=\"110\">\r\n<p>&nbsp;</p>\r\n<p><strong>0.003</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>CHD-CD angle</strong></p>\r\n</td>\r\n<td width=\"104\">\r\n<p>&nbsp;</p>\r\n<p>&nbsp;&nbsp;&nbsp; 0.434</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"95\">\r\n<p>&nbsp;</p>\r\n<p>0.106</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"116\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"110\">\r\n<p>&nbsp;</p>\r\n<p>0.752</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"154\">\r\n<p><strong>&nbsp; CHD stone&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </strong></p>\r\n<p><strong>&nbsp; dimension</strong></p>\r\n</td>\r\n<td width=\"104\">\r\n<p>0.154</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"95\">\r\n<p>0.003</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"116\">\r\n<p>0.752</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"110\">\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>A positive correlation was detected between the age and CHD diameter and between CHD stone dimension and CHD diameter (p&lt;0.05). There was not any significant correlation between CHD-CD angle and age, and between CHD-CD angle and CHD stone dimension (p&gt;0.05).</p>\r\n<p>&nbsp;</p>\r\n<p><a name=\"_Toc11005772\"></a><strong>Table 5. </strong>Comparison of CHD diameter (mm) according to the gender</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" width=\"209\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gender</strong></p>\r\n</td>\r\n<td width=\"56\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;&nbsp;&nbsp;&nbsp; N</strong></p>\r\n</td>\r\n<td width=\"83\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>Mean (mm)</strong></p>\r\n</td>\r\n<td width=\"95\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>Std. Deviation</strong></p>\r\n</td>\r\n<td width=\"108\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;P</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"124\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>CHD diameter (mm)</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n</td>\r\n<td width=\"85\">\r\n<p>&nbsp;</p>\r\n<p>&nbsp;male</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>female</p>\r\n</td>\r\n<td width=\"56\">\r\n<p>&nbsp;</p>\r\n<p>41</p>\r\n<p>&nbsp;</p>\r\n<p>38</p>\r\n</td>\r\n<td width=\"83\">\r\n<p>&nbsp;</p>\r\n<p>6.28</p>\r\n<p>&nbsp;</p>\r\n<p>9.10</p>\r\n</td>\r\n<td width=\"95\">\r\n<p>&nbsp;</p>\r\n<p>4.15</p>\r\n<p>&nbsp;</p>\r\n<p>4.91</p>\r\n</td>\r\n<td width=\"108\">\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>0.007</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"124\">&nbsp;</td>\r\n<td width=\"85\">&nbsp;</td>\r\n<td width=\"56\">&nbsp;</td>\r\n<td width=\"83\">&nbsp;</td>\r\n<td width=\"95\">&nbsp;</td>\r\n<td width=\"108\">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>Mean CHD diameter was measured 9.1±4.91 mm in female patients and 6.28±4.15 mm in male patients. The mean CHD diameter was measured 7.67 mm.</p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><a name=\"_Toc11005770\"></a><strong>Table 6</strong>. Comparison of biliary vesicle stone depending on the gender</p>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" rowspan=\"2\" width=\"217\">\r\n<p>&nbsp;</p>\r\n<p>Biliary Vesicle Stone Formation</p>\r\n</td>\r\n<td colspan=\"2\" width=\"179\">\r\n<p>gender</p>\r\n</td>\r\n<td rowspan=\"2\" width=\"96\">\r\n<p>&nbsp;</p>\r\n<p>p</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"83\">\r\n<p>male</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>female</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td rowspan=\"4\" width=\"148\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"69\">\r\n<p>no</p>\r\n</td>\r\n<td width=\"83\">\r\n<p>23</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>&nbsp;&nbsp;&nbsp; 8</p>\r\n</td>\r\n<td rowspan=\"4\" width=\"96\">\r\n<p>&nbsp;</p>\r\n<p>0.005</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"69\">\r\n<p>yes</p>\r\n</td>\r\n<td width=\"83\">\r\n<p>10</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>&nbsp;&nbsp; 18</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"69\">\r\n<p>operated</p>\r\n</td>\r\n<td width=\"83\">\r\n<p>8</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>&nbsp;&nbsp; 12</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td width=\"69\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"83\">\r\n<p>&nbsp;</p>\r\n</td>\r\n<td width=\"96\">\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p>A significant difference was found between female and male groups for biliary vesicle stone depending on gender (p&lt;0.05).&nbsp; The biliary vesicle stone formation was significantly higher in female patients (p&lt;0.05).</p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>&nbsp;</strong></p>'),(34,1048586,29,1,'2020-03-27 07:16:09','2020-03-27 07:16:09','Recommendation','<p>Ratih Dewi Dwiyanti:<br> <br> The recommendation regarding the submission to Tropical Health and Medical Research, \"Z Plasty Single Center Results in the Treatment of Pilonidal Sinus Disease in Children\" is: Accept Submission<br> <br> admin admin<br>admin@medlabtechnojournal.com</p><br/><br/>\n________________________________________________________________________<br/>\n<a href=\"http://medlabtechnojournal.com/index.php/JAK\">Tropical Health and Medical Research</a>'),(35,1048586,30,37,'2020-03-28 16:57:31','2020-03-28 17:28:32','Comments for the Editor','<p>Dear Sir/Madam</p>\r\n<p>Thanks for creating oppurtinity to our study in your journal. Our study is about an actual recently becoming an important side of diabetes. Recently there have been some studies about sleep quality and diabetes, but there is a gap in assessing sleep quality, comprasion of it in different diabetic stages (controlled,uncontrolled). Metabolic syndrome is very frequent in type 2 diabetes, so we wanted to investigate sleep quality in metabolic syndrome diabetic patients.</p>\r\n<p>Thanks for Your Oppurtinity<br> Your Sincerely</p>\r\n<p>&nbsp;</p>'),(37,1048586,31,23,'2020-04-05 01:21:23','2020-04-05 01:21:23',NULL,NULL),(38,1048586,32,23,'2020-04-08 20:22:00','2020-04-08 20:22:00',NULL,NULL),(40,1048586,34,35,'2020-04-25 18:30:29','2020-04-25 18:30:29',NULL,NULL),(42,1048586,36,35,'2020-04-25 18:55:13','2020-04-25 18:55:13',NULL,NULL),(44,1048586,38,35,'2020-04-25 20:53:33','2020-04-25 20:53:33',NULL,NULL),(45,1048586,31,23,'2020-05-11 16:10:10','2020-05-11 16:10:10',NULL,NULL),(46,1048586,28,23,'2020-05-11 16:14:29','2020-05-11 16:14:39',NULL,'<p>...</p>'),(47,1048586,31,23,'2020-06-22 15:12:44','2020-06-22 15:12:44',NULL,NULL),(48,1048586,31,43,'2020-08-13 03:48:20','2020-08-13 03:48:20','Comments for the Editor','<p>Dear Editor:</p>\r\n<p>Please find enclosed a manuscript entitled: “Renal Tubular Dysfunction Linked to Tenofovir in Antiretroviral Therapy in HIV-Infected Patients” which I am submitting for exclusive consideration of publication as an article.</p>\r\n<p>The article demonstrates the prevalence of RTD in the people living with HIV on TDF treatment, identify the risk factors associated and compare the 24-hours urine methods with the serum creatinine and its calculated clearance for the RTD identification. It is an important issue due to tenofovir is largerly used in developing and poor countries, in which tenofovir alafenamide is not avaiable.</p>\r\n<p>Thank you for your consideration of my work!</p>'),(49,1048586,32,43,'2020-08-20 04:13:51','2020-08-20 04:13:51',NULL,NULL),(50,1048586,33,52,'2020-09-09 01:33:30','2020-09-09 01:33:30','Comments for the Editor','<p>PPID: TIJE-0393-8740-60</p>'),(52,1048586,35,57,'2020-10-06 11:51:10','2020-10-06 11:51:10','Comments for the Editor','<p>Thank you for this opportunity</p>'),(53,1048586,36,58,'2020-10-07 17:13:37','2020-10-07 17:13:37','Comments for the Editor','<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dr. Ubi E. Isaac</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Department of Human Anatomy,</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cross River University</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; of Technology,</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Okuku Campus,</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; P.M.B. 1123, Calabar, Nigeria.</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Email: isaacubi@crutech.edu.ng</p>\r\n<p>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; October 5, 2020.</p>\r\n<p>&nbsp;</p>\r\n<p>The Editor-in-Chief,</p>\r\n<p>Tropical Health and Medical Research.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>RE: SUBMISSION OF MANUSCRIPT FOR CONSIDERATION FOR PUBLICATION</strong></p>\r\n<p>In a bid to contribute to the enhancement of public knowledge based on scientific research findings, I hereby submit on behalf of all the authors of the following paper manuscript entitled: “Morphological Alterations of the Rat Testicles Following Administration of Graded Doses of Gauva (<em>Psidium guajava</em>) Leaf Aqueous Extract,” to be considered for publication as an <strong><em>Original Research Article</em></strong> in Tropical Health and Medical Research.</p>\r\n<p>The manuscript has been borne out of quality/rigorous research and has not been published before nor is it currently being considered elsewhere. Hence, it is believed that its contents/findings would be of immense interest to a broad readership. The paper has been read and approved by all the authors. Moreover, there is no existing conflicts of interests since the research was carried out in the absence of any commercial or financial relationships that could have warranted such outcome.</p>\r\n<p>&nbsp;</p>\r\n<p>Thank you,</p>\r\n<p>UEI</p>\r\n<p>Ubi Isaac, Ph.D.</p>'),(54,1048586,37,57,'2020-10-20 03:22:54','2020-10-20 03:25:00','Revision of article text','<p>Revision Letter;</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p>1-I marked it in yellow by making all the desired changes in the relevant sections.2-I converted the references to the desired format (vencouver)</p>\r\n<p>3-I also made the requested changes in the tables</p>\r\n<p>&nbsp;</p>\r\n<p>Best Regards</p>\r\n<p>&nbsp;</p>\r\n<p>Corresponding Author: Erhan Okuyan M.D</p>'),(55,1048586,38,58,'2020-10-24 03:06:44','2020-10-24 03:06:44',NULL,NULL),(56,1048586,39,57,'2020-11-18 05:13:39','2020-11-18 05:26:06','article in press link','<p>valuable editorial team; I guess that the estimated publication date of my article will be in March 2021. If you find it appropriate, if you give a link to show my article with its DOI number in the printing process, health professionals all over the world can read our article and prepare for the 2nd wave.</p>\r\n<p>Yours truly</p>\r\n<p>Corresponding Author: Erhan Okuyan&nbsp;</p>'),(57,1048586,40,1,'2020-11-18 10:12:15','2020-11-18 10:13:45','publish article','<p>your article has been published in the \'online first article\'</p>'),(58,1048586,41,63,'2020-12-06 23:24:57','2020-12-06 23:24:57','Comments for the Editor','<p><strong><u>PPID: THMR-6294-9981-03</u></strong></p>\r\n<p>&nbsp;Dear Mr Chief Editor Sir:</p>\r\n<p>&nbsp;I am pleased to submit a case report entitled <strong>“Outcome Analysis Following Microvascular Free Gracilis Muscle Transfer for Multi-vector Facial Reanimation” </strong>for consideration of publication<em>.</em> In this manuscript, we report objective excursion and symmetry outcomes from a series of free gracilis muscle transfer (FGMT) cases and investigate the predictive intraoperative number of vectors anchored during flap inset on final outcomes. This manuscript has not yet been published and is not under consideration for publication elsewhere.&nbsp; We have no conflicts of interest to disclose, no sponsorship or funding and we are looking forward to your expert consideration in publishing in the journal.</p>'),(59,1048586,42,63,'2021-01-05 20:27:39','2021-01-05 20:32:00','Revision 1','<p>Dear Sir/Mdm</p>\r\n<p>We have received the revision request by the reviewers. Here we have uploaded the revised manuscript with rectified/ additional text (in highlight) together with its comment in it. We hope that it will suffice to the editor\'s request and we highly appreciate your kind consideration for publication of this manuscript. Thank you and best regards.&nbsp;</p>'),(62,1048586,45,56,'2021-01-20 21:14:57','2021-01-20 21:14:57','Comments for the Editor','<p>Dear Editor, First of all, I wish you healthy days like all healthcare professionals during this pandemic process.</p>\r\n<p>With this retorspective study we examined the number of patients who were RT-PCR positive for the second time, their demographic characteristics, hospitalization and mortality status. We determined the times between the two positive RT-PCRs. Especially in these days when vaccination studies are coming to&nbsp; end, it is known to everyone how important it is to become positive again. Thus, we aimed to increase the knowledge about repetitive positivity in the literature.</p>\r\n<p>I hope you include this simple work in your magazine.</p>\r\n<p>I wish you good work.</p>\r\n<p>Best regards.</p>'),(63,1048586,45,56,'2021-01-20 21:30:11','2021-01-20 21:30:11',NULL,NULL),(64,1048586,46,66,'2021-01-23 23:03:16','2021-01-23 23:03:16','Comments for the Editor','<p>Dear Editors;</p>\r\n<p>I present to you with all due respect our manuscript, which is named as “Intrauterine Insemination Success Rates in Different TSH Levels” to your discretion as a publication, to be regarded as an original research<em>. </em>The manuscript has not yet been previously published or submitted to another journal as a publication.</p>\r\n<p>There are quite a number of people who are planning for pregnancy and taking thyroid medications at the same time. Experts don’t always necessarily agree on when to start proper thyroid therapies on pregnant women. There is a possibility that some of such women may be taking the aforementioned therapies unnecessarily.</p>\r\n<p>In our study; it was our utmost objective to investigate the relationship between TSH levels and intrauterine insemination successes in couples with unexplained infertility who were undergoing intrauterine insemination treatments. We couldn’t find any statistically significant differences in terms of intrauterine insemination successes between the control group, which was defined with TSH levels below 2.5 mIU/L and the study group, which was defined with TSH levels between 2.5 mIU/L and 4.5 mIU/L. We are aware that a lot of infertile women who possess a TSH value between 2.5 and 4.5 mIU/L are currently receiving medication, and that this fact is causing an increase in unnecessary drug use for patients, along with an increase in health expenditures.</p>\r\n<p>We have investigated the cases between June 2017 and October 2019, who have applied to our infertility clinic. After the exclusion of a number of patients, which were excluded from the research in tandem with the exclusion criteria, a total of 225 cycles were performed in a total of 151 couples with unexplained infertility.</p>\r\n<p>UEAH Ethics Committee approval number: B.10.1TKH.4.34.H.GP.0.01/206. &nbsp;After the performance of the cycles, we have retrospectively screened the patient files which were residing in our archives.</p>\r\n<p>Should you have any questions about the manuscript, I shall be serving as the corresponding author. Thank you for your consideration.</p>\r\n<p>Sincerely,</p>\r\n<p>Ethics Committee Approval No: &nbsp;B.10.1TKH.4.34.H.GP.0.01/206</p>\r\n<p>Gizem Berfin Uluutku</p>\r\n<p>berfinuluutku@yahoo.com</p>\r\n<p>&nbsp;</p>'),(65,1048586,47,66,'2021-01-24 00:00:21','2021-01-24 00:00:21',NULL,NULL),(66,1048586,45,1,'2021-01-25 08:22:26','2021-01-25 08:22:26',NULL,NULL),(67,1048586,48,1,'2021-01-25 08:23:01','2021-01-25 08:23:43','Ensar Durmuş','<p>please upload the full article on ojs MLTJ</p>'),(68,1048586,49,1,'2021-01-25 08:24:28','2021-01-25 08:26:05','Gizem Berfin Uluutku Berfin Uluutku','<p>please upload the full article on ojs MLTJ</p>'),(69,1048586,48,56,'2021-01-28 17:40:16','2021-01-28 17:40:16',NULL,NULL),(70,1048586,48,56,'2021-01-28 17:40:38','2021-01-28 17:40:38',NULL,NULL),(71,1048586,50,56,'2021-01-28 17:40:50','2021-01-28 17:43:47','Abput your ojs system','<p>Dear Editor,</p>\r\n<p>Your OJS system doesn\'t work.<br>You can try it.<br>Everytime there was an error while I was submitting an article file.<br>So I sent this manuscript another journal. If you want I can send you another manuscript about healtcare workers in pandemic.<br><br></p>\r\n<p>Best regards</p>'),(72,1048586,42,63,'2021-01-28 21:59:01','2021-01-28 21:59:01',NULL,NULL),(73,1048586,51,63,'2021-01-28 21:59:41','2021-01-28 21:59:41',NULL,NULL),(74,1048586,52,63,'2021-01-28 22:00:59','2021-01-28 22:00:59',NULL,NULL),(75,1048586,53,63,'2021-01-28 22:01:12','2021-01-28 22:01:12',NULL,NULL),(76,1048586,54,63,'2021-01-28 22:28:04','2021-01-28 22:28:04',NULL,NULL),(77,1048586,55,63,'2021-01-28 23:24:19','2021-01-28 23:24:19',NULL,NULL),(78,1048586,56,63,'2021-01-31 20:40:45','2021-01-31 20:40:45',NULL,NULL),(79,1048586,49,1,'2021-02-02 09:17:59','2021-02-02 09:17:59',NULL,NULL),(80,1048586,57,1,'2021-02-02 09:30:19','2021-02-02 09:31:53','Problems we\'re having','<p>Greetings,</p>\r\n<p>We sincerely apologize, that our system is having trouble uploading the manuscript file<br>our team is working on it as fast as we can. Please send the file to my personal mail on Apinaga53@gmail.com</p>\r\n<p>Thank you for your attention</p>'),(81,1048586,58,1,'2021-02-02 09:33:35','2021-02-02 09:34:00','Problem we\'re having','<table id=\"component-grid-queries-querynotesgrid-6018b9a4b744a-table\">\r\n<tbody>\r\n<tr id=\"component-grid-queries-querynotesgrid-row-80\" class=\"gridRow\">\r\n<td class=\"first_column\">\r\n<p>Greetings,</p>\r\n<p>We sincerely apologize, that our system is having trouble uploading the manuscript file<br>our team is working on it as fast as we can. Please send the file to my personal mail on Apinaga53@gmail.com</p>\r\n<p>Thank you for your attention</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>'),(82,1048586,59,66,'2021-02-03 04:38:53','2021-02-03 04:38:53',NULL,NULL),(83,1048586,60,66,'2021-02-03 04:39:21','2021-02-03 04:42:48','trouble uploading to manuscript file','<p>Thank you for your interest . I have just send to file your personal e-mail adresses.</p>\r\n<p>Best regards</p>\r\n<p>Dr. Gizem Berfin Uluutku&nbsp;</p>'),(84,1048586,61,66,'2021-02-04 00:25:14','2021-02-04 00:28:21','author name','<p>Hello</p>\r\n<p>I noticed my name is written two times as a mistakely, ı tired to change it but ı cant change. Would yo give me a permission to fix it.</p>\r\n<p>Best regards</p>\r\n<p>Dr. Gizem Berfin Uluutku</p>'),(85,1048586,62,66,'2021-02-07 04:35:22','2021-02-07 04:35:22',NULL,NULL),(86,1048586,63,66,'2021-02-07 04:36:15','2021-02-07 04:36:15',NULL,NULL),(87,1048586,64,66,'2021-02-07 04:37:22','2021-02-08 08:42:30','author name is written wrong mistakely','<p>Hello,</p>\r\n<p>I noticed my name is written two times mistakely, I tried to cahnge it, but ı cant change. Would you give me a permission to fix it.</p>\r\n<p>Best regards</p>\r\n<p>Dr. Gizem Berfin Uluutku</p>'),(91,1048586,65,1,'2021-02-08 08:43:35','2021-02-08 08:47:19','Author Name Correction','<p>Greetings,</p>\r\n<p>Please send us the name of the author you want to fix</p>\r\n<p>We will fix it as soon as possible</p>\r\n<p>Sincerenly,</p>\r\n<p>Journal Admin</p>'),(92,1048586,65,66,'2021-02-09 23:03:59','2021-02-09 23:03:59',NULL,NULL),(93,1048586,65,66,'2021-02-09 23:04:14','2021-02-09 23:04:14',NULL,NULL),(94,1048586,66,66,'2021-02-20 20:52:03','2021-02-20 20:52:03',NULL,NULL),(95,1048586,67,66,'2021-02-22 23:17:46','2021-02-22 23:17:46',NULL,NULL);
/*!40000 ALTER TABLE `notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notification_mail_list`
--

DROP TABLE IF EXISTS `notification_mail_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notification_mail_list` (
  `notification_mail_list_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email` varchar(90) NOT NULL,
  `confirmed` tinyint(4) NOT NULL DEFAULT 0,
  `token` varchar(40) NOT NULL,
  `context` bigint(20) NOT NULL,
  PRIMARY KEY (`notification_mail_list_id`),
  UNIQUE KEY `notification_mail_list_email_context` (`email`,`context`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_mail_list`
--

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

--
-- Table structure for table `notification_settings`
--

DROP TABLE IF EXISTS `notification_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notification_settings` (
  `notification_id` bigint(20) NOT NULL,
  `locale` varchar(14) DEFAULT NULL,
  `setting_name` varchar(64) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `notification_settings_pkey` (`notification_id`,`locale`,`setting_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_settings`
--

LOCK TABLES `notification_settings` WRITE;
/*!40000 ALTER TABLE `notification_settings` DISABLE KEYS */;
INSERT INTO `notification_settings` VALUES (2004,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2005,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2006,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2007,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2008,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2009,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2010,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2011,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2012,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2013,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2014,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string'),(2015,'','contents','This is a kind reminder for you to check your journal\'s health through the editorial report.','string');
/*!40000 ALTER TABLE `notification_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notification_subscription_settings`
--

DROP TABLE IF EXISTS `notification_subscription_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notification_subscription_settings` (
  `setting_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `setting_name` varchar(64) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `user_id` bigint(20) NOT NULL,
  `context` bigint(20) NOT NULL,
  `setting_type` varchar(6) NOT NULL,
  PRIMARY KEY (`setting_id`)
) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notification_subscription_settings`
--

LOCK TABLES `notification_subscription_settings` WRITE;
/*!40000 ALTER TABLE `notification_subscription_settings` DISABLE KEYS */;
INSERT INTO `notification_subscription_settings` VALUES (1,'blocked_emailed_notification','8',2,1,'int'),(2,'blocked_emailed_notification','268435477',2,1,'int'),(3,'blocked_emailed_notification','8',3,1,'int'),(4,'blocked_emailed_notification','268435477',3,1,'int'),(5,'blocked_emailed_notification','8',7,1,'int'),(6,'blocked_emailed_notification','268435477',7,1,'int'),(7,'blocked_emailed_notification','8',43,1,'int'),(8,'blocked_emailed_notification','268435477',43,1,'int'),(9,'blocked_emailed_notification','8',52,1,'int'),(10,'blocked_emailed_notification','268435477',52,1,'int'),(13,'blocked_emailed_notification','8',63,1,'int'),(14,'blocked_emailed_notification','268435477',63,1,'int'),(15,'blocked_emailed_notification','268435477',56,1,'int'),(16,'blocked_emailed_notification','16777258',1,1,'int'),(17,'blocked_emailed_notification','16777258',29,1,'int'),(18,'blocked_emailed_notification','16777258',5,1,'int'),(19,'blocked_emailed_notification','16777258',1,1,'int'),(20,'blocked_emailed_notification','16777258',29,1,'int'),(21,'blocked_emailed_notification','16777258',13,1,'int'),(22,'blocked_emailed_notification','16777258',20,1,'int'),(23,'blocked_emailed_notification','16777258',5,1,'int'),(24,'blocked_emailed_notification','16777258',45,1,'int'),(25,'blocked_emailed_notification','16777258',14,1,'int'),(26,'blocked_emailed_notification','16777258',15,1,'int'),(27,'blocked_emailed_notification','16777258',16,1,'int'),(28,'blocked_emailed_notification','16777258',12,1,'int'),(29,'blocked_emailed_notification','16777258',11,1,'int'),(30,'blocked_emailed_notification','16777258',1,1,'int'),(31,'blocked_emailed_notification','16777258',29,1,'int'),(32,'blocked_emailed_notification','16777258',5,1,'int'),(33,'blocked_emailed_notification','16777258',1,1,'int'),(34,'blocked_emailed_notification','16777258',20,1,'int'),(35,'blocked_emailed_notification','16777258',5,1,'int'),(36,'blocked_emailed_notification','16777258',14,1,'int'),(37,'blocked_emailed_notification','16777258',15,1,'int'),(38,'blocked_emailed_notification','16777258',16,1,'int'),(39,'blocked_emailed_notification','16777258',8,1,'int');
/*!40000 ALTER TABLE `notification_subscription_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notifications` (
  `notification_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `level` bigint(20) NOT NULL,
  `type` bigint(20) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_read` datetime DEFAULT NULL,
  `assoc_type` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`notification_id`),
  KEY `notifications_context_id_user_id` (`context_id`,`user_id`,`level`),
  KEY `notifications_context_id` (`context_id`,`level`),
  KEY `notifications_assoc` (`assoc_type`,`assoc_id`),
  KEY `notifications_user_id_level` (`user_id`,`level`)
) ENGINE=InnoDB AUTO_INCREMENT=2021 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` VALUES (2,1,0,2,16777244,'2019-01-16 09:10:04',NULL,256,1),(73,1,1,2,16777217,'2019-03-28 12:38:10',NULL,1048585,1),(75,1,0,2,16777243,'2019-03-28 12:38:10',NULL,1048585,1),(76,1,0,2,16777245,'2019-03-28 12:38:10',NULL,1048585,1),(97,1,1,2,16777217,'2019-03-29 07:30:43',NULL,1048585,2),(99,1,5,2,16777217,'2019-03-29 07:30:44',NULL,1048585,2),(101,1,0,2,16777243,'2019-03-29 07:30:45',NULL,1048585,2),(102,1,0,2,16777245,'2019-03-29 07:30:45',NULL,1048585,2),(104,1,0,2,16777236,'2019-03-29 07:33:39','2019-03-29 07:33:47',523,1),(108,1,1,2,16777219,'2019-03-29 07:40:32',NULL,517,1),(112,1,7,2,16777235,'2019-03-29 07:59:02',NULL,1048585,2),(118,1,1,2,268435478,'2019-03-29 08:05:32','2019-03-29 08:05:33',1048585,2),(122,1,0,2,16777236,'2019-03-31 14:22:40','2019-03-31 14:22:47',523,2),(127,1,5,2,16777219,'2019-03-31 14:25:25',NULL,517,2),(137,1,1,2,16777217,'2019-03-31 14:36:09',NULL,1048585,3),(139,1,5,2,16777217,'2019-03-31 14:36:10',NULL,1048585,3),(141,1,0,2,16777243,'2019-03-31 14:36:10',NULL,1048585,3),(142,1,0,2,16777245,'2019-03-31 14:36:10',NULL,1048585,3),(147,1,1,2,16777217,'2019-03-31 14:38:18',NULL,1048585,4),(149,1,5,2,16777217,'2019-03-31 14:38:18',NULL,1048585,4),(151,1,0,2,16777243,'2019-03-31 14:38:18',NULL,1048585,4),(152,1,0,2,16777245,'2019-03-31 14:38:18',NULL,1048585,4),(157,1,1,2,16777217,'2019-03-31 14:41:16',NULL,1048585,5),(159,1,5,2,16777217,'2019-03-31 14:41:16',NULL,1048585,5),(161,1,0,2,16777243,'2019-03-31 14:41:16',NULL,1048585,5),(162,1,0,2,16777245,'2019-03-31 14:41:16',NULL,1048585,5),(164,1,0,2,16777236,'2019-03-31 14:55:18','2019-03-31 14:55:27',523,3),(169,1,0,2,16777236,'2019-03-31 14:57:35','2019-03-31 14:57:42',523,4),(174,1,0,2,16777236,'2019-03-31 14:58:55','2019-03-31 14:59:02',523,5),(176,1,6,3,16777227,'2019-03-31 14:59:21',NULL,517,5),(178,1,1,2,16777219,'2019-03-31 15:01:21',NULL,517,3),(179,1,1,2,16777219,'2019-03-31 15:02:45',NULL,517,4),(183,1,2,2,16777235,'2019-03-31 15:40:57',NULL,1048585,1),(184,1,3,2,16777235,'2019-03-31 15:40:57',NULL,1048585,1),(186,1,2,3,16777238,'2019-03-31 15:42:47',NULL,1048585,1),(188,1,2,2,16777235,'2019-03-31 15:45:16',NULL,1048585,5),(191,1,2,3,16777238,'2019-03-31 15:46:37',NULL,1048585,5),(193,1,1,2,268435478,'2019-03-31 15:46:58','2019-03-31 15:46:59',1048585,5),(194,1,7,2,16777235,'2019-03-31 15:51:10',NULL,1048585,4),(197,1,1,2,268435478,'2019-03-31 15:54:07','2019-03-31 15:54:09',1048585,4),(200,1,7,2,16777235,'2019-03-31 16:00:32',NULL,1048585,3),(203,1,1,2,268435478,'2019-03-31 16:01:44','2019-03-31 16:01:46',1048585,3),(220,1,5,2,268435478,'2019-03-31 19:00:07','2019-03-31 19:00:08',1048585,1),(222,1,1,2,268435477,'2019-03-31 19:03:07',NULL,0,0),(223,1,5,2,268435477,'2019-03-31 19:03:07',NULL,0,0),(224,1,2,2,268435477,'2019-03-31 19:03:07',NULL,0,0),(225,1,7,2,268435477,'2019-03-31 19:03:07',NULL,0,0),(226,1,6,2,268435477,'2019-03-31 19:03:07',NULL,0,0),(232,1,0,2,16777243,'2019-08-24 10:29:04',NULL,1048585,6),(233,1,0,2,16777245,'2019-08-24 10:29:04',NULL,1048585,6),(238,1,0,2,16777236,'2019-08-24 10:50:15','2019-08-24 10:50:26',523,6),(246,1,1,2,16777217,'2019-08-25 13:53:35',NULL,1048585,7),(248,1,5,2,16777217,'2019-08-25 13:53:35',NULL,1048585,7),(250,1,0,2,16777243,'2019-08-25 13:53:35',NULL,1048585,7),(251,1,0,2,16777245,'2019-08-25 13:53:35',NULL,1048585,7),(259,1,1,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(261,1,13,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(263,1,5,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(265,1,14,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(267,1,15,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(269,1,16,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(271,1,12,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(273,1,11,2,16777217,'2019-08-25 14:48:51',NULL,1048585,8),(275,1,0,2,16777243,'2019-08-25 14:48:52',NULL,1048585,8),(276,1,0,2,16777245,'2019-08-25 14:48:52',NULL,1048585,8),(278,1,0,2,16777236,'2019-08-28 03:48:10','2019-08-28 03:48:19',523,7),(282,1,0,2,16777236,'2019-08-28 03:50:47','2019-08-28 03:50:59',523,8),(288,1,1,2,16777217,'2019-08-29 08:26:50',NULL,1048585,9),(290,1,13,2,16777217,'2019-08-29 08:26:50',NULL,1048585,9),(292,1,5,2,16777217,'2019-08-29 08:26:50',NULL,1048585,9),(294,1,14,2,16777217,'2019-08-29 08:26:50',NULL,1048585,9),(296,1,15,2,16777217,'2019-08-29 08:26:50',NULL,1048585,9),(298,1,16,2,16777217,'2019-08-29 08:26:51',NULL,1048585,9),(300,1,12,2,16777217,'2019-08-29 08:26:51',NULL,1048585,9),(302,1,11,2,16777217,'2019-08-29 08:26:51',NULL,1048585,9),(304,1,0,2,16777243,'2019-08-29 08:26:51',NULL,1048585,9),(305,1,0,2,16777245,'2019-08-29 08:26:51',NULL,1048585,9),(307,1,0,2,16777236,'2019-08-30 04:06:54','2019-08-30 04:07:02',523,9),(311,1,16,2,16777219,'2019-08-30 04:14:00',NULL,517,7),(313,1,14,2,16777219,'2019-08-30 07:51:56',NULL,517,8),(315,1,5,2,16777219,'2019-08-30 07:59:01',NULL,517,6),(316,1,15,2,16777219,'2019-08-30 08:00:37',NULL,517,9),(347,1,1,2,16777217,'2019-08-31 08:32:41',NULL,1048585,10),(349,1,13,2,16777217,'2019-08-31 08:32:41',NULL,1048585,10),(351,1,5,2,16777217,'2019-08-31 08:32:41',NULL,1048585,10),(353,1,14,2,16777217,'2019-08-31 08:32:41',NULL,1048585,10),(355,1,15,2,16777217,'2019-08-31 08:32:42',NULL,1048585,10),(357,1,16,2,16777217,'2019-08-31 08:32:42',NULL,1048585,10),(359,1,12,2,16777217,'2019-08-31 08:32:42',NULL,1048585,10),(361,1,11,2,16777217,'2019-08-31 08:32:42',NULL,1048585,10),(363,1,0,2,16777243,'2019-08-31 08:32:42',NULL,1048585,10),(364,1,0,2,16777245,'2019-08-31 08:32:42',NULL,1048585,10),(366,1,0,2,16777236,'2019-08-31 08:35:03','2019-08-31 08:35:15',523,10),(370,1,12,2,16777219,'2019-08-31 08:37:46',NULL,517,10),(379,1,21,2,16777235,'2019-08-31 13:10:41',NULL,1048585,10),(385,1,12,2,268435478,'2019-08-31 13:18:22','2019-08-31 13:18:24',1048585,10),(386,1,6,2,268435478,'2019-08-31 13:18:22',NULL,1048585,10),(389,1,10,2,16777235,'2019-08-31 13:22:03',NULL,1048585,7),(394,1,12,2,268435478,'2019-08-31 13:22:47','2019-08-31 13:22:56',1048585,7),(395,1,14,2,268435478,'2019-08-31 13:22:47',NULL,1048585,7),(396,1,6,2,268435478,'2019-08-31 13:22:47',NULL,1048585,7),(399,1,20,2,16777235,'2019-08-31 13:30:50',NULL,1048585,9),(403,1,15,2,268435478,'2019-08-31 13:33:04',NULL,1048585,9),(404,1,6,2,268435478,'2019-08-31 13:33:04',NULL,1048585,9),(406,1,19,2,16777235,'2019-08-31 13:35:54',NULL,1048585,8),(410,1,16,2,268435478,'2019-08-31 13:37:32',NULL,1048585,8),(411,1,6,2,268435478,'2019-08-31 13:37:32',NULL,1048585,8),(413,1,9,2,16777235,'2019-08-31 13:40:23',NULL,1048585,6),(417,1,5,2,268435478,'2019-08-31 13:42:38',NULL,1048585,6),(418,1,6,2,268435478,'2019-08-31 13:42:38',NULL,1048585,6),(424,1,1,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(425,1,18,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(426,1,13,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(427,1,21,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(428,1,20,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(429,1,5,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(430,1,14,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(431,1,17,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(432,1,9,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(433,1,15,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(434,1,19,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(435,1,2,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(436,1,16,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(437,1,12,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(438,1,8,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(439,1,7,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(440,1,10,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(441,1,6,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(442,1,11,2,268435477,'2019-08-31 14:22:02',NULL,0,0),(445,1,1,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(447,1,13,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(449,1,20,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(451,1,5,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(453,1,14,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(455,1,15,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(457,1,16,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(459,1,12,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(461,1,11,2,16777217,'2019-09-20 19:43:29',NULL,1048585,11),(463,1,0,2,16777243,'2019-09-20 19:43:29',NULL,1048585,11),(464,1,0,2,16777245,'2019-09-20 19:43:29',NULL,1048585,11),(491,1,1,2,16777217,'2020-01-30 19:42:45',NULL,1048585,13),(493,1,13,2,16777217,'2020-01-30 19:42:45',NULL,1048585,13),(495,1,20,2,16777217,'2020-01-30 19:42:46',NULL,1048585,13),(497,1,5,2,16777217,'2020-01-30 19:42:46',NULL,1048585,13),(499,1,14,2,16777217,'2020-01-30 19:42:46',NULL,1048585,13),(501,1,15,2,16777217,'2020-01-30 19:42:46',NULL,1048585,13),(503,1,16,2,16777217,'2020-01-30 19:42:47',NULL,1048585,13),(505,1,12,2,16777217,'2020-01-30 19:42:47',NULL,1048585,13),(507,1,11,2,16777217,'2020-01-30 19:42:47',NULL,1048585,13),(509,1,0,2,16777243,'2020-01-30 19:42:47',NULL,1048585,13),(510,1,0,2,16777245,'2020-01-30 19:42:47',NULL,1048585,13),(513,1,1,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(515,1,13,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(517,1,20,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(519,1,5,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(521,1,14,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(523,1,15,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(525,1,16,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(527,1,12,2,16777217,'2020-01-31 15:54:31',NULL,1048585,14),(529,1,11,2,16777217,'2020-01-31 15:54:32',NULL,1048585,14),(531,1,0,2,16777243,'2020-01-31 15:54:32',NULL,1048585,14),(532,1,0,2,16777245,'2020-01-31 15:54:32',NULL,1048585,14),(535,1,0,2,16777236,'2020-02-04 11:15:11','2020-02-04 11:15:26',523,11),(539,1,0,2,16777236,'2020-02-04 11:17:43','2020-02-04 11:17:57',523,12),(550,1,1,2,16777219,'2020-02-04 13:17:25',NULL,517,11),(551,1,1,2,16777219,'2020-02-04 13:18:56',NULL,517,12),(558,1,1,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(560,1,13,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(562,1,20,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(564,1,5,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(566,1,14,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(568,1,15,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(570,1,16,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(572,1,12,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(574,1,11,2,16777217,'2020-02-16 16:26:09',NULL,1048585,15),(576,1,0,2,16777243,'2020-02-16 16:26:09',NULL,1048585,15),(577,1,0,2,16777245,'2020-02-16 16:26:09',NULL,1048585,15),(581,1,1,2,16777219,'2020-02-17 09:59:48',NULL,517,13),(592,1,25,3,16777249,'2020-02-17 11:57:04','2020-02-18 23:10:06',1048586,17),(593,1,18,3,16777249,'2020-02-17 12:17:06',NULL,1048586,14),(594,1,6,3,16777249,'2020-02-17 12:17:06','2020-02-19 08:14:32',1048586,14),(604,1,1,3,16777257,'2020-02-17 13:26:14','2020-02-18 22:54:37',517,12),(607,1,1,2,16777219,'2020-02-17 13:34:28',NULL,517,14),(615,1,0,2,16777236,'2020-02-19 07:14:39','2020-02-19 07:14:46',523,13),(619,1,0,2,16777236,'2020-02-19 07:18:04','2020-02-19 07:18:14',523,14),(623,1,1,2,16777219,'2020-02-19 07:21:41',NULL,517,16),(624,1,1,2,16777219,'2020-02-19 07:23:16',NULL,517,15),(626,1,25,3,16777249,'2020-02-19 08:00:05','2020-02-19 08:57:01',1048586,19),(642,1,5,3,16777249,'2020-02-24 10:49:55',NULL,1048586,24),(653,1,1,2,16777219,'2020-02-27 09:18:52',NULL,517,17),(654,1,5,2,16777219,'2020-02-27 09:18:52',NULL,517,17),(657,1,1,2,16777219,'2020-02-27 09:27:17',NULL,517,18),(658,1,5,2,16777219,'2020-02-27 09:27:17',NULL,517,18),(659,1,5,3,16777249,'2020-02-27 10:01:50',NULL,1048586,25),(660,1,28,2,16777235,'2020-02-27 10:02:38',NULL,1048585,15),(665,1,5,3,16777249,'2020-02-27 10:06:30',NULL,1048586,26),(666,1,25,2,16777235,'2020-02-27 10:07:03',NULL,1048585,13),(679,1,1,2,268435478,'2020-02-27 10:20:39','2020-02-27 10:20:40',1048585,13),(680,1,5,2,268435478,'2020-02-27 10:20:39',NULL,1048585,13),(681,1,6,2,268435478,'2020-02-27 10:20:39',NULL,1048585,13),(687,1,1,2,268435478,'2020-02-27 10:30:23','2020-02-27 10:30:25',1048585,15),(688,1,5,2,268435478,'2020-02-27 10:30:23',NULL,1048585,15),(689,1,1,2,268435477,'2020-02-27 10:36:15',NULL,0,0),(690,1,29,2,268435477,'2020-02-27 10:36:15',NULL,0,0),(691,1,18,2,268435477,'2020-02-27 10:36:15',NULL,0,0),(692,1,27,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(693,1,13,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(694,1,21,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(695,1,20,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(696,1,23,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(697,1,25,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(698,1,24,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(699,1,5,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(700,1,14,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(701,1,31,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(702,1,17,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(703,1,9,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(704,1,26,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(705,1,15,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(706,1,19,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(707,1,2,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(708,1,16,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(709,1,12,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(710,1,22,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(711,1,8,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(712,1,30,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(713,1,7,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(714,1,10,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(715,1,6,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(716,1,28,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(717,1,11,2,268435477,'2020-02-27 10:36:16',NULL,0,0),(722,1,1,2,16777219,'2020-02-28 07:54:54',NULL,517,19),(723,1,5,2,16777219,'2020-02-28 07:54:54',NULL,517,19),(724,1,29,2,16777219,'2020-02-28 07:54:54',NULL,517,19),(725,1,5,3,16777249,'2020-02-28 07:55:55',NULL,1048586,27),(726,1,29,3,16777249,'2020-02-28 07:55:55',NULL,1048586,27),(727,1,26,2,16777235,'2020-02-28 07:56:30',NULL,1048585,14),(740,1,1,2,268435478,'2020-02-28 09:03:38','2020-02-28 09:03:40',1048585,14),(741,1,5,2,268435478,'2020-02-28 09:03:38',NULL,1048585,14),(742,1,29,2,268435478,'2020-02-28 09:03:38',NULL,1048585,14),(743,1,6,2,268435478,'2020-02-28 09:03:38',NULL,1048585,14),(748,1,1,2,16777217,'2020-03-07 09:30:52',NULL,1048585,16),(750,1,29,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(752,1,13,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(754,1,20,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(756,1,5,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(758,1,14,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(760,1,15,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(762,1,16,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(764,1,12,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(766,1,11,2,16777217,'2020-03-07 09:30:53',NULL,1048585,16),(768,1,0,2,16777243,'2020-03-07 09:30:53',NULL,1048585,16),(769,1,0,2,16777245,'2020-03-07 09:30:53',NULL,1048585,16),(771,1,0,2,16777236,'2020-03-07 09:32:17','2020-03-07 09:32:27',523,15),(782,1,1,2,16777217,'2020-03-19 09:22:32',NULL,1048585,17),(784,1,29,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(786,1,13,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(788,1,20,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(790,1,5,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(792,1,14,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(794,1,15,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(796,1,16,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(798,1,12,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(800,1,11,2,16777217,'2020-03-19 09:22:33',NULL,1048585,17),(802,1,0,2,16777243,'2020-03-19 09:22:34',NULL,1048585,17),(803,1,0,2,16777245,'2020-03-19 09:22:34',NULL,1048585,17),(805,1,0,2,16777236,'2020-03-19 09:23:59','2020-03-19 09:24:12',523,16),(811,1,1,2,16777219,'2020-03-19 09:46:56',NULL,517,21),(812,1,1,2,16777219,'2020-03-19 09:49:07',NULL,517,22),(813,1,1,2,16777219,'2020-03-19 09:51:41',NULL,517,20),(814,1,1,2,16777219,'2020-03-19 09:53:51',NULL,517,23),(827,1,34,2,16777235,'2020-03-25 09:21:52',NULL,1048585,17),(830,1,1,2,268435478,'2020-03-25 09:22:57','2020-03-25 09:23:00',1048585,17),(831,1,33,2,16777235,'2020-03-25 09:24:31',NULL,1048585,16),(837,1,1,2,268435478,'2020-03-25 09:28:38','2020-03-25 09:28:42',1048585,16),(876,1,1,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(878,1,29,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(880,1,13,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(882,1,20,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(884,1,5,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(886,1,14,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(888,1,15,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(890,1,16,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(892,1,12,2,16777217,'2020-03-26 14:34:21',NULL,1048585,18),(894,1,11,2,16777217,'2020-03-26 14:34:22',NULL,1048585,18),(896,1,0,2,16777243,'2020-03-26 14:34:22',NULL,1048585,18),(897,1,0,2,16777245,'2020-03-26 14:34:22',NULL,1048585,18),(898,1,5,3,16777249,'2020-03-27 07:16:09',NULL,1048586,29),(903,1,23,2,16777235,'2020-03-27 10:33:16',NULL,1048585,11),(913,1,1,2,268435478,'2020-03-27 10:53:29','2020-03-27 10:53:31',1048585,11),(914,1,5,2,268435478,'2020-03-27 10:53:29',NULL,1048585,11),(915,1,6,2,268435478,'2020-03-27 10:53:29',NULL,1048585,11),(942,1,1,2,16777217,'2020-03-28 17:33:29',NULL,1048585,19),(944,1,29,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(946,1,13,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(948,1,20,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(950,1,5,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(952,1,14,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(954,1,15,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(956,1,16,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(958,1,12,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(960,1,11,2,16777217,'2020-03-28 17:33:30',NULL,1048585,19),(962,1,0,2,16777243,'2020-03-28 17:33:30',NULL,1048585,19),(963,1,0,2,16777245,'2020-03-28 17:33:30',NULL,1048585,19),(993,1,1,3,16777249,'2020-04-02 14:59:43',NULL,1048586,28),(998,1,0,2,16777236,'2020-04-06 05:49:39','2020-04-06 05:49:48',523,18),(1038,1,1,2,16777219,'2020-04-25 09:59:43',NULL,517,25),(1044,1,37,2,16777235,'2020-05-03 07:33:38',NULL,1048585,19),(1086,1,1,3,16777250,'2020-05-11 16:14:39',NULL,1048586,28),(1094,1,1,2,268435478,'2020-05-12 08:52:25','2020-05-12 08:52:27',1048585,19),(1095,1,1,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1096,1,29,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1097,1,18,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1098,1,36,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1099,1,27,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1100,1,13,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1101,1,21,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1102,1,20,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1103,1,23,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1104,1,25,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1105,1,24,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1106,1,38,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1107,1,5,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1108,1,14,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1109,1,35,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1110,1,31,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1111,1,17,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1112,1,9,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1113,1,37,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1114,1,26,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1115,1,15,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1116,1,34,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1117,1,19,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1118,1,2,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1119,1,16,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1120,1,33,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1121,1,12,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1122,1,22,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1123,1,8,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1124,1,30,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1125,1,7,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1126,1,10,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1127,1,6,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1128,1,28,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1129,1,11,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1130,1,32,2,268435477,'2020-05-12 08:56:25',NULL,0,0),(1133,1,1,2,16777219,'2020-05-12 09:49:51',NULL,517,26),(1150,1,1,2,16777217,'2020-05-21 18:18:35',NULL,1048585,20),(1152,1,29,2,16777217,'2020-05-21 18:18:36',NULL,1048585,20),(1154,1,13,2,16777217,'2020-05-21 18:18:36',NULL,1048585,20),(1156,1,20,2,16777217,'2020-05-21 18:18:36',NULL,1048585,20),(1158,1,5,2,16777217,'2020-05-21 18:18:36',NULL,1048585,20),(1160,1,14,2,16777217,'2020-05-21 18:18:36',NULL,1048585,20),(1162,1,15,2,16777217,'2020-05-21 18:18:37',NULL,1048585,20),(1164,1,16,2,16777217,'2020-05-21 18:18:37',NULL,1048585,20),(1166,1,12,2,16777217,'2020-05-21 18:18:37',NULL,1048585,20),(1168,1,11,2,16777217,'2020-05-21 18:18:37',NULL,1048585,20),(1170,1,0,2,16777243,'2020-05-21 18:18:37',NULL,1048585,20),(1171,1,0,2,16777245,'2020-05-21 18:18:37',NULL,1048585,20),(1173,1,0,2,16777236,'2020-05-26 14:00:52','2020-05-26 14:01:03',523,19),(1177,1,1,2,16777219,'2020-05-27 09:34:15',NULL,517,27),(1183,1,40,2,16777235,'2020-06-10 15:47:36',NULL,1048585,20),(1187,1,1,2,16777219,'2020-06-17 10:30:15',NULL,517,28),(1189,1,1,2,268435478,'2020-06-17 13:28:10','2020-06-17 13:28:12',1048585,20),(1190,1,0,2,16777236,'2020-07-13 09:35:49','2020-07-13 09:35:56',523,20),(1197,1,1,2,16777219,'2020-07-13 16:28:33',NULL,517,29),(1211,1,1,2,16777217,'2020-07-15 02:55:04',NULL,1048585,21),(1213,1,29,2,16777217,'2020-07-15 02:55:05',NULL,1048585,21),(1215,1,13,2,16777217,'2020-07-15 02:55:05',NULL,1048585,21),(1217,1,20,2,16777217,'2020-07-15 02:55:05',NULL,1048585,21),(1219,1,5,2,16777217,'2020-07-15 02:55:05',NULL,1048585,21),(1221,1,14,2,16777217,'2020-07-15 02:55:05',NULL,1048585,21),(1223,1,15,2,16777217,'2020-07-15 02:55:05',NULL,1048585,21),(1225,1,16,2,16777217,'2020-07-15 02:55:05',NULL,1048585,21),(1227,1,12,2,16777217,'2020-07-15 02:55:06',NULL,1048585,21),(1229,1,11,2,16777217,'2020-07-15 02:55:06',NULL,1048585,21),(1231,1,0,2,16777243,'2020-07-15 02:55:06',NULL,1048585,21),(1232,1,0,2,16777245,'2020-07-15 02:55:06',NULL,1048585,21),(1234,1,0,2,16777236,'2020-07-15 08:41:53','2020-07-15 08:42:03',523,21),(1237,1,1,2,16777219,'2020-07-21 20:47:16',NULL,517,30),(1243,1,1,2,16777217,'2020-07-26 09:50:58',NULL,1048585,22),(1245,1,29,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1247,1,13,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1249,1,20,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1251,1,5,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1253,1,14,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1255,1,15,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1257,1,16,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1259,1,12,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1261,1,11,2,16777217,'2020-07-26 09:50:59',NULL,1048585,22),(1263,1,0,2,16777243,'2020-07-26 09:50:59',NULL,1048585,22),(1264,1,0,2,16777245,'2020-07-26 09:50:59',NULL,1048585,22),(1270,1,1,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1272,1,29,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1274,1,13,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1276,1,20,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1278,1,5,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1280,1,14,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1282,1,15,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1284,1,16,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1286,1,12,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1288,1,11,2,16777217,'2020-07-26 09:54:37',NULL,1048585,23),(1290,1,0,2,16777243,'2020-07-26 09:54:37',NULL,1048585,23),(1291,1,0,2,16777245,'2020-07-26 09:54:37',NULL,1048585,23),(1293,1,0,2,16777236,'2020-07-26 09:56:48','2020-07-26 09:56:53',523,22),(1300,1,0,2,16777236,'2020-07-26 09:59:28','2020-07-26 09:59:32',523,23),(1306,1,1,2,16777219,'2020-07-28 07:21:03',NULL,517,31),(1307,1,1,2,16777219,'2020-07-28 07:22:26',NULL,517,33),(1308,1,1,2,16777219,'2020-07-28 07:24:45',NULL,517,32),(1309,1,1,2,16777219,'2020-07-28 07:27:00',NULL,517,34),(1314,1,23,2,16777235,'2020-07-28 07:30:13',NULL,1048585,18),(1325,1,1,2,16777217,'2020-08-13 03:52:43',NULL,1048585,24),(1327,1,29,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1329,1,13,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1331,1,20,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1333,1,5,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1335,1,14,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1337,1,15,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1339,1,16,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1341,1,12,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1343,1,11,2,16777217,'2020-08-13 03:52:45',NULL,1048585,24),(1345,1,0,2,16777243,'2020-08-13 03:52:46',NULL,1048585,24),(1346,1,0,2,16777245,'2020-08-13 03:52:46',NULL,1048585,24),(1348,1,0,2,16777236,'2020-08-13 10:43:38','2020-08-13 10:43:43',523,24),(1352,1,1,2,16777219,'2020-08-15 09:38:54',NULL,517,35),(1356,1,43,2,16777235,'2020-08-20 13:55:02',NULL,1048585,24),(1374,1,42,2,16777235,'2020-08-24 15:52:31',NULL,1048585,22),(1377,1,42,2,16777235,'2020-08-24 15:54:17',NULL,1048585,23),(1387,1,1,2,268435478,'2020-08-26 14:06:00','2020-08-26 14:06:03',1048585,22),(1393,1,1,2,268435478,'2020-08-26 14:09:54','2020-08-26 14:09:55',1048585,23),(1403,1,1,2,268435478,'2020-08-26 14:17:52','2020-08-26 14:17:54',1048585,18),(1408,1,1,2,268435478,'2020-08-26 14:22:03','2020-08-26 14:22:05',1048585,24),(1442,1,1,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1444,1,29,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1446,1,13,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1448,1,20,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1450,1,5,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1452,1,45,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1454,1,14,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1456,1,15,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1458,1,16,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1460,1,12,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1462,1,11,2,16777217,'2020-09-08 12:49:57',NULL,1048585,25),(1464,1,0,2,16777243,'2020-09-08 12:49:57',NULL,1048585,25),(1465,1,0,2,16777245,'2020-09-08 12:49:57',NULL,1048585,25),(1470,1,1,2,16777217,'2020-09-09 01:37:22',NULL,1048585,26),(1472,1,29,2,16777217,'2020-09-09 01:37:23',NULL,1048585,26),(1474,1,13,2,16777217,'2020-09-09 01:37:23',NULL,1048585,26),(1476,1,20,2,16777217,'2020-09-09 01:37:23',NULL,1048585,26),(1478,1,5,2,16777217,'2020-09-09 01:37:23',NULL,1048585,26),(1480,1,45,2,16777217,'2020-09-09 01:37:23',NULL,1048585,26),(1482,1,14,2,16777217,'2020-09-09 01:37:24',NULL,1048585,26),(1484,1,15,2,16777217,'2020-09-09 01:37:24',NULL,1048585,26),(1486,1,16,2,16777217,'2020-09-09 01:37:24',NULL,1048585,26),(1488,1,12,2,16777217,'2020-09-09 01:37:24',NULL,1048585,26),(1490,1,11,2,16777217,'2020-09-09 01:37:24',NULL,1048585,26),(1492,1,0,2,16777243,'2020-09-09 01:37:24',NULL,1048585,26),(1493,1,0,2,16777245,'2020-09-09 01:37:24',NULL,1048585,26),(1496,1,0,2,16777236,'2020-09-11 05:01:28','2020-09-11 05:01:44',523,25),(1498,1,17,3,16777227,'2020-09-11 05:03:02',NULL,517,36),(1520,1,0,2,16777236,'2020-09-28 06:07:09','2020-09-28 06:07:16',523,26),(1527,1,51,2,16777234,'2020-09-28 06:23:29',NULL,1048585,25),(1576,1,1,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1578,1,29,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1580,1,13,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1582,1,20,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1584,1,5,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1586,1,45,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1588,1,14,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1590,1,15,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1592,1,16,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1594,1,12,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1596,1,11,2,16777217,'2020-10-06 12:11:22',NULL,1048585,28),(1598,1,0,2,16777243,'2020-10-06 12:11:22',NULL,1048585,28),(1599,1,0,2,16777245,'2020-10-06 12:11:22',NULL,1048585,28),(1601,1,1,2,16777219,'2020-10-07 11:25:42',NULL,517,37),(1602,1,52,3,16777232,'2020-10-07 11:26:24',NULL,1048585,26),(1607,1,1,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1609,1,29,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1611,1,13,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1613,1,20,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1615,1,5,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1617,1,45,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1619,1,14,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1621,1,15,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1623,1,16,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1625,1,12,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1627,1,11,2,16777217,'2020-10-07 17:25:45',NULL,1048585,29),(1629,1,0,2,16777243,'2020-10-07 17:25:45',NULL,1048585,29),(1630,1,0,2,16777245,'2020-10-07 17:25:45',NULL,1048585,29),(1632,1,0,2,16777236,'2020-10-09 07:46:37','2020-10-09 07:46:39',523,27),(1637,1,0,2,16777236,'2020-10-09 07:48:53','2020-10-09 07:48:54',523,28),(1643,1,1,2,16777219,'2020-10-15 10:25:35',NULL,517,38),(1645,1,1,2,16777219,'2020-10-17 07:46:28',NULL,517,39),(1652,1,1,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1654,1,29,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1656,1,13,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1658,1,20,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1660,1,5,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1662,1,45,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1664,1,14,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1666,1,15,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1668,1,16,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1670,1,12,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1672,1,11,2,16777217,'2020-10-22 03:47:07',NULL,1048585,30),(1674,1,0,2,16777243,'2020-10-22 03:47:07',NULL,1048585,30),(1675,1,0,2,16777245,'2020-10-22 03:47:07',NULL,1048585,30),(1677,1,0,2,16777236,'2020-10-29 08:28:55','2020-10-29 08:28:56',523,29),(1687,1,1,2,16777219,'2020-11-07 15:48:30',NULL,517,40),(1688,1,59,3,16777232,'2020-11-07 15:49:40',NULL,1048585,30),(1689,1,40,2,16777230,'2020-11-14 13:42:10',NULL,1048585,21),(1690,1,1,2,16777251,'2020-11-14 13:42:10','2020-11-14 13:42:12',1048585,21),(1693,1,57,2,16777235,'2020-11-14 13:44:05',NULL,1048585,28),(1701,1,1,3,16777249,'2020-11-18 05:26:06',NULL,1048586,39),(1712,1,1,2,268435478,'2020-11-18 09:56:39','2020-11-18 09:56:39',1048585,28),(1718,1,1,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1719,1,29,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1720,1,18,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1721,1,42,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1722,1,36,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1723,1,27,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1724,1,13,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1725,1,21,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1726,1,20,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1727,1,23,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1728,1,25,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1729,1,55,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1730,1,24,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1731,1,47,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1732,1,56,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1733,1,38,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1734,1,5,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1735,1,40,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1736,1,45,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1737,1,51,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1738,1,14,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1739,1,35,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1740,1,31,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1741,1,17,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1742,1,9,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1743,1,52,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1744,1,58,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1745,1,46,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1746,1,37,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1747,1,26,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1748,1,15,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1749,1,48,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1750,1,34,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1751,1,49,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1752,1,19,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1753,1,60,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1754,1,2,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1755,1,16,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1756,1,33,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1757,1,41,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1758,1,57,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1759,1,12,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1760,1,22,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1761,1,8,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1762,1,30,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1763,1,50,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1764,1,59,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1765,1,61,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1766,1,43,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1767,1,7,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1768,1,10,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1769,1,6,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1770,1,28,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1771,1,11,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1772,1,53,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1773,1,54,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1774,1,39,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1775,1,32,2,268435477,'2020-11-18 10:10:52',NULL,0,0),(1781,1,1,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1783,1,29,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1785,1,13,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1787,1,20,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1789,1,5,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1791,1,45,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1793,1,14,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1795,1,15,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1797,1,16,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1799,1,12,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1801,1,11,2,16777217,'2020-12-06 23:42:24',NULL,1048585,32),(1803,1,0,2,16777243,'2020-12-06 23:42:24',NULL,1048585,32),(1804,1,0,2,16777245,'2020-12-06 23:42:24',NULL,1048585,32),(1810,1,1,2,16777217,'2021-01-02 05:42:17',NULL,1048585,33),(1812,1,29,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1814,1,13,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1816,1,20,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1818,1,5,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1820,1,45,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1822,1,14,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1824,1,15,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1826,1,16,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1828,1,12,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1830,1,11,2,16777217,'2021-01-02 05:42:18',NULL,1048585,33),(1832,1,0,2,16777243,'2021-01-02 05:42:18',NULL,1048585,33),(1833,1,0,2,16777245,'2021-01-02 05:42:18',NULL,1048585,33),(1835,1,0,2,16777236,'2021-01-02 05:44:33','2021-01-02 05:44:35',523,30),(1839,1,0,2,16777236,'2021-01-02 05:49:28','2021-01-02 05:49:30',523,31),(1848,1,58,2,16777235,'2021-01-02 06:11:22',NULL,1048585,29),(1851,1,1,2,268435478,'2021-01-02 06:12:52','2021-01-02 06:12:52',1048585,29),(1856,1,1,2,16777219,'2021-01-03 17:25:04',NULL,517,41),(1858,1,1,2,16777219,'2021-01-04 17:08:48',NULL,517,42),(1863,1,1,3,16777249,'2021-01-05 20:32:00',NULL,1048586,42),(1877,1,1,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1879,1,29,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1881,1,13,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1883,1,20,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1885,1,5,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1887,1,45,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1889,1,14,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1891,1,15,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1893,1,16,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1895,1,12,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1897,1,11,2,16777217,'2021-01-20 21:27:27',NULL,1048585,36),(1899,1,0,2,16777243,'2021-01-20 21:27:27',NULL,1048585,36),(1900,1,0,2,16777245,'2021-01-20 21:27:27',NULL,1048585,36),(1912,1,1,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1914,1,29,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1916,1,13,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1918,1,20,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1920,1,5,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1922,1,45,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1924,1,14,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1926,1,15,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1928,1,16,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1930,1,12,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1932,1,11,2,16777217,'2021-01-23 23:52:30',NULL,1048585,38),(1934,1,0,2,16777243,'2021-01-23 23:52:30',NULL,1048585,38),(1935,1,0,2,16777245,'2021-01-23 23:52:30',NULL,1048585,38),(1938,1,56,3,16777249,'2021-01-25 08:23:43','2021-01-28 22:08:16',1048586,48),(1939,1,1,3,16777249,'2021-01-28 17:43:47',NULL,1048586,50),(1940,1,56,3,16777249,'2021-02-02 09:31:53','2021-02-02 16:24:09',1048586,57),(1941,1,66,3,16777249,'2021-02-02 09:34:00','2021-02-07 04:33:45',1048586,58),(1943,1,1,3,16777249,'2021-02-04 00:28:21',NULL,1048586,61),(1945,1,0,2,16777236,'2021-02-06 11:34:28','2021-02-06 11:34:30',523,32),(1950,1,1,3,16777249,'2021-02-07 04:39:40',NULL,1048586,64),(1952,1,66,3,16777249,'2021-02-08 08:47:19','2021-02-09 23:35:41',1048586,65),(1953,1,1,2,16777219,'2021-02-10 14:36:14',NULL,517,43),(1957,1,1,2,16777219,'2021-02-19 11:37:46',NULL,517,44),(1960,1,65,2,16777235,'2021-02-19 11:42:40',NULL,1048585,33),(1968,1,1,2,268435478,'2021-02-19 13:34:24','2021-02-19 13:34:25',1048585,33),(1970,1,0,3,16777220,'2021-02-20 08:59:20',NULL,1048585,40),(1971,1,0,3,16777222,'2021-02-20 08:59:20',NULL,1048585,40),(1972,1,0,3,16777223,'2021-02-20 08:59:20',NULL,1048585,40),(1973,1,0,3,16777224,'2021-02-20 08:59:20',NULL,1048585,40),(1974,1,1,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1975,1,1,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1976,1,29,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1977,1,29,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1978,1,13,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1979,1,13,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1980,1,20,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1981,1,20,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1982,1,5,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1983,1,5,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1984,1,45,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1985,1,45,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1986,1,14,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1987,1,14,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1988,1,15,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1989,1,15,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1990,1,16,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1991,1,16,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1992,1,12,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1993,1,12,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1994,1,11,2,16777217,'2021-02-20 08:59:20',NULL,1048585,40),(1995,1,11,3,16777247,'2021-02-20 08:59:20',NULL,1048585,40),(1996,1,0,2,16777243,'2021-02-20 08:59:20',NULL,1048585,40),(1997,1,0,2,16777245,'2021-02-20 08:59:20',NULL,1048585,40),(1998,1,66,2,16777230,'2021-02-20 10:16:33',NULL,1048585,38),(1999,1,1,2,16777251,'2021-02-20 10:16:33','2021-02-20 10:16:35',1048585,38),(2000,1,63,2,16777230,'2021-02-20 10:17:09',NULL,1048585,32),(2001,1,1,2,16777251,'2021-02-20 10:17:09','2021-02-20 10:17:11',1048585,32),(2004,1,1,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2005,1,29,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2006,1,5,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2007,1,13,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2008,1,20,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2009,1,45,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2010,1,14,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2011,1,15,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2012,1,16,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2013,1,12,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2014,1,11,3,16777258,'2021-02-23 19:50:45',NULL,0,0),(2015,1,8,3,16777258,'2021-02-23 19:50:45',NULL,0,0);
/*!40000 ALTER TABLE `notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oai_resumption_tokens`
--

DROP TABLE IF EXISTS `oai_resumption_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oai_resumption_tokens` (
  `token` varchar(32) NOT NULL,
  `expire` bigint(20) NOT NULL,
  `record_offset` int(11) NOT NULL,
  `params` text DEFAULT NULL,
  UNIQUE KEY `oai_resumption_tokens_pkey` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oai_resumption_tokens`
--

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

--
-- Table structure for table `plugin_settings`
--

DROP TABLE IF EXISTS `plugin_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plugin_settings` (
  `plugin_name` varchar(80) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  `setting_name` varchar(80) NOT NULL,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `plugin_settings_pkey` (`plugin_name`,`context_id`,`setting_name`),
  KEY `plugin_settings_plugin_name` (`plugin_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plugin_settings`
--

LOCK TABLES `plugin_settings` WRITE;
/*!40000 ALTER TABLE `plugin_settings` DISABLE KEYS */;
INSERT INTO `plugin_settings` VALUES ('acronplugin',0,'crontab','[{\"className\":\"plugins.generic.usageStats.UsageStatsLoader\",\"frequency\":{\"hour\":24},\"args\":[\"autoStage\"]},{\"className\":\"plugins.generic.usageStats.UsageStatsLoader\",\"frequency\":{\"hour\":24},\"args\":[\"autoStage\"]},{\"className\":\"plugins.importexport.doaj.DOAJInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.crossref.CrossrefInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.datacite.DataciteInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.generic.usageStats.UsageStatsLoader\",\"frequency\":{\"hour\":24},\"args\":[\"autoStage\"]},{\"className\":\"plugins.importexport.doaj.DOAJInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.crossref.CrossrefInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.datacite.DataciteInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.generic.usageStats.UsageStatsLoader\",\"frequency\":{\"hour\":24},\"args\":[\"autoStage\"]},{\"className\":\"plugins.importexport.doaj.DOAJInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.crossref.CrossrefInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.datacite.DataciteInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.generic.usageStats.UsageStatsLoader\",\"frequency\":{\"hour\":24},\"args\":[\"autoStage\"]},{\"className\":\"plugins.importexport.doaj.DOAJInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.crossref.CrossrefInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.datacite.DataciteInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.generic.usageStats.UsageStatsLoader\",\"frequency\":{\"hour\":24},\"args\":[\"autoStage\"]},{\"className\":\"plugins.importexport.doaj.DOAJInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.crossref.CrossrefInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"plugins.importexport.datacite.DataciteInfoSender\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"lib.pkp.classes.task.ReviewReminder\",\"frequency\":{\"hour\":24},\"args\":[]},{\"className\":\"lib.pkp.classes.task.StatisticsReport\",\"frequency\":{\"day\":\"1\"},\"args\":[]},{\"className\":\"classes.tasks.SubscriptionExpiryReminder\",\"frequency\":{\"day\":\"1\"},\"args\":[]}]','object'),('acronplugin',0,'enabled','1','bool'),('bilahkanan',1,'blockContent','{\"en_US\":\"<div id=\\\"body\\\">\\r\\n<div id=\\\"sidebar\\\">&nbsp;<\\/div>\\r\\n<div id=\\\"customblock-Menu\\\" class=\\\"block custom\\\">\\r\\n<table width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" align=\\\"left\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/aimandscope\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Aim &amp; Scope<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\"><a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/authorguidelines\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">&nbsp;&nbsp;<span style=\\\"color: #ffffff;\\\"><strong>Author Guidelines<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/PeerReviewProcess\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Peer Review Mechanism<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp; <a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/PeerReviewers\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Peer Reviewers<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/ScreeningforPlagiarism\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">&nbsp;<span style=\\\"color: #ffffff;\\\"><strong>Plagiarism Policy<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;<a href=\\\"https:\\/\\/drive.google.com\\/file\\/d\\/1CTnuoiyDaBrkO0mi8-FY9AClntWSsgiX\\/view?usp=sharing\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">&nbsp;<span style=\\\"color: #ffffff;\\\"><strong>Copyrights Statement<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/articleprocessingcharges\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Article Processing Charges<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/about\\/editorialTeam\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">&nbsp;<span style=\\\"color: #ffffff;\\\"><strong>Editorial Team<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;&nbsp;<a href=\\\"https:\\/\\/drive.google.com\\/file\\/d\\/19aMO7GGs4uBD28kp2cyxhCZcMzWQ4PRA\\/view?usp=sharing\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Paper Template<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/issue\\/archive\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Archives<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp; <a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/Indexing\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Indexing<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/PublicationEthicsandMalpracticeState\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Publication Ethics<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp; <a href=\\\"http:\\/\\/www.issn.lipi.go.id\\/issn.cgi?daftar&amp;1555201714&amp;526&amp;&amp;\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>ISSN 2684-740X (Online)<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\"><a href=\\\"https:\\/\\/statcounter.com\\/p12245674\\/summary\\/?account_id=5355643&amp;login_id=1&amp;code=272decdaab84196609f4271b41773644&amp;guest_login=1\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">&nbsp;&nbsp;<span style=\\\"color: #ffffff;\\\"><strong>Visitor Statistics<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp; <a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/JournalScientificStatement\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Journal Scientific Statement<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\">&nbsp;&nbsp;<a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/CitationAnalysis\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>Citation Analysis<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td style=\\\"height: 25px; padding-top: 3px; vertical-align: middle; border-bottom: 1px solid #ffffff; background-color: #4682b4; text-align: center;\\\"><a href=\\\"http:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/OpenAccessPolicy\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><span style=\\\"color: #ffffff;\\\"><strong>&nbsp; Open Access Policy<\\/strong><\\/span><\\/a><\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div id=\\\"customblock-SUPPORTED-BY\\\" class=\\\"block custom\\\">\\r\\n<p><img src=\\\"https:\\/\\/i.ibb.co\\/61c5rYL\\/SUPPORTED.png\\\" alt=\\\"\\\" width=\\\"250\\\" height=\\\"51\\\"><\\/p>\\r\\n<\\/div>\\r\\n<div id=\\\"customblock-PATELKI\\\" class=\\\"block custom\\\">\\r\\n<p><img src=\\\"\\/public\\/site\\/images\\/admin\\/logoRJI-t.png\\\" width=\\\"250\\\" height=\\\"104\\\"><\\/p>\\r\\n<\\/div>\\r\\n<div id=\\\"customblock-webstatistic\\\" class=\\\"pkp_block block_custom\\\">\\r\\n<div class=\\\"content\\\">\\r\\n<div style=\\\"border: 1px; padding: 2; background-color: #1e9c00; text-align: center; color: #ffffff;\\\"><strong>Web Statistics<\\/strong><\\/div>\\r\\n<div style=\\\"border: 1px #1E9C00 solid; padding: 2px; background-color: #d1ffb8; text-align: center;\\\"><a href=\\\"http:\\/\\/statcounter.com\\/p11665432\\/?guest=1\\\">View My Web Stats<\\/a> <br><a href=\\\"https:\\/\\/info.flagcounter.com\\/7i9B\\\"><img src=\\\"https:\\/\\/s01.flagcounter.com\\/count2\\/7i9B\\/bg_FFFFFF\\/txt_000000\\/border_CCCCCC\\/columns_3\\/maxflags_9\\/viewers_THMR+Visitors\\/labels_0\\/pageviews_1\\/flags_0\\/percent_0\\/\\\" alt=\\\"Flag Counter\\\" border=\\\"0\\\"><\\/a><\\/div>\\r\\n<\\/div>\\r\\n<!-- Default Statcounter code for THMR\\r\\nhttp:\\/\\/medlabtechnojournal.com\\/index.php\\/JAK\\/index -->\\r\\n<div class=\\\"statcounter\\\"><a title=\\\"Web Analytics\\\" href=\\\"https:\\/\\/statcounter.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"><img class=\\\"statcounter\\\" src=\\\"https:\\/\\/c.statcounter.com\\/12245674\\/0\\/241a63ce\\/0\\/\\\" alt=\\\"Web Analytics\\\"><\\/a><\\/div>\\r\\n<!-- End of Statcounter Code -->\\r\\n<p><a href=\\\"https:\\/\\/statcounter.com\\/p12245674\\/summary\\/?account_id=5355643&amp;login_id=1&amp;code=272decdaab84196609f4271b41773644&amp;guest_login=1\\\">View My Stats<\\/a><\\/p>\\r\\n<\\/div>\"}','object'),('bilahkanan',1,'blockTitle','{\"en_US\":\"bilahkanan\"}','object'),('bilahkanan',1,'context','1','int'),('bilahkanan',1,'enabled','1','bool'),('bilahkanan',1,'seq','2','int'),('citationstylelanguageplugin',1,'enabled','1','bool'),('crossrefexportplugin',1,'automaticRegistration','1','bool'),('crossrefexportplugin',1,'depositorEmail','leka.zns@gmail.com','string'),('crossrefexportplugin',1,'depositorName','Leka Lutpiatina','string'),('crossrefexportplugin',1,'password','ba_8685_ehw','string'),('crossrefexportplugin',1,'testMode','0','bool'),('crossrefexportplugin',1,'username','baibau','string'),('customblockmanagerplugin',1,'blocks','[\"bilahkanan\"]','object'),('customblockmanagerplugin',1,'enabled','1','bool'),('defaultthemeplugin',0,'enabled','1','bool'),('defaultthemeplugin',1,'baseColour','#ffffff','string'),('defaultthemeplugin',1,'enabled','1','bool'),('defaultthemeplugin',1,'showDescriptionInJournalIndex','true','string'),('defaultthemeplugin',1,'typography','notoSans','string'),('defaultthemeplugin',1,'useHomepageImageAsHeader','false','string'),('developedbyblockplugin',0,'enabled','0','bool'),('developedbyblockplugin',0,'seq','0','int'),('developedbyblockplugin',1,'enabled','0','bool'),('doipubidplugin',1,'doiIssueSuffixPattern',NULL,'string'),('doipubidplugin',1,'doiPrefix','10.35916','string'),('doipubidplugin',1,'doiPublicationSuffixPattern',NULL,'string'),('doipubidplugin',1,'doiRepresentationSuffixPattern',NULL,'string'),('doipubidplugin',1,'doiSuffix','default','string'),('doipubidplugin',1,'enabled','1','bool'),('doipubidplugin',1,'enableIssueDoi','1','bool'),('doipubidplugin',1,'enablePublicationDoi','1','bool'),('doipubidplugin',1,'enableRepresentationDoi','1','bool'),('driverplugin',1,'enabled','1','bool'),('dublincoremetaplugin',1,'enabled','1','bool'),('googleanalyticsplugin',1,'enabled','1','bool'),('googlescholarplugin',1,'enabled','1','bool'),('healthsciencesthemeplugin',1,'baseColour','#10beca','text'),('healthsciencesthemeplugin',1,'enabled','1','bool'),('htmlarticlegalleyplugin',1,'enabled','1','bool'),('informationblockplugin',1,'enabled','0','bool'),('languagetoggleblockplugin',0,'enabled','1','bool'),('languagetoggleblockplugin',0,'seq','4','int'),('languagetoggleblockplugin',1,'enabled','0','bool'),('lensgalleyplugin',1,'enabled','1','bool'),('makesubmissionblockplugin',1,'enabled','1','bool'),('openaireplugin',1,'enabled','1','bool'),('orcidprofileplugin',1,'enabled','1','bool'),('pdfjsviewerplugin',1,'enabled','1','bool'),('recommendbyauthorplugin',1,'enabled','1','bool'),('recommendbysimilarityplugin',1,'enabled','1','bool'),('resolverplugin',1,'enabled','1','bool'),('staticpagesplugin',1,'enabled','1','bool'),('subscriptionblockplugin',1,'enabled','0','bool'),('tinymceplugin',0,'enabled','1','bool'),('tinymceplugin',1,'enabled','1','bool'),('urnpubidplugin',1,'enabled','1','bool'),('usageeventplugin',0,'enabled','1','bool'),('usageeventplugin',0,'uniqueSiteId','5c3e94ae54b31','string'),('usagestatsplugin',0,'accessLogFileParseRegex','/^(?P<ip>\\S+) \\S+ \\S+ \\[(?P<date>.*?)\\] \"\\S+ (?P<url>\\S+).*?\" (?P<returnCode>\\S+) \\S+ \".*?\" \"(?P<userAgent>.*?)\"/','string'),('usagestatsplugin',0,'chartType','bar','string'),('usagestatsplugin',0,'createLogFiles','1','bool'),('usagestatsplugin',0,'datasetMaxCount','4','string'),('usagestatsplugin',0,'enabled','1','bool'),('usagestatsplugin',0,'optionalColumns','[\"city\",\"region\"]','object'),('webfeedblockplugin',1,'enabled','0','bool'),('webfeedplugin',1,'displayItems','1','bool'),('webfeedplugin',1,'displayPage','homepage','string'),('webfeedplugin',1,'enabled','1','bool');
/*!40000 ALTER TABLE `plugin_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `publication_categories`
--

DROP TABLE IF EXISTS `publication_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `publication_categories` (
  `publication_id` bigint(20) NOT NULL,
  `category_id` bigint(20) NOT NULL,
  UNIQUE KEY `publication_categories_id` (`publication_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `publication_categories`
--

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

--
-- Table structure for table `publication_galley_settings`
--

DROP TABLE IF EXISTS `publication_galley_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `publication_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,
  UNIQUE KEY `publication_galley_settings_pkey` (`galley_id`,`locale`,`setting_name`),
  KEY `publication_galley_settings_galley_id` (`galley_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `publication_galley_settings`
--

LOCK TABLES `publication_galley_settings` WRITE;
/*!40000 ALTER TABLE `publication_galley_settings` DISABLE KEYS */;
INSERT INTO `publication_galley_settings` VALUES (2,'','pub-id::doi','10.35916/thmr.v1i1.2.g2'),(5,'','pub-id::doi','10.35916/thmr.v1i1.1.g5'),(6,'','pub-id::doi','10.35916/thmr.v1i1.5.g6'),(7,'','pub-id::doi','10.35916/thmr.v1i1.4.g7'),(8,'','pub-id::doi','10.35916/thmr.v1i1.3.g8'),(9,'','pub-id::doi','10.35916/thmr.v1i2.10.g9'),(10,'','pub-id::doi','10.35916/thmr.v1i2.7.g10'),(11,'','pub-id::doi','10.35916/thmr.v1i2.9.g11'),(12,'','pub-id::doi','10.35916/thmr.v1i2.8.g12'),(13,'','pub-id::doi','10.35916/thmr.v1i2.6.g13'),(17,'','pub-id::doi','10.35916/thmr.v2i1.13.g17'),(18,'','pub-id::doi','10.35916/thmr.v2i1.15.g18'),(19,'','pub-id::doi','10.35916/thmr.v2i1.14.g19'),(20,'','pub-id::doi','10.35916/thmr.v2i1.16.g20'),(21,'','pub-id::doi','10.35916/thmr.v2i1.17.g21'),(22,'','pub-id::doi','10.35916/thmr.v2i1.11.g22'),(26,'','pub-id::doi','10.35916/thmr.v2i2.19.g26'),(27,'','pub-id::doi','10.35916/thmr.v2i2.20.g27'),(29,'','pub-id::doi','10.35916/thmr.v2i2.23.g29'),(30,'','pub-id::doi','10.35916/thmr.v2i2.18.g30'),(31,'','pub-id::doi','10.35916/thmr.v2i2.24.g31'),(34,'','pub-id::doi','10.35916/thmr.v0i0.28.g34'),(35,'','pub-id::doi','10.35916/thmr.v2i2.22.g35'),(36,'','pub-id::doi','10.35916/thmr.v0i0.29.g36'),(37,'','pub-id::doi','10.35916/thmr.v0i0.33.g37');
/*!40000 ALTER TABLE `publication_galley_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `publication_galleys`
--

DROP TABLE IF EXISTS `publication_galleys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `publication_galleys` (
  `galley_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `locale` varchar(14) DEFAULT NULL,
  `publication_id` bigint(20) NOT NULL,
  `label` varchar(255) DEFAULT NULL,
  `submission_file_id` bigint(20) unsigned DEFAULT NULL,
  `seq` double NOT NULL DEFAULT 0,
  `remote_url` varchar(2047) DEFAULT NULL,
  `is_approved` tinyint(4) NOT NULL DEFAULT 0,
  `url_path` varchar(64) DEFAULT NULL,
  PRIMARY KEY (`galley_id`),
  KEY `publication_galleys_publication_id` (`publication_id`),
  KEY `publication_galleys_url_path` (`url_path`),
  KEY `publication_galleys_submission_file_id_foreign` (`submission_file_id`),
  CONSTRAINT `publication_galleys_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `publication_galleys`
--

LOCK TABLES `publication_galleys` WRITE;
/*!40000 ALTER TABLE `publication_galleys` DISABLE KEYS */;
INSERT INTO `publication_galleys` VALUES (2,'en_US',2,'PDF',12,0,'',1,NULL),(5,'en_US',1,'PDF',30,2,'',1,NULL),(6,'en_US',5,'PDF',31,0,'',1,NULL),(7,'en_US',4,'PDF',32,0,'',1,NULL),(8,'en_US',3,'PDF',33,0,'',1,NULL),(9,'en_US',10,'PDF',59,0,'',1,NULL),(10,'en_US',7,'PDF',60,0,'',1,NULL),(11,'en_US',9,'PDF',61,0,'',1,NULL),(12,'en_US',8,'PDF',62,0,'',1,NULL),(13,'en_US',6,'PDF',63,0,'',1,NULL),(17,'en_US',12,'PDF',117,0,'',1,NULL),(18,'en_US',14,'PDF',118,0,'',1,NULL),(19,'en_US',13,'PDF',119,0,'',1,NULL),(20,'en_US',15,'PDF',120,0,'',1,NULL),(21,'en_US',16,'PDF',121,0,'',1,NULL),(22,'en_US',11,'PDF',122,0,'',1,NULL),(26,'en_US',18,'PDF',176,0,'',1,NULL),(27,'en_US',19,'PDF',177,0,'',1,NULL),(29,'en_US',22,'PDF',179,0,'',1,NULL),(30,'en_US',17,'PDF',180,0,'',1,NULL),(31,'en_US',23,'PDF',181,0,'',1,NULL),(34,'en_US',26,'PDF',207,0,'',1,NULL),(35,'en_US',21,'PDF',208,0,'',1,NULL),(36,'en_US',27,'PDF',217,0,'',1,NULL),(37,'en_US',30,'PDF',230,0,'',1,NULL);
/*!40000 ALTER TABLE `publication_galleys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `publication_settings`
--

DROP TABLE IF EXISTS `publication_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `publication_settings` (
  `publication_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` mediumtext DEFAULT NULL,
  UNIQUE KEY `publication_settings_pkey` (`publication_id`,`locale`,`setting_name`),
  KEY `publication_settings_publication_id` (`publication_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `publication_settings`
--

LOCK TABLES `publication_settings` WRITE;
/*!40000 ALTER TABLE `publication_settings` DISABLE KEYS */;
INSERT INTO `publication_settings` VALUES (1,'','hide_author','0'),(1,'','issueId','1'),(1,'','pages','33-38'),(1,'','pub-id::doi','10.35916/thmr.v1i1.1'),(1,'en_US','abstract','<p>Coconut milk is a food ingredient that is used to increase the taste of food and drinks. Coconut milk has processed products in the form of traditional drinks such as ice dawet and cendol ice. According to the Indonesian National Standard in 2009 about Maximum Microbial Contamination in Food in liquid coconut milk must be in accordance with the requirements of TPC parameters, MPN Coliform, Salmonella sp., and Staphylococcus aureus. This study aims to determine the description of Staphylococcus aureus contamination in traditional coconut milk in the Banjarbaru region. This type of research is a descriptive survey. The samples in this study were traditional drinks (es dawet and es cendol) that used coconut milk by using Purposive sampling techniques as many as 6 sellers who made 2 times taking, namely taking 1 hour (testing I) after processing and 2 hours after the first take (testing II) . From the research that has been done, it is found that there are 4 samples of Staphylococcus aureus contamination in 4 samples, namely 3 samples fulfilling the requirements of the Indonesian National Standard and 1 sample that does not meet the requirements of the Indonesian National Standard. It is expected for the seller to always maintain personal hygiene, pay attention to the cleanliness of drinks sold either during processing or serving, noting the cleanliness of the appliance and storing the ingredients of the drinks sold.</p>'),(1,'en_US','cleanTitle','Staphylococcus aureus in Traditional Coconut milk Drinks'),(1,'en_US','prefix',''),(1,'en_US','subtitle',''),(1,'en_US','title','Staphylococcus aureus in Traditional Coconut milk Drinks'),(2,'','copyrightYear','2019'),(2,'','hide_author','0'),(2,'','issueId','1'),(2,'','licenseURL',''),(2,'','pages','19-25'),(2,'','pub-id::doi','10.35916/thmr.v1i1.2'),(2,'en_US','abstract','<p>Salted fish are fish that are processed through a process of salting and drying. The contamination of fungi in salted fish can be caused by prolonged storage. Storage of salted fish that is too long can cause the growth of various fungi. One of the fungi that often grows in salted fish is the fungus of Aspergillus sp. Some species of the Aspergillus sp fungi can produce aflatoxin, one of which is Aspergillus flavus. This study aims to determine the contamination of toxin-producing fungi in salted fish in the traditional Banjarbaru market in Indonesia. The type of research used is descriptive survey. Samples were taken by purposive sampling taken from 5 salted fish sellers each taken 3 different types of salted fish so that the number of samples was 15. The results were obtained from 15 samples examined, 6 positive samples contaminated with Aspergillus flavus fungi, 8 positive samples contaminated with Aspergillus fungi niger, 5 positive samples contaminated with Monilia sitophila fungi, 6 positive samples contaminated with Rhizopus sp fungi, 6 positive samples contaminated with Penicillium sp fungi, and 1 positive sample contaminated with Mucor sp fungi. Based on the results of the study, samples of salted fish contaminated with Aspergillus sp fungi were 73% (11 samples) and no samples were contaminated with Fusarium sp.</p>'),(2,'en_US','cleanTitle','Fungi That Produce Toxins in Salted Fish'),(2,'en_US','copyrightHolder','tropical health and medical research'),(2,'en_US','prefix',''),(2,'en_US','subtitle',''),(2,'en_US','title','Fungi That Produce Toxins in Salted Fish'),(3,'','copyrightYear','2019'),(3,'','hide_author','0'),(3,'','issueId','1'),(3,'','licenseURL',''),(3,'','pages','10-18'),(3,'','pub-id::doi','10.35916/thmr.v1i1.3'),(3,'en_US','abstract','<p>Tuberculosis is one of the causes of anemia in chronic diseases in addition to rheumatoid arthritis, urserative colitis, Crohn\'s disease, ovarian malignancy and Hodgkin\'s lymphoma. Chronic disease anemia also known as anemia due to inflammation, occurs in patients with chronic infections. This anemia also occurs in some patients with malignancy. The causes of anemia are based on cell size, namely iron deficiency (often), anemia of chronic diseases (often), Thalassemia (often in certain ethnicities) causing the size of cells to become microsytic. Cells turn macrocytic due to liver disease, excess alcohol, megaloblastic anemia (vitamin B12 deficiency or folate or exposure to certain drugs), hemolysis, and aplastic anemia. Whereas the normal cell factors are blood loss, the initial phase of iron deficiency, anemia, chronic disease, and kidney failure. The aim of this study was to determine the type of anemia based on the morphological description of erythrocytes in the form, color, and size of erythrocytes seen in the smear blood supply of tuberculosis patients based on treatment duration of 0-6 months. The type of research used was a descriptive survey with a population of 15 people taken by accidental sampling. Data collection is done by examining the blood smear smears. Based on the examination of peripheral blood smear preparations in pulmonary tuberculosis patients, the morphology of erythrocytes in the form of Normocytic normochrome was 74% and microsocytic normochrome was 26%. Suggestions in the research for further research can be carried out with support other than the examination of peripheral blood smear.</p>'),(3,'en_US','cleanTitle','Erythrocyte Morphology of Tuberculosis Patients'),(3,'en_US','copyrightHolder','Tropical Health and Medicine Research'),(3,'en_US','prefix',''),(3,'en_US','subtitle',''),(3,'en_US','title','Erythrocyte Morphology of Tuberculosis Patients'),(4,'','copyrightYear','2019'),(4,'','hide_author','0'),(4,'','issueId','1'),(4,'','licenseURL',''),(4,'','pages','26-32'),(4,'','pub-id::doi','10.35916/thmr.v1i1.4'),(4,'en_US','abstract','<p>Red beans (Phaseolus vulgaris L.) are grains that are rich in nutrients and useful as a substitute for vegetable milk which can be processed into yogurt using Streptococcus thermophillus and Lactobacillus bulgaricus. Carbohydrates in red beans consist of a group of oligosaccharides that have little ability as an energy source for bacteria to produce lactic acid. Therefore, the making of red bean yogurt needs another source of sugar by adding Trigona sp. Honey. The purpose of this study was to determine the effect of adding Trigona sp honey by 0%, 1.9%, 3.8%, 5.7%, 7.6%, 9.5% to the total level of lactic acid in red bean yogurt incubated for 24 hours at 37oC. This type of research is an experiment with the Postest Only With Control Group Design research design using the alkalimetry titration method. The sampling technique used was purposive sampling technique, namely Trigona sp honey bee taken at Trigona sp bee farm in Tambangan, Tanah Laut. Indonesia. The results showed that there was an effect of adding Trigona sp honey to total lactic acid levels in red bean yogurt with the addition of Trigona sp honey 1.9% - 9.5% fulfilling the requirements of SNI 01.2981-2009. The highest average value of total lactic acid in red bean yogurt with the addition of Trigona sp honey 9.5% which is equal to 0.6672%. It is recommended for future researchers to use other types of carbohydrate sources and additives in the form of proteins. For the community, it is recommended to use alternative sources of other sugar and optimize the addition of Trigona sp. Honey.</p>'),(4,'en_US','cleanTitle','Lactic Acid Levels Yogurt Red Beans with Addition of Honey  Trigona sp'),(4,'en_US','copyrightHolder','Tropical Health and Medicine Research'),(4,'en_US','prefix',''),(4,'en_US','subtitle',''),(4,'en_US','title','Lactic Acid Levels Yogurt Red Beans with Addition of Honey  Trigona sp'),(5,'','hide_author','0'),(5,'','issueId','1'),(5,'','pages','1-9'),(5,'','pub-id::doi','10.35916/thmr.v1i1.5'),(5,'en_US','abstract','<p>Dengue Hemorrhagic Fever (DHF) is one of the public health problems that is still found in Indonesia. This disease always occurs repeatedly due to failure of vector control. Indonesia is the second largest country among 30 countries endemic to DHF. This disease can cause death especially in children. In Sungai Paring Village, January-December 2017, 2 cases of DHF were found. The purpose of this study was to find out the House Index (HI), Countainer Index (CI), Breteau Index (BI), larva free numbers (LFN) , Density Figure (DF) and larvae positive container types. This research is a type of descriptive survey research with total sampling technique. The population in this study were households and containers in the Paring Sungai Martapura Sub-District. The sample in this study was all water reservoirs in 100 respondent\'s houses. Of the 100 houses surveyed there were 40 positive larvae (HI 40%), 60% ABJ, 41 larvae positive containers from 356 examined containers (CI 11.52%) and positive larvae containers namely, ceramic bath 3 (0.84% ), 1 cement bath (0.28%), 18 used paint buckets (5.06%), 4 large bucket buckets (1.12%), 3 ablutions (0.84%) and 6 plastic drums (1.70%). Based on this research, it is expected that respondents and the community take precautionary measures and control of dengue hemorrhagic fever (DHF) vectors by 3M. For researchers to conduct further research to determine vector density fluctuations</p>'),(5,'en_US','cleanTitle','Dengue Hemorrhagic Fever Vector in the Paring Sungai Martapura Indonesia'),(5,'en_US','prefix',''),(5,'en_US','subtitle',''),(5,'en_US','title','Dengue Hemorrhagic Fever Vector in the Paring Sungai Martapura Indonesia'),(6,'','copyrightYear','2019'),(6,'','hide_author','0'),(6,'','issueId','3'),(6,'','licenseURL',''),(6,'','pages','39-43'),(6,'','pub-id::doi','10.35916/thmr.v1i2.6'),(6,'en_US','abstract','<p>Cinnamon (<em>Cinnamomum burmannii</em>) is widely used by the public as a food ingredient and contains chemical compounds such as alkaloids, flavonoids, polyphenols, saponins, and terpenoids which function as an antibacterial against&nbsp;<em>Staphylococcus aureus</em>. This study aims to determine the Minimum Inhibitory Concentration and Minimum Bactericidal Concentration of cinnamon ethanol extract on&nbsp;<em>Staphyloccocus aureus</em>. This research is experimental with posttest only control group design through the tube dilution method. The results of the Minimum Inhibitory Concentration (MIC) study showed no clarity at concentrations of 30% and 40%. The results of the Minimum Bactericidal Concentration (MBC) obtained the number of colonies at a level of 10% by 51 CFU / plate, 20% by 27 CFU / plate, 30% by 6 CFU / plate and 40% by 0 CFU / plate. Based on the results of this study concluded that MIC cinnamon ethanol extract was 30%, and MBC cinnamon ethanol extract was 40%.</p>'),(6,'en_US','cleanTitle','Effectiveness of Cinnamon Cinnamomum burmannii Ethanol Extract Against Staphylococcus aureus Growth'),(6,'en_US','copyrightHolder','Tropical Health and Medical Research'),(6,'en_US','prefix',''),(6,'en_US','subtitle',''),(6,'en_US','title','Effectiveness of Cinnamon (Cinnamomum burmannii) Ethanol Extract Against Staphylococcus aureus Growth'),(7,'','copyrightYear','2019'),(7,'','hide_author','0'),(7,'','issueId','3'),(7,'','licenseURL',''),(7,'','pages','62-67'),(7,'','pub-id::doi','10.35916/thmr.v1i2.7'),(7,'en_US','abstract','<p>Rosella (<em>Hibiscus sabdariffa L</em>.) is a plant that can use as herbal medicine. Roselle calyx contains active compounds flavonoids, saponins, and tannins. These compounds can use as an antibacterial against&nbsp;<em>Salmonella typhi</em>. This study aims to determine the Minimum Inhibitory Concentration and Minimum Bactericidal Concentration and the effect of rosella cooking water concentration on&nbsp;<em>Salmonella typhi</em>&nbsp;in vitro. Experimental research with posttest only controls group design through dilution method. The results of the Minimum Inhibitory Concentration (MIC) study showed clarity at concentrations of 60%, 70%, 80%, 90%, and 100%. Minimum Bactericidal Concentration (MBC) results obtained the number of colonies at a concentration of 60% by one colony, at a level of 70%, 80%, 90%, and 100% showed no colony growth. Based on the results of the study concluded that there was an influence of rosella cooking water concentration on the growth of&nbsp;<em>Salmonella typhi</em>&nbsp;in vitro.</p>'),(7,'en_US','cleanTitle','Inhibition Strength of Rosella Hibiscus sabdariffa L  Boiled Water on Salmonella typhi in vitro'),(7,'en_US','copyrightHolder','Tropical Health and Medical Research'),(7,'en_US','prefix',''),(7,'en_US','subtitle',''),(7,'en_US','title','Inhibition Strength of Rosella (Hibiscus sabdariffa L.)  Boiled Water on Salmonella typhi in vitro'),(8,'','copyrightYear','2019'),(8,'','hide_author','0'),(8,'','issueId','3'),(8,'','licenseURL',''),(8,'','pages','44-48'),(8,'','pub-id::doi','10.35916/thmr.v1i2.8'),(8,'en_US','abstract','<p>Dayak onion (<em>Eleutherine palmifolia (L.) Merr</em>) is hereditary used by the Indonesian Kalimantan Dayak community as a medicinal plant with antimicrobial activity. The active ingredient of Dayak onions can inhibit the growth of bacteria such as&nbsp;<em>Escherichia coli</em>. The purpose of this study was to determine the effectiveness of Dayak extract (<em>Eleutherine palmifollia (L) Merr</em>) in inhibiting the growth of&nbsp;<em>Escherichia coli</em>&nbsp;in vitro. This research method is experimental. Posttest Only Control Group Design research design. Research Results Show that Dayak onion extract can inhibit&nbsp;<em>Escherichia coli</em>&nbsp;with concentrations of 10% (6 mm), 20% (8 mm), and 30% (11 mm), 40% (13 mm), 50% (16 mm), 60 % (18 mm) and 70% (20 mm), 80% (20 mm), 90% (24 mm) and 100% (30 mm). The conclusion of the study of Dayak extract has a different effect on the growth of&nbsp;<em>Escherichia coli</em>&nbsp;with a significance value of 0,000</p>'),(8,'en_US','cleanTitle','Effectiveness of Dayak Eleutherine palmifollia L Merr Extracts Against Escherichia coli In Vitro'),(8,'en_US','copyrightHolder','Tropical Health and Medical Research'),(8,'en_US','prefix',''),(8,'en_US','subtitle',''),(8,'en_US','title','Effectiveness of Dayak (Eleutherine palmifollia (L) Merr) Extracts Against Escherichia coli In Vitro'),(9,'','copyrightYear','2019'),(9,'','hide_author','0'),(9,'','issueId','3'),(9,'','licenseURL',''),(9,'','pages','49-55'),(9,'','pub-id::doi','10.35916/thmr.v1i2.9'),(9,'en_US','abstract','<p>Various devices were used to carry circumcision operation out. It noted that these devices, especially the Plastic Clamp method, significantly decrease complications as long as basic surgical rules, are followed. This study aims to examine the application of Plastic Clamp circumcision in infants. Children whose physical examinations revealed circumcision contradictions excluded from the study. During the study period, a total of 485 children was circumcised using the plastic clamp method under sedated anesthesia and by a single pediatric surgeon. Measurements take before operations and plastic clamps with diameters ranging from 1.2 to 1.6 cm used. The duration of the surgical procedure, early and late period post-operative complications, the separation duration of the plastic clamp, and problems evaluated. Study Results, the average length of the surgical operation was determined to be 5.5 minutes. The average hospital stay duration of the patients was 2 hours. During the follow-ups, edemas were observed in mucosal areas of 24 (4.9%) patients, 48 hours after the clamp placed and edema and swelling recovered seven days after the circumcision at the latest. On average, it observed that plastic clamp separated on its own in 7.1 days. It noted that in 4 (0.8%) patients, the plastic clamp separated prematurely during 6 hours following the operation due to pulling. Conclusion study plastic Clamp (Alisklamp) is starting to gain popularity because it falls off on its own and that it can be applied quickly under local anesthesia</p>'),(9,'en_US','cleanTitle','Circumcision With Plastic Clamb in Newborn Infants'),(9,'en_US','copyrightHolder','Tropical Health and Medical Research'),(9,'en_US','prefix',''),(9,'en_US','subtitle',''),(9,'en_US','title','Circumcision With Plastic Clamb in Newborn Infants'),(10,'','copyrightYear','2019'),(10,'','hide_author','0'),(10,'','issueId','3'),(10,'','licenseURL',''),(10,'','pages','56-61'),(10,'','pub-id::doi','10.35916/thmr.v1i2.10'),(10,'en_US','abstract','<p>Many food snacks have the advantage but still have health risks as evidenced by the many cases of food poisoning, one of the causes of food poisoning is&nbsp;<em>Bacillus cereus</em>. This study aims to determine the amount and percentage of&nbsp;<em>Bacillus cereus</em>&nbsp;pollution on snacks sold in elementary schools. This research is expected to provide information to the public about the presence or absence of bacteria&nbsp;<em>Bacillus cereus</em>&nbsp;contamination. This research uses purposive sampling technique. The sample used in this study was hawker food sold in Elementary School as many as 20 samples consisting of 10 samples that have not fried and ten samples that have cooked. The results of the questionnaire study showed 83% of sellers did not put snacks in closed containers and found&nbsp;<em>Bacillus cereus</em>&nbsp;in meals. Conclusion 9 (45%) of food samples contaminated with&nbsp;<em>Bacillus cereus</em>&nbsp;bacteria</p>'),(10,'en_US','cleanTitle','Contamination of Bacillus cereus in Elementary School Snack Food'),(10,'en_US','copyrightHolder','Tropical Health and Medical Research'),(10,'en_US','prefix',''),(10,'en_US','subtitle',''),(10,'en_US','title','Contamination of Bacillus cereus in Elementary School Snack Food'),(11,'','copyrightYear','2020'),(11,'','hide_author','0'),(11,'','issueId','4'),(11,'','licenseURL',''),(11,'','pages','39-43'),(11,'','pub-id::doi','10.35916/thmr.v0i0.11'),(11,'en_US','abstract','<p>Pilonidal sinus is a common chronic disease of the sacrococcygeal region. Treatment varies according to the clinical presentation of the disease. Although many surgical methods have proposed, the ideal approach is still lacking due to high recurrence rates. This study aimed to evaluate the role of Z-plasty in achieving primary recovery in pilonidal disease and morbidity and recurrence. Twenty-four patients (15 males and nine females) who underwent sinus excision and Z-plasty closure for the sacrococcygeal pilonidal sinus included in this study. Follow-up ranged from 6 to 12 months. There were 15 males and nine females with a median age of 16 years. The mean hospital stay was two days. There was no recurrence, and all patients were satisfied with the cosmetics. Two patients (5%) had numbness on the flap. No flap necrosis observed in any patient. Only three patients had a wound infection (7.5%). Wound seroma developed in five patients (12.5%). Although some technical expertise is required, excision of sinus and Z-plasty provides superior results in terms of recurrence and hospitalization of pilonidal sinus patients during hospitalization.</p>'),(11,'en_US','cleanTitle','Z Plasty Single Center Results in The Treatment of Pilonidal Sinus Disease in Children'),(11,'en_US','copyrightHolder','Tropical Health and Medical Research'),(11,'en_US','prefix',''),(11,'en_US','subtitle','Z Plasty Results in the Treatment of Pilonidal Sinus Disease'),(11,'en_US','title','Z Plasty Single Center Results in The Treatment of Pilonidal Sinus Disease in Children'),(12,'','copyrightYear','2020'),(12,'','hide_author','0'),(12,'','issueId','4'),(12,'','licenseURL',''),(12,'','pages','1-8'),(12,'','pub-id::doi','10.35916/thmr.v0i0.13'),(12,'en_US','abstract','<p>The hyoid is a U shaped bone with a backward concavity. Locates at the lower edge of the mandible and lies parallel to the floor — functions as an attachment point for muscles and soft tissues of head and neck. The aim is to examine the variations and ossification of the hyoid. This study was performed retrospectively in 2010 - 2013 on 200 CT images. 3D volume rendering images of pure hyoid bone created from the axial CT images in 1 mm slice thickness.<strong>&nbsp;</strong>The morphological variation count was 23; ossification variations were 9 cases.<strong>&nbsp;</strong>No difference observed by gender, but there are differences between the age groups for ossification. Ossification rates were found as; partial 34 %, unilateral 33%, complete 22%, early 11%. Most of the morphologic variation were belong to minor horn (57%), variations of major horn were 30%.&nbsp;The clinical importance of hyoid bone has realized in recent years. Due to the close relationship of this bone with the muscles, ligaments, fascias, sternum, clavicles, its dysfunction can lead to general problems. Studies about the variations of hyoid bone found to be quite low, and we believe that our research will contribute to the content of literature.</p>'),(12,'en_US','cleanTitle','The Evaluation of Variations of The Hyoid Bone with Multidetector Computerized Tomography'),(12,'en_US','copyrightHolder','Tropical Health and Medical Research'),(12,'en_US','prefix',''),(12,'en_US','subtitle',''),(12,'en_US','title','The Evaluation of Variations of The Hyoid Bone with Multidetector Computerized Tomography'),(13,'','copyrightYear','2020'),(13,'','hide_author','0'),(13,'','issueId','4'),(13,'','licenseURL',''),(13,'','pages','18-25'),(13,'','pub-id::doi','10.35916/thmr.v0i0.14'),(13,'en_US','abstract','<p>Perinatal arterial ischemic stroke (PAIS) is one of the frequent causes of mortality and morbidity, but its etiology remains unclear. <em>COL4A1 </em>and <em>COL4A2</em> mutations are monogenetic causes of weakness of the basement vascular membranes resulting in cerebral small-vessel disease, cerebral hemorrhage, and porencephaly. We hypothesized that variations in the&nbsp;<em>COL4A1</em>&nbsp;and&nbsp;<em>COL4A2</em>&nbsp;genes cause PAIS and performed mutation screening of these genes in 17 PAIS patients by whole-exome sequencing. Clinical, demographic, and laboratory data of the 17 PAIS patients were obtained by evaluating hospital files retrospectively. Patients included in the study were invited to the clinic for&nbsp;<em>COL4A1</em>&nbsp;and&nbsp;<em>COL4A2</em>&nbsp;mutation analysis. Results: The patient group consisted of 13 females (76.5%) and four males (23.5%) with a mean age of 107.4 ± 11.5 months. Maternal/fetal and prothrombotic risk factors identified in 52.9% and 94.1% of the patients, respectively. Whole-exome sequencing analysis did not reveal&nbsp;<em>COL4A1</em>&nbsp;and&nbsp;<em>COL4A2</em>&nbsp;pathological mutations in any of the patients. &nbsp;Although we did not find an association between PAIS and&nbsp;<em>COL4A1</em>&nbsp;and&nbsp;<em>COL4A2</em>&nbsp;variations, we believe that new studies with larger patient populations may reveal such a relationship.</p>'),(13,'en_US','cleanTitle','COL4A1 and COL4A2 Mutations Analyses with Perinatal Arterial ?schemic Stroke'),(13,'en_US','copyrightHolder','Tropical Health and Medical Research'),(13,'en_US','prefix',''),(13,'en_US','subtitle',''),(13,'en_US','title','COL4A1 and COL4A2 Mutations Analyses with Perinatal Arterial ?schemic Stroke'),(14,'','copyrightYear','2020'),(14,'','hide_author','0'),(14,'','issueId','4'),(14,'','licenseURL',''),(14,'','pages','9-17'),(14,'','pub-id::doi','10.35916/thmr.v0i0.15'),(14,'en_US','abstract','<p>Most patients rely on the internet to access a medical information source. Patients undergoing surgery use the internet and social media to gain information about anesthesia and surgery. In our study, it has dealt with the use of the internet and social media for news in patients who will undergo surgery and the impact of age and education on this situation. Every patient who came to our clinic for surgery between August 1, 2019 and December 31, 2019 was asked to complete a survey preoperatively. This questionnaire includes questions about internet use. The rate of using the internet as the source of anesthesia information was 24.3% in young patients, this rate found to be 7% in the middle age patients, and none of the elderly patients used the internet as the source of anesthesia information. In terms of operation information, the rate of those using internet as a source of information in the young patients was 29.7%, whereas it was 14% in the middle age patients, and the rate was 5.3% in the elderly patients. Some of the patients (21%) who came to the clinic used internet and social media as a source of information. This study has been found useful in the sense that anesthesiologists and surgeons send information about themselves on the internet and be accessible via social media.</p>'),(14,'en_US','cleanTitle','The Effect of Age and Education Level as a Source of Information on Internet Use in Preoperative Patients'),(14,'en_US','copyrightHolder','Tropical Health and Medical Research'),(14,'en_US','prefix',''),(14,'en_US','subtitle',''),(14,'en_US','title','The Effect of Age and Education Level as a Source of Information on Internet Use in Preoperative Patients'),(15,'','copyrightYear','2020'),(15,'','hide_author','0'),(15,'','issueId','4'),(15,'','licenseURL',''),(15,'','pages','26-33'),(15,'','pub-id::doi','10.35916/thmr.v0i0.16'),(15,'en_US','abstract','<p><em>Malassezia furfur</em> is very easy to infect the skin of people who are often in damp places with higher water content for a long time. One of the plants that can add to inhibit the growth of <em>Malassezia furfur</em> is basil. The purpose of this study was to determine the number of <em>Malassezia furfur</em> mushroom growths formed on the SDA media with the addition of basil powder concentrations of 2%, 4%, 6%, and 8% on day 5. The method used in this study was experimental with a post-test research design with control. The material used is the leaves of basil plants obtained from basil plantations in Sukamara Village, Landasan Ulin Banjarbaru, Indonesia. The results of the study, <em>Malassezia furfur</em>, grew in all concentrations with a creamy colony, smooth and soft texture with sizes between 1-2 mm and microscopically obtained hyphae and spores. The conclusion of this study, <em>Malassezia furfur</em> mushroom growth in all concentrations of 2%, 4%, 6%, and 8% with the results of the number of colonies in a row that is 798 colonies, 755 colonies, 661 colonies, 622 colonies. The results showed a decrease in the name of colonies, with each increase in concentration.</p>'),(15,'en_US','cleanTitle','Growth of Malassezia furfur in Media with The Addition of Basil Ocimum basilicum Linn Powder'),(15,'en_US','copyrightHolder','Tropical Health and Medical Research'),(15,'en_US','prefix',''),(15,'en_US','subtitle',''),(15,'en_US','title','Growth of Malassezia furfur in Media with The Addition of Basil (Ocimum basilicum Linn) Powder'),(16,'','copyrightYear','2020'),(16,'','hide_author','0'),(16,'','issueId','4'),(16,'','licenseURL',''),(16,'','pages','34-38'),(16,'','pub-id::doi','10.35916/thmr.v0i0.17'),(16,'en_US','abstract','<p><em>Citrus hystrix</em>&nbsp;D.C. is a citrus-type citrus tribal plant, one of the most favored and developed fruits by the people of South Kalimantan Indonesia.&nbsp;<em>Citrus hystrix</em>&nbsp;D.C. contains useful chemical compounds, one of which is flavonoids, which function as antibacterial and play a critical role in inhibiting bacterial growth. The purpose of this study was to determine the antibacterial activity of&nbsp;<em>Citrus hystrix</em>&nbsp;D.C. juice at 25%, 50%, 75%, and 100% concentration on the growth of&nbsp;<em>Staphylococcus aureus</em>. This research is experimental with Posttest Only Control Group Design. The material used was local&nbsp;<em>Citrus hystrix</em>&nbsp;D.C., fresh and clean green, obtained from the Astambul area, Banjar Regency, South Kalimantan Indonesia. The results showed that there was a zone of inhibition of&nbsp;<em>Citrus hystrix</em>&nbsp;D.C. juice on&nbsp;<em>Staphylococcus aureus</em>&nbsp;growth which began at 25%, 50%, 75% and 100% concentrations of 13.75mm, 17.25mm, 19.75mm, and 21.75mm, so it can conclude that the juice of&nbsp;<em>Citrus hystrix</em>&nbsp;D.C. influences the growth of&nbsp;<em>Staphylococcus aureus</em>&nbsp;which has the largest inhibitory zone at a concentration of 100%.</p>'),(16,'en_US','cleanTitle','Citrus hystrix DC Juice Inhibits The Growth of Staphylococcus aureus'),(16,'en_US','copyrightHolder','Tropical Health and Medical Research'),(16,'en_US','prefix',''),(16,'en_US','subtitle',''),(16,'en_US','title','Citrus hystrix D.C Juice Inhibits The Growth of Staphylococcus aureus'),(17,'','copyrightYear','2020'),(17,'','hide_author','0'),(17,'','issueId','5'),(17,'','licenseURL',''),(17,'','pages','77-85'),(17,'','pub-id::doi','10.35916/thmr.v0i0.18'),(17,'en_US','abstract','<p>The present study aimed to investigate if there is an association between the diameter of the choledochal duct and choledochal duct stone formation. The present study consisted of 79 patients who had endoscopic interventions and MRCP procedure with surgery history. Some followed due to disorders of the liver, gall bladder, and biliary tract and some of whom presented hepatobiliary complaints between 2017 and 2019. The choledochal duct diameter measured from MRCP images and choledochal duct stone had examined; the type classified according to Huang classification. Among the cases classified, 29 patients, was Huang Type A1, 27 patients were Huang Type A2, 16 patients were Huang Type A3, and seven patients were Huang Type A4. There was not any statistically significant association in terms of choledochal diameter regarding the types. Choledochal duct diameter was statistically higher in female patients than male patients (p&lt;0.05). According to the age group, a statistically significant difference detected for choledochal duct stone formation; individuals over 45 years of age present an increase for choledochal duct stone (p&lt;0.05). The choledochal duct diameter was found higher in female patients compared with male patients; stone formation has found increased in both gender over 45 years of age. It should consider before surgical procedures and radiological tests.</p>'),(17,'en_US','cleanTitle','Investigation of Biliary Canal Variations as a Cause of Stone Formation in the Choledochal Canal'),(17,'en_US','copyrightHolder','Tropical Health and Medical Research'),(17,'en_US','prefix',''),(17,'en_US','subtitle',''),(17,'en_US','title','Investigation of Biliary Canal Variations as a Cause of Stone Formation in the Choledochal Canal'),(18,'','copyrightYear','2020'),(18,'','hide_author','0'),(18,'','issueId','5'),(18,'','language','en'),(18,'','licenseURL',''),(18,'','pages','44-52'),(18,'','pub-id::doi','10.35916/thmr.v0i0.19'),(18,'en_US','abstract','<p>Poor sleep quality is a prevalent health problem among patients with diabetes. Metabolic syndrome (MetS) is common in type 2 diabetic patients and associated with morbidity and mortality. We aimed to investigate sleep quality among type 2 diabetes patients according to their metabolic syndrome status. This was an analysis of data collected from 189 adult type 2 diabetic patients. The patients divided into two groups (metabolic and non-metabolic) based on the presence of MetS. Anthropometric measurements, blood pressure, and serum glucose, lipid levels were collected. The Pittsburgh Sleep Quality Index (PSQI) calculated for all patients. There was no significant difference in subjective sleep quality scores between the two groups (p &gt; 0.05). However, there was a significant difference in sleep latency scores between the two groups; the scores of patients with MetS were lower than those of patients without MetS (p = 0.010, p &lt; 0.05).Sleep quality was low in 57.1% (n = 108) of patients with diabetes. Poor sleep is common among diabetic patients, but in this study, metabolic syndrome existence not associated with sleep quality in type 2 diabetic patients.</p>'),(18,'en_US','cleanTitle','Sleep Quality of Diabetic Patients with Metabolic Syndrome is There  a Difference'),(18,'en_US','copyrightHolder','Tropical Health and Medical Research'),(18,'en_US','prefix',''),(18,'en_US','subtitle',''),(18,'en_US','title','Sleep Quality of Diabetic Patients with Metabolic Syndrome, is There  a Difference?'),(19,'','copyrightYear','2020'),(19,'','hide_author','0'),(19,'','issueId','5'),(19,'','licenseURL',''),(19,'','pages','53-60'),(19,'','pub-id::doi','10.35916/thmr.v0i0.20'),(19,'en_US','abstract','<p>The ophthalmological examination is a vital aspect of the central nervous system examination in comatose children. Several authors have documented different findings with disparities in their recommendations about making ophthalmological examination a routine in the management of the unconscious child. This study sought to evaluate the relevance of routine ophthalmological examination in the management of unconscious children admitted into the paediatric emergency room of Enugu State University Teaching Hospital, Parklane, Enugu, Nigeria. This was a prospective longitudinal study conducted from April 2018 to March 2019. Unconscious patients whose caregivers gave consent were recruited into the study. Traumatic causes of coma were excluded. Demographic features of the patients were obtained. The ophthalmologic examination and diagnoses were made by an ophthalmologist, while the emergency room pediatrician made clinical assessment and diagnoses.&nbsp;Sixteen unconscious children had ophthalmologic examinations done. The Glasgow coma scale scores ranged from 3 to 11, with a mean of 6.6±2.2. Thirteen (81.3%) of the children were classified as severe unconsciousness while the rest were moderate. The degree of unconsciousness was significantly associated with the outcome (?2 =16.0, P = 0.03). A total of six (37.5%) ophthalmologic diagnoses were made, which included cerebral malaria, degenerative myopia, orbital cellulitis, and exposure keratopathy. The presence of an abnormal ophthalmologic finding was not significantly associated with outcome (?2 =0.36, P = 0.55). Routine ophthalmologic examination may not be justified as a management protocol in unconscious children but may be considered in selected cases.</p>'),(19,'en_US','cleanTitle','Ophthalmological Findings in Paediatric NonTraumatic Coma in Enugu State University Teaching Hospital Parklane Enugu Nigeria'),(19,'en_US','copyrightHolder','Tropical Health and Medical Research'),(19,'en_US','prefix',''),(19,'en_US','subtitle',''),(19,'en_US','title','Ophthalmological Findings in Paediatric Non-Traumatic Coma in Enugu State University Teaching Hospital, Parklane, Enugu, Nigeria'),(20,'','citationsRaw','1.	Wolfsdorf JI, Allgrove J, Craig ME, et al. A Consensus Statement from the International Society for Pediatric and Adolescent Diabetes: diabetic ketoacidosis and hyperglycemic hyperosmolar state. Pediatric Diabetes 2014: 15 (Suppl. 20): 154–79.\r\n2.	Lawrence SE. Diagnosis and treatment of diabetic ketoacidosis in children and adolescents. Paediatrics & child health. 2005 Jan 1;10(1):21-4.\r\n3.	Usher-Smith JA, Thompson M, Ercole A, Walter FM. Variation between countries in the frequency of diabetic ketoacidosis at first presentation of type 1 diabetes in children: a systematic review. Diabetologia 2012; 55: 2878–94. Original Article 16 African Journal of Diabetes Medicine Vol 24 No 2 November 2016 \r\n4.	Akanji AO. Clinical experience with adolescent diabetes in a Nigerian teaching hospital. Natl Med Assoc 1996; 88: 101–5. \r\n5.	Adeleke SI, Asani MO, Belonwu RO, et al. Childhood diabetes mellitus in Kano, North West-Nigeria. Niger J Med 2010; 19: 145–7. \r\n6.	Jaja T, Yarhere I. The pattern of presentation and trends of childhood diabetes mellitus in Port Harcourt, southern Nigeria. B J Med & Med Res 2015; 5: 247–53. \r\n7.	Ibekwe U M, Ibekwe C R. Pattern of type 1 diabetes mellitus in Abakaliki, south-eastern Nigeria. Pediatric Oncall [serial online] 2011[cited 2011 July 1]; 8. Art #48. Available from : http://www. pediatriconcall.com/Journal/Article/FullText.asp. \r\n8.	Ugege O, Ibitoye PK, Jiya NM. Childhood diabetes mellitus in Sokoto, north-western Nigeria: a ten year review. Sahel Med J 2015; 16: 97–101. \r\n9.	John C, Abok II, Yilgwan C. Clinical profile of childhood type 1 diabetes in Jos, Nigeria. Afr J Diabet Med 2013; 21: 11–13. \r\n10.	Onyiriuka AN, Ifebi E. Ketoacidosis at diagnosis of type 1 diabetes in children and adolescents: frequency and clinical characteristics. J Diab & Metab Dis 2013; 12: 47 http://www.jdmdonline.com/ content/12/1/47. \r\n11.	Monabeka HG, Mbika-Cardorelle A, Moyen G. Ketoacidosis in children and teenagers in Congo. Sante 2003; 13: 139–41. \r\n12.	Reddy Y, Ganie Y, Pillay K. Characteristics of children presenting with newly diagnosed type 1 diabetes. S Afr J Child Hlth 2013; 7: 46–8. \r\n13.	Majaliwa ES, Munubhi E, Ramaiya K, et al. Survey on acute and chronic complications in children and adolescents with type 1 diabetes at Muhimbili National Hospital in Dar es Salaam, Tanzania. Diabetes Care 2007; 10: 2187–92.\r\n14.	Edge JA, Ford-Adams ME, Dunger DB. Causes of death in children with insulin dependent diabetes 1990–96. Arch Dis Child 1999; 81: 318–23\r\n15.	Oyenusi EE, Nwaogu NT, Oduwole AO. Keto-acidosis at diagnosis of type 1 diabetes in children and adolescents in Lagos, South-West Nigeria: the pattern over 10 years. African Journal of Diabetes Medicine. 2016 Nov 1;24(2).\r\n16.	Patterson C, Guariguata L, Dahlquist G, Soltész G, Ogle G, Silink M. Diabetes in the young–a global view and worldwide estimates of numbers of children with type 1 diabetes. Diabetes research and clinical practice. 2014 Feb 1;103(2):161-75.\r\n17.	Hadgu FB, Sibhat GG, Gebretsadik LG. Diabetic ketoacidosis in children and adolescents with newly diagnosed type 1 diabetes in Tigray, Ethiopia: retrospective observational study. Pediatric health, medicine and therapeutics. 2019;10:49.\r\n18.	Wu HB, Zhong JM, Hu RY, Wang H, Gong WW, Pan J, Fei FR, Wang M, Guo LH, Yang L, Yu M. Rapidly rising incidence of Type 1 diabetes in children and adolescents aged 0–19 years in Zhejiang, China, 2007 to 2013. Diabetic Medicine. 2016 Oct;33(10):1339-46.\r\n19.	Maahs DM, West NA, Lawrence JM, Mayer-Davis EJ. Epidemiology of type 1 diabetes. Endocrinology and Metabolism Clinics. 2010 Sep 1;39(3):481-97.\r\n20.	Mooney RA, Senn J, Cameron S, Inamdar N, Boivin LM, Shang Y, Furlanetto RW: Suppressors of cytokine signaling-1 and – 6 associate with and inhibit the insulin receptor: a potential mechanism for cytokine-mediated insulin resistance. J Biol Chem 2001, 276(28):25889–25893\r\n21.	Komulainen J, Lounamaa R, Knip M, Kaprio EA, Akerblom HK. Ketoacidosis at the diagnosis of type 1 (insulin dependent) diabetes mellitus is related to poor residual beta cell function. Arch Dis Childhood1996;75:410-5\r\n22.	Blanc N, Lucidarme N, Tubiana-Rufi N. Factors associated to ketoacidosis at diagnosis of type 1 diabetes in children. Archives de Pediatrie2003;10:320-5\r\n23.	Bui H, To T, Stein R, Fung K, Daneman D. Is diabetic ketoacidosis at disease onset a result of missed diagnosis? J Pediatr2010;156:472-7\r\n24.	Rosenbauer J, Icks A, Giani G. Clinical characteristics and predictors of severe ketoacidosis at onset of type 1 diabetes mellitus in children in a North Rhine-Westphalian region, Germany. J Pediatr Endocrinol Metab2002;15:1137-45.\r\n25.	Smith CP, Firth D, Bennett S, Howard C, Chisholm P. Ketoacidosis occurring in newly diagnosed and established diabetic children. Acta Paediatrica1998;87:537-41.\r\n26.	Usher-Smith JA, Thompson MJ, Sharp SJ, Walter FM. Factors associated with the presence of diabetic ketoacidosis at diagnosis of diabetes in children and young adults: a systematic review. Bmj. 2011 Jul 7;343:d4092.\r\n27.	Xin Y, Yang M, Chen XJ, Tong YJ, Zhang LH. Clinical features at the onset of childhood type 1 diabetes mellitus in Shenyang, China. Journal of paediatrics and child health. 2010 Apr;46(4):171-5.\r\n28.	Levy?Marchal C, Patterson CC, Green A, Eurodiab Ace Study Group. Geographical variation of presentation of type 1 diabetes in children. Diabetologia. 2001; 44 (Suppl. 3): B75– 80.\r\n29.	Al?Magamsi MS, Habib HS. Clinical presentation of childhood type 1 diabetes mellitus in the Al?Madina region of Saudi Arabia. Pediatr. Diabetes. 2004; 5: 95– 8.\r\n30.	Umar UI. Pattern of presentation of Type 1 diabetic patients in Kano, Nigeria. Niger J Basic Clin Sci 2016;13:85-8.\r\n31.	Agarwal A, Yadav A, Gutch M, Consul S, Kumar S, Prakash V, Gupta AK, Bhattacharjee A. Prognostic factors in patients hospitalized with Diabetic Ketoacidosis. Endocrinology and metabolism. 2016 Sep 1;31(3):424-32.\r\n32.	Idris UA. Childhood diabetes mellitus in a rural tertiary hospital in North-West Nigeria. CHRISMED J Health Res 2018;5:123-6.\r\n33.	Umpierrez GE, Murphy MB, Kitabchi AE. Diabetic ketoaci¬dosis and hyperglycemic hyperosmolar syndrome. Diabetes Spectr 2002;15:28-36.\r\n34.	Rayfield EJ, Ault MJ, Keusch GT, Brothers MJ, Nechemias C, Smith H. Infection and diabetes: the case for glucose control. Am J Med 1982;72:439-50.'),(20,'','hide_author','0'),(20,'en_US','abstract','<p>Diabetic ketoacidosis (DKA) is the most serious complication in paediatric cases of type 1 diabetes and also the leading cause of death in these children. There is a wide geographic variation in the frequency of DKA at onset of diabetes. This study sought to determine the prevalence and pattern of DKA in Enugu and review the treatment and outcome over a 10 year period.</p>\r\n<p>This retrospective study was conducted in the Children Emergency Rooms (CHER) of the two tertiary institutions in Enugu State, South East Nigeria: Enugu State University Teaching Hospital (ESUTH) and the University of Nigeria Teaching Hospital (UNTH). The biochemical criteria for the diagnosis of diabetic ketoacidosis (DKA) was based on the presence of hyperglycaemia (blood glucose?&gt;?11&nbsp;mmol/L), acidosis (serum bicarbonate?&lt;?15&nbsp;mmol/L) and ketonuria (urine ketone ?1+).</p>\r\n<p>A total of 16,488 children were admitted during the 10 years period, of which 21 children presented with DKA, representing a prevalence of 0.13%. Six (28.6%) of the patients were newly diagnosed diabetics while fifteen (71.4%) were known diabetics, of which 9 (60%) were presenting with DKA for the first time. A total of two patients died giving a mortality rate of 9.5%. The rest were treated and discharged. The total duration of hospitalization ranged from 1 – 31 days, with a mean duration of 13.3 ± 7.5 days.</p>\r\n<p>This study has revealed some of the challenges with management of children with DKA and the mortality rate which is unacceptably high</p>'),(20,'en_US','cleanTitle','PREVALENCE AND PATTERN OF DIABETIC KETOACIDOSIS AMONG CHILDREN IN ENUGU SOUTH EAST NIGERIA: A 10 YEAR RETROSPECTIVE STUDY'),(20,'en_US','prefix',''),(20,'en_US','subtitle',''),(20,'en_US','title','PREVALENCE AND PATTERN OF DIABETIC KETOACIDOSIS AMONG CHILDREN IN ENUGU, SOUTH EAST NIGERIA: A 10 YEAR RETROSPECTIVE STUDY'),(21,'','copyrightYear','2020'),(21,'','hide_author','0'),(21,'','issueId','5'),(21,'','licenseURL',''),(21,'','pages','61-68'),(21,'','pub-id::doi','10.35916/thmr.v0i0.22'),(21,'en_US','abstract','<p>Infection is a disease caused by the presence of pathogenic microbes, including <em>Staphylococcus aureus</em> and <em>Escherichia coli</em>. Garlic (<em>Allium sativum</em> L.) has chemical contents such as allicin, alkaloids, flavonoids, saponins, tannins, and steroids, which can function as an antibacterial against <em>Staphylococcus aureus</em> and <em>Escherichia coli</em>. This study aims to determine the antibacterial properties of garlic extract powder against <em>Staphylococcus aureus</em> and <em>Escherichia coli</em>. This research is the initial stage of the development of herbal medicines to treat <em>Staphylococcus aureus</em> and <em>Escherichia coli</em> infections. The antibacterial activity test was carried out by the liquid dilution method. The concentrations used were 30 mg/mL, 40 mg/mL, 50 mg/mL, 60 mg/mL and 70 mg/mL. The results showed that the Minimum Inhibitory Concentration (MIC) against <em>Staphylococcus aureus</em> and <em>Escherichia coli</em> was 40 mg/mL and 50 mg / mL. Minimum Bactericidal Concentration (MBC) results for <em>Staphylococcus aureus</em> and <em>Escherichia coli</em> are 50 mg/mL and 70 mg/mL. Based on the Simple Linear Regression test, the R2 value of <em>Staphylococcus aureus</em> and <em>Escherichia coli</em> is 0.545 and 0.785, so it can be concluded that there is an effect of garlic extract powder on the growth of <em>Staphylococcus aureus</em> and <em>Escherichia coli</em> by 54.5% and 78.5%. Garlic (<em>Allium sativum</em> L.) extract powder has potential as herbal medicine against bacterial infections but requires further research to determine its effect in vivo.</p>'),(21,'en_US','cleanTitle','Garlic Extract Allium sativum L Effectively Inhibits  Staphylococcus aureus and Escherichia coli by Invitro Test'),(21,'en_US','copyrightHolder','Tropical Health and Medical Research'),(21,'en_US','prefix',''),(21,'en_US','subtitle',''),(21,'en_US','title','Garlic Extract (Allium sativum L.) Effectively Inhibits  Staphylococcus aureus and Escherichia coli by Invitro Test'),(22,'','copyrightYear','2020'),(22,'','hide_author','0'),(22,'','issueId','5'),(22,'','licenseURL',''),(22,'','pages','69-76'),(22,'','pub-id::doi','10.35916/thmr.v0i0.23'),(22,'en_US','abstract','<p><em>Streptococcus pyogenes</em> and <em>Pseudomonas aeruginosa</em> are some of the causes of infectious diseases. <em>Centella asiatica (L.) Urban</em> has many benefits for humans, including overcoming fever, anti-bacterial, and anti-inflammatory. This study aims to determine the inhibition of <em>Centella asiatica (L.) Urban</em> leaves ethanol extract on the growth of <em>Streptococcus pyogenes</em> and <em>Pseudomonas aeruginosa</em>. This research is the initial stage of the development of herbal medicines to treat <em>Streptococcus pyogenes</em> and <em>Pseudomonas aeruginosa</em> infections. The independent variable was the concentration of ethanol extract of <em>Centella asiatica (L.) Urban</em> leaves and the dependent variable was the growth of <em>Streptococcus pyogenes</em> and <em>Pseudomonas aeruginosa</em>. The anti-bacterial activity test was carried out by the liquid dilution method. The concentrations used are 20%, 40%, 60%, 80%. 100% The results showed that the minimum inhibitory concentration (MIC) against <em>Streptococcus pyogenes</em>: 40% and <em>Pseudomonas aeruginosa</em>: 40%. Minimum bactericidal concentration (MBC) results for <em>Streptococcus pyogenes</em>: 60% and <em>Pseudomonas aeruginosa</em>: 60%. So it can be concluded that there is inhibition of the ethanol extract of <em>Centella asiatica (L.) Urban</em> leaves on the growth of <em>Streptococcus pyogenes</em> and <em>Pseudomonas aeruginosa</em>. Centella Asiatica (L.) Urban extract has potential as herbal medicine against bacterial infections but requires further research to determine its effect in vivo.</p>'),(22,'en_US','cleanTitle','Ethanol Extract Of Centella Asiatica L Urban Leaves Effectively Inhibit Streptococcus pyogenes and  Pseudomonas aeruginosa by Invitro Test'),(22,'en_US','copyrightHolder','Tropical Health and Medical Research'),(22,'en_US','prefix',''),(22,'en_US','subtitle',''),(22,'en_US','title','Ethanol Extract Of Centella Asiatica (L.) Urban Leaves Effectively Inhibit Streptococcus pyogenes and  Pseudomonas aeruginosa by Invitro Test'),(23,'','copyrightYear','2020'),(23,'','hide_author','0'),(23,'','issueId','5'),(23,'','licenseURL',''),(23,'','pages','86-95'),(23,'','pub-id::doi','10.35916/thmr.v0i0.24'),(23,'en_US','abstract','<p><strong>Introduction:</strong> tenofovir disoproxil fumarate (TDF) has low general toxicity and can lead to moderate reduction in glomerular filtration rate (GFR) and a larger prevalence of renal tubular dysfunction (RTD). The mechanism of RTD has been attributed to the mitocondrial lesion in the proximal tubule cells caused by the increase of the intracelular TDF concentration. Aditionaly, host´s genetic polymorphisms have been considered one of the TDF concentration increasing causes. RTD can be characterized by the deficiency in the solutes reabsorption as bicarbonate, uric acid, phosphate, glucose and low weight molecular proteins.</p>\r\n<p>&nbsp;<strong>Objectives:</strong> verify the prevalence of renal tubular dysfunction &nbsp;in the people living with HIV (PLWH) on TDF treatment, identify the risk factors associated and compare the 24-hours urine findings with the serum creatinine and its calculated clearance for the RTD identification. <strong>Methods:</strong> prospective case control study, performed between january 2011 to december 2015. <strong>Results:</strong> 163 patients were included in the study, in which 106 (68.4%) didn\'t use TDF and 57 (31.6%) used TDF. RTD occured in 8 patients that used TDF, a prevalence of 14%. The patients age was identified as significant risk factor for the development of RTD. Proteinuria and the phosphaturia were significant for the diagnosis of RTD. <strong>Conclusions:</strong> age was determined as risk factor for RTD, mainly in patients over 60 years-old. Phosphaturia and proteinuria showed the greatest diagnosis sensitivity for RTD. The serum creatinine and phosphorus concentration, the creatinine clearance and the stand alone hyperproteinuria should not be used as diagnosis predictors for RTD.</p>'),(23,'en_US','cleanTitle','Renal Tubular Dysfunction Linked to Tenofovir in Antiretroviral Therapy in HIVInfected Patients'),(23,'en_US','copyrightHolder','Tropical Health and Medical Research'),(23,'en_US','prefix',''),(23,'en_US','subtitle',''),(23,'en_US','title','Renal Tubular Dysfunction Linked to Tenofovir in Antiretroviral Therapy in HIV-Infected Patients'),(24,'','citationsRaw',''),(24,'','hide_author','0'),(24,'en_US','abstract','<p><em>Salmonella typhi</em> and <em>Staphylococcus aureus</em> are pathogenic bacteria that cause infectious diseases. Treatment of these diseases can be done by giving antibacterial drugs. One of the plants that can be used as an antibacterial drug is the leaves of <em>Chromolaena odorata L.</em> due to the presence of chemical compounds such as flavonoids, tannins, and saponins that have the potential as antibacterial. This study aims to determine the Minimum Inhibitory Concentration (MIC), and Minimum Bactericidal Concentration (MBC) ethanol extract of <em>Chromolaena odorata L.</em> leaves on the growth of <em>Salmonella typhi</em> and <em>Staphylococcus aureus</em>. The study consisted of 5 treatments, namely concentrations of 20%, 40%, 60%, 80%, and 100% ethanol extract of <em>Chromolaena odorata L.</em> leaves with five repetitions. The antibacterial activity test was carried out by MIC and MBC methods. The research material uses leaves from <em>Chromolaena odorata L.</em> in the Sungai Besar area, South Banjarbaru, South Kalimantan, Indonesia. The results showed that the average MIC yield of ethanol extract of <em>Chromolaena odorata L.</em> leaves against <em>Salmonella typhi</em>: 20% and <em>Staphylococcus aureus</em>: 20%. While the average yield of MBC values ??against <em>Salmonella typhi</em>: 40% and <em>Staphylococcus aureus</em>: 40%. Based on the results obtained, it can be concluded that the ethanol extract of <em>Chromolaena odorata L.</em> leaves has an inhibitory effect on the growth of <em>Salmonella typhi</em> and <em>Staphylococcus aureus</em>.</p>'),(24,'en_US','cleanTitle','EFFECTIVENESS OF ETHANOL EXTRACT OF CHROMOLAENA ODORATA L LEAVES AS ANTIBACTERIAL OF SALMONELLA TYPHI AND STAPHYLOCOCCUS AUREUS'),(24,'en_US','prefix',''),(24,'en_US','subtitle',''),(24,'en_US','title','EFFECTIVENESS OF ETHANOL EXTRACT OF CHROMOLAENA ODORATA L. LEAVES AS ANTIBACTERIAL OF SALMONELLA TYPHI AND STAPHYLOCOCCUS AUREUS'),(25,'','citationsRaw',''),(25,'','hide_author','0'),(25,'en_US','abstract','<p><strong>Abstract:</strong> ?ntroduction: Microangiopathic hemolytic anemia (MAHA) is a group of patients&nbsp; with a&nbsp; mortality that is rarely treated untreated.Aim: Our aim is to emphasize the need to recall the MAHA in differential diagnosis of patients&nbsp; with thrombocytopenia, especially those with end-organ involvement, which are presented in this study.At the same time to show that the rate of mortality in early&nbsp; diagnosis and treatment has decreased.Materials and methods: We retrospectively reviewed the&nbsp; cases that were diagnosed and treated and treated in the Internal Medicine Service between september 2017 and may 2019.A total of 15 patients were included in the study.From patients, first application; complete blood count, sedimentation, peripheral smear, direct coombs, CRP, coagulation tests and biochemical tests were performed.Also, before and after each plasmapheresis treatment; complete blood count, urea, creatine, LDH, indirect bilirubin levels.Findings: The mean age of the patients was 8/7 (53.3/46.6) and the mean age was 46.8(25-79).As a result of etiological classification of patients; 8 patients (53.3%) had TTP, 4 patients (%26.6 ) had vitamin B12 deficiency, 1 patient had systemi lupus erythematosus( %6.6), 1 patient (%6.6) was associated with complement, 1 patien&nbsp; (%6.6) had drug-releated.As a result of; the 15 patients included in the study, 11 patients (73.3%) were recovered, 1 patient (6.6%) died after discharge, and 4 patients (20%) died during follow, totally 5 (%33.3) patients died.</p>'),(25,'en_US','cleanTitle','Retrospective Analysis of Patients Hospitalized with the Diagnosis of Microangiopathic Hemolytic Anemia in our Internal Medicine Clinic'),(25,'en_US','prefix',''),(25,'en_US','subtitle',''),(25,'en_US','title','Retrospective Analysis of Patients Hospitalized with the Diagnosis of Microangiopathic Hemolytic Anemia in our Internal Medicine Clinic'),(26,'','copyrightYear','2020'),(26,'','hide_author','0'),(26,'','issueId','6'),(26,'','licenseURL',''),(26,'','pages',''),(26,'','pub-id::doi','10.35916/thmr.v0i0.28'),(26,'en_US','abstract','<p>Covid outbreak has been getting worse and spread affected all over the world. Pregnant patients are also vulnerable to respiratory diseases. We aimed to evaluate the awareness, emotional status, and behavior of pregnant during the COVID outbreak. This study\'s main benefit is to analyze the knowledge and understanding of pregnant women about the pandemic and draw attention to the prevention issues that need improvement. This research is a prospective observational study that 199 patients subjected to a questionnaire including 29 questions about patient characteristics, pregnancy information, knowledge about COVID19-infection, behavioral and emotional changes. 130 (65.3) of the patients stated an above-average knowledge level. Television was the most frequent information source (75.4%, n:150) and was the only information source for 90 (45.1%) of the patients.&nbsp;Sixty-nine patients used more than one information source. More than one prevention method uses by 149 (75%) of the patients. Washing hands (n:183, 92.0%) and cleaning the house (n:122, 61.3%) were the most preferred methods. Only 55 (27.6%) of the patients used a mask for prevention. 88(44.2%) of the patients stated that they preferred a shorter hospital stay, and 75 (37.7%) of the patients indicated that they postponed or avoided the pregnancy follow-up visits due to the COVID-19 issue. Pregnant women seem to be aware and stressed of COVID-19, but knowledge of what to do seems insufficient. Patients informed of risks of COVID infection, unplanned hospital admission, and chances of avoiding necessary visits and home birth demands.</p>'),(26,'en_US','cleanTitle','Awareness of Pregnant Women for COVID19 Infection'),(26,'en_US','copyrightHolder','Tropical Health and Medical Research'),(26,'en_US','prefix',''),(26,'en_US','subtitle',''),(26,'en_US','title','Awareness of Pregnant Women for COVID-19 Infection'),(27,'','copyrightYear','2021'),(27,'','hide_author','0'),(27,'','issueId','6'),(27,'','licenseURL',''),(27,'','pages',''),(27,'','pub-id::doi','10.35916/thmr.v0i0.29'),(27,'en_US','abstract','<p>The current study design to assess the dose-response effect of administering an aqueous extract of guava leaves on the microstructure of the testicles due to the growing use of this plant in complementary and alternative medicine practice.&nbsp;Twenty-four male albino Wistar rats with an average body weight of 160 g apportion to four groups (n=6 each). Group, I served as the control and received distilled water; group II gave a lower dose of 500 mg/kg body weight of guava leaf extract; group III received a medium dose of 750 mg/kg; while group IV administer a higher amount of 1000 mg/kg per day. Treatments were given once daily by gavage and lasted for 14 days, while the stock solution prepares by dissolving 50 g of the extract in 30 ml of water. The cervical dislocation method used to euthanize the rats, dissect the abdominopelvic region to obtain tissue specimens from the testes for histological processing.&nbsp;The outcome exhibited the extract to cause moderate to severe (dose-dependent) morphological alterations with the seminiferous tubules\' fibrotic appearance, strict spermatogenic arrest, and necrosis of both the interstitial cells of Leydig and the Sertoli cells.&nbsp;The ingestion of guava leaves at the investigated concentration and doses is harmful to the testicle, the primary reproductive organ in males. It should therefore be consumed with caution when being used primarily in folklore-traditional medicine.</p>'),(27,'en_US','cleanTitle','Morphological Alterations of the Rat Testicles Following Administration of Graded Doses of Leaves of Guava Psidium guajava Linn Aqueous Extract'),(27,'en_US','copyrightHolder','Tropical Health and Medical Research'),(27,'en_US','prefix',''),(27,'en_US','subtitle',''),(27,'en_US','title','Morphological Alterations of the Rat Testicles Following Administration of Graded Doses of Leaves of Guava (Psidium guajava Linn.) Aqueous Extract'),(28,'','citationsRaw',''),(28,'','hide_author','0'),(28,'en_US','abstract','<p>&nbsp;</p>\r\n<p>Background and objective: Obesity is a common health problem among females of reproductive age. Obesity is associated with fetal and maternal complications. The aim of this study is to assess the knowledge, attitude, and practice of pregnant women regarding obesity and its negative impact on maternal and fetal health.</p>\r\n<p>Methods:&nbsp; This study was conducted among 218 pregnant women who attended one primary care center in Abha City, KSA during&nbsp; 2018. The participants were interviewed during their visit to the antenatal clinic using a valid questionnaire which includes many questions exploring the knowledge, attitude, and practice regarding obesity during pregnancy. Data were entered, analyzed through SPSS. Relevant statistical tests were used accordingly, p-values were considered significant if less than 5%.</p>\r\n<p>Results: The prevalence rate of overweight and obesity were 37.6% and 24% respectively, more than half of participants did not know the expected average weight increase during pregnancy, more than half were unable to classify their actual weight correctly. Knowledge regarding the harmful effects of obesity on maternal and fetal health during pregnancy was poor.&nbsp; Pregnant women also have false beliefs about dietary habits and physical activities which may lead to gaining of extra weight during pregnancy and worsen the outcomes.</p>\r\n<p>Conclusion: The prevalence rates of overweight and obesity among many pregnant women were high. Knowledge related to obesity and its maternal and fetal risk was inadequate. False beliefs regarding lifestyles during pregnancy were evident. Preconception structured health education program to upgrade knowledge, change attitude, to improve practice, and to correct misbeliefs regarding obesity during pregnancy is mandatory.&nbsp;</p>\r\n<p>Keywords: obesity, overweight, Knowledge, Attitude, Practice Pregnancy</p>\r\n<p>&nbsp;</p>'),(28,'en_US','cleanTitle','KNOWLEDGE OF PREGNANT WOMEN REGARDING EFFECTS OF OBESITY ON MATERNAL AND  FETAL HEALTH'),(28,'en_US','prefix',''),(28,'en_US','subtitle',''),(28,'en_US','title','KNOWLEDGE OF PREGNANT WOMEN REGARDING EFFECTS OF OBESITY ON MATERNAL AND  FETAL HEALTH.'),(29,'','citationsRaw','1. 	Oyer S, Nellis J, Ishii L, Boahene K. Comparison of Objective Outcomes in Dynamic Lower Facial Reanimation With Temporalis Tendon and Gracilis Free Muscle Transfer. JAMA Otolaryngol Head Neck Surg Neck Surg. 2018;144(12):1162–8. https://doi:10.1001/jamaoto.2018.1964\r\n2. 	Györi E, Mayrhofer M, Schwaiger BM, Pona I, Tzou CH. Functional results after facial reanimation in iatrogenic facial palsy. Microsurgery. 2019;1–9. https://doi.org/10.1002/micr.30478\r\n3. 	Bos R, Reddy SG, Mommaerts MY. Lengthening temporalis myoplasty versus free muscle transfer with the gracilis flap for long-standing facial paralysis: A systematic review of outcomes. J Cranio-Maxillofacial Surg. 2016 Aug 1;44(8):940–51. https://doi.org/10.1016/j.jcms.2016.05.006\r\n4. 	Boahene K, Owusu J, Ishii L, Ishii M. The multivector gracilis free functional muscle flap for facial reanimation. JAMA Facial Plast Surg. 2018;E1–7. https://doi.org/10.1001/jamafacial.2018.0048\r\n5. 	Harii K, Ohmori K, Torii S. Free gracilis muscle transplantation, with microneurovascular anastomoses for the treatment of facial paralysis. A preliminary report. Plast Reconstr Surg. 1976;57(2):133–43. https://doi.org/10.1097/00006534-197602000-00001\r\n6. 	Bhama PK, Weinberg JS, Lindsay RW, Hohman MH, Cheney ML, Hadlock TA. Objective Outcomes Analysis Following Microvascular Gracilis Transfer for Facial Reanimation A Review of 10 Years’ Experience. JAMA Facial Plast Surg. 2014;16(2):85–92. https://doi.org/10.1001/jamafacial.2013.2463\r\n7. 	Greene J, Tavares J, Mohan S, Jowett N. Long-Term Outcomes of Free Gracilis Muscle Transfer for Smile Reanimation in Children. J Pediatr. 2018;202:279–84. https://doi.org/10.1016/j.jpeds.2018.06.043\r\n8. 	Rüfer F, Schröder A, Erb C. White-to-white corneal diameter: normal values in healthy humans obtained with the Orbscan II topography system. Cornea. 2005;24(3):259–61. https:// doi: 10.1097/01.ico.0000148312.01805.53\r\n9. 	Rubin L, Mishriki Y, Lee G. Anatomy of the nasolabial fold: the keystone of the smiling mechanism. Plast Reconstr Surg. 1989;83(1):1–10. https://doi.org/10.1097/00006534-198901000-00001\r\n10. 	Lin J, Lu J, Chang T. Simultaneous reconstruction of the lower lip with gracilis functioning free muscle transplantation for facial reanimation: Comparison of different techniques. Plast Reconstr Surg. 2018;142(5):1307–17. https://doi.org/10.1097/PRS.0000000000004849\r\n11. 	Labbè D, Bussu F, Iodice A. A comprehensive approach to long-standing facial paralysis based on lengthening temporalis myoplasty. Acta Otorhinolaryngol Ital. 2012;32(3):145–53. \r\n12. 	Hayashi A, Labbé D, Natori Y, Yoshizawa H, Kudo H, Sakai T, et al. Experience and anatomical study of modified lengthening temporalis myoplasty for established facial paralysis. J Plast Reconstr Aesthetic Surg. 2015 Jan 1;68(1):63–70. https://doi.org/10.1016/j.bjps.2014.09.037\r\n13. 	Whitney T, Buncke H, Alpert B. The serratus anterior free-muscle flap: experience with 100 consecutive cases. Plast Reconstr Surg. 1990;86(3):481–90. \r\n14. 	Allevi F, Motta G, Colombo V, Biglioli F. Double-bellied latissimus dorsi free flap to correct full dental smile palsy. BMJ Case Rep [Internet]. 2015 [cited 2019 Oct 28]; Available from: http://dx.doi.org/10.1136/bcr-2015-210436\r\n15. 	Ueda K, Harii K, Yamada A. Free vascularized double muscle transplantation for the treatment of facial paralysis. Plast Reconstr Surg. 1995;95(7):1288–96.'),(29,'','hide_author','0'),(29,'en_US','abstract','<p><strong>Objective: </strong>To address objective excursion and symmetry results from a series of free gracilis muscle transfer (FGMT) cases and examine the predictive intraoperative number of vectors anchored during flap inset on outcomes.</p>\r\n<p><strong>Method: </strong>A retrospective analysis was performed by data retrieved from the HUSM Plastic &amp; Reconstructive Surgery OR Registry from January 2005 to June 2019. All patients who reported facial nerve palsy were recorded and re-evaluated. All characteristics in interest were epidemiologically tabulated and analyzed in detail. Subsequently, outcome assessment was performed to look for facial symmetry and smile excursion with comparison to the healthy side of the face.</p>\r\n<p><strong>Results</strong>: Out of 12 patients diagnosed with facial palsy, 4 patients underwent static facial reanimation and 8 patients underwent dynamic facial reanimation with 4 of them completed 2 stages of cross facial nerve grafting (CFNG) and free gracilis muscle transfer (FGMT). One of the FGMTs had missed a follow-up. The mean age was 20 (range 11 to 30), 1 patient was male and 2 were female. The mean duration for follow up was 69 months. The mean duration of operating time was 8.67 hours. All operations without complication and there was no microvascular re-exploration. Smile excursion and angle excursion at smile improved following FGMT. Association between the number of vectors anchored during flap inset to the outcome were identified.</p>\r\n<p><strong>Conclusions</strong>: Dynamic facial reanimation using FGMT still the gold standard of treatment which provides a good quantifiable improvement in oral commissure excursion and facial symmetry with smiling.&nbsp; Use of multivector gracilis flap was suggestive to associate with the good outcome on an excursion and symmetrical of the smile.</p>'),(29,'en_US','cleanTitle','OUTCOME ANALYSIS FOLLOWING MICROVASCULAR FREE GRACILIS MUSCLE TRANSFER FOR MULTIVECTOR FACIAL REANIMATION'),(29,'en_US','prefix',''),(29,'en_US','subtitle',''),(29,'en_US','title','OUTCOME ANALYSIS FOLLOWING MICROVASCULAR FREE GRACILIS MUSCLE TRANSFER FOR MULTI-VECTOR FACIAL REANIMATION'),(30,'','copyrightYear','2021'),(30,'','hide_author','0'),(30,'','issueId','6'),(30,'','licenseURL',''),(30,'','pages',''),(30,'','pub-id::doi','10.35916/thmr.v0i0.33'),(30,'en_US','abstract','<p>The purpose of this study is to analyze the relationship between the use of government health facilities with predisposing factors (preference and self-efficacy) and reinforcing factors (support) in pregnant women. This survey research with a cross-sectional study design was conducted in the Pekauman Community Health Center\'s working area in Banjarmasin, Indonesia, with 125 respondents who had babies aged ? six months who lived in the Pekauman Community Health Center\'s working area who visited the integrated service post in August 2017. The analysis was performed using the Chi-Square test. The results of the study 89 respondents (71.2%) made use of antenatal care facilities; 92 respondents (73.6%) chose health facilities; 88 respondents (70, 4%) have high self-efficacy; 78 respondents (62.4%) received support (family, friends, social groups). This research concludes that there is a relationship between the preferences of pregnant women (p= 0.025) with the use of antenatal services in government health facilities; There was no relationship between self-efficacy (p= 0.096); there is no relationship between family support, friends, social groups (p= 0.227) with the use of antenatal care for pregnant women in government health facilities. It is suggested to conduct further research on the relationship between antenatal services for pregnant women in government health facilities with the completeness of health facilities and the level of respondent satisfaction.</p>'),(30,'en_US','cleanTitle','Utilization of Health Facilities by Pregnant Women at Pekauman Community Health Center Banjarmasin Indonesia'),(30,'en_US','copyrightHolder','Tropical Health and Medical Research'),(30,'en_US','prefix',''),(30,'en_US','subtitle',''),(30,'en_US','title','Utilization of Health Facilities by Pregnant Women at Pekauman Community Health Center, Banjarmasin, Indonesia'),(31,'','citationsRaw','Azam, M., Sulistiana, R., Ratnawati, M., Fibriana, A. I., Bahrudin, U., Widyaningrum, D., & Aljunid, S. M. (2020). Recurrent SARS-CoV-2 RNA positivity after COVID-19: A systematic review and meta-analysis. Scientific Reports, 10(1), 20692. https://doi.org/10.1038/s41598-020-77739-y\r\nCacciapaglia, G., Cot, C., & Sannino, F. (2020). Second wave COVID-19 pandemics in Europe: A temporal playbook. Scientific Reports, 10(1), 15514. https://doi.org/10.1038/s41598-020-72611-5\r\nCevik, M., Tate, M., Lloyd, O., Maraolo, A. E., Schafers, J., & Ho, A. (2020). SARS-CoV-2, SARS-CoV-1 and MERS-CoV Viral Load Dynamics, Duration of Viral Shedding and Infectiousness: A Living Systematic Review and Meta-Analysis (SSRN Scholarly Paper ID 3677918). Social Science Research Network. https://doi.org/10.2139/ssrn.3677918\r\nFalahi, S., & Kenarkoohi, A. (2020). COVID-19 reinfection: Prolonged shedding or true reinfection? New Microbes and New Infections, 38, 100812. https://doi.org/10.1016/j.nmni.2020.100812\r\nGeorge, D., & Mallery, P. (2019). IBM SPSS statistics 25 step by step: A simple guide and reference (Fifteenth edition). Routledge, Taylor & Francis Group.\r\nGidari, A., Nofri, M., Saccarelli, L., Bastianelli, S., Sabbatini, S., Bozza, S., Camilloni, B., Fusco-Moffa, I., Monari, C., De Robertis, E., Mencacci, A., & Francisci, D. (2021). Is recurrence possible in coronavirus disease 2019 (COVID-19)? Case series and systematic review of literature. European Journal of Clinical Microbiology & Infectious Diseases: Official Publication of the European Society of Clinical Microbiology, 40(1), 1–12. https://doi.org/10.1007/s10096-020-04057-6\r\nHoang, T. (2020). Characteristics of COVID-19 recurrence: A systematic review and meta-analysis [Preprint]. Infectious Diseases (except HIV/AIDS). https://doi.org/10.1101/2020.09.05.20189134\r\nKatewongsa, P., Widyastari, D. A., Saonuam, P., Haemathulin, N., & Wongsingha, N. (2020). The effects of the COVID-19 pandemic on the physical activity of the Thai population: Evidence from Thailand’s Surveillance on Physical Activity 2020. Journal of Sport and Health Science, S2095254620301344. https://doi.org/10.1016/j.jshs.2020.10.001\r\nLan, L., Xu, D., Ye, G., Xia, C., Wang, S., Li, Y., & Xu, H. (2020). Positive RT-PCR Test Results in Patients Recovered From COVID-19. JAMA, 323(15), 1502. https://doi.org/10.1001/jama.2020.2783\r\nNicola, M., Alsafi, Z., Sohrabi, C., Kerwan, A., Al-Jabir, A., Iosifidis, C., Agha, M., & Agha, R. (2020). The socio-economic implications of the coronavirus pandemic (COVID-19): A review. International Journal of Surgery (London, England), 78, 185–193. https://doi.org/10.1016/j.ijsu.2020.04.018\r\nSharma, O., Sultan, A. A., Ding, H., & Triggle, C. R. (2020). A Review of the Progress and Challenges of Developing a Vaccine for COVID-19. Frontiers in Immunology, 11, 585354. https://doi.org/10.3389/fimmu.2020.585354\r\nShui, T.-J., Li, C., Liu, H., Chen, X., & Zhang, B. (2020). Characteristics of recovered COVID-19 patients with recurrent positive RT-PCR findings in Wuhan, China: A retrospective study. BMC Infectious Diseases, 20(1), 749. https://doi.org/10.1186/s12879-020-05463-z\r\nTao, W., Wang, X., Zhang, G., Guo, M., Ma, H., Zhao, D., Sun, Y., He, J., Liu, L., Zhang, K., Wang, Y., Weng, J., Ma, X., Jin, T., & Zhu, S. (2020). Re-detectable positive SARS-CoV-2 RNA tests in patients who recovered from COVID-19 with intestinal infection. Protein & Cell. https://doi.org/10.1007/s13238-020-00778-8\r\nWoloshin, S., Patel, N., & Kesselheim, A. S. (2020). False Negative Tests for SARS-CoV-2 Infection—Challenges and Implications. The New England Journal of Medicine, 383(6), e38. https://doi.org/10.1056/NEJMp2015897\r\nXiao, A. T., Tong, Y. X., & Zhang, S. (2020). False negative of RT-PCR and prolonged nucleic acid conversion in COVID-19: Rather than recurrence. Journal of Medical Virology, 92(10), 1755–1756. https://doi.org/10.1002/jmv.25855\r\nYuan, B., Liu, H.-Q., Yang, Z.-R., Chen, Y.-X., Liu, Z.-Y., Zhang, K., Wang, C., Li, W.-X., An, Y.-W., Wang, J.-C., & Song, S. (2020). Recurrence of positive SARS-CoV-2 viral RNA in recovered COVID-19 patients during medical isolation observation. Scientific Reports, 10(1), 11887. https://doi.org/10.1038/s41598-020-68782-w'),(31,'','hide_author','0'),(31,'en_US','abstract','<p>Backround:The studies about COVID-19 began to show that people who have already had COVID-19 were re-admitted to the hospital due to COVID-19 positivity.</p>\r\n<p>Objective:This study aims to identify recurrent positive patients and the demographic characteristics of these patients.</p>\r\n<p>Metod-Results:The number of recurrent COVID-19 positive patients&nbsp; was 190. Of these patients, 97 (51.1%) were male, the average age was 43.98 years (±16.3), 147 (77.4%) were never hospitalized, Of the hospitalized patients, 28 (65.1%) were male and the average age of the inpatients was 54.67 years (±16.15). Looking at the duration of hospital stay of the inpatients, it was observed that the average was 11.16 days (±8.9). A positive correlation was found between the age of the patients and the duration of their hospital stay (r=0.386). The average time between the two positives was 52.92 days.</p>\r\n<p>Conclusion:Patients who have a recurrent positive result usually survive the disease with outpatient treatment for their mild illness. Hospitalization rates of male patients were higher than those of females, and the duration of hospital stay was found to increase as the age of the patients increases.</p>\r\n<p>&nbsp;</p>'),(31,'en_US','cleanTitle','Analysis of Recurrent Positive COVID19 Patients in A Hospital'),(31,'en_US','prefix',''),(31,'en_US','subtitle',''),(31,'en_US','title','Analysis of Recurrent Positive COVID-19 Patients in A Hospital'),(32,'','hide_author','0'),(33,'','citationsRaw','1.	Colicchia M, Campagnolo L, Baldini E, Ulisse S, Valensise H, Moretti C. Molecular basis of thyrotropin and thyroid hormone action during implantation and early development. Hum Reprod Update. 2014;20(6):884–904.\r\n2.	Moog NK, Entringer S, Heim C, Wadhwa PD, Kathmann N, Buss C. Influence of maternal thyroid hormones during gestation on fetal brain development. Neuroscience. 2017;342:68–100.\r\n3.	Aghajanova L, Stavreus-Evers A, Lindeberg M, Landgren B-M, Sparre LS, Hovatta O. Thyroid-stimulating hormone receptor and thyroid hormone receptors are involved in human endometrial physiology. Fertil Steril. 2011;95(1):230-237.e2.\r\n4.	Hollowell JG, Staehling NW, Flanders WD, Hannon WH, Gunter EW, Spencer CA, et al. Serum TSH, T4, and Thyroid Antibodies in the United States Population (1988 to 1994): National Health and Nutrition Examination Survey (NHANES III). J Clin Endocrinol Metab. 2002;87(2):489–499.\r\n5.	Garber J, Cobin R, Gharib H, Hennessey J, Klein I, Mechanick J, et al. Clinical Practice Guidelines for Hypothyroidism in Adults: Cosponsored by the American Association of Clinical Endocrinologists and the American Thyroid Association. Endocr Pract. 2012;18(6):988–1028.\r\n6.	Usadi RS, Merriam KS. Subclinical Hypothyroidism: Impact on Fertility, Obstetric and Neonatal Outcomes. Semin Reprod Med. 2016;34(6):337–342.\r\n7.	De Groot L, Abalovich M, Alexander EK, Amino N, Barbour L, Cobin RH, et al. Management of Thyroid Dysfunction during Pregnancy and Postpartum: An Endocrine Society Clinical Practice Guideline. J Clin Endocrinol Metab. 2012;97(8):2543–2565.\r\n8.	Subclinical hypothyroidism in the infertile female population: a guideline. Fertil Steril. 2015;104(3):545–553.\r\n9.	Kim C-H, Ahn J-W, Kang SP, Kim S-H, Chae H-D, Kang B-M. Effect of levothyroxine treatment on in vitro fertilization and pregnancy outcome in infertile women with subclinical hypothyroidism undergoing in vitro fertilization/intracytoplasmic sperm injection. Fertil Steril. 2011;95(5):1650–1654.\r\n10.	Rahman A, Abbassy H, Abbassy A. Improved in Vitro Fertilization Outcomes After Treatment of Subclinical Hypothyroidism in Infertile Women. Endocr Pract. 2010;16(5):792–797.\r\n11.	Çal??kan E, Ergin RN, Öztekin DC, Kars B, Çak?r S, Sofuo?lu K. Subclinical hypothyroidism: Is it important in intracytoplasmic sperm injection cycles? Turk J Obstet Gynecol. 2017;14(2):100–105.\r\n12.	Reh A, Grifo J, Danoff A. What is a normal thyroid-stimulating hormone (TSH) level? Effects of stricter TSH thresholds on pregnancy outcomes after in vitro fertilization. Fertil Steril. 2010;94(7):2920–2922.\r\n13.	Karmon AE, Batsis M, Chavarro JE, Souter I. Preconceptional thyroid-stimulating hormone levels and outcomes of intrauterine insemination among euthyroid infertile women. Fertil Steril. 2015;103(1):258-263.e1.\r\n14.	So S, Yamaguchi W, Murabayashi N, Miyano N, Tawara F. Effect of moderately increased thyroid?stimulating hormone levels and presence of thyroid antibodies on pregnancy among infertile women. Reprod Med Biol. 2019;19(1):82–88.\r\n15.	Surks MI, Ortiz E, Daniels GH, Sawin CT, Col NF, Cobin RH, et al. Subclinical Thyroid Disease: Scientific Review and Guidelines for Diagnosis and Management. JAMA. 2004;291(2):228–238.'),(33,'','hide_author','0'),(33,'en_US','abstract','<p><strong>ABSTRACT</strong></p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p><strong>Aim:</strong>The aim of this study to assess whether there is a need to decrease the TSH level below 2.5 mIU/L in unexplainable infertility patients who were undergoing intrauterine insemination, and to determine the difference between patients with TSH level of 2.5 mIU / L and patients with TSH level of 2.5-4.5 mIU/L in terms of the success of intrauterine insemination.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>Materials and Methods:</strong>&nbsp;This study was conducted via cross-sectional examinations of the patients who applied to Ümraniye Training and Research Hospital infertility outpatient clinic between 01.06.2017-01.10.2019, who underwent intrauterine insemination with the diagnosis of unexplained infertility.&nbsp;</p>\r\n<p>&nbsp;</p>\r\n<p><strong>Results:</strong>&nbsp;The mean age of the cases participating in our study is 31.65 ± 5.28, and the mean BMI has been measured as 24.17 ± 4.30 kg / m2. TSH values range from 0.3 to 5.2, with an average of 1.84 ± 0.93; while TSH value of 174 cases (77.3%) is below 2.5 mIU/L, TSH value of 51 cases (22.7%) is between 2.5-4.5mIU/L. Within the control group with TSH &lt;2.5 mIU/L, the cycle was canceled in 13 cases (7.5%), pregnancy did not occur in 143 cases (82.2%), and while ongoing pregnancy was achieved in 17 cases (9.8%), clinical pregnancy was achieved in 1 case (0,6%). Also, within the study group with a TSH value of 2.5-4.5 mIU/L, cycles were canceled in 7 cases (13.7%), pregnancy did not occur in 40 cases (78.4%), and ongoing pregnancy was achieved in 4 patients (7.8%).</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;<strong>Conclusion:</strong>&nbsp;There was no statistically significant difference in terms of intrauterine insemination success between the control group with TSH &lt;2.5 mIU / L and the study group with TSH 2.5-4.5 mIU/L. Widespread randomized controlled prospective studies are needed in order to determine the optimal TSH threshold value which is required before TSH treatment of the women receiving infertility treatment.</p>\r\n<p><strong>&nbsp;</strong></p>\r\n<p>&nbsp;</p>'),(33,'en_US','cleanTitle','INTRAUTERINE INSEMINATION SUCCESS RATES IN DIFFERENT TSH LEVELS'),(33,'en_US','prefix',''),(33,'en_US','subtitle',''),(33,'en_US','title','INTRAUTERINE INSEMINATION SUCCESS RATES IN DIFFERENT TSH LEVELS'),(34,'','hide_author','0'),(35,'','citationsRaw',''),(35,'','hide_author','0'),(35,'en_US','abstract','<p>abstrak</p>'),(35,'en_US','cleanTitle','kelembaban'),(35,'en_US','prefix',''),(35,'en_US','subtitle',''),(35,'en_US','title','kelembaban');
/*!40000 ALTER TABLE `publication_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `publications`
--

DROP TABLE IF EXISTS `publications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `publications` (
  `publication_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `access_status` bigint(20) DEFAULT 0,
  `date_published` date DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `primary_contact_id` bigint(20) DEFAULT NULL,
  `section_id` bigint(20) DEFAULT NULL,
  `seq` double NOT NULL DEFAULT 0,
  `submission_id` bigint(20) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `url_path` varchar(64) DEFAULT NULL,
  `version` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`publication_id`),
  KEY `publications_submission_id` (`submission_id`),
  KEY `publications_section_id` (`section_id`),
  KEY `publications_url_path` (`url_path`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `publications`
--

LOCK TABLES `publications` WRITE;
/*!40000 ALTER TABLE `publications` DISABLE KEYS */;
INSERT INTO `publications` VALUES (1,0,'2019-03-31','2021-02-22 20:49:43',NULL,1,5,1,3,NULL,1),(2,0,'2019-03-31','2021-02-22 20:49:42',2,1,3,2,3,NULL,1),(3,0,'2019-03-31','2021-02-22 20:49:41',NULL,1,2,3,3,NULL,1),(4,0,'2019-03-31','2021-02-22 20:49:40',NULL,1,4,4,3,NULL,1),(5,0,'2019-03-31','2021-02-22 20:49:39',NULL,1,1,5,3,NULL,1),(6,0,'2019-08-31','2021-02-22 20:49:35',20,1,1,6,3,NULL,1),(7,0,'2019-08-31','2021-02-22 20:49:38',23,1,5,7,3,NULL,1),(8,0,'2019-08-31','2021-02-22 20:49:36',26,1,2,8,3,NULL,1),(9,0,'2019-08-31','2021-02-22 20:49:37',29,1,3,9,3,NULL,1),(10,0,'2019-08-31','2021-02-22 20:49:39',30,1,4,10,3,NULL,1),(11,0,'2020-03-27','2021-02-22 20:49:30',33,1,6,11,3,NULL,1),(12,0,'2020-02-27','2021-02-22 20:49:34',35,1,1,13,3,NULL,1),(13,0,'2020-02-28','2021-02-22 20:49:32',36,1,3,14,3,NULL,1),(14,0,'2020-02-27','2021-02-22 20:49:34',37,1,2,15,3,NULL,1),(15,0,'2020-03-25','2021-02-22 20:49:31',52,1,4,16,3,NULL,1),(16,0,'2020-03-25','2021-02-22 20:49:30',53,1,5,17,3,NULL,1),(17,0,'2020-08-26','2021-02-22 20:49:23',57,1,5,18,3,NULL,1),(18,0,'2020-05-12','2021-02-22 20:49:28',62,1,1,19,3,NULL,1),(19,0,'2020-06-17','2021-02-22 20:49:26',64,1,2,20,3,NULL,1),(20,0,NULL,'2020-11-14 13:42:10',71,1,0,21,1,NULL,1),(21,0,'2020-08-26','2021-02-22 20:49:25',80,1,3,22,3,NULL,1),(22,0,'2020-08-26','2021-02-22 20:49:24',91,1,4,23,3,NULL,1),(23,0,'2020-08-26','2021-02-22 20:49:22',83,1,6,24,3,NULL,1),(24,0,NULL,'2020-09-28 06:23:29',95,1,0,25,4,NULL,1),(25,0,NULL,'2020-10-07 11:26:24',96,1,0,26,1,NULL,1),(26,0,'2020-11-18','2021-02-22 20:49:21',98,1,1,28,3,NULL,1),(27,0,'2021-01-02','2021-02-22 20:49:21',101,1,2,29,3,NULL,1),(28,0,NULL,'2020-11-07 15:49:40',102,1,0,30,1,NULL,1),(29,0,NULL,'2021-02-20 10:17:09',105,1,0,32,1,NULL,1),(30,0,'2021-02-19','2021-02-22 20:49:20',106,1,3,33,3,NULL,1),(31,0,NULL,'2021-01-20 21:27:27',111,1,0,36,1,NULL,1),(32,0,NULL,'2021-01-20 23:39:44',112,1,0,37,1,NULL,1),(33,0,NULL,'2021-02-20 10:16:33',113,1,0,38,1,NULL,1),(34,0,NULL,'2021-01-28 09:22:25',117,1,0,39,1,NULL,1),(35,0,NULL,'2021-02-20 08:59:20',120,1,0,40,1,NULL,1);
/*!40000 ALTER TABLE `publications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queries`
--

DROP TABLE IF EXISTS `queries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queries` (
  `query_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `stage_id` tinyint(4) NOT NULL DEFAULT 1,
  `seq` double NOT NULL DEFAULT 0,
  `date_posted` datetime DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  `closed` smallint(6) NOT NULL DEFAULT 0,
  PRIMARY KEY (`query_id`),
  KEY `queries_assoc_id` (`assoc_type`,`assoc_id`)
) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queries`
--

LOCK TABLES `queries` WRITE;
/*!40000 ALTER TABLE `queries` DISABLE KEYS */;
INSERT INTO `queries` VALUES (1,1048585,9,3,1,NULL,NULL,0),(2,1048585,8,3,1,NULL,NULL,0),(3,1048585,7,3,1,NULL,NULL,0),(4,1048585,10,3,1,NULL,NULL,0),(5,1048585,10,3,2,NULL,NULL,0),(6,1048585,14,1,1,NULL,NULL,0),(7,1048585,14,3,2,NULL,NULL,0),(14,1048585,13,3,1,NULL,NULL,0),(16,1048585,14,3,3,NULL,NULL,0),(17,1048585,13,3,2,NULL,NULL,0),(18,1048585,15,1,1,NULL,NULL,0),(19,1048585,13,3,3,NULL,NULL,0),(20,1048585,13,3,4,NULL,NULL,0),(22,1048585,15,3,2,NULL,NULL,0),(24,1048585,11,3,1,NULL,NULL,0),(25,1048585,15,3,3,NULL,NULL,0),(26,1048585,13,3,5,NULL,NULL,0),(27,1048585,14,3,4,NULL,NULL,0),(28,1048585,18,1,1,NULL,NULL,0),(29,1048585,11,3,2,NULL,NULL,0),(30,1048585,19,1,1,NULL,NULL,0),(31,1048585,24,1,1,NULL,NULL,0),(32,1048585,24,3,2,NULL,NULL,0),(33,1048585,26,1,1,NULL,NULL,0),(35,1048585,28,1,1,NULL,NULL,0),(36,1048585,29,1,1,NULL,NULL,0),(37,1048585,28,3,2,NULL,NULL,0),(38,1048585,29,3,2,NULL,NULL,0),(39,1048585,28,5,3,NULL,NULL,0),(40,1048585,28,5,4,NULL,NULL,0),(41,1048585,32,1,1,NULL,NULL,0),(42,1048585,32,3,2,NULL,NULL,0),(45,1048585,36,1,1,NULL,NULL,0),(46,1048585,38,1,1,NULL,NULL,0),(48,1048585,36,1,2,NULL,NULL,0),(49,1048585,38,1,2,NULL,NULL,0),(50,1048585,36,1,3,NULL,NULL,0),(57,1048585,36,1,4,NULL,NULL,0),(58,1048585,38,1,3,NULL,NULL,0),(60,1048585,38,1,4,NULL,NULL,0),(61,1048585,38,1,5,NULL,NULL,0),(64,1048585,38,3,6,NULL,NULL,0),(65,1048585,38,3,7,NULL,NULL,0);
/*!40000 ALTER TABLE `queries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `query_participants`
--

DROP TABLE IF EXISTS `query_participants`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `query_participants` (
  `query_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  UNIQUE KEY `query_participants_pkey` (`query_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `query_participants`
--

LOCK TABLES `query_participants` WRITE;
/*!40000 ALTER TABLE `query_participants` DISABLE KEYS */;
INSERT INTO `query_participants` VALUES (6,26),(14,1),(14,6),(14,18),(14,25),(17,1),(17,25),(18,28),(19,1),(19,25),(24,5),(25,5),(26,5),(27,5),(27,29),(28,1),(29,5),(30,37),(31,43),(32,43),(33,52),(35,57),(36,58),(37,57),(38,58),(39,1),(39,57),(40,1),(41,63),(42,1),(42,63),(45,56),(46,66),(48,1),(48,56),(49,1),(50,1),(57,1),(57,56),(58,1),(58,66),(60,66),(61,1),(61,66),(64,1),(64,66),(65,1),(65,66);
/*!40000 ALTER TABLE `query_participants` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queued_payments`
--

DROP TABLE IF EXISTS `queued_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queued_payments` (
  `queued_payment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `expiry_date` date DEFAULT NULL,
  `payment_data` text DEFAULT NULL,
  PRIMARY KEY (`queued_payment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queued_payments`
--

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

--
-- Table structure for table `review_assignments`
--

DROP TABLE IF EXISTS `review_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_assignments` (
  `review_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `reviewer_id` bigint(20) NOT NULL,
  `competing_interests` text DEFAULT NULL,
  `recommendation` tinyint(4) DEFAULT NULL,
  `date_assigned` datetime DEFAULT NULL,
  `date_notified` datetime DEFAULT NULL,
  `date_confirmed` datetime DEFAULT NULL,
  `date_completed` datetime DEFAULT NULL,
  `date_acknowledged` datetime DEFAULT NULL,
  `date_due` datetime DEFAULT NULL,
  `date_response_due` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `reminder_was_automatic` tinyint(4) NOT NULL DEFAULT 0,
  `declined` tinyint(4) NOT NULL DEFAULT 0,
  `reviewer_file_id` bigint(20) DEFAULT NULL,
  `date_rated` datetime DEFAULT NULL,
  `date_reminded` datetime DEFAULT NULL,
  `quality` tinyint(4) DEFAULT NULL,
  `review_round_id` bigint(20) NOT NULL,
  `stage_id` tinyint(4) NOT NULL DEFAULT 1,
  `review_method` tinyint(4) NOT NULL DEFAULT 1,
  `round` tinyint(4) NOT NULL DEFAULT 1,
  `step` tinyint(4) NOT NULL DEFAULT 1,
  `review_form_id` bigint(20) DEFAULT NULL,
  `unconsidered` tinyint(4) DEFAULT NULL,
  `cancelled` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`review_id`),
  KEY `review_assignments_submission_id` (`submission_id`),
  KEY `review_assignments_reviewer_id` (`reviewer_id`),
  KEY `review_assignments_form_id` (`review_form_id`),
  KEY `review_assignments_reviewer_review` (`reviewer_id`,`review_id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_assignments`
--

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

--
-- Table structure for table `review_files`
--

DROP TABLE IF EXISTS `review_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_files` (
  `review_id` bigint(20) NOT NULL,
  `submission_file_id` bigint(20) unsigned NOT NULL,
  UNIQUE KEY `review_files_pkey` (`review_id`,`submission_file_id`),
  KEY `review_files_review_id` (`review_id`),
  KEY `review_files_submission_file_id_foreign` (`submission_file_id`),
  CONSTRAINT `review_files_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_files`
--

LOCK TABLES `review_files` WRITE;
/*!40000 ALTER TABLE `review_files` DISABLE KEYS */;
INSERT INTO `review_files` VALUES (1,5),(2,13),(3,21),(4,22),(5,23),(6,35),(7,38),(8,39),(9,41),(10,55),(11,71),(12,72),(12,73),(12,74),(13,72),(13,73),(13,74),(14,72),(14,73),(14,74),(15,87),(16,88),(16,89),(16,90),(16,91),(16,92),(17,88),(17,89),(17,90),(17,91),(17,92),(18,72),(18,73),(18,74),(19,71),(20,104),(21,104),(22,106),(23,106),(25,129),(26,129),(27,139),(28,139),(29,146),(30,150),(31,156),(32,156),(33,157),(34,157),(35,170),(36,184),(37,186),(38,192),(39,193),(40,200),(41,213),(42,214),(43,224),(44,213);
/*!40000 ALTER TABLE `review_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_form_element_settings`
--

DROP TABLE IF EXISTS `review_form_element_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_form_element_settings` (
  `review_form_element_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 `review_form_element_settings_pkey` (`review_form_element_id`,`locale`,`setting_name`),
  KEY `review_form_element_settings_review_form_element_id` (`review_form_element_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_form_element_settings`
--

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

--
-- Table structure for table `review_form_elements`
--

DROP TABLE IF EXISTS `review_form_elements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_form_elements` (
  `review_form_element_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `review_form_id` bigint(20) NOT NULL,
  `seq` double DEFAULT NULL,
  `element_type` bigint(20) DEFAULT NULL,
  `required` tinyint(4) DEFAULT NULL,
  `included` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`review_form_element_id`),
  KEY `review_form_elements_review_form_id` (`review_form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_form_elements`
--

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

--
-- Table structure for table `review_form_responses`
--

DROP TABLE IF EXISTS `review_form_responses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_form_responses` (
  `review_form_element_id` bigint(20) NOT NULL,
  `review_id` bigint(20) NOT NULL,
  `response_type` varchar(6) DEFAULT NULL,
  `response_value` text DEFAULT NULL,
  KEY `review_form_responses_pkey` (`review_form_element_id`,`review_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_form_responses`
--

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

--
-- Table structure for table `review_form_settings`
--

DROP TABLE IF EXISTS `review_form_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_form_settings` (
  `review_form_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 `review_form_settings_pkey` (`review_form_id`,`locale`,`setting_name`),
  KEY `review_form_settings_review_form_id` (`review_form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_form_settings`
--

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

--
-- Table structure for table `review_forms`
--

DROP TABLE IF EXISTS `review_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_forms` (
  `review_form_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `assoc_type` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `seq` double DEFAULT NULL,
  `is_active` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`review_form_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_forms`
--

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

--
-- Table structure for table `review_round_files`
--

DROP TABLE IF EXISTS `review_round_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_round_files` (
  `submission_id` bigint(20) NOT NULL,
  `review_round_id` bigint(20) NOT NULL,
  `stage_id` tinyint(4) NOT NULL,
  `submission_file_id` bigint(20) unsigned NOT NULL,
  UNIQUE KEY `review_round_files_pkey` (`submission_id`,`review_round_id`,`submission_file_id`),
  UNIQUE KEY `review_round_files_submission_file_id_unique` (`submission_file_id`),
  KEY `review_round_files_submission_id` (`submission_id`),
  CONSTRAINT `review_round_files_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_round_files`
--

LOCK TABLES `review_round_files` WRITE;
/*!40000 ALTER TABLE `review_round_files` DISABLE KEYS */;
INSERT INTO `review_round_files` VALUES (1,2,3,13),(1,2,3,14),(1,2,3,15),(2,1,3,5),(2,1,3,6),(2,1,3,7),(3,5,3,23),(3,5,3,26),(3,5,3,28),(4,4,3,22),(4,4,3,25),(4,4,3,27),(5,3,3,21),(5,3,3,24),(5,3,3,29),(6,6,3,35),(6,6,3,44),(6,6,3,48),(7,8,3,39),(7,8,3,43),(7,8,3,49),(8,7,3,38),(8,7,3,42),(8,7,3,47),(9,9,3,41),(9,9,3,45),(9,9,3,46),(10,10,3,55),(10,10,3,56),(10,10,3,57),(11,13,3,87),(11,13,3,94),(11,13,3,96),(13,12,3,72),(13,12,3,73),(13,12,3,74),(13,12,3,76),(13,12,3,82),(13,12,3,86),(13,12,3,98),(14,11,3,71),(14,11,3,75),(14,11,3,101),(15,14,3,88),(15,14,3,89),(15,14,3,90),(15,14,3,91),(15,14,3,92),(15,14,3,93),(15,14,3,97),(16,15,3,104),(16,15,3,107),(16,15,3,109),(16,15,3,111),(17,16,3,106),(17,16,3,108),(17,16,3,110),(17,16,3,113),(18,20,3,146),(18,20,3,148),(18,20,3,151),(18,20,3,152),(19,18,3,129),(19,18,3,133),(19,18,3,134),(19,18,3,137),(20,19,3,139),(20,19,3,140),(20,19,3,141),(20,19,3,143),(21,21,3,150),(21,21,3,153),(21,21,3,185),(22,23,3,157),(22,23,3,159),(22,23,3,161),(22,23,3,165),(23,22,3,156),(23,22,3,158),(23,22,3,160),(23,22,3,164),(24,24,3,170),(24,24,3,171),(24,24,3,172),(25,25,3,184),(26,26,3,186),(26,26,3,190),(28,27,3,192),(28,27,3,194),(28,27,3,196),(29,28,3,193),(29,28,3,195),(29,28,3,199),(30,29,3,200),(30,29,3,201),(32,31,3,214),(32,31,3,219),(32,31,3,221),(33,30,3,213),(33,30,3,218),(33,30,3,227),(33,30,3,228),(38,32,3,224),(38,32,3,225),(38,32,3,226);
/*!40000 ALTER TABLE `review_round_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_rounds`
--

DROP TABLE IF EXISTS `review_rounds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_rounds` (
  `review_round_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `stage_id` bigint(20) DEFAULT NULL,
  `round` tinyint(4) NOT NULL,
  `review_revision` bigint(20) DEFAULT NULL,
  `status` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`review_round_id`),
  UNIQUE KEY `review_rounds_submission_id_stage_id_round_pkey` (`submission_id`,`stage_id`,`round`),
  KEY `review_rounds_submission_id` (`submission_id`)
) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_rounds`
--

LOCK TABLES `review_rounds` WRITE;
/*!40000 ALTER TABLE `review_rounds` DISABLE KEYS */;
INSERT INTO `review_rounds` VALUES (1,2,3,1,NULL,4),(2,1,3,1,NULL,1),(3,5,3,1,NULL,1),(4,4,3,1,NULL,11),(5,3,3,1,NULL,11),(6,6,3,1,NULL,4),(7,8,3,1,NULL,4),(8,7,3,1,NULL,4),(9,9,3,1,NULL,4),(10,10,3,1,NULL,4),(11,14,3,1,NULL,1),(12,13,3,1,NULL,1),(13,11,3,1,NULL,4),(14,15,3,1,NULL,1),(15,16,3,1,NULL,4),(16,17,3,1,NULL,4),(18,19,3,1,NULL,4),(19,20,3,1,NULL,4),(20,18,3,1,NULL,4),(21,21,3,1,NULL,4),(22,23,3,1,NULL,4),(23,22,3,1,NULL,4),(24,24,3,1,NULL,4),(25,25,3,1,NULL,5),(26,26,3,1,NULL,1),(27,28,3,1,NULL,4),(28,29,3,1,NULL,4),(29,30,3,1,NULL,1),(30,33,3,1,NULL,4),(31,32,3,1,NULL,4),(32,38,3,1,NULL,4);
/*!40000 ALTER TABLE `review_rounds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rt_contexts`
--

DROP TABLE IF EXISTS `rt_contexts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rt_contexts` (
  `context_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `version_id` bigint(20) NOT NULL,
  `title` varchar(120) NOT NULL,
  `abbrev` varchar(32) NOT NULL,
  `description` text DEFAULT NULL,
  `cited_by` tinyint(4) NOT NULL DEFAULT 0,
  `author_terms` tinyint(4) NOT NULL DEFAULT 0,
  `define_terms` tinyint(4) NOT NULL DEFAULT 0,
  `geo_terms` tinyint(4) NOT NULL DEFAULT 0,
  `seq` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`context_id`),
  KEY `rt_contexts_version_id` (`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rt_contexts`
--

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

--
-- Table structure for table `rt_searches`
--

DROP TABLE IF EXISTS `rt_searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rt_searches` (
  `search_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `title` varchar(120) NOT NULL,
  `description` text DEFAULT NULL,
  `url` text DEFAULT NULL,
  `search_url` text DEFAULT NULL,
  `search_post` text DEFAULT NULL,
  `seq` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`search_id`),
  KEY `rt_searches_context_id` (`context_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rt_searches`
--

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

--
-- Table structure for table `rt_versions`
--

DROP TABLE IF EXISTS `rt_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rt_versions` (
  `version_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `journal_id` bigint(20) NOT NULL,
  `version_key` varchar(40) NOT NULL,
  `locale` varchar(14) DEFAULT 'en_US',
  `title` varchar(120) NOT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`version_id`),
  KEY `rt_versions_journal_id` (`journal_id`),
  KEY `rt_versions_version_key` (`version_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rt_versions`
--

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

--
-- Table structure for table `scheduled_tasks`
--

DROP TABLE IF EXISTS `scheduled_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `scheduled_tasks` (
  `class_name` varchar(255) NOT NULL,
  `last_run` datetime DEFAULT NULL,
  UNIQUE KEY `scheduled_tasks_pkey` (`class_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `scheduled_tasks`
--

LOCK TABLES `scheduled_tasks` WRITE;
/*!40000 ALTER TABLE `scheduled_tasks` DISABLE KEYS */;
INSERT INTO `scheduled_tasks` VALUES ('classes.tasks.SubscriptionExpiryReminder','2021-02-23 19:50:45'),('lib.pkp.classes.task.ReviewReminder','2021-02-26 21:25:59'),('lib.pkp.classes.task.StatisticsReport','2021-02-23 19:50:44'),('plugins.generic.usageStats.UsageStatsLoader','2021-02-26 21:22:17'),('plugins.importexport.crossref.CrossrefInfoSender','2021-02-26 21:22:17'),('plugins.importexport.datacite.DataciteInfoSender','2021-02-26 21:25:59'),('plugins.importexport.doaj.DOAJInfoSender','2021-02-26 21:22:17');
/*!40000 ALTER TABLE `scheduled_tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `section_settings`
--

DROP TABLE IF EXISTS `section_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `section_settings` (
  `section_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 `section_settings_pkey` (`section_id`,`locale`,`setting_name`),
  KEY `section_settings_section_id` (`section_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `section_settings`
--

LOCK TABLES `section_settings` WRITE;
/*!40000 ALTER TABLE `section_settings` DISABLE KEYS */;
INSERT INTO `section_settings` VALUES (1,'en_US','abbrev','ART','string'),(1,'en_US','identifyType','','string'),(1,'en_US','policy','','string'),(1,'en_US','title','Articles','string');
/*!40000 ALTER TABLE `section_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sections`
--

DROP TABLE IF EXISTS `sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sections` (
  `section_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `journal_id` bigint(20) NOT NULL,
  `review_form_id` bigint(20) DEFAULT NULL,
  `seq` double NOT NULL DEFAULT 0,
  `editor_restricted` tinyint(4) NOT NULL DEFAULT 0,
  `meta_indexed` tinyint(4) NOT NULL DEFAULT 0,
  `meta_reviewed` tinyint(4) NOT NULL DEFAULT 1,
  `abstracts_not_required` tinyint(4) NOT NULL DEFAULT 0,
  `hide_title` tinyint(4) NOT NULL DEFAULT 0,
  `hide_author` tinyint(4) NOT NULL DEFAULT 0,
  `abstract_word_count` bigint(20) DEFAULT NULL,
  `is_inactive` smallint(6) NOT NULL DEFAULT 0,
  PRIMARY KEY (`section_id`),
  KEY `sections_journal_id` (`journal_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sections`
--

LOCK TABLES `sections` WRITE;
/*!40000 ALTER TABLE `sections` DISABLE KEYS */;
INSERT INTO `sections` VALUES (1,1,0,0,0,1,1,0,0,0,NULL,0);
/*!40000 ALTER TABLE `sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
  `session_id` varchar(128) NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `ip_address` varchar(39) NOT NULL,
  `user_agent` varchar(255) DEFAULT NULL,
  `created` bigint(20) NOT NULL DEFAULT 0,
  `last_used` bigint(20) NOT NULL DEFAULT 0,
  `remember` tinyint(4) NOT NULL DEFAULT 0,
  `data` text DEFAULT NULL,
  `domain` varchar(255) DEFAULT NULL,
  UNIQUE KEY `sessions_pkey` (`session_id`),
  KEY `sessions_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES ('0080cf999993fc6f4118c05032b6b82f',NULL,'54.36.149.97','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614316003,1614316003,0,'','www.medlabtechnojournal.com'),('009351610594acfe1c31a6a7b47d4418',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336432,1614336432,0,'','www.medlabtechnojournal.com'),('009b6acd0e456280557e1f8d863b917d',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319683,1614319683,0,'','www.medlabtechnojournal.com'),('01261aadd922a63510d3293960c76b82',NULL,'172.245.197.40','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36',1614319031,1614319031,0,'','medlabtechnojournal.com'),('0151b5feb43cdca1646fd277559d1d6a',NULL,'34.221.236.206','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',1614283547,1614283547,0,'','medlabtechnojournal.com'),('0160910889d5c1c5b4d0e4d7f201ebf4',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336502,1614336502,0,'','www.medlabtechnojournal.com'),('01cd744728062f0b1ddc97fc550ac5a6',NULL,'13.66.139.113','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614333469,1614333469,0,'csrf|a:2:{s:9:\"timestamp\";i:1614333469;s:5:\"token\";s:32:\"bb88c7286679147f2f1af9312b95b427\";}','www.medlabtechnojournal.com'),('02778644742bdc00f6bf7ccd60a336b1',1,'125.160.100.164','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0',1612919191,1613196116,1,'csrf|a:2:{s:9:\"timestamp\";i:1613196116;s:5:\"token\";s:32:\"0c7ced310a1e9126b9ad8b124588432e\";}userId|i:1;username|s:5:\"admin\";','medlabtechnojournal.com'),('02a0ed886c8478b370e012bd46dce20f',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336919,1614336919,0,'','www.medlabtechnojournal.com'),('02r2celcmi9bd3vjeu527r6nn5',23,'85.110.114.205','Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.152 Mobile Safari/537.36',1612716919,1613280512,1,'csrf|a:2:{s:9:\"timestamp\";i:1613280512;s:5:\"token\";s:32:\"12aa4ee169311df5907a59975e20c7ef\";}','medlabtechnojournal.com'),('031b70760c394d598e2f3a5107597ef8',NULL,'113.83.76.200','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1614335548,1614335548,0,'','medlabtechnojournal.com'),('03de7c9cfc3d2469edbc021b2b24eb4c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330846,1614330846,0,'','www.medlabtechnojournal.com'),('03e0ba78e26d4a8896d0304ec35f6848',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614321614,1614321614,0,'csrf|a:2:{s:9:\"timestamp\";i:1614321614;s:5:\"token\";s:32:\"ad223dfc6050238d7aaea30acc1418e3\";}','medlabtechnojournal.com'),('04477ed6ea31007e48d8330fcc0b43cd',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319892,1614319892,0,'','www.medlabtechnojournal.com'),('0476b7885a2c6013a8c754419a24c1c0',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336342,1614336342,0,'','www.medlabtechnojournal.com'),('04cb5eef9d9ea08e8f1adca848e5bcc2',66,'178.243.111.138','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.77 Mobile/15E148 Safari/604.1',1613369616,1613370859,1,'csrf|a:2:{s:9:\"timestamp\";i:1613370857;s:5:\"token\";s:32:\"d490e32be359c429bf5f8ec435438c0d\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('0639e02bd87835baee83bb32da8d7a28',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614280362,1614280362,0,'','medlabtechnojournal.com'),('06555ca5ef3aa18fff4ee155deecf81e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330851,1614330851,0,'','www.medlabtechnojournal.com'),('0656583826f890b3499e06708ef0b712',NULL,'167.114.226.133','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0',1614334340,1614334340,0,'','www.medlabtechnojournal.com'),('0677bb86353682be6e5ece256d65b6da',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336351,1614336351,0,'','www.medlabtechnojournal.com'),('071b8412efa0bc912b6b7f54b5939b58',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285190,1614285190,0,'','medlabtechnojournal.com'),('073c5cd17db8004c3726e9525dd73145',NULL,'54.36.149.53','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614302007,1614302007,0,'','www.medlabtechnojournal.com'),('082c630ec1db40fa6822d7222a45bcb9',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319119,1614319119,0,'','www.medlabtechnojournal.com'),('089f577e37a5c7b2f565ce910d517c12',NULL,'5.255.253.105','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',1614309120,1614309120,0,'','medlabtechnojournal.com'),('089f6574436936c2565080eb9c4ece61',66,'88.244.126.9','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1',1613919254,1613919285,1,'csrf|a:2:{s:9:\"timestamp\";i:1613919269;s:5:\"token\";s:32:\"07924b102e4774ab2a769bc73d7ffef4\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('08e93ba9dddbb09402e2f7761ab11978',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324593,1614324593,0,'','medlabtechnojournal.com'),('0a67901e266233e13bad0faebc1b62db',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319880,1614319880,0,'','www.medlabtechnojournal.com'),('0a9ffd63feb31056b60b6f589c49f4ba',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336959,1614336959,0,'','www.medlabtechnojournal.com'),('0ac76ef03e39eb99c35bc22259cf79ec',NULL,'185.191.171.35','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614294338,1614294338,0,'','www.medlabtechnojournal.com'),('0accaa7597adce2d4aa137b1005bd566',NULL,'185.191.171.42','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614343346,1614343346,0,'','www.medlabtechnojournal.com'),('0beadc3a0bb90ffea9949921066b3928',NULL,'54.36.148.77','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614301601,1614301601,0,'','www.medlabtechnojournal.com'),('0bf1d2772dc4d369556075dd8a7d0ce5',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319152,1614319152,0,'','www.medlabtechnojournal.com'),('0c60fcfb00d628add7d7846ea68c272b',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614304670,1614304670,0,'','www.medlabtechnojournal.com'),('0ce6fb90e1346482da55c96d1ae33a9c',NULL,'193.87.92.162','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0',1614337464,1614337464,0,'','www.medlabtechnojournal.com'),('0ced6e47e20eb4dfef3a2fc9298c7e79',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614326171,1614326171,0,'csrf|a:2:{s:9:\"timestamp\";i:1614326171;s:5:\"token\";s:32:\"2ff4552e8e8b3fd8e6ce3998da3cc01d\";}','medlabtechnojournal.com'),('0cf9ea29431825e88c6253c913006264',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319690,1614319690,0,'','www.medlabtechnojournal.com'),('0ebea89b7620d34502fd1916ede47fef',NULL,'54.36.149.104','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614343482,1614343482,0,'currentLocale|s:5:\"en_US\";','medlabtechnojournal.com'),('0f5ec23211e13cae03bab734c3b71043',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330912,1614330912,0,'','www.medlabtechnojournal.com'),('0f66dd4036d7b929c0a121d1844903fc',1,'36.74.237.253','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36',1614125320,1614345869,1,'csrf|a:2:{s:9:\"timestamp\";i:1614345849;s:5:\"token\";s:32:\"de2a148e82faf4957e0bd807d66fbb1f\";}userId|i:1;username|s:5:\"admin\";','medlabtechnojournal.com'),('0fb6ec7e56f56e4cb392dff894bde945',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614320241,1614320241,0,'','medlabtechnojournal.com'),('0fca7a0976f1ea0f886d3714230d7281',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319747,1614319747,0,'','www.medlabtechnojournal.com'),('1062ee1c9f225ad4f0e0d47988f8c77e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330649,1614330649,0,'','www.medlabtechnojournal.com'),('108b0d6dde9e8c89a5aadfa4c2ed8ee2',66,'178.246.162.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15',1613131430,1614010785,1,'csrf|a:2:{s:9:\"timestamp\";i:1614010783;s:5:\"token\";s:32:\"32399cb8b265c36f58b32d7b91989582\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('10af114429499702641f9667a888fd56',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319478,1614319478,0,'','www.medlabtechnojournal.com'),('114960ce84916d3017688439ecba84dc',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285244,1614285244,0,'csrf|a:2:{s:9:\"timestamp\";i:1614285244;s:5:\"token\";s:32:\"a4395f314d41d9dbf8996d728300bda6\";}','medlabtechnojournal.com'),('114eac3037fda1e751f7563fa52340ce',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287334,1614287334,0,'','www.medlabtechnojournal.com'),('11779c43ed08186631154f683301eecf',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319339,1614319339,0,'','www.medlabtechnojournal.com'),('1228588e71b33f4d20487c418a73df95',NULL,'77.75.76.167','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',1614328378,1614328378,0,'csrf|a:2:{s:9:\"timestamp\";i:1614328378;s:5:\"token\";s:32:\"cd3f1a8451c64c8bbb547f08d2f40ea4\";}','medlabtechnojournal.com'),('132726df9015cdf155e8191a8d449927',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336621,1614336621,0,'','www.medlabtechnojournal.com'),('1344e0d473bc133cae4972d2907926b8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336889,1614336889,0,'','www.medlabtechnojournal.com'),('139ce06be86b3c04af7e8edb2a999390',NULL,'77.75.79.62','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',1614334829,1614334829,0,'','medlabtechnojournal.com'),('14e253b2b326bf4bd76a95e9f192b143',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330600,1614330600,0,'','www.medlabtechnojournal.com'),('15a595870306e254e697259320e51741',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336416,1614336416,0,'','www.medlabtechnojournal.com'),('15ba2958dd6edce9820c963f5adcc8c7',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336558,1614336558,0,'','www.medlabtechnojournal.com'),('165a97b2149e05c7d201f5f3c0d65c70',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284335,1614284335,0,'','www.medlabtechnojournal.com'),('1660fcfd5ca6015bfb3e5a367cdf388f',NULL,'181.214.110.63','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36',1614303494,1614303494,0,'','www.medlabtechnojournal.com'),('16c06541f37cf12dcac4c9ab7405a7c8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330689,1614330689,0,'','www.medlabtechnojournal.com'),('17302969b8bedb742ac6ec17c205902d',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330496,1614330496,0,'','www.medlabtechnojournal.com'),('1770d75be81ad79213dd20175e74a7bc',NULL,'116.14.58.13','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36',1614307164,1614307164,0,'','medlabtechnojournal.com'),('1780f6f6a58e63b627a0bb0db69b62aa',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287874,1614287874,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287874;s:5:\"token\";s:32:\"ba973d0c5a65cb10d3370e15fd5379a7\";}','medlabtechnojournal.com'),('17dd0d88f62a9cc4529b0f21fb909e5e',68,'185.104.187.46','Mozilla/5.0 (Windows NT 6.1; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',1613027890,1613027951,1,'csrf|a:2:{s:9:\"timestamp\";i:1613027951;s:5:\"token\";s:32:\"503a582d05667737f5b4cb0822fe61a7\";}userId|s:2:\"68\";username|s:9:\"wazzchono\";','www.medlabtechnojournal.com'),('17deac7a3f812c8fead076740dd8f70a',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282922,1614282922,0,'','medlabtechnojournal.com'),('17eec6acfc6bb386ebb0b34b8fe279ac',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325741,1614325741,0,'','www.medlabtechnojournal.com'),('17f8375b39d5e1297bddc044198eb663',NULL,'62.210.119.157','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1614318668,1614318668,0,'','medlabtechnojournal.com'),('18057b697a2b3cb0001192fa9323e2fa',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330933,1614330933,0,'','www.medlabtechnojournal.com'),('183765be751147aa2720d03b90114388',66,'178.246.162.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613131370,1613131982,1,'csrf|a:2:{s:9:\"timestamp\";i:1613131982;s:5:\"token\";s:32:\"ca7ae126bf3fac0b0c25adbcf000ba04\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('189e2479b936e6c5cbd0689ade291a03',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614283448,1614283448,0,'','medlabtechnojournal.com'),('18a19ab4275f33a9f988ccf651a043df',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319410,1614319410,0,'','www.medlabtechnojournal.com'),('1983c3f08669394138435dc7c1fe3e87',66,'78.191.27.65','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15',1614010811,1614290528,1,'csrf|a:2:{s:9:\"timestamp\";i:1614290528;s:5:\"token\";s:32:\"4e32255a316fef23df6f573903b3b204\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','medlabtechnojournal.com'),('19b88b36e69b6f91e84cf41ec45dba58',NULL,'191.101.97.252','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36',1614291037,1614291037,0,'','medlabtechnojournal.com'),('19d8fd2e88de0589e4c2378c6ae60938',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286631,1614286631,0,'','www.medlabtechnojournal.com'),('1a4f91f84c503db368f1874cbcec0885',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318966,1614318966,0,'','www.medlabtechnojournal.com'),('1a7aba3e7e16c151f4e1b09f712cee04',NULL,'54.36.148.63','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614300362,1614300362,0,'','medlabtechnojournal.com'),('1a7c11665baffe3bba4c14a5e8acacfa',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325364,1614325364,0,'','www.medlabtechnojournal.com'),('1c362fb88dad1e19672043a48a7b0f49',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614319622,1614319622,0,'','medlabtechnojournal.com'),('1d28b143fbc97bbbbf2ec5a9ac74c0d3',NULL,'37.44.253.127','Mozilla/5.0 (Linux; U; Android 1.5; en-us; T-Mobile G1 Build/CRB43) AppleWebKit/528.5  (KHTML, like Gecko) Version/3.1.2 Mobile Safari 1D974837',1614335544,1614335544,0,'','medlabtechnojournal.com'),('1e7d3e35eb598b30edeb9aeac4b24357',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614282616,1614282616,0,'','medlabtechnojournal.com'),('1ec6bdfa8d70a64215b1b51d1b91b2bb',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336446,1614336446,0,'','www.medlabtechnojournal.com'),('1ee0a324868df83fb18373df40e98cb6',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288990,1614288990,0,'csrf|a:2:{s:9:\"timestamp\";i:1614288990;s:5:\"token\";s:32:\"9b98e7af2bd5fee8f58316e2601e3737\";}','www.medlabtechnojournal.com'),('20bf4b24a2d3d151681f52f6f6d58871',NULL,'5.255.253.157','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',1614326895,1614326895,0,'','medlabtechnojournal.com'),('216d1c4b6a33a9e9989acb0900894e2b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614337036,1614337036,0,'','www.medlabtechnojournal.com'),('218b3c8ad5e936c6cc34f4a781bfb100',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614299325,1614299325,0,'','medlabtechnojournal.com'),('21cab251806f4f56c00b8db522752f11',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319828,1614319828,0,'','www.medlabtechnojournal.com'),('21e273ee6bbf69c2d1ccda55408f606f',NULL,'185.191.171.37','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614296422,1614296422,0,'','www.medlabtechnojournal.com'),('22a8b083c22f02adf20299d128f4c5ef',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297616,1614297616,0,'','medlabtechnojournal.com'),('22b265c3ec3a7ce56cefd74a719f2fa9',NULL,'185.191.171.20','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614292498,1614292498,0,'','medlabtechnojournal.com'),('22dfa854b1539026cd2edb6fe43ea0e3',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286148,1614286148,0,'csrf|a:2:{s:9:\"timestamp\";i:1614286148;s:5:\"token\";s:32:\"b23f2e7cd966715fe1d73efdc039df35\";}','www.medlabtechnojournal.com'),('231d5949eeb4dffdc15167706b1a19e3',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325645,1614325645,0,'csrf|a:2:{s:9:\"timestamp\";i:1614325645;s:5:\"token\";s:32:\"9a4c3cdd2cbfa1ce0df51735aa53b696\";}','www.medlabtechnojournal.com'),('23ca1f824e776bbbc6502b9fab0dbf58',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330675,1614330675,0,'','www.medlabtechnojournal.com'),('24ac786b2c4c36a776b17cc4ca1bd363',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318993,1614318993,0,'','www.medlabtechnojournal.com'),('24f2ba3d433fe4931a06a6a88a369013',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336590,1614336590,0,'','www.medlabtechnojournal.com'),('2540a19636dcac21e16805b860e17b7b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319003,1614319003,0,'','www.medlabtechnojournal.com'),('25f1430e5d1cd681f56aa0026dd2b0ca',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282502,1614282502,0,'','medlabtechnojournal.com'),('2600e18716373834fe0db49479e69493',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327309,1614327309,0,'csrf|a:2:{s:9:\"timestamp\";i:1614327309;s:5:\"token\";s:32:\"928a0a55c28833d31327121a2f712272\";}','medlabtechnojournal.com'),('260e9c0f4d3adb7089ed1fafb7c55032',NULL,'185.191.171.42','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614324512,1614324512,0,'','medlabtechnojournal.com'),('2647fde33cfb0543df9049a3660eb9d7',NULL,'202.152.138.176','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.186 Safari/537.36',1614342590,1614342838,0,'','medlabtechnojournal.com'),('26c32bc1877bea8726b6f1c217285e80',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614337022,1614337022,0,'','www.medlabtechnojournal.com'),('284344d98e5c89aabfb0469f26deab93',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319709,1614319709,0,'','www.medlabtechnojournal.com'),('292e924aabd0a8a955257af967ace437',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330609,1614330609,0,'','www.medlabtechnojournal.com'),('295eaa4075d02095c62734c3ec6a3f70',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284231,1614284231,0,'','medlabtechnojournal.com'),('29c1832e484d7661f4091afeebb2220a',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323356,1614323356,0,'','www.medlabtechnojournal.com'),('29c464a0b9c93e5548ac1c0e7684655f',NULL,'13.66.139.23','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614295657,1614295657,0,'','www.medlabtechnojournal.com'),('2abb9f198db5f072021f0e547d1b71e2',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319836,1614319836,0,'','www.medlabtechnojournal.com'),('2b1801b958a4f9efebc345f86791cd86',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319725,1614319725,0,'','www.medlabtechnojournal.com'),('2b8d89df3ef407b5fafc16ecf4f40f70',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319293,1614319293,0,'','www.medlabtechnojournal.com'),('2c430dc01a3685fecd745df05b62ca00',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298440,1614298440,0,'','medlabtechnojournal.com'),('2c6459b9165a307592ab8d0b284dfbe9',NULL,'54.36.148.202','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614322294,1614322294,0,'','www.medlabtechnojournal.com'),('2c767b62366bcbea2ba9f8cc540b8580',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324190,1614324190,0,'','www.medlabtechnojournal.com'),('2c9798be71119059daf5bdedc98df7ec',NULL,'3.232.129.123','CCBot/2.0 (https://commoncrawl.org/faq/)',1614305160,1614305160,0,'','www.medlabtechnojournal.com'),('2cac999a422012a76d91d1d6a81df7ed',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319530,1614319530,0,'','www.medlabtechnojournal.com'),('2e33b750b352cf2422e4a0e15acb7776',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614299943,1614299943,0,'','www.medlabtechnojournal.com'),('2ebfbe158f7c96e5c1423be81e0a1d5e',NULL,'34.86.35.103','Expanse indexes the network perimeters of our customers. If you have any questions or concerns, please reach out to: scaninfo@expanseinc.com',1614318379,1614318379,0,'','medlabtechnojournal.com'),('2f2156713fcee89814204c707da8ddd9',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285397,1614285397,0,'','medlabtechnojournal.com'),('2f98c2cc66c9f8a68b6ea95b7eed1a8f',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327357,1614327357,0,'csrf|a:2:{s:9:\"timestamp\";i:1614327357;s:5:\"token\";s:32:\"413033f37bf4814f92f3cde7d5775a19\";}','www.medlabtechnojournal.com'),('2fa01634619d9a318237f18e9645cc3c',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614326353,1614326353,0,'','www.medlabtechnojournal.com'),('2fa9601a1cdd0b50563d3e8104f3788f',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614320663,1614320663,0,'','medlabtechnojournal.com'),('2ff86ffcff8230583681835ec5a5f74a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319022,1614319022,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319022;s:5:\"token\";s:32:\"3503a86db644aca25620b4ba69108e89\";}','www.medlabtechnojournal.com'),('307cdbdedd5dcd9f56eee5b9d5f62f4b',NULL,'185.191.171.36','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614277909,1614277909,0,'','www.medlabtechnojournal.com'),('30f1a870c8e9e0eaac290e9bf1d9edee',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298622,1614298622,0,'','medlabtechnojournal.com'),('310644dadd2348adcfc6d2afb4839bab',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284976,1614284976,0,'','medlabtechnojournal.com'),('317f3dd0c3541e0acb4418fa64d126e8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336381,1614336381,0,'','www.medlabtechnojournal.com'),('318d03f5c1607c6b3394ecb809af62fe',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298137,1614298137,0,'csrf|a:2:{s:9:\"timestamp\";i:1614298137;s:5:\"token\";s:32:\"b3e6b3583b4f2df3b66e70522ab4d697\";}','medlabtechnojournal.com'),('31bbee7f7c07a42145873da9125e750a',NULL,'13.66.139.57','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614295676,1614295676,0,'','www.medlabtechnojournal.com'),('320540cd18b4d2e953de85dc850ca0ee',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298736,1614298736,0,'','medlabtechnojournal.com'),('32349e57b9d6be2a81ebf92ca891b1cf',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330656,1614330656,0,'','www.medlabtechnojournal.com'),('33b3d69961aa30cf623ff318aaae600f',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319590,1614319590,0,'','www.medlabtechnojournal.com'),('33caa93b4936f515ef00b6b4f096b83c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330682,1614330682,0,'','www.medlabtechnojournal.com'),('33e8c5f123eb8f87156eaec8471600f1',NULL,'54.36.149.103','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614297748,1614297748,0,'','medlabtechnojournal.com'),('340a0bfc16564b53e0af4e93ca56805c',NULL,'66.249.79.249','Googlebot/2.1 (+http://www.google.com/bot.html)',1614283412,1614283412,0,'','www.medlabtechnojournal.com'),('340c2cc3c860fff715350b8f62e14a86',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336684,1614336684,0,'','www.medlabtechnojournal.com'),('34a7203947b7c9d3855517b8e2a28a67',NULL,'77.75.78.167','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',1614347156,1614347156,0,'','medlabtechnojournal.com'),('351b4cbf84e903f69964930d997e19f9',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288819,1614288819,0,'csrf|a:2:{s:9:\"timestamp\";i:1614288819;s:5:\"token\";s:32:\"0b073c0b8c61e5403956a0f886301223\";}','medlabtechnojournal.com'),('35338a114fb27475f1167700bb4cff4a',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298556,1614298556,0,'','medlabtechnojournal.com'),('3624ef195e2cdd896a45c3d65db08665',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282134,1614282134,0,'','medlabtechnojournal.com'),('365ab40e41ab16307a3bb31ea208177c',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614321795,1614321795,0,'csrf|a:2:{s:9:\"timestamp\";i:1614321795;s:5:\"token\";s:32:\"16d6f78979f197c039aff88d43a7c2ff\";}','medlabtechnojournal.com'),('3706e3ad89871c3d6c9b9650e5017772',NULL,'10.0.1.218','',1614294875,1614294875,0,'','medlabtechnojournal.com'),('379e5d93367c8997b2e25b400e250ca1',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319101,1614319101,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319101;s:5:\"token\";s:32:\"97a0ac490ab6ba6afb45b40f0f4befeb\";}','medlabtechnojournal.com'),('388f10e58209bafe85eef82b6daa55cb',NULL,'66.249.79.249','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322685,1614322685,0,'','www.medlabtechnojournal.com'),('3897d14c4261c5f1ad9ab6bb520d2963',NULL,'54.36.148.130','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614342171,1614342171,0,'','www.medlabtechnojournal.com'),('38f98b4942f808fc5dbf2d8bb193b76a',NULL,'178.233.32.112','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',1614273738,1614273784,0,'','www.medlabtechnojournal.com'),('391439a5da3bb8f5d5fcbda4ad7f4112',NULL,'13.66.139.113','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614269801,1614269801,0,'','medlabtechnojournal.com'),('3932ed1574e7ae89070e17da4634eda0',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330876,1614330876,0,'','www.medlabtechnojournal.com'),('3a26ae94e8498f73d52d83e8f52a5ab8',NULL,'149.129.62.150','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE',1614335546,1614335546,0,'','medlabtechnojournal.com'),('3b08b51cb3c985311264d1aee383786b',NULL,'54.36.148.101','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614353164,1614353164,0,'','www.medlabtechnojournal.com'),('3c06826ecffdd161e268af5083105d99',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614300630,1614300630,0,'','medlabtechnojournal.com'),('3c130fa52889c5cd3e55397d1281dd6b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319851,1614319851,0,'','www.medlabtechnojournal.com'),('3c3f85cef23069bdfb05e5a96d7f5a97',NULL,'77.75.77.72','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',1614340750,1614340750,0,'','medlabtechnojournal.com'),('3c9a8971bd0e79e5f02c38cb0d0c70d5',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319787,1614319787,0,'','www.medlabtechnojournal.com'),('3ca4d00c551db00ebbec40cfb0990b7c',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287348,1614287348,0,'','www.medlabtechnojournal.com'),('3e5c3ea5281840fa1c34a07785d458b9',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330618,1614330618,0,'','www.medlabtechnojournal.com'),('3f850beffce57e52882bb548f35926d2',NULL,'5.9.156.20','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',1614281444,1614281444,0,'','www.medlabtechnojournal.com'),('3fa8c9f78baf681d022560cdb951d7d6',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330919,1614330919,0,'','www.medlabtechnojournal.com'),('40438f19ed651dac5f6eeeeccb0a96f3',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336441,1614336441,0,'','www.medlabtechnojournal.com'),('41c4c472e53856a4d28ffa046af554f3',NULL,'54.36.149.19','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614300085,1614300085,0,'','medlabtechnojournal.com'),('426d251da57eeab51546f5e88245ba10',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287727,1614287727,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287727;s:5:\"token\";s:32:\"0accdd38bf8ed2eaa231f1f4c4c26b61\";}','www.medlabtechnojournal.com'),('4333c5f975d64b275e9870f789282795',NULL,'54.36.148.62','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298026,1614298026,0,'','medlabtechnojournal.com'),('43cbd0fe08972316928ecf426aaf4a7e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336456,1614336456,0,'','www.medlabtechnojournal.com'),('444a6f1d5afca66770c77d472a8c291d',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319597,1614319597,0,'','www.medlabtechnojournal.com'),('44876da7b506d987b0627668bed9adc9',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614280631,1614280631,0,'','www.medlabtechnojournal.com'),('44b34dcd335ad3200539d145a5467ddb',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285275,1614285275,0,'csrf|a:2:{s:9:\"timestamp\";i:1614285275;s:5:\"token\";s:32:\"c9badbf13b4875f0879bd0ef3a2349ab\";}','medlabtechnojournal.com'),('45deeac39e03dfa6870e48cf36d9a351',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319437,1614319437,0,'','www.medlabtechnojournal.com'),('466c06db42066439186fd5cc80d481d4',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336995,1614336995,0,'','www.medlabtechnojournal.com'),('468ea86f7f686154e4078b9d598070a7',NULL,'103.253.212.8','Softaculous',1614351098,1614351098,0,'','medlabtechnojournal.com'),('470c11fa33737e6b070735ee72a141b2',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287577,1614287577,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287577;s:5:\"token\";s:32:\"c3d0435bbeeaf24f1e15cd169b6e6573\";}','www.medlabtechnojournal.com'),('473b95bbec37ecffd9e2bdb24c83a9cc',NULL,'185.191.171.12','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614350743,1614350743,0,'','medlabtechnojournal.com'),('477c31a02748cd9c679bec248f6c14a5',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336841,1614336841,0,'','www.medlabtechnojournal.com'),('47bd247c34ff2fd682e2b84dcbf2ac30',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297616,1614297616,0,'','medlabtechnojournal.com'),('47c565e6748631bfbf9b3ebf11d3be12',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612996738,1612996786,1,'csrf|a:2:{s:9:\"timestamp\";i:1612996786;s:5:\"token\";s:32:\"a5b190c761b8ad522d9d033e754905e8\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('486b260d4dab1d08f4e79499567689dd',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614280920,1614280920,0,'csrf|a:2:{s:9:\"timestamp\";i:1614280920;s:5:\"token\";s:32:\"15e0736c26c8dac7c4fd08fb26662670\";}','www.medlabtechnojournal.com'),('48f9f1bce87d4cea3488df2e13169dd7',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287873,1614287873,0,'','www.medlabtechnojournal.com'),('49007da1a7c8472737bd1180bb91c7ed',NULL,'34.221.236.206','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',1614283547,1614283547,0,'','medlabtechnojournal.com'),('493b7b6feb6394e9e98738ffe00ea5fb',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336768,1614336768,0,'','www.medlabtechnojournal.com'),('49b42261ff038d2b878ffd69195aced7',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318946,1614318946,0,'','www.medlabtechnojournal.com'),('4a8b385b226537f8d6737b17879671c2',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330624,1614330624,0,'','www.medlabtechnojournal.com'),('4ad68df377f6fa3b6ca6dafe19dff7c3',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336976,1614336976,0,'','www.medlabtechnojournal.com'),('4aee6cab66b2ec4e1d265691ca66f394',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319162,1614319162,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319162;s:5:\"token\";s:32:\"49f818ee83fdeaf896acf4471adac434\";}','www.medlabtechnojournal.com'),('4b36398166fa4cdffe786293a88d2223',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322893,1614322893,0,'','medlabtechnojournal.com'),('4baf24d48f08063edf91fd92ac6f3521',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287563,1614287563,0,'','www.medlabtechnojournal.com'),('4c2a396dcc0c83c8df138cc91a02e13d',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287826,1614287826,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287826;s:5:\"token\";s:32:\"fb78fff5fb5c63daed33d6ae71e754ac\";}','www.medlabtechnojournal.com'),('4c54bfe63de112e2b496c2fed552439a',NULL,'45.146.167.63','drupalgeddon2',1614339309,1614339309,0,'','medlabtechnojournal.com'),('4c828ce897701961e85e33dc34e0bc86',NULL,'54.36.149.28','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614299811,1614299811,0,'','medlabtechnojournal.com'),('4cb92479605df0f16213dc26679bc4a0',NULL,'64.71.131.244','Mozilla/5.0 (compatible; evc-batch/2.0)',1614290312,1614290312,0,'','medlabtechnojournal.com'),('4d2f7c121430964101942770855dff63',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285501,1614285501,0,'','medlabtechnojournal.com'),('4d7ea58e5a16167144034d7897200732',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319195,1614319195,0,'','www.medlabtechnojournal.com'),('4e0183cfcc385fd9a90d5708b81be9d4',66,'178.246.162.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613131982,1613132043,1,'csrf|a:2:{s:9:\"timestamp\";i:1613132043;s:5:\"token\";s:32:\"99613d57a337825803d05603fb4fc7d6\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('4e5e276faaa47183c7f281ce632c5822',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330503,1614330503,0,'','www.medlabtechnojournal.com'),('4e624fa1af7c91e5cc55fecf18537369',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319782,1614319782,0,'','www.medlabtechnojournal.com'),('4e702ed92057cb06d3479d6fdc11933f',NULL,'185.191.171.44','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614324769,1614324769,0,'','medlabtechnojournal.com'),('4ecdeeeb77b98633737ede4c1d74297a',NULL,'185.191.171.22','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614352813,1614352813,0,'','medlabtechnojournal.com'),('4f773c8eac91312b3d91fb60500c1f9b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319581,1614319581,0,'','www.medlabtechnojournal.com'),('4fb53ff4a218589a3f350a2810f28360',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285260,1614285260,0,'','medlabtechnojournal.com'),('4fccd1665d5d4faaa2c9bb46d4506222',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336860,1614336860,0,'','www.medlabtechnojournal.com'),('502e24265d20b080624808787a19f25d',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612997822,1612999830,1,'csrf|a:2:{s:9:\"timestamp\";i:1612999830;s:5:\"token\";s:32:\"f1c8751d8d24c669309f85f209691b87\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('5062a44aa1a540a5d046712855dc9d3e',NULL,'54.36.149.21','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614297462,1614297462,0,'','www.medlabtechnojournal.com'),('50e59278bc566399960fe57205b61adc',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336703,1614336703,0,'','www.medlabtechnojournal.com'),('512874d34d341ef86d2246adb917af08',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330727,1614330727,0,'','www.medlabtechnojournal.com'),('512b275b8e12eef4b4458dc366951ef8',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284787,1614284787,0,'','medlabtechnojournal.com'),('521d0b2b99f1f37f1fa2accbf37ed48a',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614321030,1614321030,0,'csrf|a:2:{s:9:\"timestamp\";i:1614321030;s:5:\"token\";s:32:\"8876aa99ab3de37fbadb60f86435f271\";}','medlabtechnojournal.com'),('527bf39339469bd6159426a59690e0eb',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614283254,1614283254,0,'','medlabtechnojournal.com'),('532eeaec935d055b85d126f8c6154f71',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319074,1614319074,0,'','www.medlabtechnojournal.com'),('53fe6fa5c4918bde555ccf7dd1256547',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325475,1614325475,0,'csrf|a:2:{s:9:\"timestamp\";i:1614325475;s:5:\"token\";s:32:\"458baa3dd14ed04c327913ee17079cd7\";}','www.medlabtechnojournal.com'),('54001f35289b8b924752afb5f514d749',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319571,1614319571,0,'','www.medlabtechnojournal.com'),('5415675de605fe1f0c345f4f376df6c9',NULL,'64.227.7.250','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1614276107,1614276107,0,'','medlabtechnojournal.com'),('5428f1077244179ca54d389da87f378f',NULL,'54.36.148.247','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614295194,1614295194,0,'','www.medlabtechnojournal.com'),('54788e5aaeb5f31ee22ae3571c542e4e',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614323330,1614323330,0,'','www.medlabtechnojournal.com'),('562381c2ab45379bf27732a308550d86',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336582,1614336582,0,'','www.medlabtechnojournal.com'),('5636be1cc783f081431657b4f4a97eee',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297850,1614297850,0,'','medlabtechnojournal.com'),('566f68631892cec61e40c95454d28eb4',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324163,1614324163,0,'','www.medlabtechnojournal.com'),('56d4fb821b1edd36deaafeb59cefc863',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330775,1614330775,0,'','www.medlabtechnojournal.com'),('56e343538c7f62b25152551599c0947b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319219,1614319219,0,'','www.medlabtechnojournal.com'),('56e9c05f3b3dd364f9a39a5fa5f69204',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336783,1614336783,0,'','www.medlabtechnojournal.com'),('58711ea4100159b72521f9db24cb1162',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336545,1614336545,0,'','www.medlabtechnojournal.com'),('58ac604a53655dd255278285113a58ef',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319808,1614319808,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319808;s:5:\"token\";s:32:\"6d555ac1630b037f02c0bb98d485a049\";}','www.medlabtechnojournal.com'),('58c0c09d6c64c6af429dd019cdb85490',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336301,1614336301,0,'','www.medlabtechnojournal.com'),('58c925aa91a92cd6f2114c489af0f7f8',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288124,1614288124,0,'','www.medlabtechnojournal.com'),('5907be7e401d1741ab8db6da01368f41',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319676,1614319676,0,'','www.medlabtechnojournal.com'),('59ac37ea7098c9ca6f7c6ce4357cc030',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319820,1614319820,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319820;s:5:\"token\";s:32:\"c0234646412340cf36e1327ce76ea110\";}','www.medlabtechnojournal.com'),('5aa93d9aa9fa0ced9389c74b6d0d3a88',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285177,1614285177,0,'','medlabtechnojournal.com'),('5b5542c12eb087612a0b9050ee8cf7b9',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612995538,1612996731,1,'csrf|a:2:{s:9:\"timestamp\";i:1612996731;s:5:\"token\";s:32:\"8e3bf894b163a9d84b8abc4ab0215024\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('5b72f6eb0b02a5c2496ac98320c8c02f',NULL,'185.191.171.26','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614280791,1614280791,0,'','medlabtechnojournal.com'),('5c8b67452ca787f855ebd1c100592623',NULL,'54.36.149.91','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614303054,1614303054,0,'','www.medlabtechnojournal.com'),('5c8b783f6e73bcbc55f08b515e25412d',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323787,1614323787,0,'','medlabtechnojournal.com'),('5cf6daac05d625061a7178be10a6df90',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319793,1614319793,0,'','www.medlabtechnojournal.com'),('5dcb49bb365e64228c59bcebb8705f77',NULL,'54.36.148.229','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298436,1614298436,0,'','medlabtechnojournal.com'),('5e915a573bdb4b157c12e64de3bb6585',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336283,1614336283,0,'','www.medlabtechnojournal.com'),('5e969a69981ea26646a82207421083c6',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319741,1614319741,0,'','www.medlabtechnojournal.com'),('5f7e62205c897febee0e8673aebcd0a2',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324262,1614324262,0,'','medlabtechnojournal.com'),('5f88adc5a1c6ef93163286bae9cab7eb',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319697,1614319697,0,'','www.medlabtechnojournal.com'),('6006042edba8a6c9831ec4f58c79f657',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336358,1614336358,0,'','www.medlabtechnojournal.com'),('6049a59e39d7c3fa1dcc6f3e795e1730',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319393,1614319393,0,'','www.medlabtechnojournal.com'),('60b374b020d8693a4da9e532a3be2670',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319610,1614319610,0,'','www.medlabtechnojournal.com'),('6173f9b9a0d8ed3e0c382ed11c6a580d',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330926,1614330926,0,'','www.medlabtechnojournal.com'),('61ba3a78483bf07a84f4a04ca80e313c',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614280904,1614280904,0,'','www.medlabtechnojournal.com'),('62057cefb38ca67c349369fb0bd89b56',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614283429,1614283429,0,'csrf|a:2:{s:9:\"timestamp\";i:1614283429;s:5:\"token\";s:32:\"20e7ff92bd012379d0bbedee1ce98b67\";}','www.medlabtechnojournal.com'),('621d0276e12acd46adab6242bd73fb29',NULL,'13.66.139.113','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614295661,1614295661,0,'','www.medlabtechnojournal.com'),('624232eb1c0eda9a92d5a316df675be4',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330574,1614330574,0,'','www.medlabtechnojournal.com'),('6279c5f363d43fa72f05a37c68fc441d',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285122,1614285122,0,'','medlabtechnojournal.com'),('62afaa9c1a855d6938757e546a07c526',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287091,1614287091,0,'','medlabtechnojournal.com'),('62b23634b70075cafdb7fe54bbecc8e9',NULL,'103.253.212.8','Softaculous',1614351123,1614351123,0,'','medlabtechnojournal.com'),('63e50685c2b918050f51eade2b435a01',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297562,1614297562,0,'','medlabtechnojournal.com'),('63ea161f817349314d97c2bf89a3627c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336392,1614336392,0,'','www.medlabtechnojournal.com'),('64027e595c4a290ad62739bf9a3ee427',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318979,1614318979,0,'','www.medlabtechnojournal.com'),('6478c00b79ebfd3e13a8d203788670e0',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330698,1614330698,0,'','www.medlabtechnojournal.com'),('64abcf2b94e3a68d5892cb3de946a509',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289085,1614289085,0,'','www.medlabtechnojournal.com'),('64fcf9687564fcfbf47daf29ed0774fa',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286217,1614286217,0,'','medlabtechnojournal.com'),('64ff6e8a375d7450d0bf663e7ed45586',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319171,1614319171,0,'','www.medlabtechnojournal.com'),('6516f479354288882c8fa28cad9639da',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330806,1614330806,0,'','www.medlabtechnojournal.com'),('65a88d4f0d751de362d83477eef2f98a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330789,1614330789,0,'','www.medlabtechnojournal.com'),('65b3701e306698903038b5d281a9099e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330896,1614330896,0,'','www.medlabtechnojournal.com'),('65e7540fac9df21bdcd8013a2af3223d',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282788,1614282788,0,'','medlabtechnojournal.com'),('6665bc6134eeed6d35ce7cad39469d0f',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324165,1614324165,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324165;s:5:\"token\";s:32:\"4f21619befce5da030ae11de09060e08\";}','medlabtechnojournal.com'),('66f67a0109280d4e0ac50d09ea5ecee0',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287231,1614287231,0,'','medlabtechnojournal.com'),('6732799c607c13d80e35139fa5cd3dca',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319602,1614319602,0,'','www.medlabtechnojournal.com'),('674ddd0cdf00efa559dfca9540165bf5',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614340328,1614340328,0,'','www.medlabtechnojournal.com'),('67e85bda59588462b9e0264ca2da86ca',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336777,1614336777,0,'','www.medlabtechnojournal.com'),('682bfedf5580a5262027a6f7285ebc45',NULL,'137.226.113.44','Mozilla/5.0 (X11; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0',1614270819,1614270819,0,'','www.medlabtechnojournal.com'),('68376141292fc3357c0dc1df91088d62',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319634,1614319634,0,'','www.medlabtechnojournal.com'),('6860fd06970e53f096afea889176e619',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614299044,1614299044,0,'','medlabtechnojournal.com'),('68a0b77cfb0ac559cdc70af4460cd1b6',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336953,1614336953,0,'','www.medlabtechnojournal.com'),('68ba5e9bce03e3c36fc1ab69fbe439a7',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614331013,1614331013,0,'','www.medlabtechnojournal.com'),('69ee5630f165bdc4d77b0a12bee13a66',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286694,1614286694,0,'csrf|a:2:{s:9:\"timestamp\";i:1614286694;s:5:\"token\";s:32:\"6e9e3736bd1d8cc8fc98bae01ea01d5f\";}','medlabtechnojournal.com'),('6a87a5bfedf09533cbb664aa76c9d923',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287576,1614287576,0,'','medlabtechnojournal.com'),('6bc58168cfd5b2c70974e27aa036fc9e',NULL,'103.253.212.8','Softaculous',1614351123,1614351123,0,'','medlabtechnojournal.com'),('6bcba129e2e26cd8b361f09031ab2752',NULL,'54.36.149.23','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614336644,1614336644,0,'','www.medlabtechnojournal.com'),('6c3f45df268943cae5c729a28e26599c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318928,1614318928,0,'','www.medlabtechnojournal.com'),('6c69bd7f20a34101ded2a8548ec37c0b',NULL,'64.137.124.0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 Edg/86.0.622.63',1614291328,1614291328,0,'','medlabtechnojournal.com'),('6ce458b97dc425a236152aa3567dd538',NULL,'185.191.171.5','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614318574,1614318574,0,'','medlabtechnojournal.com'),('6cec6e85bfc359a21176869a3ed489f6',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327294,1614327294,0,'','medlabtechnojournal.com'),('6cf8c2241e24a2aa0ca4771c3ab8e4d9',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330837,1614330837,0,'','www.medlabtechnojournal.com'),('6d6b6f1558da9341832a7ddf0abf873f',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287810,1614287810,0,'','www.medlabtechnojournal.com'),('6d79b12831ae767eca9bb6b8daede2cf',66,'178.246.162.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613132072,1613132126,1,'csrf|a:2:{s:9:\"timestamp\";i:1613132126;s:5:\"token\";s:32:\"ab99af5ff83d8f501327f0179db29379\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('6df61c26b335a1d686d6503b24f927f0',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323378,1614323378,0,'','www.medlabtechnojournal.com'),('6dfbedb6a48408022ee029d98f50339e',NULL,'34.86.35.207','Expanse indexes the network perimeters of our customers. If you have any questions or concerns, please reach out to: scaninfo@expanseinc.com',1614318665,1614318665,0,'','www.medlabtechnojournal.com'),('6e08b0968ed4a1eb9e246271ea958f03',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319068,1614319068,0,'','www.medlabtechnojournal.com'),('6e2eb6ac0a6b19713dc8c260f804c02d',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336294,1614336294,0,'','www.medlabtechnojournal.com'),('6e36909d6d754539f94514f4017599cb',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325117,1614325117,0,'','www.medlabtechnojournal.com'),('6ee6dc4c5e02231df70c5ace75bc2b86',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287565,1614287565,0,'','medlabtechnojournal.com'),('6f008969d40a3139507e96116c0c102d',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319181,1614319181,0,'','www.medlabtechnojournal.com'),('6f0865e3153cc1720b5d17f8334febd3',NULL,'185.191.171.39','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614285161,1614285161,0,'','medlabtechnojournal.com'),('6f68c65a785d87b89d66bbbb4c4b1f72',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319014,1614319014,0,'','www.medlabtechnojournal.com'),('6f9992b6f659164016b220e4672212e6',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287993,1614287993,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287993;s:5:\"token\";s:32:\"7a6e836fa9a8d626791e97517be95cd4\";}','www.medlabtechnojournal.com'),('6p5cgo7jd84ht7hs63rogfobs5',56,'88.255.183.34','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36',1611843821,1612272204,1,'9sc_f5QVxLZFczTyHZLfyczEpu-S5Ffm_CNr7iQg3kPcouYzK6TlXxUGDMIWRqqPi6KxbzwZsD9bupa0TzQBoKzW92CP_Mk4qpxqHzH9hxKrBoV4Vg6AGgfRcqjVar5lPsIKmsXOT0BQv4sYsWm0nvdZoKB5HSR0yAbK_C1CWXO01NP87m-zg01cHkOKEvTpRMUzZcWqEKk4kZO2Y2qUZQ..','medlabtechnojournal.com'),('701c2cb347720ce5c21c345744c91d67',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614280559,1614280559,0,'','www.medlabtechnojournal.com'),('702093d071edf063c9f175c7df522c61',NULL,'185.191.171.7','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614293102,1614293102,0,'','www.medlabtechnojournal.com'),('702d42ccce92c093f587db8b777d127c',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322174,1614322174,0,'','medlabtechnojournal.com'),('70f2dbafe4f0ff6a2a250bdec7ca8f1f',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336831,1614336831,0,'','www.medlabtechnojournal.com'),('7156bff8a5842c56b791b679b5945763',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319505,1614319505,0,'','www.medlabtechnojournal.com'),('71586978879fa004166446c70dc9b8af',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336750,1614336750,0,'','www.medlabtechnojournal.com'),('718cf83a2089da32c28a22c0e2b8132a',NULL,'54.36.148.188','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614303581,1614303581,0,'','www.medlabtechnojournal.com'),('719a9f1feee087b23cce4f7410fa9e6a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336424,1614336424,0,'','www.medlabtechnojournal.com'),('71c86ed36471a72f87c246efae8e4901',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325180,1614325180,0,'csrf|a:2:{s:9:\"timestamp\";i:1614325180;s:5:\"token\";s:32:\"2553509545e63dcda739bd75019affc6\";}','www.medlabtechnojournal.com'),('71e8ed25596742b7d139012596f10532',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613000242,1613000242,1,'userId|s:2:\"66\";username|s:11:\"gizemberfin\";csrf|a:2:{s:9:\"timestamp\";i:1613000242;s:5:\"token\";s:32:\"478648e67682a9fe352a958e9a86e44a\";}','www.medlabtechnojournal.com'),('7251119d9784e8e94e1ce2adba471e8a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330942,1614330942,0,'','www.medlabtechnojournal.com'),('727bf776ef33665e59a282b585dcc1fe',NULL,'213.184.93.12','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36',1614290343,1614290343,0,'','medlabtechnojournal.com'),('72945c0bd90a1a9148ec59cdb5246ed6',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324403,1614324403,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324403;s:5:\"token\";s:32:\"b7cde849eb970742e2fe995a402d9802\";}','medlabtechnojournal.com'),('73053f863291a53e0f4e552ba66b2bfd',70,'84.17.55.104','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36 Edg/83.0.478.37',1614313104,1614313132,0,'csrf|a:2:{s:9:\"timestamp\";i:1614313130;s:5:\"token\";s:32:\"213a9850917e73d9c5b8be6eaa613495\";}username|s:9:\"sellchono\";userId|i:70;','www.medlabtechnojournal.com'),('73b6075483304b3aae3a29e2149026b3',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322778,1614322778,0,'csrf|a:2:{s:9:\"timestamp\";i:1614322778;s:5:\"token\";s:32:\"e8421e25cb2cd4d873766610219f8f42\";}','medlabtechnojournal.com'),('73c2f79c38548a12d074a0984a8d8c2a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319108,1614319108,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319108;s:5:\"token\";s:32:\"e2d8de18d3072ddb062f10364749464d\";}','medlabtechnojournal.com'),('740b44385ee6df8ce0deac5103d01534',NULL,'185.191.171.21','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614276569,1614276569,0,'','medlabtechnojournal.com'),('743c38f26ddb9b8efd55bad975505aed',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322197,1614322197,0,'','medlabtechnojournal.com'),('74ba7864e2620cc79a3c4f008da1d120',NULL,'54.36.148.75','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614268890,1614268890,0,'','www.medlabtechnojournal.com'),('7553218e63f6284cf0fab93a77547295',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319463,1614319463,0,'','www.medlabtechnojournal.com'),('75fd422a22c4f75bbfa52c49ea7d5efa',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613000242,1613000364,1,'csrf|a:2:{s:9:\"timestamp\";i:1613000364;s:5:\"token\";s:32:\"62044cc96b2300a8bc0e582169f2d175\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('77ab1ce0e2c93c892e4fc46ea3c5e21c',NULL,'185.191.171.33','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614283569,1614283569,0,'','medlabtechnojournal.com'),('788e9802e10b9998c64effacf2972ca0',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298159,1614298159,0,'','www.medlabtechnojournal.com'),('78a00b5cb477c17e7cc38195c4d9982a',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327374,1614327374,0,'','medlabtechnojournal.com'),('78b77244fe352a7d793db23a18b3d52f',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319030,1614319030,0,'','www.medlabtechnojournal.com'),('799fbdba0ff92e585ef6bc1959f64ba8',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282675,1614282675,0,'','medlabtechnojournal.com'),('7a9bf1415dc7a7207d525592c29df09f',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323671,1614323671,0,'','medlabtechnojournal.com'),('7c28b5a9d54b6aebae92c89ac65cc56c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330826,1614330826,0,'','www.medlabtechnojournal.com'),('7c3a1ff2631ec238da1824b9a324ca49',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285820,1614285820,0,'','www.medlabtechnojournal.com'),('7c482cb04f5bd55b37a85f67acf616f8',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285487,1614285487,0,'','medlabtechnojournal.com'),('7c6c4a71a3e189587c0d7388773d6002',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289498,1614289498,0,'','medlabtechnojournal.com'),('7cea4347ee6d185b0b60953d776ce60d',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298982,1614298982,0,'','medlabtechnojournal.com'),('7d74f44838a8eaf67b39fc95fa7e8c60',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330982,1614330982,0,'','www.medlabtechnojournal.com'),('7df8f3e66710c5b186add7bc3c42c96f',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336573,1614336573,0,'','www.medlabtechnojournal.com'),('7ec1b4fc73b2506503f1e27683cfb21d',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289136,1614289136,0,'','medlabtechnojournal.com'),('7ed5f60ec5b0ec4c02ac3c603be88acf',66,'178.246.162.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613131317,1613131327,1,'csrf|a:2:{s:9:\"timestamp\";i:1613131328;s:5:\"token\";s:32:\"fbb6ffa37dae0e3bc694cc09e47b2924\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('7f46c84331ba320ca45dca5b164072ab',NULL,'64.71.131.244','e.ventures Investment Crawler (eventures.vc)',1614333269,1614333269,0,'','medlabtechnojournal.com'),('7f4e1c43b76f171946b9a6eb365da2a3',NULL,'5.255.231.87','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',1614271227,1614271227,0,'','medlabtechnojournal.com'),('805d02d0c11945ff4537e5a80e33004f',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324227,1614324227,0,'','medlabtechnojournal.com'),('8085d473a91e0182b17c868fefb67b88',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282865,1614282865,0,'','medlabtechnojournal.com'),('80d8aecc823ecfa348c7805d3896cba1',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330860,1614330860,0,'','www.medlabtechnojournal.com'),('80dd7dc0ef5c3eef6bacab38f782718e',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288258,1614288258,0,'csrf|a:2:{s:9:\"timestamp\";i:1614288258;s:5:\"token\";s:32:\"372b31d0ac518a7c1517bbde7b249626\";}','medlabtechnojournal.com'),('816a7028146299e9dd80c6020a2895d4',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319718,1614319718,0,'','www.medlabtechnojournal.com'),('818151fc57edf9d4a10f71d5062bae95',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330704,1614330704,0,'','www.medlabtechnojournal.com'),('81946c50824c50f21b7fcba63ab3b6bd',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286346,1614286346,0,'csrf|a:2:{s:9:\"timestamp\";i:1614286346;s:5:\"token\";s:32:\"2707f912a240d0544af0d22fabd0ff9b\";}','medlabtechnojournal.com'),('81a08284aabd79bd2745fa3c232f5fc6',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298862,1614298862,0,'','medlabtechnojournal.com'),('83634c02f7f7f9f1a1edae41acae0f5d',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614318162,1614318162,0,'','medlabtechnojournal.com'),('84bbcb69fdf5657a18749175eb3fa276',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318917,1614318917,0,'csrf|a:2:{s:9:\"timestamp\";i:1614318917;s:5:\"token\";s:32:\"23354e9b5d2d2d19f04b24493432b42c\";}','www.medlabtechnojournal.com'),('852ad4781386c650b3bde9f79cbe8fef',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330633,1614330633,0,'','www.medlabtechnojournal.com'),('852b12c3a2856803924f8ee8f3a01163',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614337030,1614337030,0,'','www.medlabtechnojournal.com'),('858b987fdaa79b07220faf1f98f7e0b5',NULL,'78.46.94.83','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',1614344919,1614344919,0,'','www.medlabtechnojournal.com'),('85cab3aa8fa1db5bf863aac48ca84526',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330904,1614330904,0,'','www.medlabtechnojournal.com'),('861c5dd432f5cc9b7ea4e45fa075a639',NULL,'167.114.226.133','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0',1614334341,1614334341,0,'','www.medlabtechnojournal.com'),('865e616bba4e9d3c90fd24fcb0a76e91',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319081,1614319081,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319081;s:5:\"token\";s:32:\"0cbf79eafa1bb33cff1cb08491dfe326\";}','www.medlabtechnojournal.com'),('8678156174291437230e9a6a07237c90',63,'14.1.224.112','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36',1613570135,1614081559,1,'csrf|a:2:{s:9:\"timestamp\";i:1614081559;s:5:\"token\";s:32:\"0b62f8b4b05fcde0997f5d86875d1dfd\";}userId|s:2:\"63\";username|s:8:\"drmizzud\";','medlabtechnojournal.com'),('86968bcc9fbe97473cafbcb073f38c49',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319765,1614319765,0,'','www.medlabtechnojournal.com'),('86e9d0e611ee139bd36c269bbe5e8c8a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330579,1614330579,0,'','www.medlabtechnojournal.com'),('87987316908337f773be6131a36b8d64',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336610,1614336610,0,'','www.medlabtechnojournal.com'),('87ade29fc19d461bb9350a2db248b1a1',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330487,1614330487,0,'','www.medlabtechnojournal.com'),('87b16e1dd9bd432e17367a854bd06548',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330973,1614330973,0,'','www.medlabtechnojournal.com'),('88e92bf0bc83867450514f617f636e32',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336850,1614336850,0,'','www.medlabtechnojournal.com'),('88fe79a1cd003e0e6668081d82d58d57',NULL,'77.75.79.109','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',1614349337,1614349337,0,'','medlabtechnojournal.com'),('890d5d2d7119c46d316a3b6a68ec545c',NULL,'103.253.214.10','',1614342666,1614342666,0,'','medlabtechnojournal.com'),('899653811e33118e1a2bb1e763507376',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298077,1614298077,0,'csrf|a:2:{s:9:\"timestamp\";i:1614298077;s:5:\"token\";s:32:\"5d70b97a9444ed2d7d086c7f95cd3ce5\";}','medlabtechnojournal.com'),('89b9f592f523dbb4d5c07c346c344ab2',NULL,'185.191.171.35','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614286843,1614286843,0,'','medlabtechnojournal.com'),('89ca9fa9522f3ad10faba22c626af819',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614319923,1614319923,0,'','medlabtechnojournal.com'),('8a1e6dcd5f7117d8214e9b2e00090f86',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327182,1614327182,0,'','www.medlabtechnojournal.com'),('8a7455ca744d01f24d84e82f61655d1e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319543,1614319543,0,'','www.medlabtechnojournal.com'),('8aacb9b1dbf3ac8da5b66bb27f88d8c9',NULL,'54.36.149.54','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614297178,1614297178,0,'','www.medlabtechnojournal.com'),('8adedd10df8161ec01f4ddb2a4b32c2f',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285143,1614285143,0,'csrf|a:2:{s:9:\"timestamp\";i:1614285143;s:5:\"token\";s:32:\"5cfd159fa4c35a53c561ed1e5cb29d4e\";}','www.medlabtechnojournal.com'),('8af83d003164c68d68b815838a099e1c',NULL,'54.36.149.66','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298978,1614298978,0,'','medlabtechnojournal.com'),('8b78b7ace22488cbc70d64d1b79a8343',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297795,1614297795,0,'','medlabtechnojournal.com'),('8cccd46a634bfae9334bddda509f217f',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323351,1614323351,0,'','www.medlabtechnojournal.com'),('8d0bacd7f5e47a31e9fa911312b8406d',NULL,'51.36.113.234','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',1614331225,1614331289,0,'','www.medlabtechnojournal.com'),('8d18db86467cebd618afb854190d659c',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324277,1614324277,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324277;s:5:\"token\";s:32:\"d20900416a23f28abedf1c5145143309\";}','medlabtechnojournal.com'),('8d4cd7e875dbd580c187a8e4e8bc4f24',NULL,'185.191.171.22','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614318291,1614318291,0,'','www.medlabtechnojournal.com'),('8d63b9e39091395b9c0597831774586e',NULL,'54.36.149.93','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614300226,1614300226,0,'','medlabtechnojournal.com'),('8d698655ff48ed24b767f27a12a3e5da',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285138,1614285138,0,'csrf|a:2:{s:9:\"timestamp\";i:1614285138;s:5:\"token\";s:32:\"4120e9db08fab70cfe98f9ef48843989\";}','medlabtechnojournal.com'),('8d6f1f91c2023c063cd10d78cda989ca',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330748,1614330748,0,'','www.medlabtechnojournal.com'),('8d9857f32e1e4ea0c0c149c4a8992f00',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336319,1614336319,0,'','www.medlabtechnojournal.com'),('8dd36e201614d375dc1a6e3eb3669690',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324393,1614324393,0,'','medlabtechnojournal.com'),('8e1c9c10ed879dca846e614442fbe6c1',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287838,1614287838,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287838;s:5:\"token\";s:32:\"2be0eebaedc66aaee74846f277dfaf1c\";}','www.medlabtechnojournal.com'),('8e310fd2fbedb7f9dda05cc31e688810',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336674,1614336674,0,'','www.medlabtechnojournal.com'),('8ebe37c8553509a4d7787fc893617568',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614302540,1614302540,0,'','www.medlabtechnojournal.com'),('8f80afb2d094b63715dec378e48d51b3',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614299160,1614299160,0,'','medlabtechnojournal.com'),('9009eba27341fc1b7e408084cb90826c',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282727,1614282727,0,'','medlabtechnojournal.com'),('9071f55097229d5c61616da6db72485b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330550,1614330550,0,'','www.medlabtechnojournal.com'),('90759444a7264721674818b73b242b4d',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614321865,1614321865,0,'csrf|a:2:{s:9:\"timestamp\";i:1614321865;s:5:\"token\";s:32:\"ca6ffa067b094b1b9e1dc01d65619038\";}','medlabtechnojournal.com'),('907ac04d47e4e42dc5371f74e9af81c4',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287947,1614287947,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287947;s:5:\"token\";s:32:\"3fcf21bf8888b156e2f39c8e29f1794c\";}','medlabtechnojournal.com'),('907ed486f395930afe6b273192c7837a',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323493,1614323493,0,'','www.medlabtechnojournal.com'),('90a1b4ae1aacc34a36dc8e5b0d554029',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319326,1614319326,0,'','www.medlabtechnojournal.com'),('90ea4000355a633187978a02c001d303',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319206,1614319206,0,'','www.medlabtechnojournal.com'),('90f4956706011c11487c90dfa6e92320',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336472,1614336472,0,'','www.medlabtechnojournal.com'),('9115b545064a97a984da3370fa48b603',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336635,1614336635,0,'','www.medlabtechnojournal.com'),('9161f4748d36761424e56c1fb184afbc',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324411,1614324411,0,'','medlabtechnojournal.com'),('9219802e42ff978b5f90404088fe43a9',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614326149,1614326149,0,'','medlabtechnojournal.com'),('9241a8fc5a408d2ff9aed0b52465a2b3',NULL,'77.75.76.167','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',1614328374,1614328374,0,'','medlabtechnojournal.com'),('92e1bfbd628167ce3150efbf4c5897e8',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288674,1614288674,0,'csrf|a:2:{s:9:\"timestamp\";i:1614288674;s:5:\"token\";s:32:\"3d8799cfd1d57f30558ce4a30054b4ca\";}','medlabtechnojournal.com'),('9394c1400435fb1c4f6af17e97c2601a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336762,1614336762,0,'','www.medlabtechnojournal.com'),('93d7fc2b864e1d794685bd78d3809e63',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330762,1614330762,0,'','www.medlabtechnojournal.com'),('9400c3c8156e72210f9653cf06b6115e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319535,1614319535,0,'','www.medlabtechnojournal.com'),('946e01199319e0d87b193935a47eac3d',NULL,'54.36.148.199','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298573,1614298573,0,'','www.medlabtechnojournal.com'),('9494022f38098572fec668e7bbfd187d',NULL,'5.9.156.20','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',1614281446,1614281446,0,'','www.medlabtechnojournal.com'),('94e1ae423710a4609ee688f436bb9777',NULL,'54.36.148.21','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614299668,1614299668,0,'','www.medlabtechnojournal.com'),('955742b9b11848d326205aa5fa646481',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319644,1614319644,0,'','www.medlabtechnojournal.com'),('95674f250496692a769dcc546b3f51ef',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285126,1614285126,0,'','www.medlabtechnojournal.com'),('957dde672c891ed216eaf3f75d54e23d',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325449,1614325449,0,'','www.medlabtechnojournal.com'),('958f86c651fa6c1bebb4ae68aa3421af',NULL,'180.252.52.178','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1614283599,1614283599,0,'','medlabtechnojournal.com'),('959bb9d9a1aa2dbdb46785b88983b527',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319704,1614319704,0,'','www.medlabtechnojournal.com'),('96095b5580add10a8c5d5c361f1297aa',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325537,1614325537,0,'','medlabtechnojournal.com'),('964eaa86b09d0682a89a7f385a893024',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319801,1614319801,0,'','www.medlabtechnojournal.com'),('965a921c3f418cbd8c5b47cee0a6187d',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614301037,1614301037,0,'','www.medlabtechnojournal.com'),('968ef69e39251854f18cc9b38dea294b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319845,1614319845,0,'','www.medlabtechnojournal.com'),('96d912ff82b88619b9104748186c9798',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336913,1614336913,0,'','www.medlabtechnojournal.com'),('96fcc94465802a4f50c70242f7a492dd',66,'178.246.162.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613132127,1613132140,1,'csrf|a:2:{s:9:\"timestamp\";i:1613132140;s:5:\"token\";s:32:\"6630164e33c9d8e2f1ea6e2118dfa4c0\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('973e5bf34dc2d095ed3fa7e39a7f6d0a',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298318,1614298318,0,'','medlabtechnojournal.com'),('976443e81da2f34421aa2656662c21f8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319145,1614319145,0,'','www.medlabtechnojournal.com'),('976c913d6feac4daa9d2026c8adb6d85',NULL,'78.180.67.122','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15',1614290575,1614290604,0,'','medlabtechnojournal.com'),('979a85387a6b79fc8a35ded807f93838',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298807,1614298807,0,'','medlabtechnojournal.com'),('97d01398c74695fff690837603b2a829',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319625,1614319625,0,'','www.medlabtechnojournal.com'),('9851fcf2d24a3292bf0be18544bebd48',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336896,1614336896,0,'','www.medlabtechnojournal.com'),('989cfc07a36ec17b54beb3291ed23a2b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336823,1614336823,0,'','www.medlabtechnojournal.com'),('98b5e7fd1e704814cd37b32a12d9cd0f',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330643,1614330643,0,'','www.medlabtechnojournal.com'),('98c86a792360c8a028edfd6f94fdb356',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284802,1614284802,0,'csrf|a:2:{s:9:\"timestamp\";i:1614284802;s:5:\"token\";s:32:\"75b51cb1862ae9b5b423a00c337597d0\";}','medlabtechnojournal.com'),('9968fe48bae332f40198e4eacf8ea6a1',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286134,1614286134,0,'','www.medlabtechnojournal.com'),('99916080a99821662c805a3e216c33ce',NULL,'66.249.79.252','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.202 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',1614293369,1614293369,0,'','www.medlabtechnojournal.com'),('999e158628d1d3ecfb01c8ee333f9838',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336818,1614336818,0,'','www.medlabtechnojournal.com'),('99e05c9c6dbfe28133cf3a8c9f526230',NULL,'54.245.71.145','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',1614283553,1614283553,0,'','medlabtechnojournal.com'),('9a386a73d8fb1a5e985b8b730de98f87',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319138,1614319138,0,'','www.medlabtechnojournal.com'),('9aa3ab1d37a96e801f5fdabbd8d9925c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330819,1614330819,0,'','www.medlabtechnojournal.com'),('9ac7185b505c19efcf60aa0cbd6ff34b',NULL,'54.36.149.84','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614283595,1614283595,0,'','www.medlabtechnojournal.com'),('9af6cf096f2c9984f4271efa72db7c97',69,'185.244.214.115','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36',1613664753,1613664845,1,'csrf|a:2:{s:9:\"timestamp\";i:1613664845;s:5:\"token\";s:32:\"c1edd89095143dc568590b8d33b3e07d\";}userId|s:2:\"69\";username|s:11:\"spiderchono\";','www.medlabtechnojournal.com'),('9b40304a792549a25af2d0c0be1b4c7e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319448,1614319448,0,'','www.medlabtechnojournal.com'),('9b617802774625390273cc0f32647c82',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336519,1614336519,0,'','www.medlabtechnojournal.com'),('9b61be47932e04c21ff59d6041747845',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298679,1614298679,0,'','medlabtechnojournal.com'),('9beb70348d9ab219d421396b107ae552',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327403,1614327403,0,'','www.medlabtechnojournal.com'),('9c6765ddae21df46ee414752cf5f42da',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297741,1614297741,0,'','medlabtechnojournal.com'),('9d69e7009821155dc2d95ec9a60c17ec',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612996786,1612996836,1,'csrf|a:2:{s:9:\"timestamp\";i:1612996836;s:5:\"token\";s:32:\"97f127e4c73af81eff107b73a2930b87\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('9d85da120ddef1c8b21376b17ff61e86',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289198,1614289198,0,'','medlabtechnojournal.com'),('9e693440f4fadcd034a2aacb7622ad52',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287825,1614287825,0,'','www.medlabtechnojournal.com'),('9e78fc6250ca3400417f56ba5e40618e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330884,1614330884,0,'','www.medlabtechnojournal.com'),('9f7b7a4a5b7c14c957069e210aa92028',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336741,1614336741,0,'','www.medlabtechnojournal.com'),('9fcba585912bd774818cc2b911869062',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330587,1614330587,0,'','www.medlabtechnojournal.com'),('a02d4918ba9873203092657092c968d7',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287932,1614287932,0,'','medlabtechnojournal.com'),('a0c402dd2b8ea5e8953149fa5cb63da3',NULL,'103.253.212.8','Softaculous',1614351088,1614351088,0,'','medlabtechnojournal.com'),('a0c5fc327be8629959a67351151b7c53',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319279,1614319279,0,'','www.medlabtechnojournal.com'),('a11299a5a0101d2e9f2bbec97b3e5ba2',NULL,'23.82.28.66','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4843.400 QQBrowser/9.7.13021.400',1614309058,1614309058,0,'','medlabtechnojournal.com'),('a1208a60a88c63a08002f1524d0ab8d8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614331025,1614331025,0,'','www.medlabtechnojournal.com'),('a146c0d96014303ea96cb09fcc88b368',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336600,1614336600,0,'','www.medlabtechnojournal.com'),('a1dc7225f765c66bea496e426fe0aaf1',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319421,1614319421,0,'','www.medlabtechnojournal.com'),('a291dc6c3e7ce067020afa9701d70635',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325028,1614325028,0,'','www.medlabtechnojournal.com'),('a2f4ae33607b084030b5e7c7aeb91b39',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322042,1614322042,0,'','www.medlabtechnojournal.com'),('a3752683413a58245f39e1440e3b67a2',66,'85.111.53.35','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613131662,1613134207,1,'csrf|a:2:{s:9:\"timestamp\";i:1613134207;s:5:\"token\";s:32:\"24c59b31fcb1f09fb760c8f26457544d\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('a3eccbaf1b34e3bf598638f4c841249e',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614301738,1614301738,0,'','www.medlabtechnojournal.com'),('a451ad1916f79362845f3c6ba9a1546f',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297671,1614297671,0,'','medlabtechnojournal.com'),('a4c7b457920722adea67e46b28119ed2',NULL,'66.249.93.69','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1614332932,1614332932,0,'','medlabtechnojournal.com'),('a56cc2a7bb371280f4cbc32f0432a657',NULL,'157.55.39.112','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614306078,1614306078,0,'','www.medlabtechnojournal.com'),('a5a0642403134758fa32a31fa562a0ed',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324675,1614324675,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324675;s:5:\"token\";s:32:\"8afc16ffd8eed3dbf52565b4a2b4a697\";}','www.medlabtechnojournal.com'),('a5e1c9301ede0986fa2fa75952758bc3',NULL,'54.36.149.5','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614301460,1614301460,0,'','www.medlabtechnojournal.com'),('a5e58561593159c80d6804c7be81b803',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319247,1614319247,0,'','www.medlabtechnojournal.com'),('a5f778857717cf38bc12d33f86fdedbf',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319373,1614319373,0,'','www.medlabtechnojournal.com'),('a680ad270e5b9f4ba6174346b892c66e',NULL,'178.171.88.26','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1614291657,1614291657,0,'','medlabtechnojournal.com'),('a6de52a784c6fb96f1b0183a300199b1',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322919,1614322919,0,'','medlabtechnojournal.com'),('a7017573278567070e9b7e0819d80362',NULL,'13.66.139.113','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614321350,1614321350,0,'','medlabtechnojournal.com'),('a76a2504a7655bb54f3c013db298b3d6',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330713,1614330713,0,'','www.medlabtechnojournal.com'),('a7872e1f22b67a438fae265056457336',NULL,'54.36.148.178','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614299120,1614299120,0,'','medlabtechnojournal.com'),('a85342caed15836baa1ba710fe324412',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336665,1614336665,0,'','www.medlabtechnojournal.com'),('a858d7a305276ed5abd251b064fa9a2d',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614300768,1614300768,0,'','www.medlabtechnojournal.com'),('a85ebcc1b585a0149a661fd0fb0f0cf2',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613421914,1613421914,1,'userId|s:2:\"66\";username|s:11:\"gizemberfin\";csrf|a:2:{s:9:\"timestamp\";i:1613421914;s:5:\"token\";s:32:\"6fbcda389703458cdf40fb4c3e901c8c\";}','www.medlabtechnojournal.com'),('a88b2f5f9660d19b69d0452d9d7ea244',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286235,1614286235,0,'csrf|a:2:{s:9:\"timestamp\";i:1614286235;s:5:\"token\";s:32:\"3ea787bd6cd997d7d120a96b17f1a357\";}','medlabtechnojournal.com'),('aa088f85ef86c51c5b9ae710e12fdaf5',NULL,'181.215.12.110','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0',1614290838,1614290838,0,'','medlabtechnojournal.com'),('aa0d827fbc0fe0139cae9266a644a3d2',NULL,'54.36.149.53','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614307758,1614307758,0,'','www.medlabtechnojournal.com'),('aa278cd5e74603689ead39ccfb4f5075',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336984,1614336984,0,'','www.medlabtechnojournal.com'),('aa6e4e787f8aaaa791a3a10bd3b4c945',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614329251,1614329251,0,'','www.medlabtechnojournal.com'),('aad992bd432948d86145d09216522466',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298010,1614298010,0,'','medlabtechnojournal.com'),('ab1ac0c3e1514ce7531b6fe305b8498d',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288405,1614288405,0,'','medlabtechnojournal.com'),('ab37e272e2ab9203c6a5315cbbcf9244',NULL,'54.36.148.196','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614285887,1614285887,0,'','www.medlabtechnojournal.com'),('ab574081406bca988448f7d27dd8c31a',NULL,'54.218.129.161','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_3) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.65 Safari/537.31',1614292619,1614292620,0,'','medlabtechnojournal.com'),('ab58ec978e97e385a83adcab53c82829',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319664,1614319664,0,'','www.medlabtechnojournal.com'),('ab6af1584b275efa536a7ae5f43da9b2',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336312,1614336312,0,'','www.medlabtechnojournal.com'),('abb1a01de2eb3bc6aac87d0a513dce92',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330668,1614330668,0,'','www.medlabtechnojournal.com'),('abb45bca4d6f461795173baf1dfb5d29',NULL,'13.66.139.113','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614295661,1614295661,0,'csrf|a:2:{s:9:\"timestamp\";i:1614295661;s:5:\"token\";s:32:\"fb8aedb748874e80f3fc508c62ed6da6\";}','www.medlabtechnojournal.com'),('abd56cd7643cc637cda37495b9767e76',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330739,1614330739,0,'','www.medlabtechnojournal.com'),('abea96b0ebf3190c801b7f686d0256a8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336539,1614336539,0,'','www.medlabtechnojournal.com'),('ac690f97b39056bb4de5b09e429ea357',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614337044,1614337044,0,'','www.medlabtechnojournal.com'),('ad17e7da9404841b8fbc25826e68385e',NULL,'54.36.149.71','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614280702,1614280702,0,'','www.medlabtechnojournal.com'),('adfb5790c8f260a51a1bc6e4d711d905',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319125,1614319125,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319125;s:5:\"token\";s:32:\"fe3079104ff574d3a232600983359350\";}','www.medlabtechnojournal.com'),('ae0d37ae9521d8ab1160f8e29565b264',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330567,1614330567,0,'','www.medlabtechnojournal.com'),('ae70f842da5b79dd1bed180c3ed84364',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324444,1614324444,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324444;s:5:\"token\";s:32:\"866f4b4aba7322172f320025b4d6d62d\";}','www.medlabtechnojournal.com'),('aed2294b61201e7b3955b171545d140a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330754,1614330754,0,'','www.medlabtechnojournal.com'),('b0114be8c3a55bdf405fddb24f001f31',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287049,1614287049,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287049;s:5:\"token\";s:32:\"c681cb1bcdf44c6641766197b75330e6\";}','www.medlabtechnojournal.com'),('b04b2f2f81b03015383084e30d2c00f7',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319549,1614319549,0,'','www.medlabtechnojournal.com'),('b11935f5218a2644aeeb4b9f3a1edca0',NULL,'193.111.184.198','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0',1614290638,1614290638,0,'','medlabtechnojournal.com'),('b130670cf2432e8633a100ad4ccb82b1',NULL,'66.249.79.249','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287033,1614287033,0,'','www.medlabtechnojournal.com'),('b22892649fe9cce9ff229bbf4912b29b',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298846,1614298846,0,'','medlabtechnojournal.com'),('b2ca045ee3db4219ec220aa3d5cfc4df',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288451,1614288451,0,'','medlabtechnojournal.com'),('b2e05ae387813e02d6cdf0a4e0c6e675',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336732,1614336732,0,'','www.medlabtechnojournal.com'),('b31d700d88c3510b27def8f0646edb1b',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322701,1614322701,0,'','www.medlabtechnojournal.com'),('b3259b7eb2b415b42a9ed4dab46eefd5',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336372,1614336372,0,'','www.medlabtechnojournal.com'),('b3db471754f2cdea680f881ec31206a5',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614337051,1614337051,0,'','www.medlabtechnojournal.com'),('b3fe03615b5b5fbbc366c2ab357015d9',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284626,1614284626,0,'csrf|a:2:{s:9:\"timestamp\";i:1614284626;s:5:\"token\";s:32:\"46665f22e3d9eca54ec1e5a557d1bb88\";}','www.medlabtechnojournal.com'),('b55a06c092be994b7b44e562ee3d6178',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287327,1614287327,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287327;s:5:\"token\";s:32:\"d4001b743ef5e1d45d93ca805c0729be\";}','medlabtechnojournal.com'),('b6699df33cb66b2d19ed1a496daab40a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318935,1614318935,0,'','www.medlabtechnojournal.com'),('b68d2bf391c0f99be254ff212d58e35e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336650,1614336650,0,'','www.medlabtechnojournal.com'),('b7873268fdb4a302aa9ceec39314a9d9',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319864,1614319864,0,'','www.medlabtechnojournal.com'),('b7db4293196c62efe72753fc5469f2d8',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614319920,1614319920,0,'csrf|a:2:{s:9:\"timestamp\";i:1614319920;s:5:\"token\";s:32:\"4f9c3a6270954eea01bcb1a66a4186d7\";}','medlabtechnojournal.com'),('b8acc8cee6f11a4d3fbda72f877ca7e5',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319871,1614319871,0,'','www.medlabtechnojournal.com'),('b8cd94702cfcea597f2663ed6ac225d1',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614300903,1614300903,0,'','medlabtechnojournal.com'),('b903d8fd59a700424a6ca36cf6114fdc',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614331032,1614331032,0,'','www.medlabtechnojournal.com'),('b90aa2578e52139650eca629c5a808ef',NULL,'66.249.79.245','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324176,1614324176,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324177;s:5:\"token\";s:32:\"66ef6db9322a03c2331d634e62e6b78b\";}','www.medlabtechnojournal.com'),('b928e737b8367a7cabcdf41bacb18d55',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330964,1614330964,0,'','www.medlabtechnojournal.com'),('b93a0cd7ed8757389d21f18ef97e4429',NULL,'131.220.6.152','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36',1614333394,1614333394,0,'','medlabtechnojournal.com'),('b97fe66e9c7d50bf3c9842df8004acc7',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298194,1614298194,0,'','medlabtechnojournal.com'),('b98d0ca66e328ff416e5cb1e6929f56e',NULL,'10.0.1.218','',1614294875,1614294875,0,'','medlabtechnojournal.com'),('ba1e48e821bcb534e1ad50c10ae055cd',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322002,1614322002,0,'','www.medlabtechnojournal.com'),('ba439eae4aab019599eb78166a1ae547',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336928,1614336928,0,'','www.medlabtechnojournal.com'),('bac49a937f182f9ffee7001e2b59fb90',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288042,1614288042,0,'','www.medlabtechnojournal.com'),('bb26f4efb91913a62cf1665010a22aa1',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336721,1614336721,0,'','www.medlabtechnojournal.com'),('bb70b2ea1493df5a2bac9d6bd36da170',NULL,'185.191.171.12','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614294583,1614294583,0,'','medlabtechnojournal.com'),('bbdb8ec8350496c0fe8f27950728cf81',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330868,1614330868,0,'','www.medlabtechnojournal.com'),('bbf0dc8be813694f85f956078200967a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336659,1614336659,0,'','www.medlabtechnojournal.com'),('bc7fa88903387970f56b52bb658e2636',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614325258,1614325258,0,'','www.medlabtechnojournal.com'),('bd6c575783bc2711cd446610cfd77c3f',NULL,'54.36.148.169','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614301177,1614301177,0,'','www.medlabtechnojournal.com'),('bd868270cc7b908732a5f5326aa4a30e',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324431,1614324431,0,'','www.medlabtechnojournal.com'),('bddcf74be4701beca3ec9b66bbf90189',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330593,1614330593,0,'','www.medlabtechnojournal.com'),('be0378e824b8d3b3efb382236fe08f9c',NULL,'5.9.156.20','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',1614281442,1614281442,0,'','www.medlabtechnojournal.com'),('be2dcc502148b6bb12193e358a47ae92',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319355,1614319355,0,'','www.medlabtechnojournal.com'),('beb0410e14d85bb8c2ee90ab66af2b9c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336326,1614336326,0,'','www.medlabtechnojournal.com'),('bf13ca7d82e947492dd4cd1b0bfcb8d0',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614281435,1614281435,0,'','medlabtechnojournal.com'),('bf46044d52109eea92b37bfbc20c14e3',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614320760,1614320760,0,'','medlabtechnojournal.com'),('bf53cf51f457c3729b29946a4d2d7d89',NULL,'185.191.171.19','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614291000,1614291000,0,'','medlabtechnojournal.com'),('bfc45966ee3af66af44bc969a4ee9701',NULL,'116.14.58.13','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36',1614307162,1614307163,0,'','www.medlabtechnojournal.com'),('bmga05r5d5elhm8v9akru97td0',56,'88.230.178.224','Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36',1611846313,1611846342,1,'XQyOEM_3bE5af9aTKy27gY7boDx5vcsjH2tQ10mHuhGaUuubEd3mNpWYU6aEH3ZJ8nxm1bP2_RhGCEi6e4RTWsPNLidf17nV_kkLfkGPwqtON7NAs0WkIAsR67lQLg4N-3FgZ1JUMdp_Vfhq6GHoFXc26UH_bL9pVLViaslG_UpQnwTAL_NEYRs0xx9ELd9TwXRBSBS4kjE3fLhKFTjBpA..','www.medlabtechnojournal.com'),('c0131d7a993f133c3d0703e11298e0b1',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319515,1614319515,0,'','www.medlabtechnojournal.com'),('c03eefd41fc134331b23b84ad79e00a0',NULL,'180.252.52.178','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1614283600,1614283600,0,'','medlabtechnojournal.com'),('c07fa45fa2edc197762728afca5dabfd',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614345998,1614345998,0,'','www.medlabtechnojournal.com'),('c1508b456fce68c0d18a24495150d98e',NULL,'191.96.24.244','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15',1614290578,1614290578,0,'','medlabtechnojournal.com'),('c159d2ca7ba9887457ef465f72f5118b',NULL,'83.223.243.52','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1',1614333570,1614333570,0,'','www.medlabtechnojournal.com'),('c1bd74f7dcf13c5957b141aaea71770e',NULL,'66.249.93.69','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 Google Favicon',1614332932,1614332932,0,'','medlabtechnojournal.com'),('c1ce380f0c341f5253e58d49613a9c97',NULL,'185.191.171.44','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614347390,1614347390,0,'','medlabtechnojournal.com'),('c24da93a6c3845347ad72726f959fa0f',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324579,1614324579,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324579;s:5:\"token\";s:32:\"901d6881d5c16f843f73e36321f01a07\";}','medlabtechnojournal.com'),('c2541763fd07569a3620dc4171bd454f',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324518,1614324518,0,'','medlabtechnojournal.com'),('c30ce5431925e09aa9dd51f568e0fe56',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285567,1614285567,0,'','www.medlabtechnojournal.com'),('c321aa2ed2f3006ff08c1533f1ccf77d',NULL,'66.249.79.117','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.202 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',1614345956,1614345956,0,'','medlabtechnojournal.com'),('c35d2f0c2f861439e77e4b6f94fa170e',NULL,'131.220.6.152','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36',1614333395,1614333395,0,'','medlabtechnojournal.com'),('c3cde7de3c11e13354b63fe445b50e2a',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287474,1614287474,0,'','www.medlabtechnojournal.com'),('c43ad522c57453ffb25a362048f28180',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298370,1614298370,0,'','medlabtechnojournal.com'),('c45d2c0d395c37bc4f9e8da24d8d702b',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322247,1614322247,0,'','www.medlabtechnojournal.com'),('c4bb072db0ae72eb1497171ba551db1b',NULL,'181.215.126.29','Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0',1614304554,1614304554,0,'','www.medlabtechnojournal.com'),('c4c05f05d622d68a541a4149224fa66f',NULL,'54.36.148.28','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614299388,1614299388,0,'','www.medlabtechnojournal.com'),('c501bab7e7b13b0ae0f227bbf5435759',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322026,1614322026,0,'','medlabtechnojournal.com'),('c519a7e4bd08478bbd78e75a31b0d568',69,'185.189.115.23','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36',1613431879,1613431883,1,'csrf|a:2:{s:9:\"timestamp\";i:1613431883;s:5:\"token\";s:32:\"1bc73549add2748152e2a96651664833\";}username|s:11:\"spiderchono\";userId|s:2:\"69\";','www.medlabtechnojournal.com'),('c53aaa24ecf4e6a385e67dba44dea0b6',NULL,'185.191.171.3','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614287624,1614287624,0,'','medlabtechnojournal.com'),('c563ad707d8bf9305e9240b698cedcf7',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614326820,1614326820,0,'','www.medlabtechnojournal.com'),('c56972b9aa83ee41e3f9c38d87a55c69',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327298,1614327298,0,'csrf|a:2:{s:9:\"timestamp\";i:1614327298;s:5:\"token\";s:32:\"b015b65d9f7963a6cfde41dee6aaf6d5\";}','www.medlabtechnojournal.com'),('c58a5c332aeeb2c9068ea99f37dde476',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614281653,1614281653,0,'','medlabtechnojournal.com'),('c5ca535ae5abe86cab7bfdca06d3f255',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322332,1614322332,0,'','www.medlabtechnojournal.com'),('c65fcfe954929bb8d5d615e29c1bc390',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330558,1614330558,0,'','www.medlabtechnojournal.com'),('c666f2648300b15627a44efc42a10073',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614283430,1614283430,0,'','medlabtechnojournal.com'),('c683d24da14455f142edd9f1b8e000df',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336494,1614336494,0,'','www.medlabtechnojournal.com'),('c6aa879281ad1ae47f720892cd166c74',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289212,1614289212,0,'csrf|a:2:{s:9:\"timestamp\";i:1614289213;s:5:\"token\";s:32:\"2637192512376e06efb109efbe4e01c6\";}','medlabtechnojournal.com'),('c6b130885b4703590e1c0aaa1cc8348f',NULL,'178.233.32.112','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',1614273776,1614273777,0,'','medlabtechnojournal.com'),('c6d930b097a7d9a6c22c42221f96b7fd',NULL,'64.71.131.244','Mozilla/5.0 (compatible; evc-batch/2.0)',1614290312,1614290312,0,'','medlabtechnojournal.com'),('c6f6913777bbc440492547b2851145af',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325755,1614325755,0,'csrf|a:2:{s:9:\"timestamp\";i:1614325755;s:5:\"token\";s:32:\"21443c15311c2a622818555554b921fa\";}','www.medlabtechnojournal.com'),('c72a2e4dcd8ccf34553b6ed26d20b287',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614274964,1614274964,0,'','www.medlabtechnojournal.com'),('c743ec61062849b77ea5d710071efa9e',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614282740,1614282740,0,'csrf|a:2:{s:9:\"timestamp\";i:1614282740;s:5:\"token\";s:32:\"0bc3f842aff814a33d2299d11473c768\";}','medlabtechnojournal.com'),('c77ad335d0629eb518cc35cdf7f3bc80',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614337004,1614337004,0,'','www.medlabtechnojournal.com'),('c782634c6a7cf0eb2f01aebe2100a713',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319523,1614319523,0,'','www.medlabtechnojournal.com'),('c7c125bce10cbe783e48b2349c8f6237',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336800,1614336800,0,'','www.medlabtechnojournal.com'),('c84908e0432120869c80cd9eb1bff6fe',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330989,1614330989,0,'','medlabtechnojournal.com'),('c85712892a447e1be3a9c285b3f50a8e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336486,1614336486,0,'','www.medlabtechnojournal.com'),('c8b55e3d972de787305ad26c8020a63d',NULL,'185.191.171.34','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614312204,1614312204,0,'','medlabtechnojournal.com'),('c92da74a74b54c0b4972c7fe31e7569a',NULL,'176.111.51.85','Mozilla/5.0 (Windows NT 10.0; WOW64; Rv:50.0) Gecko/20100101 Firefox/50.0',1614344386,1614344386,0,'','www.medlabtechnojournal.com'),('ca54b876dd530339d73438eb2ae20f42',NULL,'54.36.149.52','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614349559,1614349559,0,'','www.medlabtechnojournal.com'),('cb118171edd615549235f945ece41688',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336364,1614336364,0,'','www.medlabtechnojournal.com'),('cb515657acc2bb04d9aa583d550985b5',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324563,1614324563,0,'','medlabtechnojournal.com'),('cb6da3416b443402edf20e1c1af1bf62',NULL,'178.171.75.150','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36',1614290638,1614290638,0,'','medlabtechnojournal.com'),('cb771cce3e20faf00d1e5d7c031cc1dc',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614299387,1614299387,0,'','medlabtechnojournal.com'),('cb831007e194bb694e84f7a6f4f0d1c6',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323803,1614323803,0,'csrf|a:2:{s:9:\"timestamp\";i:1614323803;s:5:\"token\";s:32:\"2daf166fa2a8815700caf7cee9dc69f3\";}','medlabtechnojournal.com'),('cbca58f874c0710f810abf1c59013ae8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614331018,1614331018,0,'','www.medlabtechnojournal.com'),('cc1643b9e7a071984f4081a96f11240b',68,'185.104.187.46','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4098.0 Safari/537.36',1612987376,1612987391,1,'csrf|a:2:{s:9:\"timestamp\";i:1612987391;s:5:\"token\";s:32:\"9278d1e3e40050f7b8982cf06174a5d4\";}userId|s:2:\"68\";username|s:9:\"wazzchono\";','www.medlabtechnojournal.com'),('cc9330320516e085e18c1873c303f2c9',NULL,'191.101.102.160','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36',1614290838,1614290838,0,'','medlabtechnojournal.com'),('cc9446c3172d13fac8f05add2d22e2eb',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336644,1614336644,0,'','www.medlabtechnojournal.com'),('ccdd762426a2d998afabee3782ddc430',NULL,'54.36.149.6','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614299255,1614299255,0,'','medlabtechnojournal.com'),('cd2e66610aa2996566567950c177e59e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336334,1614336334,0,'','www.medlabtechnojournal.com'),('cd7cf032d22f572a4ecebbacdc66fa06',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614337013,1614337013,0,'','www.medlabtechnojournal.com'),('cd92186f9436c0336ccd8f7feae18557',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330532,1614330532,0,'','www.medlabtechnojournal.com'),('cdb4cb38b4db58f0b84b4c9b7c27c605',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284657,1614284657,0,'','medlabtechnojournal.com'),('cdc69ffa6f150a606d5706b7bf60ec66',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614299103,1614299103,0,'','medlabtechnojournal.com'),('cea6dd70900fb0e004f0b29f224c1ab2',NULL,'54.36.148.92','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614292919,1614292919,0,'','www.medlabtechnojournal.com'),('cee2101f59de508b3c7f7e0ecf5281c5',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330516,1614330516,0,'','www.medlabtechnojournal.com'),('cf8981feb13146646d24a700425b6294',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324500,1614324500,0,'','medlabtechnojournal.com'),('cf9f523b37cd11f5803cc94bacb21938',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319735,1614319735,0,'','www.medlabtechnojournal.com'),('cfaeeac6790b0090f5c966837b43f9c0',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336628,1614336628,0,'','www.medlabtechnojournal.com'),('d0218e942e4ecc670dcaa466de7a3abf',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336462,1614336462,0,'','www.medlabtechnojournal.com'),('d0bc431c5212ad6f74fbb98b38ea4973',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330718,1614330718,0,'','www.medlabtechnojournal.com'),('d15ba9e4bc72ef9cefd6f0baf1cee0a4',NULL,'191.101.78.236','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15',1614291657,1614291657,0,'','medlabtechnojournal.com'),('d16e821a5e755cf8e6f7031ce873273b',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297954,1614297954,0,'','medlabtechnojournal.com'),('d16f420e901cbfbbb68dfe8674b66c65',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319658,1614319658,0,'','www.medlabtechnojournal.com'),('d250a5add34cc3de18b640271470f36d',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327281,1614327281,0,'','www.medlabtechnojournal.com'),('d2bf0fa9c0edf56d085827d8d635ab90',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323336,1614323336,0,'','www.medlabtechnojournal.com'),('d3f4fb4aba9b879297386dcde0ebe0da',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287860,1614287860,0,'','medlabtechnojournal.com'),('d5a8a1b80c0fb3c3ca3231935136bbfb',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319759,1614319759,0,'','www.medlabtechnojournal.com'),('d5abfbd6c9bcde482ff3f50ed682d120',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319774,1614319774,0,'','www.medlabtechnojournal.com'),('d5ce79a8df37c9e54d004172d1442dc2',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336387,1614336387,0,'','www.medlabtechnojournal.com'),('d5d714b204f8e884cdf06539244fdc64',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289480,1614289480,0,'','medlabtechnojournal.com'),('d6fc5331e82d1c8d1674dafd0d9ffb06',NULL,'40.77.167.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614276062,1614276062,0,'','medlabtechnojournal.com'),('d716a147686e530a4b5e6641daf60265',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336867,1614336867,0,'','www.medlabtechnojournal.com'),('d76f740a9dcf8e25d9cb27e7d29661cf',NULL,'66.249.79.249','Googlebot/2.1 (+http://www.google.com/bot.html)',1614280037,1614280037,0,'','www.medlabtechnojournal.com'),('d7faecd6b2f9665427f9d2d57625d761',NULL,'54.36.148.82','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614305731,1614305731,0,'','www.medlabtechnojournal.com'),('d880b7025342eb03bd8df14051c5c309',NULL,'54.36.148.146','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614296321,1614296321,0,'','www.medlabtechnojournal.com'),('d8eca80c87c85fbe93c267dafa501cc4',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336881,1614336881,0,'','www.medlabtechnojournal.com'),('d927c10744845e16d5dbc9a7f08cbc70',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319557,1614319557,0,'','www.medlabtechnojournal.com'),('d931dac606ee6bb8ab8c4a954c073e79',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614333078,1614333078,0,'','www.medlabtechnojournal.com'),('d991225024bc23800d025570decf88aa',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286262,1614286262,0,'','www.medlabtechnojournal.com'),('d9c257ec449641b830a0ddf0b339db23',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319564,1614319564,0,'','www.medlabtechnojournal.com'),('da145f5f3f57a61e469b59e3cabb64e2',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286328,1614286328,0,'','medlabtechnojournal.com'),('da7f5c4c3112debaa9212a1e42b465a0',NULL,'54.36.148.165','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614301323,1614301323,0,'','www.medlabtechnojournal.com'),('dc7e9e5e387d8af37005ee212e37b232',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324964,1614324964,0,'','medlabtechnojournal.com'),('dc98a688c35f8a1aedbb3a96bd7c6aad',NULL,'54.36.148.23','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614296880,1614296880,0,'','medlabtechnojournal.com'),('dcf00d590e9dfebbe96b8e7341ed9954',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330796,1614330796,0,'','www.medlabtechnojournal.com'),('dd2703211093b377eb44494c8ba6aa03',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324775,1614324775,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324775;s:5:\"token\";s:32:\"1fdce105730f6842e71515484a0ff1ae\";}','medlabtechnojournal.com'),('dd90c0e7483c6124b9b801ea8163deb0',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336967,1614336967,0,'','www.medlabtechnojournal.com'),('dda6a295dfeb39f99670808d3125c9b6',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614280665,1614280665,0,'','medlabtechnojournal.com'),('ddc4738b094f5f8a69c6051f2fa1708a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330732,1614330732,0,'','www.medlabtechnojournal.com'),('ddfaa6740f619621e03e25b746b57826',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319310,1614319310,0,'','www.medlabtechnojournal.com'),('de0d896329d02d63d7a8b00e202e48cf',NULL,'103.253.212.8','Softaculous',1614351088,1614351088,0,'','medlabtechnojournal.com'),('df7c93f73b79e83b558c955d19b86949',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324734,1614324734,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324734;s:5:\"token\";s:32:\"bde7fe82a1e1714bfff2b8e4b1d99e73\";}','medlabtechnojournal.com'),('df7cc835bc1549c213fd8dc31d1c3467',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336808,1614336808,0,'','www.medlabtechnojournal.com'),('e01a5c685c1b36d5b108b509cdd3c652',NULL,'54.36.148.6','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614288218,1614288218,0,'','www.medlabtechnojournal.com'),('e0643a0d33b6f46e330c8ec8603c32fc',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322212,1614322212,0,'','medlabtechnojournal.com'),('e083b07627aada6ddac6d7459487860c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614331007,1614331007,0,'','www.medlabtechnojournal.com'),('e084304fbcb9197b6af048ffe7b010e6',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330950,1614330950,0,'','www.medlabtechnojournal.com'),('e0c0029234adf4f91040df8d8f9e611c',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612996732,1612996738,1,'csrf|a:2:{s:9:\"timestamp\";i:1612996738;s:5:\"token\";s:32:\"e4867ea8f3911c95b7a1d8b6f7cedfe3\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('e0cb06bc5fa2e1efca002274a001b6ec',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330812,1614330812,0,'','www.medlabtechnojournal.com'),('e0d94c84959948ebcb9d03882ca8240c',NULL,'66.249.79.110','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322771,1614322771,0,'','medlabtechnojournal.com'),('e0df1f3f7073d09bc1d7b03ce6948d29',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325462,1614325462,0,'','www.medlabtechnojournal.com'),('e0e8d456aebbdd6a7eb2fdc2e5352e3e',NULL,'54.36.148.178','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614320223,1614320223,0,'','www.medlabtechnojournal.com'),('e0eba215429e4ea9450cb45af9ae5118',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319266,1614319266,0,'','www.medlabtechnojournal.com'),('e10867ca37e499ff584c3aae684e5c47',NULL,'54.36.148.76','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614338495,1614338495,0,'','www.medlabtechnojournal.com'),('e148fd6932bf832b5c1db8317816088f',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614278234,1614278234,0,'','medlabtechnojournal.com'),('e1672b2bf6a94218ebc4d145432ef0a5',NULL,'54.245.71.145','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36',1614283553,1614283553,0,'','medlabtechnojournal.com'),('e17c595616a9c7fcaef674454e1c8133',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336479,1614336479,0,'','www.medlabtechnojournal.com'),('e1b7815352f39cf0971678334c5900cf',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289059,1614289059,0,'','www.medlabtechnojournal.com'),('e1dd1b38cef38aa3dd43e4d760a3aadc',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614297906,1614297906,0,'','medlabtechnojournal.com'),('e2af1630446e90d1d141e5b120aa98b5',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614290677,1614290677,0,'','www.medlabtechnojournal.com'),('e3559a93702176c49f71224a22a5ccc0',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319651,1614319651,0,'','www.medlabtechnojournal.com'),('e3ddaeba327787f319f5e457d25d2b00',NULL,'154.68.227.50','Mozilla/5.0 (Linux; U; Android 8.1.0; en-US; Bluslate7 Build/O11019) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 UCBrowser/12.10.3.1199 Mobile Safari/537.36',1614337908,1614338892,0,'','medlabtechnojournal.com'),('e4d24e7da3409722eb6ddebafa880624',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322134,1614322134,0,'','medlabtechnojournal.com'),('e4dac740f9ec84fef02867911893c654',NULL,'66.249.79.254','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.202 Safari/537.36',1614328644,1614328644,0,'','www.medlabtechnojournal.com'),('e50bea7fa25d948fd53d6ce1d2218aa9',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286249,1614286249,0,'','www.medlabtechnojournal.com'),('e60fd56ab25e1124452963353e94d59a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319753,1614319753,0,'','www.medlabtechnojournal.com'),('e67271d7aa84bfc900b92962a33f7f9b',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614311926,1614311926,0,'','www.medlabtechnojournal.com'),('e6a69a6918f3a976a9dc08199270bf43',NULL,'66.249.79.254','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324998,1614324998,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324998;s:5:\"token\";s:32:\"3c48856d3b4c6cad8b83cf1208fb897e\";}','www.medlabtechnojournal.com'),('e82b8af9687b14fe0ea196ea011f4175',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336566,1614336566,0,'','www.medlabtechnojournal.com'),('e8527957c5e9725eae01a74b033b015f',NULL,'66.249.79.249','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324380,1614324380,0,'','www.medlabtechnojournal.com'),('e8cb812fcc1c4a88a4a88ce7bd163bd6',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319858,1614319858,0,'','www.medlabtechnojournal.com'),('e8dfc418ebee54e8cc3d2e7d05714384',NULL,'185.36.192.219','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36',1614290228,1614290228,0,'','medlabtechnojournal.com'),('e8ec089b925b83987053f3372bc7881a',NULL,'184.174.51.153','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',1614268257,1614268257,0,'','www.medlabtechnojournal.com'),('e8f5d8524c9937603c360c8bdb2cf740',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336530,1614336530,0,'','www.medlabtechnojournal.com'),('e93066e87ac6bdcf1a4ecf2e4d721049',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614322723,1614322723,0,'','www.medlabtechnojournal.com'),('e94add9f1607bbf68b0e7c32698ac923',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319234,1614319234,0,'','www.medlabtechnojournal.com'),('e95e35208b5a58f3a2b64471912460dd',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323393,1614323393,0,'','medlabtechnojournal.com'),('e9d64d3052933b99072471d96d995002',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319886,1614319886,0,'','www.medlabtechnojournal.com'),('e9da1928dcba30468ede51931c9c49d8',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319617,1614319617,0,'','www.medlabtechnojournal.com'),('e9e1eef3ba2ca27a24864d8b2b707644',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612999830,1613000128,1,'csrf|a:2:{s:9:\"timestamp\";i:1613000128;s:5:\"token\";s:32:\"ccacec708d4e2cdc548d1044e8ea5707\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('e9f19e295ff50164965af6c9aaf51ff2',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330509,1614330509,0,'','www.medlabtechnojournal.com'),('ea9f86ba3fbdf3ecded0cc37c538e68e',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288783,1614288783,0,'','medlabtechnojournal.com'),('eb215600b43e696903be0e3de513d42a',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323838,1614323838,0,'','medlabtechnojournal.com'),('eb3d988d555dd44055d2e7cbd983239b',NULL,'66.249.79.249','Googlebot/2.1 (+http://www.google.com/bot.html)',1614325526,1614325526,0,'','www.medlabtechnojournal.com'),('eb49fa93698ace579893e59c31ebb630',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324151,1614324151,0,'','medlabtechnojournal.com'),('ebb3c62b658ad12acd63a2c742d8e2a8',66,'78.180.166.201','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612996836,1612997822,1,'csrf|a:2:{s:9:\"timestamp\";i:1612997822;s:5:\"token\";s:32:\"444472f3fdc1d0bcf466928eea803e19\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('ebcb297ead6f7c8f922f6d0dd327f8ab',NULL,'103.253.212.8','Softaculous',1614351098,1614351098,0,'','medlabtechnojournal.com'),('ebdebe7e047407760faa5ce1d3f749ac',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336508,1614336508,0,'','www.medlabtechnojournal.com'),('ecf562561852f2a2f4fb1af73769ebd4',NULL,'103.122.67.34','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0',1614271381,1614271381,0,'','www.medlabtechnojournal.com'),('ed29498e657451cd005e52e3660cc993',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330540,1614330540,0,'','www.medlabtechnojournal.com'),('ed4b105c617377ffe8ea4ffdcc1725f4',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298494,1614298494,0,'','medlabtechnojournal.com'),('ee088fa23d69b333496f253c70adec53',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614282615,1614282615,0,'','medlabtechnojournal.com'),('ee118ee7ace6a6c27584c81fb9a732f4',NULL,'54.36.148.179','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298711,1614298711,0,'','medlabtechnojournal.com'),('ee12c54d2762facd01773dcd9f93a75b',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614320801,1614320801,0,'','medlabtechnojournal.com'),('ee7ea6144d9a865da62c4960c6787bf1',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336713,1614336713,0,'','www.medlabtechnojournal.com'),('ee910eb6944b994d637a33a3cba34f6e',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614299214,1614299214,0,'','medlabtechnojournal.com'),('ef038e46b597204317f8d0a0c5356138',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298916,1614298916,0,'','medlabtechnojournal.com'),('ef0de99bf0bc063cb2c2c398471c57e6',NULL,'185.248.185.49','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36 Edg/86.0.622.63',1614290330,1614290330,0,'','medlabtechnojournal.com'),('ef4e5c5be4f3230015bc97ac62fc0cbe',NULL,'66.249.79.112','Googlebot/2.1 (+http://www.google.com/bot.html)',1614289154,1614289154,0,'csrf|a:2:{s:9:\"timestamp\";i:1614289154;s:5:\"token\";s:32:\"95c44cc610e37e9b98cfe1aff10f1eab\";}','medlabtechnojournal.com'),('ef99a79983d2a719696b3c81825e3788',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330890,1614330890,0,'','www.medlabtechnojournal.com'),('eff27eb3050aad465ad99a5c37f8a60c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336903,1614336903,0,'','www.medlabtechnojournal.com'),('f08d8bb7bf9b6130454a72ae6cb56f9f',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319498,1614319498,0,'','www.medlabtechnojournal.com'),('f0c1b61980c5faf70eeccf6271a02540',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336407,1614336407,0,'','www.medlabtechnojournal.com'),('f0f3fa55a1d4a6be830117fbccfd8211',NULL,'66.249.79.249','Googlebot/2.1 (+http://www.google.com/bot.html)',1614324795,1614324795,0,'csrf|a:2:{s:9:\"timestamp\";i:1614324795;s:5:\"token\";s:32:\"68f46ba3c4573227a3e344da03b12aa5\";}','www.medlabtechnojournal.com'),('f0fd6da5423fe7f20c1adc9952055814',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286361,1614286361,0,'','medlabtechnojournal.com'),('f134bcac8629e0fbe8c721de505b1d7b',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336794,1614336794,0,'','www.medlabtechnojournal.com'),('f1498127249659996a51337cb959a11c',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614318954,1614318954,0,'','www.medlabtechnojournal.com'),('f1c8434e8948fb1458ca27cff67012f9',NULL,'180.252.52.178','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',1614283462,1614283462,0,'','medlabtechnojournal.com'),('f23eefaae71fa11688fc9c6897f0ed26',NULL,'66.249.79.252','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284612,1614284612,0,'','www.medlabtechnojournal.com'),('f33f57e499af4e1853e485c42b21b76a',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330662,1614330662,0,'','www.medlabtechnojournal.com'),('f427b0195b99fbd0ef660399b2dffbf7',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614286456,1614286456,0,'','medlabtechnojournal.com'),('f47mandpea8qmf079aib80cav3',1,'180.246.151.205','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0',1612232188,1614131960,1,'csrf|a:2:{s:9:\"timestamp\";i:1614131960;s:5:\"token\";s:32:\"6bc0b2e00de7c2fe208cf159c4afe64f\";}userId|i:1;username|s:5:\"admin\";','www.medlabtechnojournal.com'),('f48bbfcd948df50ffa1f0d8ca49141ec',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287019,1614287019,0,'csrf|a:2:{s:9:\"timestamp\";i:1614287019;s:5:\"token\";s:32:\"e56b3c124d5adaa90f4d9b3618cfbb6a\";}','medlabtechnojournal.com'),('f49tgdoc42d790dpn0sd7ffu65',56,'88.230.178.224','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36',1611864555,1611864687,1,'FDOHFmXgQahjxkOszIf1_lbbjQGh-771d76I_qR0dcf8hXMa406fv4SKSE43HLreh7cXA00Pzy5txkhACzcY5vqZ7hAT5Fl-Ncxfm9N6vF66_IwQEiaK49g4hl5TeOsWp1F_05cVAMiRZFJ1jCM1r7eBzFJV79MMWfKL8gkbnNCApwHFA3Thw1YeoJTtPUtU4Uh1AylnkFOw1qCDePQG6g..','medlabtechnojournal.com'),('f4b556b223cf1f165ef857db2f6827ec',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614299267,1614299267,0,'','medlabtechnojournal.com'),('f4c1d7969da1fb50968b457d34000f12',66,'178.246.162.240','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1613131328,1613131369,1,'csrf|a:2:{s:9:\"timestamp\";i:1613131369;s:5:\"token\";s:32:\"65f1f78204276df42fd13a8dddbb94a0\";}userId|s:2:\"66\";username|s:11:\"gizemberfin\";','www.medlabtechnojournal.com'),('f54ddbae36186bfcce06e96cc288005f',NULL,'40.77.167.74','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',1614305596,1614305596,0,'','www.medlabtechnojournal.com'),('f59c995fac7956929a850f5b80fc719c',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323808,1614323808,0,'','medlabtechnojournal.com'),('f59db460e8d68b8e4942dca79b493b12',NULL,'130.255.162.177','Mozilla/5.0 (Macintosh; Intel Mac OS X 11.1; rv:84.0) Gecko/20100101 Firefox/84.0',1614298254,1614298254,0,'','medlabtechnojournal.com'),('f5cbba3f8865e3b77b8365f99c369272',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614319488,1614319488,0,'','medlabtechnojournal.com'),('f667f4f1f206cac67efb851c8508d726',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336695,1614336695,0,'','www.medlabtechnojournal.com'),('f6a8bda4b9d8a806cd3e3cfd5615542e',NULL,'66.249.79.117','Googlebot/2.1 (+http://www.google.com/bot.html)',1614320816,1614320816,0,'csrf|a:2:{s:9:\"timestamp\";i:1614320816;s:5:\"token\";s:32:\"f6971c9e20ec162d49f016f970386924\";}','medlabtechnojournal.com'),('f6d992b0a5db6554aa2098a68c6acc8e',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336941,1614336941,0,'','www.medlabtechnojournal.com'),('f71c57e0461589acd910c1d0a1f80c45',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330955,1614330955,0,'','www.medlabtechnojournal.com'),('f72d771102922cc8d4adce8ce3bb1f53',NULL,'66.249.79.119','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327560,1614327560,0,'','medlabtechnojournal.com'),('f75af07bc20ad9e09ffff3920856eed3',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614284641,1614284641,0,'','medlabtechnojournal.com'),('f83327bfc67c13abfafa8322541297d4',NULL,'54.36.148.237','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614300497,1614300497,0,'','medlabtechnojournal.com'),('f8a58ae18763ba350e0c3847f8c35b31',NULL,'64.227.7.250','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36',1614276107,1614276107,0,'','medlabtechnojournal.com'),('f8d1bbd26823f2857ec9df8bcdf80f16',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330783,1614330783,0,'','www.medlabtechnojournal.com'),('f8dc064b4af45b24ac0d15fc786bc62b',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614327420,1614327420,0,'csrf|a:2:{s:9:\"timestamp\";i:1614327420;s:5:\"token\";s:32:\"62724ce28734fdb62289397d63b69167\";}','www.medlabtechnojournal.com'),('f97d1394f6cc3f7719a84a96faab7851',NULL,'66.249.79.108','Googlebot/2.1 (+http://www.google.com/bot.html)',1614288472,1614288472,0,'csrf|a:2:{s:9:\"timestamp\";i:1614288472;s:5:\"token\";s:32:\"5a73971812e575168a734606649c181a\";}','medlabtechnojournal.com'),('fa2f963e417622a458cd7a19130b1661',NULL,'185.191.171.42','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',1614323167,1614323167,0,'','medlabtechnojournal.com'),('fac598d38f48cda292ec32f1c37ac83a',NULL,'54.36.149.34','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614299528,1614299528,0,'','medlabtechnojournal.com'),('fb98c22e1e0d3ecce46d894ba3518139',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614285838,1614285838,0,'csrf|a:2:{s:9:\"timestamp\";i:1614285838;s:5:\"token\";s:32:\"e7b2b86618b4e73547d30cbc644ed348\";}','www.medlabtechnojournal.com'),('fbb0797cf75ad0e8bce60141e8bf8375',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330524,1614330524,0,'','www.medlabtechnojournal.com'),('fc19371243e51e7e69ff05fd8254c913',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330769,1614330769,0,'','www.medlabtechnojournal.com'),('fc81be3951e4b62b5ce4fcfe1f91bcd8',NULL,'54.36.149.2','Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)',1614298303,1614298303,0,'','www.medlabtechnojournal.com'),('fcbb7f85afe1fec1c90f32405544b984',NULL,'66.249.79.245','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.188 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',1614297429,1614297429,0,'','www.medlabtechnojournal.com'),('fd379437e353e0e2bb09541695052be7',NULL,'66.249.79.247','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287659,1614287659,0,'','www.medlabtechnojournal.com'),('fd89e6f20543e06aa865b829ffedd60b',NULL,'66.249.79.121','Googlebot/2.1 (+http://www.google.com/bot.html)',1614323825,1614323825,0,'csrf|a:2:{s:9:\"timestamp\";i:1614323825;s:5:\"token\";s:32:\"7d1698da7d6ac3055e620a9c3c265b91\";}','medlabtechnojournal.com'),('fe1bd989f3033e768de167a63db941b4',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614326368,1614326368,0,'csrf|a:2:{s:9:\"timestamp\";i:1614326368;s:5:\"token\";s:32:\"1eec335f4ec2c04ed884b86053798297\";}','www.medlabtechnojournal.com'),('fe5308250486bcc6c0ff9d69c12f1188',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614319046,1614319046,0,'','www.medlabtechnojournal.com'),('febe9905e85ea7ddb46198594480d910',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614336552,1614336552,0,'','www.medlabtechnojournal.com'),('fecf300d17c0e378c5ab546aa5b1196d',NULL,'173.231.59.209','Mozilla/5.0 (compatible; Adsbot/3.1)',1614330998,1614330998,0,'','www.medlabtechnojournal.com'),('ffb41c9da20bd1473ecc36661ae818f0',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614287950,1614287950,0,'','www.medlabtechnojournal.com'),('ffc9c9ecf597bf63df4f99a7ac3e9ab2',NULL,'172.245.60.252','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0.3 Safari/604.5.6,gzip(gfe)',1614337374,1614337377,0,'','medlabtechnojournal.com'),('ffd981f215765fa0ca52367c13d59f8c',NULL,'66.249.79.250','Googlebot/2.1 (+http://www.google.com/bot.html)',1614320221,1614320221,0,'','www.medlabtechnojournal.com'),('gloj2gcnkobmrmhh40h3o4k3k7',NULL,'66.249.79.245','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/88.0.4324.202 Safari/537.36',1614327902,1614327902,0,'','www.medlabtechnojournal.com'),('kd8tvtk2g563h3nbk9tv14c877',1,'114.124.214.103','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Safari/537.36',1611800804,1611801399,1,'i1ZbrftoHD8ZzdQt0NhvBSQuZVYDEdGKr_ObsSn777tJLus_i1R0f9YoYA6RLF7ai4A4_2A96qr4PcSQmgZxT9kpfeGbYqnQeByhesuwpGIX1WgOpDt-BzB5I7NEUErw8GtTLj4GwB07CMWmg3oqUWjtVV0VUdGdAh-m3FeVSaGm0aoCT5w9gA_gQM1Js0iD','www.medlabtechnojournal.com'),('puum9o3gup613f04774mkd3ek2',1,'180.248.220.209','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612748188,1612754543,1,'3vtFCggNj-JGd5n8kUNLsYonCcKML9io-4c8aDlvgw29LklV5GhOpCvy-AWDDmPzcr-kRvImMgQTrmXlkOJAIFh7RZB3l9zm47IHfGF_Wd44Spx5XQmmQ2QJK4v-xJ91Jsbck5g0o1Trlp_QzB3cejrMuBxYwPj0OJI5_mRlBcjJnRe6qgSE-ozmb-KcUIYZ','medlabtechnojournal.com'),('q0394jrv040dmgqhki89ld33m5',68,'185.245.85.20','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36',1612677512,1612677560,1,'jipAFVIy6sHZ5LYhRJyTlBkuvKE8xdbn5J5-S-5juQeEGHt5_zgbtLsbbgfTkyN-EwW4fTUYBrO8xRcP5CaYPKN_mipjCgag3PL1oE2uI1xI-iJURifPnPcsbcwKl3e1Rypx6jCvFedgNm-2rAR5TlkFqlAOzSXiD8XMa7OTvaGPaFpT0bZ_J02ZwU6i9SFYryoTahhEt3DdmKec7UrrgQ..','www.medlabtechnojournal.com'),('rgvutrv9pq9lr3ikqrqmil0gc6',1,'180.248.220.209','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',1612833403,1613475564,1,'csrf|a:2:{s:9:\"timestamp\";i:1613475565;s:5:\"token\";s:32:\"6b09f0ea5e259b371a45fbde08ce0e07\";}','medlabtechnojournal.com'),('seaufme685e44hojhfp0j433t6',1,'202.152.138.178','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 Edg/88.0.705.63',1612860820,1612861276,1,'csrf|a:2:{s:9:\"timestamp\";i:1612861276;s:5:\"token\";s:32:\"71af8d2f79c929f54d26a1c8ea5387f8\";}','medlabtechnojournal.com'),('t0n9orjv3951k1mdh02n7la5l3',56,'88.230.178.224','Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.93 Mobile Safari/537.36',1611846378,1611961584,1,'q1-8QgMHslAuicIjIUY51zdhJJZNtUGnboLNItY1avHUcKL8sjg2qGbpIoc63W5pY5-lVJ0p-SVa7p4_hJg30-89bUGVn3hrHL_VRa-QRMcN_AnpYRxtTyg4Nsl2kiKfZCZUeOujngdaQXhwfdyb2lkkvEk6yl1fgjkAflgSflv-aNruV2C24ynfeB2r3mDA2TdYH4rV3E6H1GZ8i3x9Kw..','www.medlabtechnojournal.com'),('vtotqgtv994rd5qv4r52f8tbf4',1,'180.248.157.155','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36',1611800373,1611803076,1,'Rqur9PcS-DefUyGa2EKxOJ75PVt73gG2a3_0DeBV9BBKaCXp35YpDf92iGww2jxJ0WbZPAsdaE3oFeIXQWD1CJz6Z5zObDyn-K0Hw2c0OWUlkbQdjoxVk4_lHYKaz1nIhDk01IoHLwHRGtx35pGk1RhxsyLBQ5Pq3Tz5vr_nZFVM54KYMm23Ov7roxcxvVK7','www.medlabtechnojournal.com');
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `site`
--

DROP TABLE IF EXISTS `site`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `site` (
  `redirect` bigint(20) NOT NULL DEFAULT 0,
  `primary_locale` varchar(14) NOT NULL,
  `min_password_length` tinyint(4) NOT NULL DEFAULT 6,
  `installed_locales` varchar(1024) NOT NULL DEFAULT 'en_US',
  `supported_locales` varchar(1024) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `site`
--

LOCK TABLES `site` WRITE;
/*!40000 ALTER TABLE `site` DISABLE KEYS */;
INSERT INTO `site` VALUES (0,'en_US',6,'[\"en_US\",\"id_ID\"]','[\"en_US\",\"id_ID\"]');
/*!40000 ALTER TABLE `site` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `site_settings`
--

DROP TABLE IF EXISTS `site_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `site_settings` (
  `setting_name` varchar(255) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_value` text DEFAULT NULL,
  UNIQUE KEY `site_settings_pkey` (`setting_name`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `site_settings`
--

LOCK TABLES `site_settings` WRITE;
/*!40000 ALTER TABLE `site_settings` DISABLE KEYS */;
INSERT INTO `site_settings` VALUES ('contactEmail','en_US','admin@medlabtechnojournal.com'),('contactName','en_US','Open Journal Systems'),('showDescription','','1'),('showThumbnail','','1'),('showTitle','','1'),('sidebar','','[\"developedbyblockplugin\",\"languagetoggleblockplugin\"]'),('themePluginPath','','default');
/*!40000 ALTER TABLE `site_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stage_assignments`
--

DROP TABLE IF EXISTS `stage_assignments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `stage_assignments` (
  `stage_assignment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `user_group_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `date_assigned` datetime NOT NULL,
  `recommend_only` tinyint(4) NOT NULL DEFAULT 0,
  `can_change_metadata` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`stage_assignment_id`),
  UNIQUE KEY `stage_assignment` (`submission_id`,`user_group_id`,`user_id`),
  KEY `stage_assignments_submission_id` (`submission_id`),
  KEY `stage_assignments_user_group_id` (`user_group_id`),
  KEY `stage_assignments_user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stage_assignments`
--

LOCK TABLES `stage_assignments` WRITE;
/*!40000 ALTER TABLE `stage_assignments` DISABLE KEYS */;
INSERT INTO `stage_assignments` VALUES (1,1,14,2,'2019-03-28 12:36:09',0,0),(2,1,14,3,'2019-03-28 12:47:57',0,0),(3,1,3,5,'2019-03-28 13:32:59',0,1),(4,2,14,7,'2019-03-29 07:26:34',0,0),(5,2,3,1,'2019-03-29 07:31:55',0,1),(6,3,14,7,'2019-03-31 14:34:01',0,0),(7,4,14,7,'2019-03-31 14:36:35',0,0),(8,5,14,2,'2019-03-31 14:39:23',0,0),(9,5,3,1,'2019-03-31 14:55:04',0,1),(10,4,3,1,'2019-03-31 14:57:22',0,1),(11,3,3,1,'2019-03-31 14:58:44',0,1),(12,6,14,9,'2019-08-24 10:23:40',0,0),(13,6,5,6,'2019-08-24 10:29:04',0,0),(14,6,3,5,'2019-08-24 10:49:17',1,1),(15,7,14,10,'2019-08-25 13:40:03',0,0),(16,7,5,6,'2019-08-25 13:53:35',0,0),(17,7,3,14,'2019-08-25 14:18:36',1,1),(18,8,14,19,'2019-08-25 14:44:58',0,0),(19,8,5,6,'2019-08-25 14:48:51',0,0),(20,8,3,16,'2019-08-25 14:50:02',1,1),(21,9,14,20,'2019-08-29 08:20:44',0,0),(22,9,5,6,'2019-08-29 08:26:50',0,0),(23,9,3,15,'2019-08-29 08:28:23',1,1),(24,7,3,12,'2019-08-30 12:36:04',1,1),(25,10,14,21,'2019-08-31 08:31:02',0,0),(26,10,5,6,'2019-08-31 08:32:41',0,0),(27,10,3,12,'2019-08-31 08:33:37',1,1),(28,11,14,23,'2019-09-20 19:40:37',0,0),(29,11,5,6,'2019-09-20 19:43:29',0,0),(30,11,2,1,'2019-10-04 08:06:40',1,1),(35,13,14,25,'2020-01-30 19:36:45',0,0),(36,13,5,6,'2020-01-30 19:42:45',0,0),(37,14,14,26,'2020-01-31 15:29:08',0,0),(38,14,5,6,'2020-01-31 15:54:31',0,0),(39,14,2,1,'2020-02-01 14:32:13',1,1),(40,13,2,1,'2020-02-01 14:33:48',1,1),(41,15,14,28,'2020-02-16 16:18:09',0,0),(43,15,2,1,'2020-02-17 09:33:43',1,1),(44,13,2,5,'2020-02-19 08:43:01',0,1),(45,14,2,29,'2020-02-19 09:11:41',0,1),(46,15,2,5,'2020-02-19 09:37:33',0,1),(47,11,2,5,'2020-02-19 09:38:23',0,1),(48,14,2,5,'2020-02-19 09:49:37',0,1),(49,16,14,33,'2020-03-07 09:21:24',0,0),(50,16,2,1,'2020-03-07 09:32:05',0,1),(51,17,14,34,'2020-03-19 09:20:24',0,0),(52,17,2,1,'2020-03-19 09:23:40',0,1),(53,18,14,23,'2020-03-26 14:27:04',0,0),(54,19,14,37,'2020-03-28 16:57:31',0,0),(57,19,2,1,'2020-03-29 14:04:33',0,1),(58,18,2,1,'2020-03-29 14:05:18',0,1),(59,20,14,40,'2020-05-21 05:31:34',0,0),(60,20,2,1,'2020-05-26 13:57:38',0,1),(61,21,14,40,'2020-07-15 02:22:50',0,0),(62,21,2,1,'2020-07-15 07:44:48',0,1),(63,22,14,42,'2020-07-26 09:46:48',0,0),(64,23,14,42,'2020-07-26 09:51:23',0,0),(65,23,2,1,'2020-07-26 09:56:27',0,1),(66,22,2,1,'2020-07-26 09:59:16',0,1),(67,24,14,43,'2020-08-13 03:48:19',0,0),(68,24,2,1,'2020-08-13 10:42:57',0,1),(69,25,14,51,'2020-09-08 12:48:04',0,0),(70,25,7,48,'2020-09-08 12:50:53',0,0),(71,25,7,50,'2020-09-08 12:55:04',0,0),(72,25,7,49,'2020-09-08 12:55:32',0,0),(73,26,14,52,'2020-09-09 01:33:30',0,0),(74,25,2,1,'2020-09-11 05:00:31',0,1),(75,26,2,1,'2020-09-18 05:31:39',0,1),(76,26,7,50,'2020-09-28 06:08:34',0,0),(77,21,7,49,'2020-09-28 06:22:53',0,0),(79,28,14,57,'2020-10-06 11:51:10',0,0),(80,28,2,1,'2020-10-06 21:07:16',0,1),(81,29,14,58,'2020-10-07 17:13:37',0,0),(82,29,2,1,'2020-10-07 19:06:42',0,1),(83,29,7,50,'2020-10-09 07:48:40',0,0),(84,28,7,49,'2020-10-09 07:52:37',0,0),(85,30,14,59,'2020-10-22 03:29:19',0,0),(86,30,2,1,'2020-10-25 12:40:16',0,1),(88,32,14,63,'2020-12-06 23:24:57',0,0),(89,32,2,1,'2020-12-09 05:32:10',0,1),(90,33,14,65,'2021-01-02 05:40:33',0,0),(91,33,2,1,'2021-01-02 05:43:32',0,1),(94,36,14,56,'2021-01-20 21:14:57',0,0),(95,37,14,56,'2021-01-20 23:39:44',0,0),(96,38,14,66,'2021-01-23 23:03:16',0,0),(97,38,2,1,'2021-01-25 08:04:42',0,1),(98,36,2,1,'2021-01-25 08:22:15',0,1),(99,39,14,67,'2021-01-28 09:22:25',0,0),(100,40,14,51,'2021-02-20 08:58:12',0,0);
/*!40000 ALTER TABLE `stage_assignments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `static_page_settings`
--

DROP TABLE IF EXISTS `static_page_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `static_page_settings` (
  `static_page_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` longtext DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `static_page_settings_pkey` (`static_page_id`,`locale`,`setting_name`),
  KEY `static_page_settings_static_page_id` (`static_page_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `static_page_settings`
--

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

--
-- Table structure for table `static_pages`
--

DROP TABLE IF EXISTS `static_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `static_pages` (
  `static_page_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `path` varchar(255) NOT NULL,
  `context_id` bigint(20) NOT NULL,
  PRIMARY KEY (`static_page_id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `static_pages`
--

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

--
-- Table structure for table `subeditor_submission_group`
--

DROP TABLE IF EXISTS `subeditor_submission_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subeditor_submission_group` (
  `context_id` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  UNIQUE KEY `section_editors_pkey` (`context_id`,`assoc_id`,`assoc_type`,`user_id`),
  KEY `section_editors_context_id` (`context_id`),
  KEY `subeditor_submission_group_assoc_id` (`assoc_id`,`assoc_type`),
  KEY `subeditor_submission_group_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subeditor_submission_group`
--

LOCK TABLES `subeditor_submission_group` WRITE;
/*!40000 ALTER TABLE `subeditor_submission_group` DISABLE KEYS */;
INSERT INTO `subeditor_submission_group` VALUES (1,1,6,530);
/*!40000 ALTER TABLE `subeditor_submission_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_artwork_files`
--

DROP TABLE IF EXISTS `submission_artwork_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_artwork_files` (
  `file_id` bigint(20) NOT NULL,
  `revision` bigint(20) NOT NULL,
  `caption` text DEFAULT NULL,
  `credit` varchar(255) DEFAULT NULL,
  `copyright_owner` varchar(255) DEFAULT NULL,
  `copyright_owner_contact` text DEFAULT NULL,
  `permission_terms` text DEFAULT NULL,
  `permission_file_id` bigint(20) DEFAULT NULL,
  `chapter_id` bigint(20) DEFAULT NULL,
  `contact_author` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`file_id`,`revision`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_artwork_files`
--

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

--
-- Table structure for table `submission_comments`
--

DROP TABLE IF EXISTS `submission_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_comments` (
  `comment_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `comment_type` bigint(20) DEFAULT NULL,
  `role_id` bigint(20) NOT NULL,
  `submission_id` bigint(20) NOT NULL,
  `assoc_id` bigint(20) NOT NULL,
  `author_id` bigint(20) NOT NULL,
  `comment_title` text DEFAULT NULL,
  `comments` text DEFAULT NULL,
  `date_posted` datetime DEFAULT NULL,
  `date_modified` datetime DEFAULT NULL,
  `viewable` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`comment_id`),
  KEY `submission_comments_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_comments`
--

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

--
-- Table structure for table `submission_file_revisions`
--

DROP TABLE IF EXISTS `submission_file_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_file_revisions` (
  `revision_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_file_id` bigint(20) unsigned NOT NULL,
  `file_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`revision_id`),
  KEY `submission_file_revisions_submission_file_id_foreign` (`submission_file_id`),
  KEY `submission_file_revisions_file_id_foreign` (`file_id`),
  CONSTRAINT `submission_file_revisions_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `files` (`file_id`),
  CONSTRAINT `submission_file_revisions_submission_file_id_foreign` FOREIGN KEY (`submission_file_id`) REFERENCES `submission_files` (`submission_file_id`)
) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_file_revisions`
--

LOCK TABLES `submission_file_revisions` WRITE;
/*!40000 ALTER TABLE `submission_file_revisions` DISABLE KEYS */;
INSERT INTO `submission_file_revisions` VALUES (1,1,1),(2,2,2),(3,3,3),(4,4,4),(5,5,5),(6,6,6),(7,7,7),(8,7,8),(9,8,9),(10,9,10),(11,10,11),(12,12,12),(13,13,13),(14,14,14),(15,15,15),(16,18,16),(17,19,17),(18,20,18),(19,21,19),(20,22,20),(21,23,21),(22,24,22),(23,25,23),(24,26,24),(25,27,25),(26,28,26),(27,29,27),(28,30,28),(29,31,29),(30,32,30),(31,33,31),(32,34,32),(33,35,33),(34,36,34),(35,37,35),(36,38,36),(37,39,37),(38,40,38),(39,41,39),(40,42,40),(41,43,41),(42,44,42),(43,45,43),(44,46,44),(45,47,45),(46,48,46),(47,49,47),(48,50,48),(49,51,49),(50,52,50),(51,53,51),(52,54,52),(53,55,53),(54,56,54),(55,57,55),(56,58,56),(57,59,57),(58,60,58),(59,61,59),(60,62,60),(61,63,61),(62,64,62),(63,66,63),(64,67,64),(65,68,65),(66,70,66),(67,71,67),(68,72,68),(69,73,69),(70,74,70),(71,75,71),(72,76,72),(73,77,73),(74,78,74),(75,79,75),(76,80,76),(77,81,77),(78,82,78),(79,86,79),(80,87,80),(81,88,81),(82,89,82),(83,90,83),(84,91,84),(85,92,85),(86,93,86),(87,94,87),(88,96,88),(89,96,89),(90,97,90),(91,98,91),(92,101,92),(93,103,93),(94,104,94),(95,105,95),(96,106,96),(97,107,97),(98,108,98),(99,109,99),(100,110,100),(101,111,101),(102,112,102),(103,113,103),(104,114,104),(105,115,105),(106,115,106),(107,116,107),(108,117,108),(109,118,109),(110,119,110),(111,120,111),(112,121,112),(113,122,113),(114,124,114),(115,127,115),(116,129,116),(117,133,117),(118,134,118),(119,135,119),(120,137,120),(121,138,121),(122,139,122),(123,140,123),(124,141,124),(125,142,125),(126,143,126),(127,146,127),(128,148,128),(129,149,129),(130,150,130),(131,151,131),(132,152,132),(133,153,133),(134,154,134),(135,155,135),(136,156,136),(137,157,137),(138,158,138),(139,159,139),(140,160,140),(141,161,141),(142,162,142),(143,163,143),(144,164,144),(145,165,145),(146,166,146),(147,167,147),(148,169,148),(149,170,149),(150,171,150),(151,172,151),(152,173,152),(153,174,153),(154,175,154),(155,176,155),(156,177,156),(157,179,157),(158,180,158),(159,181,159),(160,182,160),(161,183,161),(162,184,162),(163,185,163),(164,186,164),(165,189,165),(166,190,166),(167,191,167),(168,192,168),(169,193,169),(170,194,170),(171,195,171),(172,196,172),(173,196,173),(174,196,174),(175,197,175),(176,198,176),(177,199,177),(178,200,178),(179,201,179),(180,202,180),(181,203,181),(182,204,182),(183,207,183),(184,208,184),(185,211,185),(186,212,186),(187,213,187),(188,214,188),(189,215,189),(190,216,190),(191,217,191),(192,218,192),(193,219,193),(194,221,194),(195,223,195),(196,224,196),(197,225,197),(198,226,198),(199,226,199),(200,226,200),(201,226,201),(202,227,202),(203,228,203),(204,229,204),(205,230,205),(206,231,206),(207,232,207),(208,233,208);
/*!40000 ALTER TABLE `submission_file_revisions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_file_settings`
--

DROP TABLE IF EXISTS `submission_file_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_file_settings` (
  `submission_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 DEFAULT 'string',
  UNIQUE KEY `submission_file_settings_pkey` (`submission_file_id`,`locale`,`setting_name`),
  KEY `submission_file_settings_id` (`submission_file_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_file_settings`
--

LOCK TABLES `submission_file_settings` WRITE;
/*!40000 ALTER TABLE `submission_file_settings` DISABLE KEYS */;
INSERT INTO `submission_file_settings` VALUES (1,'en_US','name','putri, santan ing.docx','string'),(2,'en_US','name','putri, santan ing.docx','string'),(3,'en_US','name','putri, santan ing.docx','string'),(4,'en_US','name','yuli, ikan asin ing.docx','string'),(5,'en_US','name','Article Text, ikan asin ing.docx','string'),(6,'en_US','name',', ikan asin ing-rev (Autosaved).docx','string'),(7,'en_US','name','Article Text, ikan asin ing -perbaikan.docx','string'),(8,'en_US','name','Article Text, ikan asin ing.docx','string'),(9,'en_US','name','Article Text, ikan asin ing.docx','string'),(10,'en_US','name','Article Text, ikan asin ing.docx','string'),(12,'en_US','name','admin, ikan asin template.pdf','string'),(13,'en_US','name','Article Text, santan ing.docx','string'),(14,'en_US','name',', santan ing-rev.docx','string'),(15,'en_US','name','Article Text, santan ing-perbaikan.docx','string'),(16,'en_US','name','Article Text, ikan asin ing -perbaikan.docx','string'),(18,'en_US','name','yuli, erytrosit ing.docx','string'),(19,'en_US','name','yuli, kelulut ing.docx','string'),(20,'en_US','name','putri, vekDHF ing.docx','string'),(21,'en_US','name','Article Text, vekDHF ing.docx','string'),(22,'en_US','name','Article Text, kelulut ing.docx','string'),(23,'en_US','name','Article Text, erytrosit ing.docx','string'),(24,'en_US','name',', vekDHF ing -rev.docx','string'),(25,'en_US','name',', kelulut ing -rev.docx','string'),(26,'en_US','name',', erytrosit ing -rev.docx','string'),(27,'en_US','name','Article Text, kelulut ing-perbaikan.docx','string'),(28,'en_US','name','Article Text, erytrosit ing -perbaikan.docx','string'),(29,'en_US','name','Article Text, vekDHF ing -perbaikan.docx','string'),(30,'en_US','name','admin, santan template.pdf','string'),(31,'en_US','name','admin, vekDHF template.pdf','string'),(32,'en_US','name','admin, kelulut template.pdf','string'),(33,'en_US','name','admin, erytrosit template.pdf','string'),(34,'en_US','name','nurulhuda, jurnal nurul kayu mns eng.docx','string'),(35,'en_US','name','Article Text, jurnal nurul kayu mns eng.docx','string'),(36,'en_US','name','ayusutiany, jurnal ayu rosella new eng.docx','string'),(37,'en_US','name','sitimahmudah, jurnal mahmudah bawang new eng.docx','string'),(38,'en_US','name','Article Text, jurnal mahmudah bawang new eng.docx','string'),(39,'en_US','name','Article Text, jurnal ayu rosella new eng.docx','string'),(40,'en_US','name','yusufatakan, sirkumsisi.doc','string'),(41,'en_US','name','Article Text, sirkumsisi.doc','string'),(42,'en_US','name',', jurnal mahmudah bawang new eng rev.docx','string'),(43,'en_US','name',', jurnal ayu rosella new eng rev.docx','string'),(44,'en_US','name',', jurnal nurul kayu mns eng rev.docx','string'),(45,'en_US','name',', sirkumsisi rev.doc','string'),(46,'en_US','name','Article Text, sirkumsisi perbaikan.doc','string'),(47,'en_US','name','Article Text, jurnal mahmudah bawang new eng perbaikan.docx','string'),(48,'en_US','name','Article Text, jurnal nurul kayu mns eng perbaikan.docx','string'),(49,'en_US','name','Article Text, jurnal ayu rosella new eng perbaikan.docx','string'),(50,'en_US','name','Article Text, jurnal mahmudah bawang new eng perbaikan.docx','string'),(51,'en_US','name','Article Text, jurnal nurul kayu mns eng perbaikan.docx','string'),(52,'en_US','name','Article Text, sirkumsisi perbaikan.doc','string'),(53,'en_US','name','Article Text, jurnal ayu rosella new eng perbaikan.docx','string'),(54,'en_US','name','ayufahani, Cemaran Bacillus cereus eng.docx','string'),(55,'en_US','name','Article Text, Cemaran Bacillus cereus eng.docx','string'),(56,'en_US','name',', Cemaran Bacillus cereus eng rev.docx','string'),(57,'en_US','name','Article Text, Cemaran Bacillus cereus eng perbaikan.docx','string'),(58,'en_US','name','Article Text, Cemaran Bacillus cereus eng perbaikan.docx','string'),(59,'en_US','name','fetus, cemaran basillus template.pdf','string'),(60,'en_US','name','fetus, jurnal ayu rosella template.pdf','string'),(61,'en_US','name','admin, sirkumsisi template asli.pdf','string'),(62,'en_US','name','admin, jurnal mahmudah template.pdf','string'),(63,'en_US','name','admin, jurnal nurul template.pdf','string'),(64,'en_US','name','dryab2747, z plasti yeni tarama.docx','string'),(66,'en_US','name','gunesbolatli, PPID: THMR-8801-1319-11 (PoolText) evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(67,'','dateCreated','','string'),(67,'','language','','string'),(67,'en_US','creator','','string'),(67,'en_US','description','','string'),(67,'en_US','name','gunesbolatli, Table.docx','string'),(67,'en_US','publisher','','string'),(67,'en_US','source','','string'),(67,'en_US','sponsor','','string'),(67,'en_US','subject','','string'),(68,'','dateCreated','','string'),(68,'','language','','string'),(68,'en_US','creator','','string'),(68,'en_US','description','','string'),(68,'en_US','name','gunesbolatli, FİGURES.docx','string'),(68,'en_US','publisher','','string'),(68,'en_US','source','','string'),(68,'en_US','sponsor','','string'),(68,'en_US','subject','','string'),(70,'en_US','name','ozankocak, GÖNDERr.docx','string'),(71,'en_US','name','Article Text, GÖNDERr.docx','string'),(72,'en_US','name','Article Text, The evaluation of variations of the hyoid bone with Multidetector Computarized Tomography.docx','string'),(73,'','dateCreated','','string'),(73,'','language','','string'),(73,'en_US','creator','','string'),(73,'en_US','description','','string'),(73,'en_US','name','Other, Table.docx','string'),(73,'en_US','publisher','','string'),(73,'en_US','source','','string'),(73,'en_US','sponsor','','string'),(73,'en_US','subject','','string'),(74,'','dateCreated','','string'),(74,'','language','','string'),(74,'en_US','creator','','string'),(74,'en_US','description','','string'),(74,'en_US','name','Other, FİGURES.docx','string'),(74,'en_US','publisher','','string'),(74,'en_US','source','','string'),(74,'en_US','sponsor','','string'),(74,'en_US','subject','','string'),(75,'en_US','name',', ozankocak rev.docx','string'),(76,'en_US','name','gunes rev.docx','string'),(77,'en_US','name','dryasintire, Main Text.docx','string'),(78,'','dateCreated','','string'),(78,'','language','','string'),(78,'en_US','creator','Fşgure 1','string'),(78,'en_US','description','','string'),(78,'en_US','name','dryasintire, Figure 1.docx','string'),(78,'en_US','publisher','','string'),(78,'en_US','source','','string'),(78,'en_US','sponsor','','string'),(78,'en_US','subject','','string'),(79,'','dateCreated','','string'),(79,'','language','','string'),(79,'en_US','creator','Figure 2','string'),(79,'en_US','description','','string'),(79,'en_US','name','dryasintire, Figure 2.docx','string'),(79,'en_US','publisher','','string'),(79,'en_US','source','','string'),(79,'en_US','sponsor','','string'),(79,'en_US','subject','','string'),(80,'','dateCreated','','string'),(80,'','language','','string'),(80,'en_US','creator','Table 1','string'),(80,'en_US','description','','string'),(80,'en_US','name','dryasintire, Table 1.docx','string'),(80,'en_US','publisher','','string'),(80,'en_US','source','','string'),(80,'en_US','sponsor','','string'),(80,'en_US','subject','','string'),(81,'','dateCreated','','string'),(81,'','language','','string'),(81,'en_US','creator','Table 2','string'),(81,'en_US','description','','string'),(81,'en_US','name','dryasintire, Table 2.docx','string'),(81,'en_US','publisher','','string'),(81,'en_US','source','','string'),(81,'en_US','sponsor','','string'),(81,'en_US','subject','','string'),(82,'en_US','name',', gunes rev 2.docx','string'),(86,'en_US','name',', gunes rev.docx','string'),(87,'en_US','name','Article Text, z plasti yeni tarama.docx','string'),(88,'en_US','name','Article Text, Main Text.docx','string'),(89,'','dateCreated','','string'),(89,'','language','','string'),(89,'en_US','creator','Fşgure 1','string'),(89,'en_US','description','','string'),(89,'en_US','name','Research Materials, Figure 1.docx','string'),(89,'en_US','publisher','','string'),(89,'en_US','source','','string'),(89,'en_US','sponsor','','string'),(89,'en_US','subject','','string'),(90,'','dateCreated','','string'),(90,'','language','','string'),(90,'en_US','creator','Figure 2','string'),(90,'en_US','description','','string'),(90,'en_US','name','Research Materials, Figure 2.docx','string'),(90,'en_US','publisher','','string'),(90,'en_US','source','','string'),(90,'en_US','sponsor','','string'),(90,'en_US','subject','','string'),(91,'','dateCreated','','string'),(91,'','language','','string'),(91,'en_US','creator','Table 1','string'),(91,'en_US','description','','string'),(91,'en_US','name','Research Instrument, Table 1.docx','string'),(91,'en_US','publisher','','string'),(91,'en_US','source','','string'),(91,'en_US','sponsor','','string'),(91,'en_US','subject','','string'),(92,'','dateCreated','','string'),(92,'','language','','string'),(92,'en_US','creator','Table 2','string'),(92,'en_US','description','','string'),(92,'en_US','name','Research Instrument, Table 2.docx','string'),(92,'en_US','publisher','','string'),(92,'en_US','source','','string'),(92,'en_US','sponsor','','string'),(92,'en_US','subject','','string'),(93,'en_US','name',', 15-Article Text-77-1-2-20200216rev.docx','string'),(94,'en_US','name',', yusuf z plasty rev.docx','string'),(96,'en_US','name','Article Text, 11-Article Text-96-1-15-20200221.doc','string'),(97,'en_US','name',', 0reviewer THMR form-4.docx','string'),(98,'en_US','name',', 0reviewer THMR form-3.docx','string'),(101,'en_US','name',', 0reviewer THMR form-2.docx','string'),(103,'en_US','name','haris, haris nurdin ing.docx','string'),(104,'en_US','name','Article Text, haris nurdin ing.docx','string'),(105,'en_US','name','novina, novina ing.docx','string'),(106,'en_US','name','Article Text, novina ing.docx','string'),(107,'en_US','name',', haris nurdin rev1.docx','string'),(108,'en_US','name',', novina rev 1.docx','string'),(109,'en_US','name',', haris nurdin rev2.docx','string'),(110,'en_US','name',', novina rev 2.docx','string'),(111,'en_US','name','Article Text, haris nurdin perbaikan.docx','string'),(112,'en_US','name','Article Text, haris nurdin perbaikan.docx','string'),(113,'en_US','name','Article Text, novina perbaikan.docx','string'),(114,'en_US','name','Article Text, novina perbaikan.docx','string'),(115,'en_US','name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(116,'en_US','name','Article Text, 11-Article Text-96-1-15-20200221.doc','string'),(117,'en_US','name','admin, gunes template new.pdf','string'),(118,'en_US','name','admin, yasin template-2.pdf','string'),(119,'en_US','name','admin, ozankocak template new.pdf','string'),(120,'en_US','name','admin, haris nurdin template.pdf','string'),(121,'en_US','name','admin, novina template.pdf','string'),(122,'en_US','name','admin, yusuf z template new.pdf','string'),(124,'en_US','name','savas, dmtropicsubm.doc','string'),(127,'en_US','name','dryab2747, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(129,'en_US','name','Article Text, dmtropicsubm.doc','string'),(133,'en_US','name',', savas rev.doc','string'),(134,'en_US','name','Article Text, dmtropikalrev.doc','string'),(135,'en_US','name','Article Text, dmtropikalrev.doc','string'),(137,'en_US','name',', rev1.jpg','string'),(138,'en_US','name','benedelu, OPHTHALMOLOGICAL FINDINGS IN PEDIATRIC NONTRAUMATIC COMA IN ENUGU STATE UNIVERSITY TEACHING HOSPITAL.docx','string'),(139,'en_US','name','Article Text, OPHTHALMOLOGICAL FINDINGS IN PEDIATRIC NONTRAUMATIC COMA IN ENUGU STATE UNIVERSITY TEACHING HOSPITAL.docx','string'),(140,'en_US','name',', optahal rev.docx','string'),(141,'en_US','name','Article Text, optahal rev.docx','string'),(142,'en_US','name','Article Text, optahal rev.docx','string'),(143,'en_US','name',', 0reviewer THMR opthal.docx','string'),(146,'en_US','name','Article Text, Tez-makale editörü_koledok_EN.edited-koledok .doc','string'),(148,'en_US','name',', 18-Article Text-147-1-15-20200713.docx','string'),(149,'en_US','name','benedelu, DKA_Manuscript.docx','string'),(150,'en_US','name','Article Text, DKA_Manuscript.docx','string'),(151,'en_US','name','Article Text, sabri başkan makale koledok hakem sonrası son hali.doc','string'),(152,'','dateCreated','','string'),(152,'','language','','string'),(152,'en_US','creator','','string'),(152,'en_US','description','','string'),(152,'en_US','name','Other, sabri başkan başlık sayfası ingilizce.doc','string'),(152,'en_US','publisher','','string'),(152,'en_US','source','','string'),(152,'en_US','sponsor','','string'),(152,'en_US','subject','','string'),(153,'en_US','name',', enugu rev.docx','string'),(154,'en_US','name','agnina, agnina jurnal submit.docx','string'),(155,'en_US','name','agnina, dini jurnal submit.docx','string'),(156,'en_US','name','Article Text, dini jurnal submit.docx','string'),(157,'en_US','name','Article Text, agnina jurnal submit.docx','string'),(158,'en_US','name',', dini jurnal rev1.docx','string'),(159,'en_US','name',', agnina jurnal rev1.docx','string'),(160,'en_US','name',', dini jurnal rev2.docx','string'),(161,'en_US','name',', agnina jurnal rev2.docx','string'),(162,'en_US','name','Article Text, sabri başkan makale koledok hakem sonrası son hali.doc','string'),(163,'','dateCreated','','string'),(163,'','language','','string'),(163,'en_US','creator','','string'),(163,'en_US','description','','string'),(163,'en_US','name','Other, sabri başkan başlık sayfası ingilizce.doc','string'),(163,'en_US','publisher','','string'),(163,'en_US','source','','string'),(163,'en_US','sponsor','','string'),(163,'en_US','subject','','string'),(164,'en_US','name','Article Text, dini jurnal perbaikan.docx','string'),(165,'en_US','name','Article Text, agnina jurnal perbaikan.docx','string'),(166,'en_US','name','Article Text, dini jurnal perbaikan.docx','string'),(167,'en_US','name','Article Text, agnina jurnal perbaikan.docx','string'),(169,'en_US','name','refsouza, Article.docx','string'),(170,'en_US','name','Article Text, Article.docx','string'),(171,'en_US','name',', hiv-brazil rev.docx','string'),(172,'en_US','name','Article Text, Article.docx','string'),(173,'en_US','name','Article Text, Article.docx','string'),(174,'en_US','name','Article Text, agnina jurnal perbaikan.docx','string'),(175,'en_US','name','Article Text, dini jurnal perbaikan.docx','string'),(176,'en_US','name','admin, savas template mnausprict new.pdf','string'),(177,'en_US','name','admin, opthal template dr author new.pdf','string'),(179,'en_US','name','admin, dini jurnal template.pdf','string'),(180,'en_US','name','admin, Biliary Duct template new.pdf','string'),(181,'en_US','name','admin, brazil hiv template new.pdf','string'),(182,'en_US','name','fadia, fadia jurnal tranlate.edited.docx','string'),(183,'','dateCreated','','string'),(183,'','language','','string'),(183,'en_US','creator','','string'),(183,'en_US','description','','string'),(183,'en_US','name','drdeniz, ing maha makale.docx','string'),(183,'en_US','publisher','','string'),(183,'en_US','source','','string'),(183,'en_US','sponsor','','string'),(183,'en_US','subject','','string'),(184,'en_US','name','Article Text, fadia jurnal tranlate.edited.docx','string'),(185,'en_US','name','Article Text, 21-153-1-5-20200721.docx','string'),(186,'','dateCreated','','string'),(186,'','language','','string'),(186,'en_US','creator','','string'),(186,'en_US','description','','string'),(186,'en_US','name','Research Materials, ing maha makale.docx','string'),(186,'en_US','publisher','','string'),(186,'en_US','source','','string'),(186,'en_US','sponsor','','string'),(186,'en_US','subject','','string'),(189,'en_US','name','erhanokuyan, COVID 19 PREGNANCY.docx','string'),(190,'en_US','name',', deniz rev.docx','string'),(191,'en_US','name','ubi-isaac9, from Pooltext.docx','string'),(192,'en_US','name','Article Text, COVID 19 PREGNANCY.docx','string'),(193,'en_US','name','Article Text, Pooltext.docx','string'),(194,'en_US','name',', covid-tur rev.docx','string'),(195,'en_US','name',', guava negeria rev.docx','string'),(196,'en_US','name','Revision of article text .docx','string'),(197,'','dateCreated','','string'),(197,'','language','','string'),(197,'en_US','creator','','string'),(197,'en_US','description','','string'),(197,'en_US','name','erhanokuyan, Revision Letter.docx','string'),(197,'en_US','publisher','','string'),(197,'en_US','source','','string'),(197,'en_US','sponsor','','string'),(197,'en_US','subject','','string'),(198,'','dateCreated','','string'),(198,'','language','','string'),(198,'en_US','creator','','string'),(198,'en_US','description','','string'),(198,'en_US','name','sari, PPID saHAR.docx','string'),(198,'en_US','publisher','','string'),(198,'en_US','source','sahar','string'),(198,'en_US','sponsor','','string'),(198,'en_US','subject','','string'),(199,'en_US','name','Article Text, 29-195-1-5-20201017.docx','string'),(200,'','dateCreated','','string'),(200,'','language','','string'),(200,'en_US','creator','','string'),(200,'en_US','description','','string'),(200,'en_US','name','Other, PPID saHAR.docx','string'),(200,'en_US','publisher','','string'),(200,'en_US','source','sahar','string'),(200,'en_US','sponsor','','string'),(200,'en_US','subject','','string'),(201,'en_US','name',', obesity-ksarev.docx','string'),(202,'en_US','name','Article Text, 21-153-1-5-20200721.docx','string'),(203,'en_US','name','Revision of article text .docx','string'),(204,'en_US','name','Article Text, 29-195-1-5-20201017.docx','string'),(207,'en_US','name','pebri, Covid1 template1.pdf','string'),(208,'en_US','name','admin, agnina jurnal template new.pdf','string'),(211,'en_US','name','drmizzud, Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(212,'en_US','name','vonny, 0JURNAL VONNY KHRESNA DEWI.docx','string'),(213,'en_US','name','Article Text, 0JURNAL VONNY KHRESNA DEWI.docx','string'),(214,'en_US','name','Article Text, Outcome of Multivector FGMT for Facial Reanimation.docx','string'),(215,'en_US','name','dwiintan, guava template dr author.docx','string'),(216,'en_US','name','dwiintan, guava template dr author.docx','string'),(217,'en_US','name','admin, guava template dr author.pdf','string'),(218,'en_US','name',', 0JURNAL VONNY KHRESNA DEWI rev.docx','string'),(219,'en_US','name',', FGMT rev.docx','string'),(221,'en_US','name','Article Text, Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string'),(223,'en_US','name','admin, TSH research last revised eng.docx','string'),(224,'en_US','name','Article Text, TSH research last revised eng.docx','string'),(225,'en_US','name',', rev38-Article Text-224-1-4-20210203.docx','string'),(226,'en_US','name','Article Text, Gizem Berfin template.docx','string'),(227,'en_US','name','Article Text, 0jurnal vonny2 eng.edited.docx','string'),(228,'en_US','name',', 0JURNAL VONNY KHRESNA DEWI rev2.docx','string'),(229,'en_US','name','Article Text, 0jurnal vonny2 eng.edited.docx','string'),(230,'en_US','name','admin, 0jurnal vonny template.pdf','string'),(231,'en_US','name','fadia, 0jurnal vonny template.docx','string'),(232,'en_US','name','Article Text, revision tsh levels 1.docx','string'),(233,'en_US','name','Article Text, Outcome of Multivector FGMT for Facial Reanimation REVISION 1.docx','string');
/*!40000 ALTER TABLE `submission_file_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_files`
--

DROP TABLE IF EXISTS `submission_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_files` (
  `submission_file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `source_submission_file_id` bigint(20) DEFAULT NULL,
  `submission_id` bigint(20) NOT NULL,
  `genre_id` bigint(20) DEFAULT NULL,
  `file_stage` bigint(20) NOT NULL,
  `direct_sales_price` varchar(255) DEFAULT NULL,
  `sales_type` varchar(255) DEFAULT NULL,
  `viewable` tinyint(4) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  `uploader_user_id` bigint(20) DEFAULT NULL,
  `assoc_type` bigint(20) DEFAULT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  `file_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`submission_file_id`),
  KEY `submission_files_submission_id` (`submission_id`),
  KEY `submission_files_stage_assoc` (`file_stage`,`assoc_type`,`assoc_id`),
  KEY `submission_files_file_id_foreign` (`file_id`),
  CONSTRAINT `submission_files_file_id_foreign` FOREIGN KEY (`file_id`) REFERENCES `files` (`file_id`)
) ENGINE=InnoDB AUTO_INCREMENT=234 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_files`
--

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

--
-- Table structure for table `submission_search_keyword_list`
--

DROP TABLE IF EXISTS `submission_search_keyword_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_search_keyword_list` (
  `keyword_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `keyword_text` varchar(60) NOT NULL,
  PRIMARY KEY (`keyword_id`),
  UNIQUE KEY `submission_search_keyword_text` (`keyword_text`)
) ENGINE=InnoDB AUTO_INCREMENT=1268 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_search_keyword_list`
--

LOCK TABLES `submission_search_keyword_list` WRITE;
/*!40000 ALTER TABLE `submission_search_keyword_list` DISABLE KEYS */;
INSERT INTO `submission_search_keyword_list` VALUES (240,'0-6'),(910,'005sleep'),(306,'012981-2009'),(793,'1-2'),(821,'1375mm'),(822,'1725mm'),(823,'1975mm'),(824,'2175mm'),(754,'236-0004'),(292,'37oc'),(758,'431-3192'),(980,'66±22'),(1232,'abdominopelvic'),(557,'abdullah'),(281,'ability'),(111,'abj'),(119,'ablutions'),(995,'abnormal'),(1152,'above-average'),(507,'absence'),(636,'access'),(663,'accessible'),(243,'accidental'),(152,'accordance'),(850,'achieving'),(259,'acid'),(417,'active'),(416,'activity'),(775,'add'),(288,'adding'),(191,'addition'),(314,'additives'),(1219,'administer'),(1201,'administering'),(1191,'administration'),(1170,'admission'),(958,'admitted'),(895,'adult'),(496,'advantage'),(1098,'aeruginosa'),(1128,'affected'),(23,'aflatoxin'),(603,'age'),(1001,'agnina'),(329,'ahmad'),(546,'ahmet'),(232,'aim'),(847,'aimed'),(26,'aims'),(361,'akhmad'),(1206,'albino'),(216,'alcohol'),(540,'ali'),(482,'alisklamp'),(296,'alkalimetry'),(376,'alkaloids'),(1080,'allicin'),(1071,'allium'),(1188,'alterations'),(316,'alternative'),(922,'amadi'),(500,'amount'),(3,'analis'),(684,'analyses'),(718,'analysis'),(1137,'analyze'),(738,'anatomy'),(188,'anemia'),(451,'anesthesia'),(660,'anesthesiologists'),(1003,'anggraini'),(1118,'ankara'),(365,'anny'),(1183,'anozeng'),(898,'anthropometric'),(1103,'anti-bacterial'),(1104,'anti-inflammatory'),(382,'antibacterial'),(415,'antimicrobial'),(224,'aplastic'),(1243,'appearance'),(181,'appliance'),(442,'application'),(487,'applied'),(1211,'apportion'),(843,'approach'),(964,'april'),(1197,'aqueous'),(816,'area'),(473,'areas'),(130,'arista'),(1246,'arrest'),(686,'arterial'),(193,'arthritis'),(1094,'asiatica'),(920,'asimadu'),(933,'asinobi'),(650,'asked'),(943,'aspect'),(21,'aspergillus'),(1199,'assess'),(976,'assessment'),(729,'association'),(815,'astambul'),(350,'atakan'),(579,'attachment'),(176,'attention'),(648,'august'),(1005,'aulia'),(133,'aureus'),(948,'authors'),(308,'average'),(1162,'avoided'),(1172,'avoiding'),(1165,'aware'),(1120,'awareness'),(594,'axial'),(559,'aydın'),(556,'aydoğan'),(879,'aysun'),(345,'ayu'),(1006,'azmi'),(219,'b12'),(490,'bacillus'),(569,'backward'),(284,'bacteria'),(811,'bacterial'),(387,'bactericidal'),(336,'balai'),(351,'baltrak'),(817,'banjar'),(30,'banjarbaru'),(347,'banjarmasin'),(55,'based'),(698,'basement'),(438,'basic'),(762,'basil'),(764,'basilicum'),(1117,'baskent'),(113,'bath'),(1112,'batman'),(344,'bbtklpp'),(286,'bean'),(263,'beans'),(299,'bee'),(820,'began'),(1133,'behavior'),(1150,'behavioral'),(610,'belong'),(926,'benedict'),(1136,'benefit'),(1100,'benefits'),(337,'besar'),(1038,'biliary'),(756,'biochemistry'),(1174,'birth'),(321,'bjm'),(1052,'bladder'),(227,'blood'),(1209,'body'),(522,'boiled'),(534,'bolatli'),(564,'bone'),(671,'bora'),(1033,'brasil'),(91,'breteau'),(118,'bucket'),(116,'buckets'),(276,'bulgaricus'),(370,'burmannii'),(1187,'calabar'),(905,'calculated'),(527,'calyx'),(1014,'çam'),(1039,'canal'),(312,'carbohydrate'),(277,'carbohydrates'),(966,'caregivers'),(672,'carman'),(256,'carried'),(431,'carry'),(85,'cases'),(14,'caused'),(209,'causing'),(1257,'caution'),(558,'celep'),(203,'cell'),(210,'cells'),(993,'cellulitis'),(114,'cement'),(145,'cendol'),(1093,'centella'),(833,'center'),(944,'central'),(112,'ceramic'),(702,'cerebral'),(491,'cereus'),(1228,'cervical'),(398,'cfu'),(1171,'chances'),(1147,'characteristics'),(374,'chemical'),(955,'child'),(82,'children'),(1042,'choledochal'),(189,'chronic'),(924,'chukwuebuka'),(369,'cinnamomum'),(368,'cinnamon'),(449,'circumcised'),(426,'circumcision'),(798,'citrus'),(802,'citrus-type'),(752,'city'),(427,'clamb'),(434,'clamp'),(456,'clamps'),(394,'clarity'),(1059,'classification'),(982,'classified'),(624,'clavicles'),(813,'clean'),(1157,'cleaning'),(177,'cleanliness'),(647,'clinic'),(614,'clinical'),(619,'close'),(515,'closed'),(856,'closure'),(134,'coconut'),(681,'col4a1'),(682,'col4a2'),(1011,'çolak'),(407,'coli'),(157,'coliform'),(195,'colitis'),(894,'collected'),(245,'collection'),(1186,'college'),(397,'colonies'),(531,'colony'),(235,'color'),(940,'coma'),(947,'comatose'),(836,'common'),(123,'community'),(1065,'compared'),(1056,'complaints'),(1204,'complementary'),(608,'complete'),(437,'complications'),(375,'compounds'),(566,'computerized'),(570,'concavity'),(386,'concentration'),(395,'concentrations'),(825,'conclude'),(400,'concluded'),(422,'conclusion'),(128,'conduct'),(963,'conducted'),(968,'consent'),(999,'considered'),(278,'consist'),(719,'consisted'),(509,'consisting'),(1256,'consumed'),(99,'container'),(104,'containers'),(47,'contaminated'),(13,'contamination'),(631,'content'),(1079,'contents'),(446,'contradictions'),(630,'contribute'),(76,'control'),(530,'controls'),(512,'cooked'),(529,'cooking'),(1019,'çorum'),(673,'coskun'),(861,'cosmetics'),(599,'count'),(90,'countainer'),(79,'countries'),(78,'country'),(1124,'covid'),(1123,'covid-19'),(1149,'covid19-infection'),(789,'creamy'),(593,'created'),(809,'critical'),(196,'crohns'),(1179,'cross'),(1198,'current'),(1221,'daily'),(770,'damp'),(341,'dan'),(1177,'daniel'),(244,'data'),(144,'dawet'),(780,'day'),(401,'dayak'),(477,'days'),(641,'dealt'),(81,'death'),(649,'december'),(436,'decrease'),(206,'deficiency'),(990,'degenerative'),(987,'degree'),(1175,'demands'),(712,'demographic'),(59,'dengue'),(96,'density'),(356,'department'),(1010,'departments'),(1107,'dependent'),(353,'derince'),(159,'description'),(35,'descriptive'),(295,'design'),(1063,'detected'),(27,'determine'),(466,'determined'),(805,'developed'),(1084,'development'),(430,'devices'),(333,'dewi'),(66,'dhf'),(890,'diabetes'),(884,'diabetic'),(973,'diagnoses'),(1044,'diameter'),(457,'diameters'),(600,'difference'),(602,'differences'),(392,'dilution'),(1004,'dini'),(71,'disease'),(190,'diseases'),(1229,'dislocation'),(1050,'disorders'),(950,'disparities'),(1231,'dissect'),(1227,'dissolving'),(1214,'distilled'),(896,'divided'),(949,'documented'),(537,'dogan'),(1215,'dose'),(1239,'dose-dependent'),(1200,'dose-response'),(1193,'doses'),(1141,'draw'),(136,'drinks'),(222,'drugs'),(121,'drums'),(12,'drying'),(1045,'duct'),(74,'due'),(239,'duration'),(334,'dwiyanti'),(625,'dysfunction'),(460,'early'),(767,'easy'),(928,'edelu'),(474,'edema'),(470,'edemas'),(573,'edge'),(354,'education'),(289,'effect'),(1073,'effectively'),(367,'effectiveness'),(935,'ekwochi'),(657,'elderly'),(492,'elementary'),(402,'eleutherine'),(959,'emergency'),(1132,'emotional'),(1114,'emre'),(80,'endemic'),(878,'endocrinology'),(1046,'endoscopic'),(282,'energy'),(915,'enugu'),(309,'equal'),(746,'erbakan'),(1108,'erhan'),(1020,'erol'),(184,'erythrocyte'),(234,'erythrocytes'),(406,'escherichia'),(828,'esin'),(666,'eskisehir'),(1182,'essien'),(371,'ethanol'),(208,'ethnicities'),(1178,'etim'),(693,'etiology'),(1230,'euthanize'),(848,'evaluate'),(464,'evaluated'),(714,'evaluating'),(561,'evaluation'),(498,'evidenced'),(248,'examination'),(444,'examinations'),(441,'examine'),(45,'examined'),(246,'examining'),(215,'excess'),(855,'excision'),(447,'excluded'),(1238,'exhibited'),(911,'existence'),(122,'expected'),(293,'experiment'),(389,'experimental'),(869,'expertise'),(221,'exposure'),(372,'extract'),(405,'extracts'),(555,'eyüp'),(226,'factors'),(1026,'faculdade'),(740,'faculty'),(346,'fahani'),(75,'failure'),(486,'falls'),(1032,'famerp'),(300,'farm'),(622,'fascias'),(804,'favored'),(539,'fazliogullari'),(971,'features'),(1061,'female'),(720,'females'),(1034,'fernando'),(1024,'ferneda'),(723,'fetal'),(61,'fever'),(1242,'fibrotic'),(97,'figure'),(715,'files'),(87,'find'),(996,'finding'),(937,'findings'),(8,'fish'),(863,'flap'),(377,'flavonoids'),(24,'flavus'),(577,'floor'),(129,'fluctuations'),(220,'folate'),(1259,'folklore-traditional'),(857,'follow-up'),(469,'follow-ups'),(137,'food'),(142,'form'),(1041,'formation'),(778,'formed'),(70,'found'),(93,'free'),(690,'frequent'),(812,'fresh'),(510,'fried'),(806,'fruits'),(169,'fulfilling'),(381,'function'),(578,'functions'),(4,'fungi'),(20,'fungus'),(761,'furfur'),(56,'fusarium'),(311,'future'),(484,'gain'),(1051,'gall'),(1070,'garlic'),(1022,'gastroenterology'),(1222,'gavage'),(967,'gave'),(601,'gender'),(627,'general'),(707,'genes'),(750,'genetics'),(978,'glasgow'),(901,'glucose'),(1035,'gongora'),(1192,'graded'),(753,'graduate'),(268,'grains'),(814,'green'),(788,'grew'),(279,'group'),(604,'groups'),(1203,'growing'),(19,'grows'),(18,'growth'),(777,'growths'),(1196,'guajava'),(1194,'guava'),(1115,'gunakan'),(533,'gunes'),(1111,'gynecology'),(328,'haitami'),(757,'hamamatsu'),(1156,'hands'),(735,'haris'),(1252,'harmful'),(508,'hawker'),(584,'head'),(68,'health'),(223,'hemolysis'),(704,'hemorrhage'),(60,'hemorrhagic'),(1055,'hepatobiliary'),(524,'herbal'),(411,'hereditary'),(520,'hibiscus'),(845,'high'),(772,'higher'),(307,'highest'),(675,'hirofumi'),(677,'hirotomo'),(1237,'histological'),(1049,'history'),(1018,'hitit'),(199,'hodgkins'),(1173,'home'),(264,'honey'),(612,'horn'),(355,'hospital'),(872,'hospitalization'),(165,'hour'),(168,'hours'),(88,'house'),(103,'households'),(109,'houses'),(1058,'huang'),(364,'huda'),(749,'human'),(1101,'humans'),(174,'hygiene'),(563,'hyoid'),(795,'hyphae'),(706,'hypothesized'),(799,'hystrix'),(143,'ice'),(842,'ideal'),(726,'identified'),(919,'ifeoma'),(1185,'igiri'),(1217,'iii'),(912,'ikenna'),(876,'ilhan'),(544,'ilknur'),(589,'images'),(644,'impact'),(615,'importance'),(1144,'improvement'),(716,'included'),(652,'includes'),(1078,'including'),(139,'increase'),(1066,'increased'),(291,'incubated'),(1105,'independent'),(89,'index'),(1064,'individuals'),(32,'indonesia'),(146,'indonesian'),(429,'infants'),(768,'infect'),(866,'infection'),(202,'infections'),(1099,'infectious'),(201,'inflammation'),(532,'influence'),(826,'influences'),(505,'information'),(1168,'informed'),(1250,'ingestion'),(138,'ingredient'),(183,'ingredients'),(419,'inhibit'),(420,'inhibiting'),(517,'inhibition'),(385,'inhibitory'),(801,'inhibits'),(229,'initial'),(1167,'insufficient'),(881,'internal'),(633,'internet'),(1247,'interstitial'),(1047,'interventions'),(892,'investigate'),(1251,'investigated'),(1037,'investigation'),(717,'invited'),(1074,'invitro'),(205,'iron'),(1015,'isa'),(931,'isaac'),(687,'ischemic'),(880,'işıklar'),(543,'ismihan'),(1164,'issue'),(1143,'issues'),(741,'istanbul'),(929,'ituku'),(84,'january-december'),(755,'japan'),(1029,'josé'),(800,'juice'),(997,'justified'),(547,'kagan'),(412,'kalimantan'),(548,'karabulut'),(874,'karatas'),(320,'kemenkes'),(994,'keratopathy'),(339,'kesehatan'),(1261,'khresna'),(231,'kidney'),(913,'kingsley'),(1265,'kirana'),(542,'kivrak'),(1138,'knowledge'),(352,'kocaeli'),(424,'kocaeliderince'),(665,'koçak'),(676,'kodera'),(1176,'kom-abasi'),(553,'konya'),(670,'kursat'),(733,'kusumawardhani'),(713,'laboratory'),(844,'lacking'),(258,'lactic'),(275,'lactobacillus'),(786,'landasan'),(117,'large'),(730,'larger'),(77,'largest'),(92,'larva'),(98,'larvae'),(1223,'lasted'),(461,'late'),(909,'latency'),(478,'latest'),(303,'laut'),(626,'lead'),(1216,'leaf'),(783,'leaves'),(324,'leka'),(465,'length'),(290,'level'),(260,'levels'),(1248,'leydig'),(95,'lfn'),(575,'lies'),(621,'ligaments'),(1088,'linear'),(340,'lingkungan'),(765,'linn'),(902,'lipid'),(151,'liquid'),(1002,'listya'),(632,'literature'),(214,'liver'),(489,'local'),(571,'locates'),(17,'long'),(962,'longitudinal'),(228,'loss'),(629,'low'),(572,'lower'),(325,'lutpiatina'),(200,'lymphoma'),(213,'macrocytic'),(162,'made'),(360,'mahmudah'),(1135,'main'),(172,'maintain'),(613,'major'),(1262,'majoring'),(285,'making'),(989,'malaria'),(760,'malassezia'),(1062,'male'),(721,'males'),(198,'malignancy'),(953,'management'),(574,'mandible'),(965,'march'),(31,'market'),(65,'martapura'),(1159,'mask'),(782,'material'),(722,'maternal'),(1113,'maternity'),(680,'matsumoto'),(149,'maximum'),(396,'mbc'),(516,'meals'),(1057,'measured'),(454,'measurements'),(125,'measures'),(640,'media'),(859,'median'),(637,'medical'),(1027,'medicina'),(413,'medicinal'),(525,'medicine'),(1085,'medicines'),(1009,'medişoğlu'),(1218,'medium'),(744,'medova'),(170,'meet'),(217,'megaloblastic'),(700,'membranes'),(747,'meram'),(560,'mermer'),(404,'merr'),(1017,'mesut'),(885,'metabolic'),(298,'method'),(840,'methods'),(891,'mets'),(393,'mic'),(1077,'microbes'),(150,'microbial'),(794,'microscopically'),(254,'microsocytic'),(1202,'microstructure'),(211,'microsytic'),(656,'middle'),(1263,'midwifery'),(135,'milk'),(384,'minimum'),(611,'minor'),(467,'minutes'),(986,'moderate'),(49,'monilia'),(696,'monogenetic'),(241,'months'),(692,'morbidity'),(609,'morphologic'),(233,'morphological'),(185,'morphology'),(691,'mortality'),(156,'mpn'),(1048,'mrcp'),(54,'mucor'),(472,'mucosal'),(1266,'muhammad'),(331,'muhlisin'),(1267,'mukhtar'),(565,'multidetector'),(362,'muntaha'),(581,'muscles'),(776,'mushroom'),(58,'mustika'),(708,'mutation'),(683,'mutations'),(991,'myopia'),(535,'nadire'),(679,'naomichi'),(147,'national'),(383,'nbsp'),(914,'ndu'),(925,'nduagubam'),(585,'neck'),(745,'necmettin'),(864,'necrosis'),(326,'neni'),(945,'nervous'),(669,'neurology'),(428,'newborn'),(642,'news'),(48,'niger'),(918,'nigeria'),(897,'non-metabolic'),(939,'non-traumatic'),(225,'normal'),(253,'normochrome'),(252,'normocytic'),(433,'noted'),(180,'noting'),(732,'novina'),(42,'number'),(94,'numbers'),(862,'numbness'),(736,'nurdin'),(734,'nurlailah'),(363,'nurul'),(270,'nutrients'),(932,'nwabueze'),(923,'obinna'),(1145,'observational'),(471,'observed'),(1110,'obstetrics'),(1233,'obtain'),(44,'obtained'),(72,'occurs'),(763,'ocimum'),(921,'ogechukwu'),(327,'oktiyani'),(1109,'okuyan'),(1021,'olçok'),(280,'oligosaccharides'),(409,'onion'),(418,'onions'),(830,'onursal'),(927,'onyeka'),(432,'operation'),(455,'operations'),(972,'ophthalmologic'),(936,'ophthalmological'),(974,'ophthalmologist'),(317,'optimize'),(992,'orbital'),(1255,'organ'),(667,'osmangazi'),(586,'ossification'),(1125,'outbreak'),(988,'outcome'),(197,'ovarian'),(1102,'overcoming'),(1184,'oyono'),(930,'ozalla'),(664,'ozan'),(938,'paediatric'),(115,'paint'),(689,'pais'),(550,'paksoy'),(410,'palmifolia'),(403,'palmifollia'),(1140,'pandemic'),(576,'parallel'),(155,'parameters'),(63,'paring'),(941,'parklane'),(606,'partial'),(1076,'pathogenic'),(728,'pathological'),(646,'patient'),(187,'patients'),(175,'pay'),(357,'pediatric'),(975,'pediatrician'),(342,'pengendalian'),(52,'penicillium'),(343,'penyakit'),(242,'people'),(501,'percentage'),(587,'performed'),(685,'perinatal'),(1116,'perinatology'),(448,'period'),(249,'peripheral'),(173,'personal'),(230,'phase'),(266,'phaseolus'),(443,'physical'),(834,'pilonidal'),(903,'pittsburgh'),(771,'places'),(414,'plant'),(784,'plantations'),(774,'plants'),(120,'plastic'),(832,'plasty'),(399,'plate'),(808,'play'),(580,'point'),(499,'poisoning'),(502,'pollution'),(319,'poltekkes'),(378,'polyphenols'),(887,'poor'),(485,'popularity'),(102,'population'),(731,'populations'),(705,'porencephaly'),(46,'positive'),(462,'post-operative'),(781,'post-test'),(294,'postest'),(1161,'postponed'),(390,'posttest'),(1090,'potential'),(766,'powder'),(1205,'practice'),(737,'pratama'),(124,'precautionary'),(1158,'preferred'),(1148,'pregnancy'),(1121,'pregnant'),(480,'prematurely'),(634,'preoperative'),(651,'preoperatively'),(250,'preparations'),(1226,'prepares'),(506,'presence'),(1043,'present'),(839,'presentation'),(1054,'presented'),(899,'pressure'),(1031,'preto'),(888,'prevalent'),(1142,'prevention'),(1258,'primarily'),(851,'primary'),(889,'problem'),(69,'problems'),(459,'procedure'),(1067,'procedures'),(10,'process'),(9,'processed'),(167,'processing'),(5,'produce'),(141,'products'),(875,'prof'),(15,'prolonged'),(1082,'properties'),(841,'proposed'),(961,'prospective'),(315,'proteins'),(724,'prothrombotic'),(998,'protocol'),(504,'provide'),(1097,'pseudomonas'),(1195,'psidium'),(904,'psqi'),(67,'public'),(481,'pulling'),(251,'pulmonary'),(592,'pure'),(86,'purpose'),(38,'purposive'),(514,'put'),(57,'putri'),(1096,'pyogenes'),(883,'quality'),(513,'questionnaire'),(653,'questions'),(488,'quickly'),(1068,'radiological'),(743,'radiology'),(858,'ranged'),(458,'ranging'),(1189,'rat'),(654,'rate'),(605,'rates'),(332,'ratih'),(1208,'rats'),(616,'realized'),(1213,'received'),(617,'recent'),(951,'recommendations'),(310,'recommended'),(476,'recovered'),(852,'recovery'),(969,'recruited'),(846,'recurrence'),(262,'red'),(818,'regency'),(160,'region'),(1089,'regression'),(620,'relationship'),(957,'relevance'),(635,'rely'),(694,'remains'),(1023,'renato'),(591,'rendering'),(73,'repeatedly'),(1254,'reproductive'),(870,'required'),(153,'requirements'),(1091,'requires'),(34,'research'),(127,'researchers'),(107,'reservoirs'),(1131,'respiratory'),(108,'respondents'),(985,'rest'),(701,'resulting'),(43,'results'),(588,'retrospectively'),(727,'reveal'),(445,'revealed'),(192,'rheumatoid'),(51,'rhizopus'),(269,'rich'),(330,'rifai'),(335,'rifqoh'),(1030,'rio'),(725,'risk'),(497,'risks'),(1264,'rita'),(1180,'river'),(810,'role'),(960,'room'),(519,'rosella'),(526,'roselle'),(952,'routine'),(797,'row'),(1036,'rubio'),(440,'rules'),(322,'ruri'),(521,'sabdariffa'),(1008,'sabri'),(837,'sacrococcygeal'),(678,'saitsu'),(158,'salmonella'),(7,'salted'),(11,'salting'),(541,'sami'),(53,'sample'),(37,'samples'),(39,'sampling'),(1028,'são'),(379,'saponins'),(318,'sari'),(860,'satisfied'),(1072,'sativum'),(873,'savas'),(979,'scale'),(493,'school'),(503,'schools'),(748,'science'),(1007,'sciences'),(908,'scores'),(709,'screening'),(779,'sda'),(450,'sedated'),(742,'selcuk'),(1000,'selected'),(171,'seller'),(40,'sellers'),(1240,'seminiferous'),(662,'send'),(827,'seniha'),(659,'sense'),(479,'separated'),(463,'separation'),(711,'sequencing'),(867,'seroma'),(1119,'sertaç'),(1249,'sertoli'),(900,'serum'),(1212,'served'),(179,'serving'),(983,'severe'),(1016,'sezikli'),(568,'shaped'),(1160,'shorter'),(421,'show'),(304,'showed'),(423,'significance'),(906,'significant'),(435,'significantly'),(739,'siirt'),(1087,'simple'),(452,'single'),(835,'sinus'),(359,'siti'),(50,'sitophila'),(645,'situation'),(977,'sixteen'),(1154,'sixty-nine'),(204,'size'),(792,'sizes'),(769,'skin'),(882,'sleep'),(595,'slice'),(703,'small-vessel'),(236,'smear'),(247,'smears'),(790,'smooth'),(494,'snack'),(495,'snacks'),(305,'sni'),(639,'social'),(582,'soft'),(829,'sogut'),(178,'sold'),(1225,'solution'),(956,'sought'),(283,'source'),(313,'sources'),(807,'south'),(1025,'souza'),(22,'species'),(1235,'specimens'),(1245,'spermatogenic'),(796,'spores'),(1127,'spread'),(1083,'stage'),(148,'standard'),(388,'staphyloccocus'),(132,'staphylococcus'),(483,'starting'),(916,'state'),(1151,'stated'),(1060,'statistically'),(893,'status'),(468,'stay'),(623,'sternum'),(1081,'steroids'),(1224,'stock'),(1040,'stone'),(16,'storage'),(182,'storing'),(518,'strength'),(273,'streptococcus'),(1166,'stressed'),(1244,'strict'),(688,'stroke'),(597,'strong'),(628,'studies'),(25,'study'),(1134,'studys'),(105,'sub-district'),(1146,'subjected'),(907,'subjective'),(271,'substitute'),(287,'sugar'),(255,'suggestions'),(785,'sukamara'),(64,'sungai'),(871,'superior'),(237,'supply'),(257,'support'),(453,'surgeon'),(661,'surgeons'),(358,'surgery'),(439,'surgical'),(36,'survey'),(110,'surveyed'),(2,'susanti'),(348,'sutiany'),(475,'swelling'),(886,'syndrome'),(946,'system'),(164,'taking'),(301,'tambangan'),(302,'tanah'),(528,'tannins'),(140,'taste'),(917,'teaching'),(868,'technical'),(101,'technique'),(161,'techniques'),(759,'technology'),(338,'tehnik'),(1153,'television'),(511,'ten'),(658,'terms'),(380,'terpenoids'),(1075,'test'),(1236,'testes'),(1253,'testicle'),(1190,'testicles'),(166,'testing'),(1069,'tests'),(791,'texture'),(207,'thalassemia'),(274,'thermophillus'),(596,'thickness'),(981,'thirteen'),(366,'thuraidah'),(773,'time'),(163,'times'),(552,'tire'),(1234,'tissue'),(583,'tissues'),(297,'titration'),(567,'tomography'),(100,'total'),(28,'toxin-producing'),(6,'toxins'),(154,'tpc'),(1053,'tract'),(29,'traditional'),(554,'training'),(970,'traumatic'),(1086,'treat'),(238,'treatment'),(1220,'treatments'),(803,'tribal'),(265,'trigona'),(131,'triyanti'),(391,'tube'),(186,'tuberculosis'),(1241,'tubules'),(1012,'tuncay'),(425,'turkey'),(212,'turn'),(853,'twenty-four'),(33,'type'),(41,'types'),(523,'typhi'),(1181,'ubi'),(934,'uchenna'),(787,'ulin'),(695,'unclear'),(954,'unconscious'),(984,'unconsciousness'),(643,'undergo'),(638,'undergoing'),(1139,'understanding'),(854,'underwent'),(607,'unilateral'),(668,'university'),(1169,'unplanned'),(536,'unver'),(1095,'urban'),(194,'urserative'),(545,'uysal'),(877,'varank'),(1106,'variable'),(598,'variation'),(562,'variations'),(838,'varies'),(831,'varlikli'),(699,'vascular'),(62,'vector'),(126,'vectors'),(272,'vegetable'),(83,'village'),(1163,'visits'),(942,'vital'),(218,'vitamin'),(408,'vitro'),(1092,'vivo'),(590,'volume'),(1260,'vonny'),(267,'vulgaris'),(1130,'vulnerable'),(1155,'washing'),(106,'water'),(697,'weakness'),(1210,'weight'),(710,'whole-exome'),(373,'widely'),(323,'widyati'),(1207,'wistar'),(1122,'women'),(1129,'world'),(1126,'worse'),(865,'wound'),(549,'yahya'),(1013,'yalnız'),(674,'yarar'),(551,'yasin'),(618,'years'),(261,'yogurt'),(751,'yokohama'),(655,'young'),(1,'yuli'),(349,'yusuf'),(849,'z-plasty'),(538,'zeliha'),(819,'zone');
/*!40000 ALTER TABLE `submission_search_keyword_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_search_object_keywords`
--

DROP TABLE IF EXISTS `submission_search_object_keywords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_search_object_keywords` (
  `object_id` bigint(20) NOT NULL,
  `keyword_id` bigint(20) NOT NULL,
  `pos` int(11) NOT NULL,
  UNIQUE KEY `submission_search_object_keywords_pkey` (`object_id`,`pos`),
  KEY `submission_search_object_keywords_keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_search_object_keywords`
--

LOCK TABLES `submission_search_object_keywords` WRITE;
/*!40000 ALTER TABLE `submission_search_object_keywords` DISABLE KEYS */;
INSERT INTO `submission_search_object_keywords` VALUES (1,1,0),(1,2,1),(2,4,0),(3,4,8),(3,4,19),(3,4,20),(3,4,28),(3,4,38),(3,4,69),(3,4,74),(3,4,81),(3,4,86),(3,4,91),(3,4,96),(3,4,105),(2,5,1),(3,5,29),(24,5,26),(2,6,2),(2,7,3),(3,7,0),(3,7,9),(3,7,15),(3,7,22),(3,7,39),(3,7,52),(3,7,56),(3,7,101),(2,8,4),(3,8,1),(3,8,2),(3,8,10),(3,8,16),(3,8,23),(3,8,40),(3,8,53),(3,8,57),(3,8,102),(3,9,3),(10,9,10),(24,9,10),(3,10,4),(3,11,5),(3,12,6),(3,13,7),(3,13,36),(10,13,24),(10,13,44),(10,13,80),(37,13,0),(38,13,40),(3,14,11),(129,14,2),(3,15,12),(3,16,13),(3,16,14),(3,17,17),(52,17,12),(101,17,11),(3,18,18),(45,18,67),(45,18,77),(59,18,19),(59,18,34),(59,18,66),(65,18,8),(93,18,4),(94,18,28),(94,18,40),(94,18,80),(94,18,94),(100,18,0),(101,18,16),(101,18,78),(129,18,93),(136,18,26),(136,18,54),(136,18,94),(3,19,21),(3,20,24),(3,21,25),(3,21,27),(3,21,31),(3,21,67),(3,21,73),(3,21,104),(3,22,26),(3,23,30),(3,24,32),(3,24,68),(3,25,33),(3,25,99),(10,25,38),(10,25,55),(17,25,33),(17,25,60),(17,25,68),(24,25,39),(31,25,78),(38,25,14),(38,25,46),(38,25,61),(45,25,18),(45,25,50),(45,25,70),(52,25,16),(52,25,31),(52,25,32),(52,25,65),(52,25,110),(59,25,25),(59,25,62),(66,25,19),(66,25,48),(66,25,71),(73,25,25),(80,25,17),(80,25,83),(87,25,57),(94,25,30),(101,25,21),(101,25,37),(101,25,57),(101,25,74),(108,25,22),(108,25,47),(115,25,87),(122,25,22),(122,25,46),(122,25,56),(129,25,28),(136,25,16),(143,25,1),(143,25,13),(157,25,37),(164,25,1),(3,26,34),(10,26,39),(38,26,15),(45,26,19),(52,26,17),(66,26,20),(129,26,29),(136,26,17),(3,27,35),(10,27,40),(17,27,114),(24,27,40),(31,27,79),(38,27,16),(45,27,20),(59,27,26),(66,27,21),(94,27,31),(101,27,22),(129,27,30),(129,27,110),(136,27,18),(136,27,110),(3,28,37),(3,29,41),(9,29,2),(10,29,13),(10,29,45),(10,29,56),(3,30,42),(10,30,48),(15,30,11),(101,30,54),(3,31,43),(1,32,8),(1,32,18),(3,32,44),(8,32,9),(8,32,18),(15,32,20),(16,32,7),(17,32,8),(17,32,16),(22,32,8),(22,32,17),(24,32,81),(29,32,8),(29,32,17),(36,32,8),(36,32,18),(36,32,27),(43,32,8),(43,32,18),(43,32,27),(57,32,8),(57,32,17),(57,32,26),(64,32,8),(64,32,18),(64,32,27),(92,32,8),(92,32,17),(92,32,26),(94,32,13),(94,32,66),(99,32,9),(99,32,19),(99,32,28),(101,32,55),(127,32,9),(127,32,19),(127,32,28),(134,32,9),(134,32,18),(134,32,28),(169,32,8),(169,32,23),(3,33,45),(10,33,50),(17,33,52),(24,33,55),(31,33,80),(31,33,100),(115,33,12),(115,33,21),(115,33,31),(115,33,93),(143,33,42),(143,33,50),(143,33,53),(143,33,56),(143,33,59),(3,34,46),(10,34,51),(10,34,75),(17,34,51),(17,34,55),(17,34,99),(17,34,113),(24,34,56),(24,34,62),(31,34,101),(31,34,131),(31,34,132),(38,34,28),(38,34,41),(45,34,38),(50,34,5),(59,34,40),(59,34,47),(59,34,49),(66,34,34),(73,34,101),(78,34,9),(78,34,21),(78,34,33),(78,34,45),(94,34,44),(101,34,40),(106,34,9),(106,34,22),(106,34,34),(113,34,5),(113,34,16),(129,34,40),(129,34,109),(136,34,31),(136,34,109),(141,34,25),(141,34,47),(141,34,60),(157,34,34),(3,35,47),(10,35,52),(17,35,53),(31,35,102),(3,36,48),(10,36,53),(17,36,54),(31,36,103),(80,36,37),(3,37,49),(3,37,59),(3,37,62),(3,37,65),(3,37,71),(3,37,77),(3,37,83),(3,37,88),(3,37,100),(3,37,106),(3,37,107),(10,37,54),(10,37,77),(10,37,81),(10,37,82),(38,37,52),(38,37,54),(38,37,57),(38,37,76),(3,38,50),(10,38,62),(24,38,69),(38,38,42),(3,39,51),(10,39,63),(17,39,57),(24,39,67),(24,39,70),(31,39,107),(38,39,43),(3,40,54),(10,40,65),(38,40,63),(3,41,55),(17,41,50),(24,41,117),(143,41,66),(3,42,58),(45,42,60),(66,42,58),(101,42,23),(101,42,81),(3,43,60),(3,43,98),(24,43,82),(38,43,59),(45,43,45),(45,43,58),(45,43,69),(52,43,66),(59,43,50),(66,43,43),(66,43,52),(66,43,70),(87,43,68),(94,43,67),(101,43,56),(101,43,80),(101,43,88),(107,43,3),(108,43,84),(129,43,60),(129,43,74),(136,43,67),(136,43,81),(3,44,61),(45,44,59),(66,44,57),(87,44,50),(94,44,59),(101,44,47),(101,44,70),(122,44,63),(3,45,63),(17,45,81),(143,45,41),(3,46,64),(3,46,70),(3,46,76),(3,46,82),(3,46,87),(3,46,92),(17,46,48),(17,46,75),(17,46,79),(17,46,83),(3,47,66),(3,47,72),(3,47,78),(3,47,84),(3,47,89),(3,47,94),(3,47,103),(3,47,108),(38,47,77),(3,48,75),(3,49,79),(3,50,80),(3,51,85),(3,52,90),(3,53,93),(10,53,88),(17,53,67),(38,53,45),(3,54,95),(3,55,97),(17,55,98),(31,55,30),(31,55,82),(31,55,95),(31,55,114),(45,55,68),(66,55,69),(115,55,39),(129,55,79),(3,56,109),(8,57,0),(8,58,1),(16,59,0),(17,59,0),(17,59,106),(16,60,1),(17,60,1),(17,60,107),(16,61,2),(17,61,2),(17,61,108),(136,61,13),(16,62,3),(17,62,14),(17,62,115),(16,63,4),(17,63,26),(17,63,63),(16,64,5),(17,64,25),(17,64,64),(16,65,6),(17,65,65),(17,66,3),(17,66,21),(17,66,30),(17,66,109),(17,67,4),(38,67,32),(66,67,4),(17,68,5),(38,68,3),(78,68,5),(78,68,17),(78,68,29),(78,68,41),(115,68,4),(141,68,21),(141,68,56),(155,68,8),(17,69,6),(52,69,63),(73,69,94),(10,70,76),(17,70,7),(17,70,31),(38,70,68),(73,70,61),(73,70,99),(80,70,51),(80,70,84),(143,70,97),(143,70,106),(17,71,9),(17,71,22),(31,71,10),(31,71,16),(31,71,49),(31,71,74),(87,71,22),(107,71,7),(108,71,4),(108,71,11),(108,71,31),(129,71,1),(17,72,10),(31,72,21),(31,72,26),(17,73,11),(17,74,12),(31,74,19),(31,74,47),(52,74,107),(73,74,82),(108,74,18),(143,74,22),(157,74,92),(164,74,13),(17,75,13),(31,75,76),(17,76,15),(17,76,105),(24,76,59),(59,76,44),(66,76,37),(94,76,47),(101,76,42),(164,76,33),(17,77,17),(94,77,99),(17,78,18),(17,79,19),(17,80,20),(17,81,23),(17,82,24),(52,82,24),(52,82,35),(107,82,8),(122,82,9),(122,82,31),(122,82,79),(122,82,89),(122,82,125),(17,83,27),(101,83,51),(17,84,28),(17,85,29),(38,85,6),(73,85,48),(122,85,128),(143,85,46),(17,86,32),(24,86,38),(59,86,24),(94,86,29),(101,86,20),(17,87,34),(87,87,97),(17,88,35),(157,88,74),(17,89,36),(17,89,38),(17,89,40),(115,89,54),(17,90,37),(17,91,39),(17,92,41),(17,93,42),(17,94,43),(17,95,44),(17,96,45),(17,96,116),(17,97,46),(17,98,47),(17,98,76),(17,98,78),(17,98,84),(17,99,49),(17,100,56),(24,100,45),(24,100,88),(24,100,104),(52,100,34),(122,100,99),(17,101,58),(24,101,68),(24,101,71),(38,101,44),(17,102,59),(31,102,104),(17,103,61),(17,104,62),(17,104,80),(17,104,82),(17,104,85),(38,104,67),(17,105,66),(17,106,69),(44,106,6),(45,106,30),(45,106,75),(101,106,9),(164,106,36),(164,106,66),(17,107,70),(17,108,71),(17,108,101),(17,109,72),(17,109,73),(17,110,74),(17,111,77),(17,112,86),(17,113,87),(17,113,89),(17,114,88),(17,115,90),(17,116,91),(17,116,94),(17,117,92),(17,118,93),(17,119,95),(17,120,96),(51,120,1),(52,120,6),(52,120,20),(52,120,37),(52,120,47),(52,120,61),(52,120,95),(52,120,101),(52,120,111),(17,121,97),(10,122,94),(17,122,100),(38,122,29),(17,123,102),(24,123,123),(59,123,9),(17,124,103),(17,125,104),(17,126,110),(17,127,111),(24,127,116),(17,128,112),(17,129,117),(15,130,0),(15,131,1),(9,132,0),(10,132,36),(10,132,42),(10,132,78),(65,132,6),(66,132,17),(93,132,5),(94,132,42),(94,132,77),(94,132,96),(128,132,6),(129,132,7),(129,132,24),(129,132,36),(129,132,47),(129,132,66),(129,132,75),(129,132,84),(129,132,94),(9,133,1),(10,133,37),(10,133,43),(10,133,79),(65,133,7),(66,133,18),(66,133,33),(93,133,6),(94,133,43),(94,133,78),(94,133,97),(128,133,7),(129,133,8),(129,133,25),(129,133,37),(129,133,48),(129,133,67),(129,133,76),(129,133,85),(129,133,95),(9,134,3),(10,134,0),(10,134,8),(10,134,27),(10,134,46),(10,134,60),(9,135,4),(10,135,1),(10,135,9),(10,135,28),(10,135,47),(10,135,61),(24,135,9),(9,136,5),(10,136,7),(10,136,14),(10,136,57),(10,136,102),(10,136,111),(10,137,2),(10,137,6),(10,137,25),(37,137,6),(38,137,0),(38,137,7),(38,137,9),(38,137,48),(38,137,75),(66,137,5),(10,138,3),(59,138,15),(66,138,6),(10,139,4),(101,139,92),(143,139,90),(10,140,5),(10,141,11),(10,142,12),(24,142,121),(31,142,86),(31,142,125),(10,143,15),(10,143,18),(10,144,16),(10,144,58),(10,145,17),(10,145,59),(10,146,19),(10,146,85),(10,146,91),(59,146,6),(10,147,20),(10,147,86),(10,147,92),(10,148,21),(10,148,87),(10,148,93),(10,149,22),(10,150,23),(10,151,26),(129,151,56),(136,151,63),(10,152,29),(10,153,30),(10,153,84),(10,153,90),(24,153,99),(10,154,31),(10,155,32),(10,156,33),(10,157,34),(10,158,35),(44,158,7),(45,158,16),(45,158,33),(45,158,79),(10,159,41),(31,159,84),(10,160,49),(108,160,6),(164,160,74),(10,161,64),(10,162,66),(122,162,67),(122,162,72),(122,162,102),(10,163,67),(10,164,68),(10,164,69),(10,165,70),(10,166,71),(10,166,74),(10,167,72),(10,167,104),(164,167,80),(10,168,73),(24,168,53),(52,168,78),(52,168,85),(52,168,105),(10,169,83),(24,169,98),(10,170,89),(10,171,95),(10,172,96),(10,173,97),(10,174,98),(10,175,99),(10,176,100),(157,176,30),(10,177,101),(10,177,107),(10,178,103),(10,178,112),(38,178,25),(38,178,49),(10,179,105),(10,180,106),(10,181,108),(10,182,109),(10,183,110),(30,184,0),(30,185,1),(31,185,123),(30,186,2),(31,186,0),(31,186,93),(31,186,121),(30,187,3),(31,187,22),(31,187,27),(31,187,94),(31,187,122),(52,187,77),(52,187,84),(52,187,100),(79,187,8),(80,187,0),(80,187,7),(80,187,23),(80,187,49),(80,187,54),(80,187,56),(80,187,69),(80,187,72),(80,187,75),(80,187,76),(87,187,41),(87,187,49),(87,187,55),(87,187,82),(87,187,95),(108,187,35),(108,187,60),(108,187,63),(108,187,70),(108,187,76),(108,187,90),(114,187,3),(115,187,6),(115,187,14),(115,187,23),(115,187,33),(115,187,34),(115,187,57),(115,187,72),(115,187,75),(115,187,80),(115,187,86),(115,187,95),(122,187,51),(122,187,62),(143,187,15),(143,187,48),(143,187,51),(143,187,54),(143,187,57),(143,187,73),(143,187,75),(143,187,100),(143,187,103),(157,187,7),(157,187,38),(157,187,51),(157,187,62),(157,187,65),(157,187,70),(157,187,77),(157,187,80),(157,187,86),(157,187,102),(31,188,1),(31,188,17),(31,188,18),(31,188,25),(31,188,29),(31,188,35),(31,188,53),(31,188,62),(31,188,72),(31,188,81),(31,189,2),(31,189,15),(31,189,23),(31,189,36),(31,189,73),(108,189,3),(31,190,3),(31,190,37),(136,190,5),(157,190,10),(23,191,6),(24,191,95),(24,191,110),(24,191,129),(31,191,4),(100,191,4),(101,191,31),(31,192,5),(31,193,6),(31,194,7),(31,195,8),(31,196,9),(31,197,11),(31,198,12),(31,198,28),(31,199,13),(31,200,14),(31,201,20),(31,202,24),(129,202,51),(129,202,107),(136,202,42),(136,202,107),(31,203,31),(31,203,64),(31,204,32),(31,204,41),(31,204,88),(31,205,33),(31,205,70),(31,206,34),(31,206,56),(31,206,71),(31,207,38),(31,208,39),(31,209,40),(31,210,42),(31,210,44),(164,210,99),(164,210,102),(31,211,43),(31,212,45),(31,213,46),(31,214,48),(143,214,24),(31,215,50),(31,216,51),(31,217,52),(31,218,54),(31,219,55),(31,220,57),(31,221,58),(122,221,110),(31,222,59),(31,223,60),(31,224,61),(31,225,63),(31,226,65),(87,226,80),(31,227,66),(31,227,91),(31,227,111),(31,227,117),(31,227,137),(115,227,44),(31,228,67),(31,229,68),(129,229,41),(136,229,32),(31,230,69),(31,231,75),(31,232,77),(73,232,20),(31,233,83),(73,233,43),(163,233,0),(164,233,88),(31,234,85),(31,234,89),(31,234,124),(31,235,87),(31,236,90),(31,236,112),(31,236,118),(31,236,138),(31,237,92),(31,238,96),(107,238,4),(108,238,7),(31,239,97),(52,239,51),(52,239,60),(52,239,76),(31,240,98),(31,241,99),(87,241,75),(108,241,50),(31,242,105),(94,242,10),(101,242,5),(31,243,106),(31,244,108),(87,244,47),(115,244,28),(31,245,109),(31,246,110),(31,247,113),(31,248,115),(31,248,135),(122,248,1),(122,248,7),(122,248,17),(122,248,28),(122,248,65),(122,248,120),(31,249,116),(31,249,136),(31,250,119),(31,251,120),(31,252,126),(31,253,127),(31,253,129),(31,254,128),(31,255,130),(31,256,133),(129,256,55),(136,256,62),(31,257,134),(23,258,0),(24,258,27),(24,258,47),(24,258,89),(24,258,105),(23,259,1),(24,259,28),(24,259,48),(24,259,90),(24,259,106),(23,260,2),(24,260,91),(115,260,49),(23,261,3),(24,261,11),(24,261,32),(24,261,51),(24,261,94),(24,261,109),(23,262,4),(24,262,0),(24,262,17),(24,262,30),(24,262,49),(24,262,92),(24,262,107),(23,263,5),(24,263,1),(24,263,18),(23,264,7),(24,264,37),(24,264,44),(24,264,73),(24,264,87),(24,264,97),(24,264,112),(24,264,131),(23,265,8),(24,265,36),(24,265,43),(24,265,72),(24,265,75),(24,265,86),(24,265,96),(24,265,111),(24,265,130),(24,266,2),(24,267,3),(24,268,4),(24,269,5),(24,270,6),(24,271,7),(24,272,8),(24,273,12),(135,273,8),(136,273,0),(136,273,27),(136,273,38),(136,273,55),(136,273,73),(136,273,82),(136,273,95),(24,274,13),(24,275,14),(24,276,15),(24,277,16),(24,278,19),(24,279,20),(24,279,60),(45,279,41),(59,279,45),(66,279,38),(87,279,70),(94,279,48),(143,279,77),(164,279,31),(164,279,37),(164,279,46),(164,279,51),(24,280,21),(24,281,22),(24,282,23),(24,283,24),(24,283,33),(79,283,4),(80,283,6),(80,283,45),(80,283,58),(80,283,66),(80,283,81),(157,283,59),(157,283,61),(157,283,67),(24,284,25),(38,284,35),(38,284,82),(59,284,20),(24,285,29),(122,285,15),(24,286,31),(24,286,50),(24,286,93),(24,286,108),(24,287,34),(24,287,127),(24,288,35),(24,288,42),(24,288,85),(24,289,41),(24,289,84),(45,289,27),(59,289,65),(79,289,0),(129,289,89),(129,289,111),(136,289,111),(164,289,5),(24,290,46),(45,290,64),(66,290,60),(79,290,3),(157,290,55),(24,291,52),(24,292,54),(24,293,57),(24,294,58),(24,295,61),(24,295,63),(45,295,42),(59,295,46),(59,295,48),(66,295,39),(94,295,49),(101,295,41),(164,295,2),(24,296,64),(24,297,65),(24,298,66),(45,298,44),(52,298,8),(52,298,39),(59,298,41),(66,298,42),(101,298,36),(129,298,58),(136,298,65),(157,298,69),(164,298,69),(24,299,74),(24,299,76),(24,300,77),(24,301,78),(24,302,79),(24,303,80),(24,304,83),(38,304,62),(45,304,51),(45,304,65),(66,304,49),(94,304,68),(101,304,89),(129,304,61),(136,304,68),(24,305,100),(24,306,101),(24,307,102),(24,308,103),(52,308,67),(52,308,73),(52,308,93),(164,308,26),(24,309,113),(24,310,114),(24,310,124),(24,311,115),(24,312,118),(24,313,119),(24,313,126),(24,314,120),(24,315,122),(24,316,125),(164,316,17),(24,317,128),(8,318,2),(1,319,5),(1,319,15),(8,319,6),(8,319,15),(15,319,17),(22,319,5),(22,319,14),(29,319,5),(29,319,14),(36,319,5),(36,319,15),(36,319,24),(43,319,5),(43,319,15),(43,319,24),(57,319,5),(57,319,14),(57,319,23),(64,319,5),(64,319,15),(64,319,24),(92,319,5),(92,319,14),(92,319,23),(99,319,6),(99,319,16),(99,319,25),(127,319,6),(127,319,16),(127,319,25),(134,319,6),(134,319,15),(134,319,25),(169,319,5),(169,319,13),(169,319,20),(1,320,6),(1,320,16),(8,320,7),(8,320,16),(15,320,18),(22,320,6),(22,320,15),(29,320,6),(29,320,15),(36,320,6),(36,320,16),(36,320,25),(43,320,6),(43,320,16),(43,320,25),(57,320,6),(57,320,15),(57,320,24),(64,320,6),(64,320,16),(64,320,25),(92,320,6),(92,320,15),(92,320,24),(99,320,7),(99,320,17),(99,320,26),(127,320,7),(127,320,17),(127,320,26),(134,320,7),(134,320,16),(134,320,26),(169,320,6),(169,320,14),(169,320,21),(22,322,0),(22,323,1),(22,326,9),(43,326,19),(22,327,10),(43,327,20),(22,328,18),(22,328,19),(8,329,10),(29,329,0),(29,329,9),(36,329,19),(57,329,18),(99,329,20),(29,330,1),(8,331,11),(29,331,10),(36,331,20),(57,331,19),(99,331,21),(1,332,9),(36,332,9),(43,332,9),(64,332,9),(99,332,10),(127,332,10),(134,332,19),(1,333,10),(36,333,10),(43,333,10),(64,333,10),(99,333,11),(127,333,11),(134,333,20),(169,333,2),(1,334,11),(36,334,11),(43,334,11),(64,334,11),(99,334,12),(127,334,12),(134,334,21),(15,335,12),(15,335,13),(15,336,2),(15,337,3),(15,338,4),(15,339,5),(15,340,6),(15,341,7),(15,342,8),(15,343,9),(15,344,10),(36,345,0),(43,345,0),(36,346,1),(1,347,7),(1,347,17),(8,347,8),(8,347,17),(15,347,19),(22,347,7),(22,347,16),(29,347,7),(29,347,16),(36,347,7),(36,347,17),(36,347,26),(43,347,7),(43,347,17),(43,347,26),(57,347,7),(57,347,16),(57,347,25),(64,347,7),(64,347,17),(64,347,26),(92,347,7),(92,347,16),(92,347,25),(99,347,8),(99,347,18),(99,347,27),(127,347,8),(127,347,18),(127,347,27),(134,347,8),(134,347,17),(134,347,27),(169,347,7),(169,347,15),(169,347,22),(43,348,1),(50,349,0),(106,349,0),(141,349,52),(50,350,1),(106,350,1),(141,350,53),(50,351,2),(106,351,2),(141,351,54),(106,352,6),(106,352,11),(106,352,19),(106,352,24),(106,352,31),(106,352,36),(141,352,2),(141,352,11),(141,352,32),(106,353,7),(106,353,20),(106,353,32),(141,353,23),(141,353,58),(50,354,4),(79,354,2),(80,354,28),(106,354,8),(106,354,21),(106,354,33),(113,354,6),(113,354,17),(50,355,6),(52,355,74),(71,355,37),(78,355,10),(78,355,22),(78,355,34),(78,355,46),(85,355,5),(85,355,19),(85,355,30),(87,355,52),(106,355,10),(106,355,23),(106,355,35),(108,355,56),(113,355,7),(113,355,18),(120,355,7),(120,355,16),(120,355,25),(120,355,36),(120,355,45),(120,355,55),(120,355,64),(121,355,9),(122,355,40),(141,355,26),(141,355,48),(141,355,61),(155,355,9),(157,355,84),(157,355,108),(50,356,7),(71,356,2),(71,356,13),(71,356,23),(71,356,34),(71,356,43),(71,356,56),(71,356,66),(78,356,2),(78,356,14),(78,356,26),(78,356,38),(85,356,6),(85,356,20),(85,356,31),(85,356,38),(85,356,52),(85,356,63),(106,356,3),(106,356,16),(106,356,28),(113,356,9),(113,356,21),(155,356,2),(155,356,14),(155,356,24),(162,356,3),(162,356,18),(162,356,33),(50,357,8),(52,357,43),(85,357,7),(85,357,21),(85,357,32),(106,357,4),(106,357,17),(106,357,29),(141,357,62),(50,358,9),(80,358,9),(80,358,16),(80,358,25),(80,358,32),(106,358,5),(106,358,18),(106,358,30),(141,358,63),(143,358,20),(57,359,0),(57,360,1),(57,361,9),(57,362,10),(64,363,0),(64,364,1),(64,365,19),(92,365,9),(127,365,20),(64,366,20),(92,366,10),(127,366,21),(58,367,0),(59,367,27),(65,367,0),(65,368,1),(66,368,0),(66,368,28),(66,368,74),(66,368,78),(65,369,2),(66,369,1),(65,370,3),(66,370,2),(65,371,4),(66,371,29),(66,371,75),(66,371,79),(135,371,0),(136,371,24),(136,371,46),(136,371,88),(59,372,29),(59,372,54),(59,372,64),(65,372,5),(66,372,30),(66,372,76),(66,372,80),(128,372,1),(129,372,34),(129,372,91),(129,372,101),(135,372,1),(136,372,25),(136,372,47),(136,372,89),(136,372,102),(163,372,13),(164,372,8),(164,372,45),(164,372,65),(164,372,84),(66,373,3),(66,374,7),(94,374,18),(129,374,14),(45,375,9),(45,375,13),(66,375,8),(94,375,19),(66,376,9),(129,376,17),(45,377,10),(66,377,10),(94,377,20),(129,377,18),(66,378,11),(45,379,11),(66,379,12),(129,379,19),(66,380,13),(66,381,14),(94,381,21),(129,381,22),(45,382,14),(66,382,15),(94,382,22),(94,382,32),(129,382,23),(129,382,31),(129,382,52),(38,383,11),(38,383,19),(38,383,22),(38,383,36),(38,383,39),(38,383,69),(38,383,72),(38,383,78),(38,383,81),(45,383,15),(45,383,32),(45,383,35),(45,383,78),(45,383,81),(59,383,21),(59,383,35),(59,383,38),(59,383,56),(59,383,59),(59,383,67),(59,383,70),(66,383,16),(66,383,31),(73,383,41),(73,383,50),(73,383,74),(87,383,28),(87,383,30),(87,383,31),(87,383,33),(87,383,60),(87,383,62),(87,383,63),(87,383,65),(87,383,87),(87,383,89),(87,383,90),(87,383,92),(87,383,96),(87,383,100),(87,383,102),(87,383,103),(87,383,105),(94,383,2),(94,383,14),(94,383,17),(94,383,34),(94,383,37),(94,383,41),(94,383,52),(94,383,55),(94,383,71),(94,383,74),(94,383,76),(94,383,79),(94,383,89),(94,383,92),(94,383,95),(94,383,98),(122,383,76),(157,383,63),(164,383,20),(164,383,81),(164,383,103),(45,384,21),(45,384,24),(45,384,46),(45,384,54),(66,384,22),(66,384,25),(66,384,44),(66,384,53),(129,384,62),(129,384,70),(136,384,69),(136,384,77),(45,385,22),(45,385,47),(66,385,23),(66,385,45),(94,385,100),(129,385,63),(136,385,70),(45,386,23),(45,386,26),(45,386,31),(45,386,48),(45,386,56),(45,386,62),(45,386,76),(66,386,24),(66,386,27),(66,386,46),(66,386,55),(94,386,39),(94,386,102),(101,386,93),(129,386,64),(129,386,72),(136,386,45),(136,386,71),(136,386,79),(164,386,108),(45,387,25),(45,387,55),(66,387,26),(66,387,54),(129,387,71),(136,387,78),(66,388,32),(45,389,37),(59,389,42),(66,389,35),(94,389,45),(101,389,38),(45,390,39),(59,390,43),(66,390,36),(94,390,46),(66,391,40),(45,392,43),(66,392,41),(129,392,57),(136,392,64),(45,393,49),(66,393,47),(66,393,73),(129,393,65),(136,393,72),(45,394,52),(66,394,50),(45,395,53),(59,395,60),(66,395,51),(94,395,82),(101,395,34),(101,395,61),(101,395,79),(129,395,59),(136,395,66),(45,396,57),(66,396,56),(66,396,77),(129,396,73),(136,396,80),(45,397,61),(66,397,59),(101,397,82),(101,397,84),(101,397,85),(101,397,86),(101,397,87),(101,397,91),(66,398,61),(66,398,63),(66,398,65),(66,398,67),(66,399,62),(66,399,64),(66,399,66),(66,399,68),(45,400,71),(66,400,72),(129,400,88),(136,400,86),(58,401,1),(59,401,0),(59,401,8),(59,401,16),(59,401,28),(59,401,52),(59,401,63),(58,402,2),(59,402,2),(59,402,30),(58,403,3),(59,403,31),(58,404,4),(59,404,4),(59,404,32),(58,405,5),(58,406,6),(59,406,22),(59,406,36),(59,406,57),(59,406,68),(128,406,8),(129,406,9),(129,406,26),(129,406,38),(129,406,49),(129,406,68),(129,406,77),(129,406,86),(129,406,96),(58,407,7),(59,407,23),(59,407,37),(59,407,58),(59,407,69),(128,407,9),(129,407,10),(129,407,27),(129,407,39),(129,407,50),(129,407,69),(129,407,78),(129,407,87),(129,407,97),(44,408,9),(45,408,36),(45,408,82),(58,408,8),(59,408,39),(59,409,1),(59,409,53),(59,410,3),(59,411,5),(59,412,7),(94,412,12),(94,412,65),(59,413,10),(45,414,3),(59,414,11),(94,414,6),(164,414,15),(59,415,12),(59,416,13),(94,416,33),(129,416,53),(136,416,60),(45,417,8),(59,417,14),(59,418,17),(59,419,18),(59,419,55),(101,419,15),(135,419,7),(59,420,33),(94,420,26),(59,421,51),(38,422,74),(52,422,109),(59,422,61),(101,422,73),(59,423,71),(50,424,3),(50,425,10),(71,425,9),(71,425,20),(71,425,30),(71,425,39),(71,425,52),(71,425,63),(71,425,73),(78,425,11),(78,425,23),(78,425,35),(78,425,47),(85,425,10),(85,425,24),(85,425,35),(106,425,12),(106,425,25),(106,425,37),(113,425,10),(113,425,22),(141,425,8),(141,425,17),(141,425,29),(141,425,38),(141,425,51),(141,425,65),(155,425,11),(155,425,21),(155,425,31),(51,426,0),(52,426,2),(52,426,22),(52,426,28),(52,426,91),(51,427,2),(51,428,3),(51,429,4),(52,429,23),(52,430,0),(52,430,5),(52,431,1),(52,432,3),(52,432,70),(52,432,106),(80,432,62),(52,433,4),(52,433,99),(52,434,7),(52,434,21),(52,434,38),(52,434,62),(52,434,86),(52,434,96),(52,434,102),(52,434,112),(52,435,9),(122,435,97),(122,435,116),(52,436,10),(101,436,90),(52,437,11),(52,437,58),(52,438,13),(162,438,7),(162,438,22),(52,439,14),(52,439,52),(52,439,69),(108,439,12),(143,439,111),(52,440,15),(52,441,18),(73,441,21),(52,442,19),(52,443,25),(52,444,26),(122,444,81),(52,445,27),(52,446,29),(52,447,30),(122,447,59),(52,448,33),(52,448,56),(52,449,36),(52,450,40),(52,451,41),(52,451,121),(78,451,3),(78,451,15),(78,451,27),(78,451,39),(80,451,15),(80,451,46),(80,451,59),(52,452,42),(107,452,1),(52,453,44),(52,454,45),(115,454,43),(52,455,46),(52,456,48),(52,457,49),(52,458,50),(52,459,53),(143,459,19),(52,460,54),(73,460,65),(52,461,55),(52,462,57),(52,463,59),(52,464,64),(52,465,68),(52,466,71),(52,467,72),(52,468,75),(108,468,57),(157,468,85),(52,469,79),(52,470,80),(52,471,81),(52,471,94),(73,471,53),(108,471,68),(52,472,82),(52,473,83),(52,474,87),(52,475,88),(52,476,89),(52,477,90),(52,477,98),(108,477,58),(164,477,60),(52,478,92),(52,479,97),(52,479,103),(52,480,104),(52,481,108),(52,482,113),(52,483,114),(52,484,115),(80,484,13),(52,485,116),(52,486,117),(52,487,118),(52,488,119),(52,489,120),(94,489,51),(37,490,1),(38,490,12),(38,490,20),(38,490,37),(38,490,70),(38,490,79),(37,491,2),(38,491,13),(38,491,21),(38,491,38),(38,491,71),(38,491,80),(37,492,3),(38,492,26),(38,492,50),(37,493,4),(38,493,51),(85,493,45),(85,493,56),(85,493,70),(155,493,18),(155,493,28),(37,494,5),(38,495,1),(38,495,24),(38,495,65),(38,496,2),(38,497,4),(157,497,104),(38,498,5),(38,499,8),(38,499,10),(38,500,17),(164,500,54),(38,501,18),(38,502,23),(38,503,27),(38,504,30),(38,505,31),(79,505,5),(80,505,5),(80,505,14),(80,505,47),(80,505,60),(80,505,63),(80,505,67),(80,505,82),(80,505,89),(157,505,46),(157,505,58),(157,505,60),(157,505,66),(38,506,33),(115,506,40),(122,506,112),(129,506,3),(38,507,34),(38,508,47),(38,509,53),(38,510,55),(38,511,56),(38,512,58),(38,513,60),(80,513,39),(157,513,40),(38,514,64),(38,515,66),(38,516,73),(44,517,0),(94,517,70),(136,517,19),(136,517,87),(44,518,1),(44,519,2),(45,519,0),(45,519,28),(45,519,73),(44,520,3),(45,520,1),(44,521,4),(45,521,2),(44,522,5),(44,523,8),(45,523,17),(45,523,34),(45,523,80),(45,524,4),(129,524,44),(129,524,104),(136,524,35),(136,524,104),(45,525,5),(85,525,46),(85,525,57),(85,525,71),(113,525,20),(129,525,105),(136,525,105),(141,525,5),(141,525,14),(141,525,35),(155,525,19),(155,525,29),(164,525,18),(164,525,120),(45,526,6),(45,527,7),(45,528,12),(129,528,20),(45,529,29),(45,529,74),(45,530,40),(45,531,63),(45,531,66),(101,531,63),(45,532,72),(71,533,0),(71,534,1),(71,535,10),(71,536,11),(71,537,12),(71,538,21),(71,539,22),(71,540,31),(71,541,32),(71,542,33),(71,543,40),(71,544,41),(71,545,42),(71,546,53),(141,546,19),(71,547,54),(71,548,55),(71,549,64),(71,550,65),(78,551,0),(78,552,1),(71,553,19),(71,553,29),(71,553,38),(71,553,51),(71,553,62),(71,553,72),(78,553,7),(78,553,19),(78,553,31),(78,553,43),(78,554,8),(78,554,20),(78,554,32),(78,554,44),(141,554,24),(141,554,46),(141,554,59),(78,555,12),(78,556,13),(78,557,24),(78,558,25),(78,559,36),(78,560,37),(72,561,0),(72,562,1),(73,562,22),(73,562,47),(73,562,71),(73,562,96),(87,562,27),(87,562,106),(142,562,3),(72,563,2),(73,563,0),(73,563,24),(73,563,33),(73,563,77),(73,563,97),(72,564,3),(73,564,2),(73,564,34),(73,564,78),(73,564,85),(73,564,98),(72,565,4),(72,566,5),(72,567,6),(73,568,1),(73,569,3),(73,570,4),(73,571,5),(73,572,6),(115,572,74),(164,572,39),(73,573,7),(73,574,8),(73,575,9),(73,576,10),(73,577,11),(73,578,12),(73,579,13),(73,580,14),(73,581,15),(73,581,86),(73,582,16),(101,582,65),(73,583,17),(73,584,18),(73,585,19),(73,586,23),(73,586,46),(73,586,58),(73,586,59),(73,587,26),(87,587,36),(73,588,27),(87,588,54),(73,589,28),(73,589,31),(73,589,37),(143,589,37),(73,590,29),(73,591,30),(73,592,32),(73,593,35),(73,594,36),(73,595,38),(73,596,39),(73,597,40),(73,597,42),(73,597,49),(73,597,51),(73,598,44),(73,598,67),(73,599,45),(73,600,52),(114,600,6),(115,600,59),(115,600,66),(143,600,80),(73,601,54),(143,601,108),(73,602,55),(73,603,56),(79,603,1),(80,603,27),(80,603,53),(80,603,71),(87,603,74),(108,603,54),(143,603,76),(143,603,88),(143,603,110),(73,604,57),(115,604,36),(115,604,64),(115,604,70),(164,604,30),(73,605,60),(108,605,21),(73,606,62),(73,607,63),(73,608,64),(80,608,36),(73,609,66),(73,610,68),(73,611,69),(73,612,70),(73,612,73),(73,613,72),(73,614,75),(87,614,44),(108,614,9),(122,614,73),(73,615,76),(73,616,79),(73,617,80),(73,618,81),(108,618,55),(143,618,87),(143,618,109),(73,619,83),(73,620,84),(87,620,112),(73,621,87),(73,622,88),(73,623,89),(73,624,90),(73,625,91),(73,626,92),(73,627,93),(73,628,95),(87,628,107),(73,629,100),(115,629,79),(73,630,102),(73,631,103),(101,631,10),(73,632,104),(79,633,6),(80,633,2),(80,633,10),(80,633,19),(80,633,42),(80,633,44),(80,633,57),(80,633,65),(80,633,78),(80,633,90),(79,634,7),(80,635,1),(80,636,3),(1,637,2),(1,637,12),(8,637,3),(8,637,12),(15,637,14),(22,637,2),(22,637,11),(29,637,2),(29,637,11),(36,637,2),(36,637,12),(36,637,21),(43,637,2),(43,637,12),(43,637,21),(57,637,2),(57,637,11),(57,637,20),(64,637,2),(64,637,12),(64,637,21),(71,637,6),(71,637,17),(71,637,27),(71,637,49),(71,637,60),(71,637,70),(80,637,4),(92,637,2),(92,637,11),(92,637,20),(99,637,3),(99,637,13),(99,637,22),(127,637,3),(127,637,13),(127,637,22),(134,637,3),(134,637,12),(134,637,22),(162,637,8),(162,637,23),(162,637,37),(80,638,8),(80,639,11),(80,639,20),(80,639,79),(80,639,92),(80,640,12),(80,640,21),(80,640,80),(80,640,93),(100,640,3),(101,640,30),(80,641,18),(80,642,22),(80,643,24),(80,644,26),(80,645,29),(80,646,30),(87,646,69),(87,646,109),(108,646,69),(157,646,43),(80,647,31),(80,647,77),(87,647,59),(141,647,28),(141,647,50),(141,647,64),(80,648,33),(80,649,34),(80,650,35),(80,651,38),(80,652,40),(80,653,41),(157,653,42),(80,654,43),(80,654,50),(80,654,64),(80,654,73),(80,655,48),(80,655,68),(80,656,52),(80,656,70),(80,657,55),(80,657,74),(80,658,61),(108,658,85),(143,658,63),(80,659,85),(80,660,86),(80,661,87),(80,662,88),(80,663,91),(85,664,0),(85,665,1),(85,666,2),(85,666,9),(85,666,16),(85,666,23),(85,666,27),(85,666,34),(85,667,3),(85,667,17),(85,667,28),(71,668,5),(71,668,16),(71,668,26),(71,668,47),(71,668,59),(71,668,69),(78,668,4),(78,668,16),(78,668,28),(78,668,40),(85,668,4),(85,668,18),(85,668,29),(85,668,43),(85,668,55),(85,668,68),(120,668,5),(120,668,14),(120,668,22),(120,668,34),(120,668,43),(120,668,53),(120,668,62),(121,668,7),(122,668,38),(141,668,3),(141,668,12),(141,668,20),(141,668,33),(141,668,42),(141,668,55),(155,668,17),(155,668,27),(162,668,12),(162,668,27),(162,668,39),(85,669,8),(85,669,22),(85,669,33),(85,670,11),(85,671,12),(85,671,14),(85,672,13),(85,672,15),(85,673,25),(85,674,26),(85,675,36),(85,676,37),(85,677,50),(85,678,51),(85,679,61),(85,680,62),(86,681,0),(87,681,11),(87,681,29),(87,681,61),(87,681,88),(87,681,101),(86,682,1),(87,682,12),(87,682,32),(87,682,64),(87,682,91),(87,682,104),(86,683,2),(87,683,13),(87,683,94),(86,684,3),(86,685,4),(87,685,0),(86,686,5),(87,686,1),(86,687,6),(87,687,2),(86,688,7),(87,688,3),(87,689,4),(87,689,35),(87,689,40),(87,689,48),(87,689,99),(87,690,5),(157,690,57),(87,691,6),(115,691,16),(87,692,7),(108,692,32),(115,692,15),(87,693,8),(87,694,9),(87,695,10),(87,696,14),(87,697,15),(87,698,16),(87,699,17),(87,700,18),(87,701,19),(87,702,20),(87,702,23),(122,702,104),(87,703,21),(87,704,24),(87,705,25),(87,706,26),(87,707,34),(87,707,39),(87,708,37),(87,708,66),(87,709,38),(87,710,42),(87,710,83),(87,711,43),(87,711,84),(87,712,45),(122,712,60),(1,713,3),(1,713,13),(8,713,4),(8,713,13),(15,713,15),(22,713,3),(22,713,12),(29,713,3),(29,713,12),(36,713,3),(36,713,13),(36,713,22),(43,713,3),(43,713,13),(43,713,22),(57,713,3),(57,713,12),(57,713,21),(64,713,3),(64,713,13),(64,713,22),(87,713,46),(92,713,3),(92,713,12),(92,713,21),(99,713,4),(99,713,14),(99,713,23),(127,713,4),(127,713,14),(127,713,23),(134,713,4),(134,713,13),(134,713,23),(87,714,51),(87,715,53),(87,716,56),(108,716,46),(122,716,103),(87,717,58),(87,718,67),(87,718,85),(115,718,27),(87,719,71),(143,719,14),(87,720,72),(108,720,37),(108,720,52),(87,721,73),(108,721,36),(108,721,51),(164,721,115),(87,722,76),(87,723,77),(87,724,78),(87,725,79),(87,726,81),(87,727,86),(87,727,111),(87,728,93),(87,729,98),(143,729,4),(143,729,62),(87,730,108),(87,731,110),(92,732,0),(92,733,1),(92,734,18),(92,734,19),(134,734,10),(134,734,11),(99,735,0),(99,736,1),(99,737,2),(71,738,3),(71,738,14),(71,738,24),(71,738,44),(71,738,57),(141,738,7),(141,738,16),(162,738,5),(162,738,20),(162,738,35),(71,739,4),(71,740,7),(71,740,18),(71,740,28),(71,740,50),(71,740,61),(71,740,71),(141,740,4),(141,740,13),(141,740,34),(162,740,6),(162,740,21),(71,741,8),(71,742,15),(71,742,25),(71,742,58),(71,742,68),(71,743,35),(71,743,67),(141,743,27),(141,743,37),(71,744,36),(71,745,45),(71,746,46),(71,747,48),(78,748,6),(78,748,18),(78,748,30),(78,748,42),(85,749,39),(85,749,64),(162,749,4),(162,749,19),(162,749,34),(85,750,40),(85,750,65),(85,751,41),(85,751,47),(85,751,66),(85,751,72),(85,752,42),(85,752,67),(85,753,44),(85,753,69),(85,754,48),(85,754,73),(85,755,49),(85,755,60),(85,755,74),(85,756,53),(85,757,54),(85,757,58),(85,758,59),(1,759,4),(1,759,14),(8,759,5),(8,759,14),(15,759,16),(22,759,4),(22,759,13),(29,759,4),(29,759,13),(36,759,4),(36,759,14),(36,759,23),(43,759,4),(43,759,14),(43,759,23),(57,759,4),(57,759,13),(57,759,22),(64,759,4),(64,759,14),(64,759,23),(92,759,4),(92,759,13),(92,759,22),(99,759,5),(99,759,15),(99,759,24),(127,759,5),(127,759,15),(127,759,24),(134,759,5),(134,759,14),(134,759,24),(162,759,13),(162,759,28),(100,760,1),(101,760,0),(101,760,17),(101,760,24),(101,760,58),(101,760,75),(100,761,2),(101,761,1),(101,761,18),(101,761,25),(101,761,59),(101,761,76),(100,762,5),(101,762,19),(101,762,32),(101,762,45),(101,762,48),(100,763,6),(100,764,7),(100,765,8),(163,765,11),(100,766,9),(101,766,33),(129,766,35),(129,766,92),(129,766,102),(101,767,2),(101,768,3),(101,769,4),(101,770,6),(101,771,7),(101,772,8),(143,772,71),(143,772,98),(164,772,53),(101,773,12),(101,774,13),(101,774,46),(101,775,14),(101,776,26),(101,776,77),(101,777,27),(101,778,28),(101,779,29),(101,780,35),(164,780,55),(101,781,39),(94,782,50),(101,782,43),(101,783,44),(135,783,5),(136,783,23),(136,783,51),(136,783,93),(163,783,7),(164,783,10),(164,783,106),(101,784,49),(101,785,50),(101,786,52),(101,787,53),(101,788,60),(101,789,62),(101,790,64),(101,791,66),(101,792,67),(101,793,68),(101,794,69),(101,795,71),(101,796,72),(101,797,83),(93,798,0),(94,798,0),(94,798,4),(94,798,15),(94,798,35),(94,798,53),(94,798,72),(94,798,90),(93,799,1),(94,799,1),(94,799,16),(94,799,36),(94,799,54),(94,799,73),(94,799,91),(93,800,2),(94,800,38),(94,800,75),(94,800,88),(93,801,3),(128,801,5),(94,802,3),(94,803,5),(94,804,7),(94,805,8),(108,805,75),(94,806,9),(94,807,11),(94,807,64),(94,808,23),(94,809,24),(94,810,25),(108,810,25),(94,811,27),(129,811,106),(136,811,106),(94,812,56),(94,813,57),(94,814,58),(94,815,60),(94,816,61),(94,817,62),(94,818,63),(94,819,69),(94,819,101),(94,820,81),(94,821,83),(94,822,84),(94,823,85),(94,824,86),(94,825,87),(94,826,93),(106,827,13),(106,828,14),(155,828,23),(106,829,15),(106,830,26),(106,831,27),(107,832,0),(107,833,2),(107,834,5),(108,834,0),(108,834,30),(108,834,44),(108,834,88),(107,835,6),(108,835,1),(108,835,39),(108,835,45),(108,835,81),(108,835,89),(108,836,2),(115,836,11),(115,836,84),(108,837,5),(108,837,43),(108,838,8),(108,839,10),(108,840,13),(157,840,76),(108,841,14),(108,842,15),(108,843,16),(108,844,17),(108,845,19),(108,846,20),(108,846,33),(108,846,59),(108,846,86),(108,847,23),(115,847,17),(143,847,2),(157,847,11),(108,848,24),(122,848,24),(157,848,12),(108,849,26),(108,849,41),(108,849,82),(108,850,27),(108,851,28),(164,851,112),(108,852,29),(108,853,34),(164,853,21),(108,854,38),(108,855,40),(108,855,80),(108,856,42),(108,857,48),(157,857,90),(108,858,49),(122,858,86),(108,859,53),(108,860,61),(108,861,62),(108,862,64),(108,863,65),(108,863,66),(108,864,67),(164,864,97),(108,865,71),(108,865,73),(108,866,72),(129,866,0),(156,866,4),(157,866,106),(108,867,74),(108,868,77),(108,869,78),(108,870,79),(108,871,83),(108,872,87),(108,872,91),(113,873,0),(113,874,1),(113,875,2),(113,875,13),(113,876,3),(113,876,14),(113,877,4),(113,877,15),(113,878,8),(113,879,11),(113,880,12),(113,881,19),(114,882,0),(115,882,1),(115,882,19),(115,882,52),(115,882,61),(115,882,67),(115,882,83),(115,882,91),(114,883,1),(115,883,2),(115,883,20),(115,883,53),(115,883,62),(115,883,78),(115,883,92),(114,884,2),(115,884,13),(115,884,32),(115,884,85),(115,884,94),(114,885,4),(115,885,8),(115,885,24),(115,885,37),(115,885,88),(114,886,5),(115,886,9),(115,886,25),(115,886,89),(115,887,0),(115,887,82),(115,888,3),(115,889,5),(115,890,7),(115,890,22),(115,890,81),(115,891,10),(115,891,41),(115,891,73),(115,891,76),(115,892,18),(143,892,3),(115,893,26),(157,893,15),(115,894,29),(115,894,50),(115,895,30),(115,896,35),(115,897,38),(115,898,42),(115,899,45),(115,900,46),(115,901,47),(115,902,48),(115,903,51),(115,904,55),(115,905,56),(115,906,58),(115,906,65),(143,906,61),(143,906,79),(115,907,60),(115,908,63),(115,908,69),(115,908,71),(122,908,85),(115,909,68),(115,910,77),(115,911,90),(120,912,0),(120,913,1),(120,914,2),(120,915,3),(120,915,8),(120,915,12),(120,915,17),(120,915,28),(120,915,32),(120,915,37),(120,915,41),(120,915,46),(120,915,51),(120,915,56),(120,915,60),(120,915,65),(121,915,5),(121,915,11),(122,915,36),(122,915,42),(120,916,4),(120,916,13),(120,916,33),(120,916,42),(120,916,52),(120,916,61),(121,916,6),(122,916,37),(120,917,6),(120,917,15),(120,917,24),(120,917,35),(120,917,44),(120,917,54),(120,917,63),(121,917,8),(122,917,39),(120,918,9),(120,918,18),(120,918,23),(120,918,38),(120,918,47),(120,918,57),(120,918,66),(121,918,12),(122,918,43),(162,918,14),(162,918,29),(162,918,41),(120,919,10),(120,920,11),(120,921,39),(120,922,40),(120,923,29),(120,924,30),(120,925,31),(120,926,19),(120,927,20),(120,928,21),(120,929,26),(120,930,27),(120,931,48),(162,931,17),(120,932,49),(120,933,50),(120,934,58),(120,935,59),(121,936,0),(122,936,0),(122,936,16),(122,936,27),(121,937,1),(122,937,12),(121,938,2),(122,938,33),(121,939,3),(121,940,4),(122,940,58),(122,940,83),(121,941,10),(122,941,41),(122,942,2),(122,943,3),(122,944,4),(122,945,5),(122,946,6),(122,947,8),(122,948,10),(122,949,11),(122,950,13),(122,951,14),(122,952,18),(122,952,26),(122,952,118),(122,953,19),(122,953,29),(122,953,122),(122,954,20),(122,954,30),(122,954,50),(122,954,78),(122,954,124),(122,955,21),(155,955,7),(122,956,23),(122,957,25),(122,958,32),(122,959,34),(122,959,69),(122,960,35),(122,960,70),(122,961,44),(157,961,35),(122,962,45),(122,963,47),(122,964,48),(122,965,49),(122,966,52),(122,967,53),(164,967,38),(122,968,54),(122,969,55),(122,970,57),(122,971,61),(122,972,64),(122,972,80),(122,972,100),(122,972,114),(122,972,119),(122,973,66),(122,973,75),(122,973,101),(122,974,68),(122,975,71),(122,976,74),(122,977,77),(122,978,82),(122,979,84),(122,980,87),(122,981,88),(122,982,90),(143,982,43),(143,982,47),(122,983,91),(164,983,86),(122,984,92),(122,984,96),(122,985,93),(122,986,94),(164,986,85),(122,987,95),(122,988,98),(122,988,117),(164,988,82),(122,989,105),(122,990,106),(122,991,107),(122,992,108),(122,993,109),(122,994,111),(122,995,113),(122,996,115),(122,997,121),(122,998,123),(122,999,126),(122,1000,127),(127,1001,0),(127,1002,1),(127,1003,2),(134,1004,0),(134,1005,1),(134,1006,2),(141,1007,22),(141,1007,57),(162,1007,9),(162,1007,24),(162,1007,38),(141,1008,0),(141,1009,1),(141,1010,6),(141,1010,15),(141,1010,36),(141,1011,9),(141,1012,10),(141,1013,18),(141,1014,30),(141,1015,31),(141,1016,39),(141,1017,40),(141,1018,41),(141,1019,43),(141,1020,44),(141,1021,45),(141,1022,49),(148,1023,0),(148,1024,1),(148,1025,2),(148,1026,3),(148,1026,14),(148,1027,4),(148,1027,15),(148,1028,5),(148,1028,16),(148,1029,6),(148,1029,17),(148,1030,7),(148,1030,18),(148,1031,8),(148,1031,19),(148,1032,9),(148,1032,20),(148,1033,10),(148,1033,21),(148,1034,11),(148,1035,12),(148,1036,13),(142,1037,0),(142,1038,1),(143,1038,27),(142,1039,2),(142,1039,7),(142,1040,4),(143,1040,10),(143,1040,40),(143,1040,84),(143,1040,93),(143,1040,104),(142,1041,5),(143,1041,11),(143,1041,85),(143,1041,105),(142,1042,6),(143,1042,6),(143,1042,8),(143,1042,32),(143,1042,38),(143,1042,64),(143,1042,67),(143,1042,82),(143,1042,91),(143,1042,94),(143,1043,0),(143,1043,12),(143,1043,89),(143,1044,5),(143,1044,34),(143,1044,65),(143,1044,69),(143,1044,96),(143,1045,7),(143,1045,9),(143,1045,33),(143,1045,39),(143,1045,68),(143,1045,83),(143,1045,92),(143,1045,95),(143,1046,16),(143,1047,17),(143,1048,18),(143,1048,36),(143,1049,21),(143,1050,23),(143,1051,25),(143,1052,26),(143,1053,28),(143,1054,29),(143,1055,30),(143,1056,31),(143,1057,35),(143,1058,44),(143,1058,49),(143,1058,52),(143,1058,55),(143,1058,58),(143,1059,45),(143,1060,60),(143,1060,70),(143,1060,78),(143,1061,72),(143,1061,99),(143,1062,74),(143,1062,102),(164,1062,22),(143,1063,81),(143,1064,86),(143,1065,101),(143,1066,107),(143,1067,112),(143,1068,113),(143,1069,114),(128,1070,0),(129,1070,11),(129,1070,33),(129,1070,90),(129,1070,98),(128,1071,2),(129,1071,12),(129,1071,99),(128,1072,3),(129,1072,13),(129,1072,100),(128,1073,4),(135,1073,6),(128,1074,10),(135,1074,12),(128,1075,11),(129,1075,54),(129,1075,83),(135,1075,13),(136,1075,61),(129,1076,4),(129,1077,5),(129,1078,6),(136,1078,11),(157,1078,41),(129,1079,15),(129,1080,16),(129,1081,21),(129,1082,32),(129,1083,42),(136,1083,33),(129,1084,43),(136,1084,34),(129,1085,45),(136,1085,36),(129,1086,46),(136,1086,37),(129,1087,80),(129,1088,81),(129,1089,82),(129,1090,103),(136,1090,103),(129,1091,108),(136,1091,108),(129,1092,112),(136,1092,112),(135,1093,2),(136,1093,6),(136,1093,20),(136,1093,48),(136,1093,90),(136,1093,99),(135,1094,3),(136,1094,7),(136,1094,21),(136,1094,49),(136,1094,91),(136,1094,100),(135,1095,4),(136,1095,8),(136,1095,22),(136,1095,50),(136,1095,92),(136,1095,101),(135,1096,9),(136,1096,1),(136,1096,28),(136,1096,39),(136,1096,56),(136,1096,74),(136,1096,83),(136,1096,96),(135,1097,10),(136,1097,2),(136,1097,29),(136,1097,40),(136,1097,57),(136,1097,75),(136,1097,84),(136,1097,97),(135,1098,11),(136,1098,3),(136,1098,30),(136,1098,41),(136,1098,58),(136,1098,76),(136,1098,85),(136,1098,98),(136,1099,4),(136,1100,9),(136,1101,10),(136,1102,12),(136,1103,14),(136,1103,59),(136,1104,15),(136,1105,43),(136,1106,44),(136,1106,53),(136,1107,52),(155,1108,0),(155,1109,1),(155,1110,3),(155,1111,4),(155,1112,5),(155,1112,10),(155,1113,6),(155,1114,12),(155,1115,13),(155,1116,15),(155,1116,25),(155,1117,16),(155,1117,26),(155,1118,20),(155,1118,30),(155,1119,22),(156,1120,0),(157,1120,13),(156,1121,1),(157,1121,6),(157,1121,17),(157,1121,26),(157,1121,95),(156,1122,2),(157,1122,27),(157,1122,96),(156,1123,3),(157,1123,93),(157,1123,99),(157,1124,0),(157,1124,18),(157,1124,105),(157,1125,1),(157,1125,19),(157,1126,2),(157,1127,3),(157,1128,4),(157,1129,5),(157,1130,8),(157,1131,9),(157,1132,14),(157,1132,50),(157,1133,16),(157,1134,20),(157,1135,21),(157,1136,22),(157,1137,23),(157,1138,24),(157,1138,47),(157,1138,54),(157,1138,100),(157,1139,25),(157,1140,28),(157,1141,29),(157,1142,31),(157,1142,68),(157,1142,79),(157,1143,32),(157,1144,33),(157,1145,36),(157,1146,39),(157,1147,44),(157,1148,45),(157,1148,89),(157,1149,48),(157,1150,49),(157,1151,52),(157,1151,81),(157,1152,53),(157,1153,56),(157,1154,64),(157,1155,71),(157,1156,72),(157,1157,73),(157,1158,75),(157,1158,82),(157,1159,78),(157,1160,83),(157,1161,87),(157,1162,88),(157,1163,91),(157,1163,112),(157,1164,94),(157,1165,97),(157,1166,98),(157,1167,101),(157,1168,103),(157,1169,107),(157,1170,109),(157,1171,110),(157,1172,111),(157,1173,113),(157,1174,114),(157,1175,115),(162,1176,0),(162,1177,1),(162,1178,2),(162,1179,10),(162,1179,25),(162,1180,11),(162,1180,26),(162,1181,15),(162,1182,16),(162,1183,30),(162,1184,31),(162,1185,32),(162,1186,36),(162,1187,40),(163,1188,1),(164,1188,89),(163,1189,2),(163,1190,3),(164,1190,12),(163,1191,4),(163,1192,5),(163,1193,6),(164,1193,109),(163,1194,8),(164,1194,9),(164,1194,43),(164,1194,105),(163,1195,9),(163,1196,10),(163,1197,12),(164,1197,7),(164,1198,0),(164,1199,3),(164,1200,4),(164,1201,6),(164,1202,11),(164,1203,14),(164,1204,16),(164,1205,19),(164,1206,23),(164,1207,24),(164,1208,25),(164,1208,71),(164,1209,27),(164,1209,41),(164,1210,28),(164,1210,42),(164,1211,29),(164,1212,32),(164,1213,34),(164,1213,48),(164,1214,35),(164,1215,40),(164,1215,50),(164,1216,44),(164,1217,47),(164,1218,49),(164,1219,52),(164,1220,56),(164,1221,57),(164,1222,58),(164,1223,59),(164,1224,61),(164,1225,62),(164,1226,63),(164,1227,64),(164,1228,67),(164,1229,68),(164,1230,70),(164,1231,72),(164,1232,73),(164,1233,75),(164,1234,76),(164,1235,77),(164,1236,78),(164,1237,79),(164,1238,83),(164,1239,87),(164,1240,90),(164,1241,91),(164,1242,92),(164,1243,93),(164,1244,94),(164,1245,95),(164,1246,96),(164,1247,98),(164,1248,100),(164,1249,101),(164,1250,104),(164,1251,107),(164,1252,110),(164,1253,111),(164,1254,113),(164,1255,114),(164,1256,116),(164,1257,117),(164,1258,118),(164,1259,119),(169,1260,0),(169,1261,1),(169,1262,3),(169,1262,11),(169,1262,18),(169,1263,4),(169,1263,12),(169,1263,19),(169,1264,9),(169,1265,10),(169,1266,16),(169,1267,17);
/*!40000 ALTER TABLE `submission_search_object_keywords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_search_objects`
--

DROP TABLE IF EXISTS `submission_search_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_search_objects` (
  `object_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `type` int(11) NOT NULL,
  `assoc_id` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`object_id`),
  KEY `submission_search_object_submission` (`submission_id`)
) ENGINE=InnoDB AUTO_INCREMENT=176 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_search_objects`
--

LOCK TABLES `submission_search_objects` WRITE;
/*!40000 ALTER TABLE `submission_search_objects` DISABLE KEYS */;
INSERT INTO `submission_search_objects` VALUES (1,2,1,0),(2,2,2,0),(3,2,4,0),(4,2,8,0),(5,2,16,0),(6,2,32,0),(7,2,64,0),(8,1,1,0),(9,1,2,0),(10,1,4,0),(11,1,8,0),(12,1,16,0),(13,1,32,0),(14,1,64,0),(15,5,1,0),(16,5,2,0),(17,5,4,0),(18,5,8,0),(19,5,16,0),(20,5,32,0),(21,5,64,0),(22,4,1,0),(23,4,2,0),(24,4,4,0),(25,4,8,0),(26,4,16,0),(27,4,32,0),(28,4,64,0),(29,3,1,0),(30,3,2,0),(31,3,4,0),(32,3,8,0),(33,3,16,0),(34,3,32,0),(35,3,64,0),(36,10,1,0),(37,10,2,0),(38,10,4,0),(39,10,8,0),(40,10,16,0),(41,10,32,0),(42,10,64,0),(43,7,1,0),(44,7,2,0),(45,7,4,0),(46,7,8,0),(47,7,16,0),(48,7,32,0),(49,7,64,0),(50,9,1,0),(51,9,2,0),(52,9,4,0),(53,9,8,0),(54,9,16,0),(55,9,32,0),(56,9,64,0),(57,8,1,0),(58,8,2,0),(59,8,4,0),(60,8,8,0),(61,8,16,0),(62,8,32,0),(63,8,64,0),(64,6,1,0),(65,6,2,0),(66,6,4,0),(67,6,8,0),(68,6,16,0),(69,6,32,0),(70,6,64,0),(71,13,1,0),(72,13,2,0),(73,13,4,0),(74,13,8,0),(75,13,16,0),(76,13,32,0),(77,13,64,0),(78,15,1,0),(79,15,2,0),(80,15,4,0),(81,15,8,0),(82,15,16,0),(83,15,32,0),(84,15,64,0),(85,14,1,0),(86,14,2,0),(87,14,4,0),(88,14,8,0),(89,14,16,0),(90,14,32,0),(91,14,64,0),(92,17,1,0),(93,17,2,0),(94,17,4,0),(95,17,8,0),(96,17,16,0),(97,17,32,0),(98,17,64,0),(99,16,1,0),(100,16,2,0),(101,16,4,0),(102,16,8,0),(103,16,16,0),(104,16,32,0),(105,16,64,0),(106,11,1,0),(107,11,2,0),(108,11,4,0),(109,11,8,0),(110,11,16,0),(111,11,32,0),(112,11,64,0),(113,19,1,0),(114,19,2,0),(115,19,4,0),(116,19,8,0),(117,19,16,0),(118,19,32,0),(119,19,64,0),(120,20,1,0),(121,20,2,0),(122,20,4,0),(123,20,8,0),(124,20,16,0),(125,20,32,0),(126,20,64,0),(127,22,1,0),(128,22,2,0),(129,22,4,0),(130,22,8,0),(131,22,16,0),(132,22,32,0),(133,22,64,0),(134,23,1,0),(135,23,2,0),(136,23,4,0),(137,23,8,0),(138,23,16,0),(139,23,32,0),(140,23,64,0),(141,18,1,0),(142,18,2,0),(143,18,4,0),(144,18,8,0),(145,18,16,0),(146,18,32,0),(147,18,64,0),(148,24,1,0),(149,24,2,0),(150,24,4,0),(151,24,8,0),(152,24,16,0),(153,24,32,0),(154,24,64,0),(155,28,1,0),(156,28,2,0),(157,28,4,0),(158,28,8,0),(159,28,16,0),(160,28,32,0),(161,28,64,0),(162,29,1,0),(163,29,2,0),(164,29,4,0),(165,29,8,0),(166,29,16,0),(167,29,32,0),(168,29,64,0),(169,33,1,0),(170,33,2,0),(171,33,4,0),(172,33,8,0),(173,33,16,0),(174,33,32,0),(175,33,64,0);
/*!40000 ALTER TABLE `submission_search_objects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_settings`
--

DROP TABLE IF EXISTS `submission_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_settings` (
  `submission_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `setting_value` text DEFAULT NULL,
  UNIQUE KEY `submission_settings_pkey` (`submission_id`,`locale`,`setting_name`),
  KEY `submission_settings_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_settings`
--

LOCK TABLES `submission_settings` WRITE;
/*!40000 ALTER TABLE `submission_settings` DISABLE KEYS */;
INSERT INTO `submission_settings` VALUES (1,'','projectID',''),(2,'','projectID',''),(3,'','projectID',''),(4,'','projectID',''),(5,'','projectID',''),(6,'','projectID',''),(7,'','projectID',''),(8,'','projectID',''),(9,'','projectID',''),(10,'','projectID',''),(11,'','projectID',''),(13,'','projectID',''),(14,'','projectID',''),(15,'','projectID',''),(16,'','projectID',''),(17,'','projectID',''),(18,'','projectID',''),(19,'','projectID',''),(20,'','projectID',''),(21,'','projectID',''),(22,'','projectID',''),(23,'','projectID',''),(24,'','projectID',''),(25,'','projectID',''),(26,'','projectID',''),(28,'','projectID',''),(29,'','projectID',''),(30,'','projectID',''),(32,'','projectID',''),(33,'','projectID',''),(36,'','projectID',''),(38,'','projectID',''),(40,'','projectID','');
/*!40000 ALTER TABLE `submission_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_supplementary_files`
--

DROP TABLE IF EXISTS `submission_supplementary_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_supplementary_files` (
  `file_id` bigint(20) NOT NULL,
  `revision` bigint(20) NOT NULL,
  PRIMARY KEY (`file_id`,`revision`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_supplementary_files`
--

LOCK TABLES `submission_supplementary_files` WRITE;
/*!40000 ALTER TABLE `submission_supplementary_files` DISABLE KEYS */;
INSERT INTO `submission_supplementary_files` VALUES (67,1),(68,1),(73,1),(74,1),(78,1),(79,1),(80,1),(81,1),(89,1),(90,1),(91,1),(92,1),(152,1),(163,1),(183,1),(186,1),(197,1),(198,1),(200,1);
/*!40000 ALTER TABLE `submission_supplementary_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `submission_tombstones`
--

DROP TABLE IF EXISTS `submission_tombstones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submission_tombstones` (
  `tombstone_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) NOT NULL,
  `date_deleted` datetime NOT NULL,
  `journal_id` bigint(20) NOT NULL,
  `section_id` bigint(20) 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 `submission_tombstones_journal_id` (`journal_id`),
  KEY `submission_tombstones_submission_id` (`submission_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submission_tombstones`
--

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

--
-- Table structure for table `submissions`
--

DROP TABLE IF EXISTS `submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `submissions` (
  `submission_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `date_submitted` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `submission_progress` tinyint(4) NOT NULL DEFAULT 1,
  `stage_id` bigint(20) NOT NULL DEFAULT 1,
  `current_publication_id` bigint(20) DEFAULT NULL,
  `date_last_activity` datetime DEFAULT NULL,
  `work_type` tinyint(4) DEFAULT 0,
  `locale` varchar(14) DEFAULT NULL,
  PRIMARY KEY (`submission_id`),
  KEY `submissions_context_id` (`context_id`),
  KEY `submissions_publication_id` (`submission_id`)
) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `submissions`
--

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

--
-- Table structure for table `subscription_type_settings`
--

DROP TABLE IF EXISTS `subscription_type_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscription_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 `subscription_type_settings_pkey` (`type_id`,`locale`,`setting_name`),
  KEY `subscription_type_settings_type_id` (`type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscription_type_settings`
--

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

--
-- Table structure for table `subscription_types`
--

DROP TABLE IF EXISTS `subscription_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscription_types` (
  `type_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `journal_id` bigint(20) NOT NULL,
  `cost` double NOT NULL,
  `currency_code_alpha` varchar(3) NOT NULL,
  `non_expiring` tinyint(4) NOT NULL DEFAULT 0,
  `duration` smallint(6) DEFAULT NULL,
  `format` smallint(6) NOT NULL,
  `institutional` tinyint(4) NOT NULL DEFAULT 0,
  `membership` tinyint(4) NOT NULL DEFAULT 0,
  `disable_public_display` tinyint(4) NOT NULL,
  `seq` double NOT NULL,
  PRIMARY KEY (`type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscription_types`
--

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

--
-- Table structure for table `subscriptions`
--

DROP TABLE IF EXISTS `subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscriptions` (
  `subscription_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `journal_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  `type_id` bigint(20) NOT NULL,
  `date_start` date DEFAULT NULL,
  `date_end` datetime DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `membership` varchar(40) DEFAULT NULL,
  `reference_number` varchar(40) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  PRIMARY KEY (`subscription_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscriptions`
--

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

--
-- Table structure for table `temporary_files`
--

DROP TABLE IF EXISTS `temporary_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `temporary_files` (
  `file_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `file_name` varchar(90) NOT NULL,
  `file_type` varchar(255) DEFAULT NULL,
  `file_size` bigint(20) NOT NULL,
  `original_file_name` varchar(127) DEFAULT NULL,
  `date_uploaded` datetime NOT NULL,
  PRIMARY KEY (`file_id`),
  KEY `temporary_files_user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `temporary_files`
--

LOCK TABLES `temporary_files` WRITE;
/*!40000 ALTER TABLE `temporary_files` DISABLE KEYS */;
INSERT INTO `temporary_files` VALUES (9,1,'tar.gzfNQ1N2','application/x-gzip',194418,'healthSciences-1.0.4.tar.gz','2019-03-23 09:54:21'),(10,1,'tar.gz8035cu','application/x-gzip',194418,'healthSciences.tar.gz','2019-03-23 09:54:58'),(11,1,'tar.gzy1VXAm','application/x-gzip',194418,'healthSciences.tar.gz','2019-03-23 10:36:52'),(12,1,'tar.gztIDPHB','application/x-gzip',194418,'healthSciences.tar.gz','2019-03-23 10:40:42'),(13,1,'gzHIJayO','application/x-gzip',194418,'healthSciences.gz','2019-03-23 10:41:18'),(16,1,'pngSGqOQ0','image/png',429165,'0001-1742398467.png','2019-04-14 21:27:41'),(17,1,'png6FPSQO','image/png',362852,'Tropical Health and Medical Research (1).png','2019-04-18 07:44:46'),(18,1,'pnghoOn7V','image/png',362852,'Tropical Health and Medical Research (1).png','2019-04-18 07:47:52'),(19,1,'pngyNAxmI','image/png',307482,'Tropical Health and Medical Research (2).png','2019-04-24 10:44:04'),(20,1,'png9CV5to','image/png',307482,'Tropical Health and Medical Research (2).png','2019-04-24 10:48:50'),(21,1,'pngAY9ppg','image/png',362852,'Tropical Health and Medical Research (1).png','2019-04-24 10:51:33'),(22,1,'pngSmuaMV','image/png',307482,'Tropical Health and Medical Research (2).png','2019-04-24 10:51:59'),(23,1,'pngUn6M8c','image/png',362852,'Tropical Health and Medical Research (1).png','2019-04-24 10:52:12'),(24,1,'pngzGvOXv','image/png',307482,'Tropical Health and Medical Research (2).png','2019-04-24 10:54:12'),(25,1,'zipgLnbzu','application/zip',9208,'ojs_copernicus_export_plugin-ojs3.zip','2020-05-11 10:32:10'),(26,1,'tar.gz9g1Zri','application/x-gzip',5404,'ojs_copernicus_export_plugin-ojs3.tar.gz','2020-05-12 19:22:41'),(27,1,'zipVHkfNb','application/zip',9208,'ojs_copernicus_export_plugin-ojs3.zip','2020-05-12 19:23:49'),(28,1,'tar.gzTaE4zr','application/x-gzip',13100,'copernicus.tar.gz','2020-05-12 19:25:37'),(29,1,'zipwaUim6','application/zip',8900,'ojs_copernicus_export_plugin-ojs3.zip','2020-05-12 19:33:42'),(30,1,'zipr0Llj3','application/zip',8900,'CopernicusExportPlugin.zip','2020-05-12 19:34:17'),(31,1,'zip2ajvMd','application/zip',8900,'CopernicusExportPlugin.zip','2020-05-12 19:34:38'),(32,1,'zipx6XHzE','application/zip',8648,'CopernicusExportPlugin.zip','2020-05-12 19:39:58'),(33,1,'tar.gzS9ETht','application/x-gzip',17849,'quickSubmit-ojs-3_1_1-0.tar.gz','2020-05-14 12:17:51'),(34,1,'png4matWh','image/png',307482,'cover thmr.png','2020-08-31 13:24:54'),(35,1,'pngEQzvSk','image/png',307482,'cover thmr.png','2020-08-31 13:26:45'),(36,1,'pngc4jd0C','image/png',307482,'cover thmr.png','2020-08-31 13:27:14');
/*!40000 ALTER TABLE `temporary_files` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `usage_stats_temporary_records`
--

DROP TABLE IF EXISTS `usage_stats_temporary_records`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `usage_stats_temporary_records` (
  `assoc_id` bigint(20) NOT NULL,
  `assoc_type` bigint(20) NOT NULL,
  `day` bigint(20) NOT NULL,
  `entry_time` bigint(20) NOT NULL,
  `metric` bigint(20) NOT NULL DEFAULT 1,
  `country_id` varchar(2) DEFAULT NULL,
  `region` varchar(2) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `load_id` varchar(255) NOT NULL,
  `file_type` tinyint(4) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `usage_stats_temporary_records`
--

LOCK TABLES `usage_stats_temporary_records` WRITE;
/*!40000 ALTER TABLE `usage_stats_temporary_records` DISABLE KEYS */;
INSERT INTO `usage_stats_temporary_records` VALUES (1,256,20210116,1610736181,1,NULL,NULL,NULL,'usage_events_20210116.log',0),(1,256,20210116,1610739027,1,NULL,NULL,NULL,'usage_events_20210116.log',0),(1,256,20210116,1610751389,1,NULL,NULL,NULL,'usage_events_20210116.log',0),(1,256,20210116,1610759965,1,NULL,NULL,NULL,'usage_events_20210116.log',0),(28,1048585,20210116,1610762795,1,NULL,NULL,NULL,'usage_events_20210116.log',0),(120,515,20210116,1610771748,1,NULL,NULL,NULL,'usage_events_20210116.log',2),(33,515,20210116,1610774327,1,NULL,NULL,NULL,'usage_events_20210116.log',2);
/*!40000 ALTER TABLE `usage_stats_temporary_records` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_group_settings`
--

DROP TABLE IF EXISTS `user_group_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_group_settings` (
  `user_group_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 `user_group_settings_pkey` (`user_group_id`,`locale`,`setting_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_group_settings`
--

LOCK TABLES `user_group_settings` WRITE;
/*!40000 ALTER TABLE `user_group_settings` DISABLE KEYS */;
INSERT INTO `user_group_settings` VALUES (1,'en_US','name','Site Admin','string'),(2,'','abbrevLocaleKey','default.groups.abbrev.manager','string'),(2,'','nameLocaleKey','default.groups.name.manager','string'),(2,'','recommendOnly','0','bool'),(2,'en_US','abbrev','JM','string'),(2,'en_US','name','Journal manager','string'),(3,'','abbrevLocaleKey','default.groups.abbrev.editor','string'),(3,'','nameLocaleKey','default.groups.name.editor','string'),(3,'','recommendOnly','0','bool'),(3,'en_US','abbrev','JE','string'),(3,'en_US','name','Journal editor','string'),(4,'','abbrevLocaleKey','default.groups.abbrev.productionEditor','string'),(4,'','nameLocaleKey','default.groups.name.productionEditor','string'),(4,'en_US','abbrev','ProdE','string'),(4,'en_US','name','Production editor','string'),(5,'','abbrevLocaleKey','default.groups.abbrev.sectionEditor','string'),(5,'','nameLocaleKey','default.groups.name.sectionEditor','string'),(5,'','recommendOnly','0','bool'),(5,'en_US','abbrev','SecE','string'),(5,'en_US','name','Section editor','string'),(6,'','abbrevLocaleKey','default.groups.abbrev.guestEditor','string'),(6,'','nameLocaleKey','default.groups.name.guestEditor','string'),(6,'','recommendOnly','0','bool'),(6,'en_US','abbrev','GE','string'),(6,'en_US','name','Guest editor','string'),(7,'','abbrevLocaleKey','default.groups.abbrev.copyeditor','string'),(7,'','nameLocaleKey','default.groups.name.copyeditor','string'),(7,'en_US','abbrev','CE','string'),(7,'en_US','name','Copyeditor','string'),(8,'','abbrevLocaleKey','default.groups.abbrev.designer','string'),(8,'','nameLocaleKey','default.groups.name.designer','string'),(8,'en_US','abbrev','Design','string'),(8,'en_US','name','Designer','string'),(9,'','abbrevLocaleKey','default.groups.abbrev.funding','string'),(9,'','nameLocaleKey','default.groups.name.funding','string'),(9,'en_US','abbrev','FC','string'),(9,'en_US','name','Funding coordinator','string'),(10,'','abbrevLocaleKey','default.groups.abbrev.indexer','string'),(10,'','nameLocaleKey','default.groups.name.indexer','string'),(10,'en_US','abbrev','IND','string'),(10,'en_US','name','Indexer','string'),(11,'','abbrevLocaleKey','default.groups.abbrev.layoutEditor','string'),(11,'','nameLocaleKey','default.groups.name.layoutEditor','string'),(11,'en_US','abbrev','LE','string'),(11,'en_US','name','Layout Editor','string'),(12,'','abbrevLocaleKey','default.groups.abbrev.marketing','string'),(12,'','nameLocaleKey','default.groups.name.marketing','string'),(12,'en_US','abbrev','MS','string'),(12,'en_US','name','Marketing and sales coordinator','string'),(13,'','abbrevLocaleKey','default.groups.abbrev.proofreader','string'),(13,'','nameLocaleKey','default.groups.name.proofreader','string'),(13,'en_US','abbrev','PR','string'),(13,'en_US','name','Proofreader','string'),(14,'','abbrevLocaleKey','default.groups.abbrev.author','string'),(14,'','nameLocaleKey','default.groups.name.author','string'),(14,'','recommendOnly','0','bool'),(14,'en_US','abbrev','AU','string'),(14,'en_US','name','Author','string'),(15,'','abbrevLocaleKey','default.groups.abbrev.translator','string'),(15,'','nameLocaleKey','default.groups.name.translator','string'),(15,'en_US','abbrev','Trans','string'),(15,'en_US','name','Translator','string'),(16,'','abbrevLocaleKey','default.groups.abbrev.externalReviewer','string'),(16,'','nameLocaleKey','default.groups.name.externalReviewer','string'),(16,'en_US','abbrev','R','string'),(16,'en_US','name','Reviewer','string'),(17,'','abbrevLocaleKey','default.groups.abbrev.reader','string'),(17,'','nameLocaleKey','default.groups.name.reader','string'),(17,'en_US','abbrev','Read','string'),(17,'en_US','name','Reader','string'),(18,'','abbrevLocaleKey','default.groups.abbrev.subscriptionManager','string'),(18,'','nameLocaleKey','default.groups.name.subscriptionManager','string'),(18,'en_US','abbrev','SubM','string'),(18,'en_US','name','Subscription Manager','string');
/*!40000 ALTER TABLE `user_group_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_group_stage`
--

DROP TABLE IF EXISTS `user_group_stage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_group_stage` (
  `context_id` bigint(20) NOT NULL,
  `user_group_id` bigint(20) NOT NULL,
  `stage_id` bigint(20) NOT NULL,
  UNIQUE KEY `user_group_stage_pkey` (`context_id`,`user_group_id`,`stage_id`),
  KEY `user_group_stage_context_id` (`context_id`),
  KEY `user_group_stage_user_group_id` (`user_group_id`),
  KEY `user_group_stage_stage_id` (`stage_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_group_stage`
--

LOCK TABLES `user_group_stage` WRITE;
/*!40000 ALTER TABLE `user_group_stage` DISABLE KEYS */;
INSERT INTO `user_group_stage` VALUES (1,2,1),(1,2,3),(1,2,4),(1,2,5),(1,3,1),(1,3,3),(1,3,4),(1,3,5),(1,4,4),(1,4,5),(1,5,4),(1,5,5),(1,6,4),(1,6,5),(1,7,1),(1,7,3),(1,7,4),(1,7,5),(1,8,5),(1,9,1),(1,9,3),(1,10,5),(1,11,5),(1,12,4),(1,13,5),(1,14,1),(1,14,3),(1,14,4),(1,14,5),(1,15,1),(1,15,3),(1,15,4),(1,15,5),(1,16,3);
/*!40000 ALTER TABLE `user_group_stage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_groups`
--

DROP TABLE IF EXISTS `user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_groups` (
  `user_group_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `context_id` bigint(20) NOT NULL,
  `role_id` bigint(20) NOT NULL,
  `is_default` tinyint(4) NOT NULL DEFAULT 0,
  `show_title` tinyint(4) NOT NULL DEFAULT 1,
  `permit_self_registration` tinyint(4) NOT NULL DEFAULT 0,
  `permit_metadata_edit` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`user_group_id`),
  KEY `user_groups_user_group_id` (`user_group_id`),
  KEY `user_groups_context_id` (`context_id`),
  KEY `user_groups_role_id` (`role_id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_groups`
--

LOCK TABLES `user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
INSERT INTO `user_groups` VALUES (1,0,1,1,0,0,0),(2,1,16,1,0,0,1),(3,1,16,1,0,0,1),(4,1,16,1,0,0,1),(5,1,17,1,0,0,0),(6,1,17,1,0,0,0),(7,1,4097,1,0,0,0),(8,1,4097,1,0,0,0),(9,1,4097,1,0,0,0),(10,1,4097,1,0,0,0),(11,1,4097,1,0,0,0),(12,1,4097,1,0,0,0),(13,1,4097,1,0,0,0),(14,1,65536,1,0,1,0),(15,1,65536,1,0,0,0),(16,1,4096,1,0,1,0),(17,1,1048576,1,0,1,0),(18,1,2097152,1,0,0,0);
/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_interests`
--

DROP TABLE IF EXISTS `user_interests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_interests` (
  `user_id` bigint(20) NOT NULL,
  `controlled_vocab_entry_id` bigint(20) NOT NULL,
  UNIQUE KEY `u_e_pkey` (`user_id`,`controlled_vocab_entry_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_interests`
--

LOCK TABLES `user_interests` WRITE;
/*!40000 ALTER TABLE `user_interests` DISABLE KEYS */;
INSERT INTO `user_interests` VALUES (25,54),(27,57),(28,58),(38,78),(43,89),(47,101),(57,110),(58,112),(58,113),(58,114),(58,115),(58,116),(67,128),(67,129),(70,130),(70,131);
/*!40000 ALTER TABLE `user_interests` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_settings`
--

DROP TABLE IF EXISTS `user_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_settings` (
  `user_id` bigint(20) NOT NULL,
  `locale` varchar(14) NOT NULL DEFAULT '',
  `setting_name` varchar(255) NOT NULL,
  `assoc_type` bigint(20) DEFAULT 0,
  `assoc_id` bigint(20) DEFAULT 0,
  `setting_value` text DEFAULT NULL,
  `setting_type` varchar(6) NOT NULL,
  UNIQUE KEY `user_settings_pkey` (`user_id`,`locale`,`setting_name`,`assoc_type`,`assoc_id`),
  KEY `user_settings_user_id` (`user_id`),
  KEY `user_settings_locale_setting_name_index` (`setting_name`,`locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_settings`
--

LOCK TABLES `user_settings` WRITE;
/*!40000 ALTER TABLE `user_settings` DISABLE KEYS */;
INSERT INTO `user_settings` VALUES (2,'en_US','affiliation',NULL,NULL,'analis','string'),(2,'','orcid',NULL,NULL,'','string'),(3,'en_US','affiliation',NULL,NULL,'poltekkes','string'),(3,'','orcid',NULL,NULL,'','string'),(4,'en_US','affiliation',NULL,NULL,'poltek','string'),(4,'','orcid',NULL,NULL,'','string'),(1,'en_US','biography',NULL,NULL,'','string'),(1,'en_US','signature',NULL,NULL,'','string'),(1,'en_US','affiliation',NULL,NULL,'','string'),(1,'','orcid',NULL,NULL,'','string'),(5,'en_US','biography',NULL,NULL,'','string'),(5,'en_US','signature',NULL,NULL,'','string'),(5,'en_US','affiliation',NULL,NULL,'','string'),(5,'','orcid',NULL,NULL,'','string'),(6,'en_US','biography',NULL,NULL,'','string'),(6,'en_US','signature',NULL,NULL,'','string'),(6,'en_US','affiliation',NULL,NULL,'','string'),(6,'','orcid',NULL,NULL,'','string'),(7,'en_US','affiliation',NULL,NULL,'analis','string'),(7,'','orcid',NULL,NULL,'','string'),(8,'en_US','biography',NULL,NULL,'','string'),(8,'en_US','signature',NULL,NULL,'','string'),(8,'en_US','affiliation',NULL,NULL,'','string'),(8,'','orcid',NULL,NULL,'','string'),(9,'en_US','affiliation',NULL,NULL,'poltekkes kemenkes banjarmasin','string'),(9,'','orcid',NULL,NULL,'','string'),(10,'en_US','affiliation',NULL,NULL,'poltekkes kemenkes banjarmasin','string'),(10,'','orcid',NULL,NULL,'','string'),(11,'en_US','biography',NULL,NULL,'','string'),(11,'en_US','signature',NULL,NULL,'','string'),(11,'en_US','affiliation',NULL,NULL,'','string'),(11,'','orcid',NULL,NULL,'','string'),(12,'en_US','biography',NULL,NULL,'','string'),(12,'en_US','signature',NULL,NULL,'','string'),(12,'en_US','affiliation',NULL,NULL,'','string'),(12,'','orcid',NULL,NULL,'','string'),(13,'en_US','biography',NULL,NULL,'','string'),(13,'en_US','signature',NULL,NULL,'','string'),(13,'en_US','affiliation',NULL,NULL,'','string'),(13,'','orcid',NULL,NULL,'','string'),(14,'en_US','biography',NULL,NULL,'','string'),(14,'en_US','signature',NULL,NULL,'','string'),(14,'en_US','affiliation',NULL,NULL,'','string'),(14,'','orcid',NULL,NULL,'','string'),(15,'en_US','biography',NULL,NULL,'','string'),(15,'en_US','signature',NULL,NULL,'','string'),(15,'en_US','affiliation',NULL,NULL,'','string'),(15,'','orcid',NULL,NULL,'','string'),(16,'en_US','biography',NULL,NULL,'','string'),(16,'en_US','signature',NULL,NULL,'','string'),(16,'en_US','affiliation',NULL,NULL,'','string'),(16,'','orcid',NULL,NULL,'','string'),(17,'en_US','biography',NULL,NULL,'','string'),(17,'en_US','signature',NULL,NULL,'','string'),(17,'en_US','affiliation',NULL,NULL,'','string'),(17,'','orcid',NULL,NULL,'','string'),(18,'en_US','biography',NULL,NULL,'','string'),(18,'en_US','signature',NULL,NULL,'','string'),(18,'en_US','affiliation',NULL,NULL,'','string'),(18,'','orcid',NULL,NULL,'','string'),(19,'en_US','affiliation',NULL,NULL,'poltekkes kemenkes banjarmasin','string'),(19,'','orcid',NULL,NULL,'','string'),(20,'en_US','affiliation',NULL,NULL,'Kocaeli Derince Education and Research Hospital Department of Pediatric Surgery','string'),(20,'','orcid',NULL,NULL,'','string'),(21,'en_US','affiliation',NULL,NULL,'poltekkes kemenkes banjarmasin','string'),(21,'','orcid',NULL,NULL,'','string'),(20,'en_US','biography',NULL,NULL,'','string'),(20,'en_US','signature',NULL,NULL,'','string'),(22,'en_US','affiliation',NULL,NULL,'POLITEKNIK UNGGULAN KALIMATAN','string'),(22,'','orcid',NULL,NULL,'','string'),(23,'en_US','affiliation',NULL,NULL,'Kocaeli Derince Education and Research Hospital','string'),(23,'','orcid',NULL,NULL,'','string'),(24,'en_US','affiliation',NULL,NULL,'Lampung University','string'),(24,'','orcid',NULL,NULL,'','string'),(25,'en_US','affiliation',NULL,NULL,'DR','string'),(25,'','orcid',NULL,NULL,'','string'),(26,'en_US','affiliation',NULL,NULL,'Eskisehir Osmangazi University Hospital, Department of Pediatric Neurology','string'),(26,'','orcid',NULL,NULL,'','string'),(27,'en_US','affiliation',NULL,NULL,'MD','string'),(27,'','orcid',NULL,NULL,'','string'),(28,'en_US','affiliation',NULL,NULL,'Konya Training and Research Hospital','string'),(28,'','orcid',NULL,NULL,'','string'),(25,'en_US','biography',NULL,NULL,'','string'),(25,'en_US','signature',NULL,NULL,'','string'),(29,'en_US','biography',NULL,NULL,'','string'),(29,'en_US','signature',NULL,NULL,'','string'),(29,'en_US','affiliation',NULL,NULL,'','string'),(29,'','orcid',NULL,NULL,'','string'),(30,'en_US','affiliation',NULL,NULL,'','string'),(31,'en_US','affiliation',NULL,NULL,'','string'),(32,'en_US','affiliation',NULL,NULL,'','string'),(33,'en_US','affiliation',NULL,NULL,'poltekkes kemenkes Banjarmasin','string'),(33,'','orcid',NULL,NULL,'','string'),(34,'en_US','affiliation',NULL,NULL,'poltekkes kemenkes Banjarmasin','string'),(34,'','orcid',NULL,NULL,'','string'),(35,'en_US','affiliation',NULL,NULL,'Türkan','string'),(35,'','orcid',NULL,NULL,'','string'),(36,'en_US','biography',NULL,NULL,'','string'),(36,'en_US','signature',NULL,NULL,'','string'),(36,'en_US','affiliation',NULL,NULL,'','string'),(36,'','orcid',NULL,NULL,'','string'),(37,'en_US','affiliation',NULL,NULL,'istanbul research and education hospital','string'),(37,'','orcid',NULL,NULL,'','string'),(38,'en_US','affiliation',NULL,NULL,'OKMEYDANI TRAINING AND RESEARCH HOSPITAL','string'),(38,'','orcid',NULL,NULL,'','string'),(39,'en_US','biography',NULL,NULL,'','string'),(39,'en_US','signature',NULL,NULL,'','string'),(39,'en_US','affiliation',NULL,NULL,'','string'),(39,'','orcid',NULL,NULL,'','string'),(40,'en_US','affiliation',NULL,NULL,'University of Nigeria Teaching Hospital, Ituku/Ozalla,Enugu','string'),(40,'','orcid',NULL,NULL,'','string'),(40,'en_US','biography',NULL,NULL,'','string'),(40,'en_US','signature',NULL,NULL,'','string'),(41,'en_US','biography',NULL,NULL,'','string'),(41,'en_US','signature',NULL,NULL,'','string'),(41,'en_US','affiliation',NULL,NULL,'','string'),(41,'','orcid',NULL,NULL,'','string'),(42,'en_US','affiliation',NULL,NULL,'poltekkes kemenkes banjarmasin','string'),(42,'','orcid',NULL,NULL,'','string'),(43,'en_US','affiliation',NULL,NULL,'Eos Infectologia','string'),(43,'','orcid',NULL,NULL,'','string'),(44,'en_US','affiliation',NULL,NULL,'NM','string'),(45,'en_US','biography',NULL,NULL,'','string'),(45,'en_US','signature',NULL,NULL,'','string'),(45,'en_US','affiliation',NULL,NULL,'','string'),(45,'','orcid',NULL,NULL,'','string'),(46,'en_US','affiliation',NULL,NULL,'mahasiswa','string'),(47,'en_US','affiliation',NULL,NULL,'INASGO','string'),(48,'en_US','biography',NULL,NULL,'','string'),(48,'en_US','signature',NULL,NULL,'','string'),(48,'en_US','affiliation',NULL,NULL,'','string'),(48,'','orcid',NULL,NULL,'','string'),(49,'en_US','biography',NULL,NULL,'','string'),(49,'en_US','signature',NULL,NULL,'','string'),(49,'en_US','affiliation',NULL,NULL,'','string'),(49,'','orcid',NULL,NULL,'','string'),(50,'en_US','biography',NULL,NULL,'','string'),(50,'en_US','signature',NULL,NULL,'','string'),(50,'en_US','affiliation',NULL,NULL,'','string'),(50,'','orcid',NULL,NULL,'','string'),(51,'en_US','affiliation',NULL,NULL,'Poltekkes Kemenkes Banjarmasin Indonesia','string'),(51,'','orcid',NULL,NULL,'','string'),(52,'en_US','affiliation',NULL,NULL,'drdeniz','string'),(52,'','orcid',NULL,NULL,'','string'),(53,'en_US','affiliation',NULL,NULL,'Carnegie Mellon','string'),(53,'','orcid',NULL,NULL,'','string'),(54,'en_US','affiliation',NULL,NULL,'AAO','string'),(54,'','orcid',NULL,NULL,'','string'),(55,'en_US','biography',NULL,NULL,'','string'),(55,'en_US','signature',NULL,NULL,'','string'),(55,'en_US','affiliation',NULL,NULL,'','string'),(55,'','orcid',NULL,NULL,'','string'),(56,'en_US','affiliation',NULL,NULL,'Sakarya University Training and Research Hospital','string'),(56,'','orcid',NULL,NULL,'','string'),(57,'en_US','affiliation',NULL,NULL,'Batman Maternity and Child Health Hospital','string'),(57,'','orcid',NULL,NULL,'','string'),(58,'en_US','affiliation',NULL,NULL,'Cross River University of Technology, Nigeria','string'),(58,'','orcid',NULL,NULL,'','string'),(59,'en_US','affiliation',NULL,NULL,'ministry  of health','string'),(59,'','orcid',NULL,NULL,'','string'),(60,'en_US','affiliation',NULL,NULL,'McMaster University','string'),(60,'','orcid',NULL,NULL,'','string'),(61,'en_US','affiliation',NULL,NULL,'azahfmhajz','string'),(61,'','orcid',NULL,NULL,'','string'),(62,'en_US','affiliation',NULL,NULL,'Duke University','string'),(62,'','orcid',NULL,NULL,'','string'),(63,'en_US','affiliation',NULL,NULL,'Universiti Sains Malaysia','string'),(63,'','orcid',NULL,NULL,'','string'),(64,'en_US','affiliation',NULL,NULL,'Granbury High School','string'),(64,'','orcid',NULL,NULL,'','string'),(65,'en_US','affiliation',NULL,NULL,'Poltekkes Kemenkes Banjarmasin Indonesia','string'),(65,'','orcid',NULL,NULL,'','string'),(56,'en_US','signature',NULL,NULL,'','string'),(66,'en_US','affiliation',NULL,NULL,'Istanbul Başakşehir Çam and Sakura City Hospital','string'),(66,'','orcid',NULL,NULL,'','string'),(67,'en_US','affiliation',NULL,NULL,'poltek bjm','string'),(67,'','orcid',NULL,NULL,'','string'),(68,'en_US','affiliation',NULL,NULL,'TSPR','string'),(68,'','orcid',NULL,NULL,'','string'),(69,'en_US','affiliation',NULL,NULL,'Lake Land College','string'),(69,'','orcid',NULL,NULL,'','string'),(1,'en_US','givenName',NULL,NULL,'admin','string'),(2,'en_US','givenName',NULL,NULL,'putri','string'),(4,'en_US','givenName',NULL,NULL,'tes2','string'),(5,'en_US','givenName',NULL,NULL,'Ratih Dewi','string'),(6,'en_US','givenName',NULL,NULL,'anny','string'),(7,'en_US','givenName',NULL,NULL,'yuli','string'),(8,'en_US','givenName',NULL,NULL,'Dinna','string'),(9,'en_US','givenName',NULL,NULL,'nurul','string'),(10,'en_US','givenName',NULL,NULL,'ayu','string'),(11,'en_US','givenName',NULL,NULL,'Maria','string'),(12,'en_US','givenName',NULL,NULL,'Fetus Abiose','string'),(13,'en_US','givenName',NULL,NULL,'M. Ibraar','string'),(14,'en_US','givenName',NULL,NULL,'Gita Indah','string'),(15,'en_US','givenName',NULL,NULL,'Emalia','string'),(16,'en_US','givenName',NULL,NULL,'Jihan Rahma','string'),(17,'en_US','givenName',NULL,NULL,'Nadiya Uswatun','string'),(18,'en_US','givenName',NULL,NULL,'Yulia Tri','string'),(19,'en_US','givenName',NULL,NULL,'siti','string'),(20,'en_US','givenName',NULL,NULL,'Yusuf Atakan','string'),(21,'en_US','givenName',NULL,NULL,'ayufahani','string'),(22,'en_US','givenName',NULL,NULL,'galih','string'),(23,'en_US','givenName',NULL,NULL,'YUSUF ATAKAN','string'),(24,'en_US','givenName',NULL,NULL,'Isnamurti','string'),(25,'en_US','givenName',NULL,NULL,'Gunes','string'),(26,'en_US','givenName',NULL,NULL,'ozan','string'),(27,'en_US','givenName',NULL,NULL,'kivanc','string'),(28,'en_US','givenName',NULL,NULL,'Yasin','string'),(29,'en_US','givenName',NULL,NULL,'Administrator','string'),(30,'en_US','givenName',NULL,NULL,'Mehmet','string'),(31,'en_US','givenName',NULL,NULL,'Sevgi','string'),(32,'en_US','givenName',NULL,NULL,'Sevgi','string'),(33,'en_US','givenName',NULL,NULL,'haris','string'),(34,'en_US','givenName',NULL,NULL,'novina','string'),(35,'en_US','givenName',NULL,NULL,'Türkan','string'),(36,'en_US','givenName',NULL,NULL,'Kemal','string'),(37,'en_US','givenName',NULL,NULL,'savas','string'),(38,'en_US','givenName',NULL,NULL,'HASAN','string'),(39,'en_US','givenName',NULL,NULL,'Tijen','string'),(40,'en_US','givenName',NULL,NULL,'Benedict Onyeka','string'),(41,'en_US','givenName',NULL,NULL,'Christian Chukwukere','string'),(42,'en_US','givenName',NULL,NULL,'Agnina Listya','string'),(43,'en_US','givenName',NULL,NULL,'Renato Ferneda de','string'),(44,'en_US','givenName',NULL,NULL,'Dolores','string'),(45,'en_US','givenName',NULL,NULL,'editor','string'),(46,'en_US','givenName',NULL,NULL,'jesslyn','string'),(47,'en_US','givenName',NULL,NULL,'Sarah','string'),(48,'en_US','givenName',NULL,NULL,'Nudia','string'),(49,'en_US','givenName',NULL,NULL,'Pebri Fitria','string'),(50,'en_US','givenName',NULL,NULL,'Dwi Intan Purnama','string'),(51,'en_US','givenName',NULL,NULL,'fadia','string'),(52,'en_US','givenName',NULL,NULL,'Deniz','string'),(53,'en_US','givenName',NULL,NULL,'tahjcbvsxestarma tahjcbvsxestarma','string'),(54,'en_US','givenName',NULL,NULL,'Titap','string'),(55,'en_US','givenName',NULL,NULL,'Zübeyir','string'),(56,'en_US','givenName',NULL,NULL,'Ensar','string'),(57,'en_US','givenName',NULL,NULL,'Erhan','string'),(58,'en_US','givenName',NULL,NULL,'Ubi Essien','string'),(59,'en_US','givenName',NULL,NULL,'sahar ali','string'),(60,'en_US','givenName',NULL,NULL,'mitunscut mitunscut','string'),(61,'en_US','givenName',NULL,NULL,'James Kay','string'),(62,'en_US','givenName',NULL,NULL,'woobub woobub','string'),(63,'en_US','givenName',NULL,NULL,'Muhammad Izzuddin','string'),(64,'en_US','givenName',NULL,NULL,'mamaligadoc mamaligadoc','string'),(65,'en_US','givenName',NULL,NULL,'Vonny Khresna','string'),(66,'en_US','givenName',NULL,NULL,'Gizem Berfin','string'),(67,'en_US','givenName',NULL,NULL,'tes123 tes','string'),(68,'en_US','givenName',NULL,NULL,'wazzchono wazzchono','string'),(69,'en_US','givenName',NULL,NULL,'spiderchono spiderchono','string'),(1,'en_US','familyName',NULL,NULL,'admin','string'),(2,'en_US','familyName',NULL,NULL,'mustika','string'),(4,'en_US','familyName',NULL,NULL,'tes3','string'),(5,'en_US','familyName',NULL,NULL,'Dwiyanti','string'),(6,'en_US','familyName',NULL,NULL,'Thuraidah','string'),(7,'en_US','familyName',NULL,NULL,'susanti','string'),(8,'en_US','familyName',NULL,NULL,'Rakhmina','string'),(9,'en_US','familyName',NULL,NULL,'huda','string'),(10,'en_US','familyName',NULL,NULL,'sutiany','string'),(11,'en_US','familyName',NULL,NULL,'Tuntun','string'),(12,'en_US','familyName',NULL,NULL,'Olajubu','string'),(13,'en_US','familyName',NULL,NULL,'Ayatullah','string'),(14,'en_US','familyName',NULL,NULL,'Febriani','string'),(15,'en_US','familyName',NULL,NULL,'Kubarti','string'),(16,'en_US','familyName',NULL,NULL,'Naily','string'),(17,'en_US','familyName',NULL,NULL,'Hasanah','string'),(18,'en_US','familyName',NULL,NULL,'Andini','string'),(19,'en_US','familyName',NULL,NULL,'mahmudah','string'),(20,'en_US','familyName',NULL,NULL,'Baltrak','string'),(21,'en_US','familyName',NULL,NULL,'ayufahani','string'),(22,'en_US','familyName',NULL,NULL,'persadha','string'),(23,'en_US','familyName',NULL,NULL,'BALTRAK','string'),(24,'en_US','familyName',NULL,NULL,'Ciptaningrum','string'),(25,'en_US','familyName',NULL,NULL,'Bolatli','string'),(26,'en_US','familyName',NULL,NULL,'koçak','string'),(27,'en_US','familyName',NULL,NULL,'atilgan','string'),(28,'en_US','familyName',NULL,NULL,'Tire','string'),(29,'en_US','familyName',NULL,NULL,'Administrator','string'),(30,'en_US','familyName',NULL,NULL,'Sargın','string'),(31,'en_US','familyName',NULL,NULL,'Gunes','string'),(32,'en_US','familyName',NULL,NULL,'Yimenicioglu','string'),(33,'en_US','familyName',NULL,NULL,'nurdin','string'),(34,'en_US','familyName',NULL,NULL,'kusumawardhani','string'),(35,'en_US','familyName',NULL,NULL,'GEÇER','string'),(36,'en_US','familyName',NULL,NULL,'Atasayan','string'),(37,'en_US','familyName',NULL,NULL,'karatas','string'),(38,'en_US','familyName',NULL,NULL,'DURSUN','string'),(39,'en_US','familyName',NULL,NULL,'Yesim','string'),(40,'en_US','familyName',NULL,NULL,'Edelu','string'),(41,'en_US','familyName',NULL,NULL,'Ogoke','string'),(42,'en_US','familyName',NULL,NULL,'Anggraini','string'),(43,'en_US','familyName',NULL,NULL,'Souza','string'),(44,'en_US','familyName',NULL,NULL,'Fitchett','string'),(45,'en_US','familyName',NULL,NULL,'editor','string'),(46,'en_US','familyName',NULL,NULL,'jelena','string'),(47,'en_US','familyName',NULL,NULL,'Dina','string'),(48,'en_US','familyName',NULL,NULL,'Kurniati','string'),(49,'en_US','familyName',NULL,NULL,'Lestari','string'),(50,'en_US','familyName',NULL,NULL,'Sari','string'),(51,'en_US','familyName',NULL,NULL,'fadia','string'),(52,'en_US','familyName',NULL,NULL,'İncaman','string'),(53,'en_US','familyName',NULL,NULL,'vbyeifestarmaJU','string'),(54,'en_US','familyName',NULL,NULL,'Yazicioglu','string'),(55,'en_US','familyName',NULL,NULL,'Cebeci','string'),(56,'en_US','familyName',NULL,NULL,'Durmuş','string'),(57,'en_US','familyName',NULL,NULL,'Okuyan','string'),(58,'en_US','familyName',NULL,NULL,'Isaac','string'),(59,'en_US','familyName',NULL,NULL,'sari','string'),(60,'en_US','familyName',NULL,NULL,'mitunscutQH','string'),(61,'en_US','familyName',NULL,NULL,'Smith','string'),(62,'en_US','familyName',NULL,NULL,'woobubQY','string'),(63,'en_US','familyName',NULL,NULL,'Hamzan','string'),(64,'en_US','familyName',NULL,NULL,'mamaligadocCG','string'),(65,'en_US','familyName',NULL,NULL,'Dewi','string'),(66,'en_US','familyName',NULL,NULL,'Uluutku','string'),(67,'en_US','familyName',NULL,NULL,'123','string'),(68,'en_US','familyName',NULL,NULL,'wazzchonoYP','string'),(69,'en_US','familyName',NULL,NULL,'spiderchonoJK','string'),(1,'en_US','biography',0,0,'','string'),(1,'en_US','signature',0,0,'','string'),(1,'en_US','affiliation',0,0,'','string'),(1,'en_US','givenName',0,0,'admin','string'),(1,'en_US','familyName',0,0,'admin','string'),(1,'','orcid',0,0,'','string'),(70,'en_US','affiliation',0,0,'Monmouth University','string'),(70,'en_US','givenName',0,0,'sellchono','string'),(70,'en_US','familyName',0,0,'sellchono','string'),(70,'','orcid',0,0,'','string');
/*!40000 ALTER TABLE `user_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `user_user_groups`
--

DROP TABLE IF EXISTS `user_user_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_user_groups` (
  `user_group_id` bigint(20) NOT NULL,
  `user_id` bigint(20) NOT NULL,
  UNIQUE KEY `user_user_groups_pkey` (`user_group_id`,`user_id`),
  KEY `user_user_groups_user_group_id` (`user_group_id`),
  KEY `user_user_groups_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `user_user_groups`
--

LOCK TABLES `user_user_groups` WRITE;
/*!40000 ALTER TABLE `user_user_groups` DISABLE KEYS */;
INSERT INTO `user_user_groups` VALUES (1,1),(2,1),(2,5),(2,29),(3,1),(3,5),(3,11),(3,12),(3,13),(3,14),(3,15),(3,16),(3,20),(3,29),(3,45),(4,1),(4,5),(4,29),(5,1),(5,5),(5,8),(5,14),(5,15),(5,16),(5,20),(7,1),(7,5),(7,29),(7,48),(7,49),(7,50),(8,5),(14,1),(14,2),(14,5),(14,6),(14,7),(14,9),(14,10),(14,19),(14,20),(14,21),(14,23),(14,24),(14,25),(14,26),(14,28),(14,29),(14,33),(14,34),(14,35),(14,37),(14,38),(14,40),(14,42),(14,43),(14,51),(14,52),(14,56),(14,57),(14,58),(14,59),(14,63),(14,65),(14,66),(14,67),(16,1),(16,5),(16,6),(16,7),(16,9),(16,10),(16,12),(16,15),(16,16),(16,17),(16,18),(16,19),(16,20),(16,21),(16,23),(16,25),(16,27),(16,28),(16,29),(16,30),(16,31),(16,32),(16,33),(16,34),(16,35),(16,36),(16,37),(16,38),(16,39),(16,41),(16,42),(16,43),(16,51),(16,55),(16,57),(16,58),(16,59),(16,61),(16,65),(16,66),(16,67),(17,1),(17,2),(17,22),(17,24),(17,25),(17,26),(17,46),(17,47),(17,52),(17,53),(17,54),(17,56),(17,60),(17,62),(17,63),(17,64),(17,68),(17,69),(17,70),(18,5);
/*!40000 ALTER TABLE `user_user_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `user_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL,
  `password` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `url` varchar(2047) DEFAULT NULL,
  `phone` varchar(32) DEFAULT NULL,
  `mailing_address` varchar(255) DEFAULT NULL,
  `billing_address` varchar(255) DEFAULT NULL,
  `country` varchar(90) DEFAULT NULL,
  `locales` varchar(255) DEFAULT NULL,
  `gossip` text DEFAULT NULL,
  `date_last_email` datetime DEFAULT NULL,
  `date_registered` datetime NOT NULL,
  `date_validated` datetime DEFAULT NULL,
  `date_last_login` datetime NOT NULL,
  `must_change_password` tinyint(4) DEFAULT NULL,
  `auth_id` bigint(20) DEFAULT NULL,
  `auth_str` varchar(255) DEFAULT NULL,
  `disabled` tinyint(4) NOT NULL DEFAULT 0,
  `disabled_reason` text DEFAULT NULL,
  `inline_help` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `users_username` (`username`),
  UNIQUE KEY `users_email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'admin','$2y$10$NmHvXa2BXMcjFb9KQ4YTWOmA54Rty.57F2luLtOdaJvAjOshX8K7G','admin@medlabtechnojournal.com','','','',NULL,'','',NULL,NULL,'2019-01-16 09:06:10',NULL,'2021-02-24 07:08:52',0,NULL,NULL,0,NULL,1),(2,'putri','$2y$10$GENzTtCYTwU2kqEbw7XROuPTT5D0HPiR4xEapdAEz1CLVCcQjORdS','putrim@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-03-28 12:35:19',NULL,'2019-03-31 15:08:47',0,NULL,NULL,0,NULL,1),(4,'tes23','$2y$10$O0lEaGiufKNbWxRhCdltpeNjSVnMJeYmV4mWA6N0lXnlk/7txYIL.','login@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-03-28 13:23:33',NULL,'2019-03-28 13:23:34',0,NULL,NULL,0,NULL,1),(5,'ratih001','$2y$10$b82ntRPoeqWpDVFGQZXyL.3o5HQ3/DrBKaBiQZI.uo93mAPEHHiHy','ratih@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-03-28 13:31:52',NULL,'2019-08-06 09:43:39',0,NULL,NULL,0,NULL,1),(6,'thuraidah','$2y$10$IdNqzEmK2JfSwOEJWni2lOQPxPmKQcBtJsDmVX.uz9pZhiXPLmVwG','thuraidah@gmail.com','','','',NULL,'ID','','',NULL,'2019-03-29 07:18:46',NULL,'2020-02-04 13:15:14',0,NULL,NULL,0,NULL,1),(7,'yuli','$2y$10$dwCh8m/033Jte3JrkNlc0e59cP/koCnw4vqDb8hKz1ZOTftce8JUS','yulisusanti@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-03-29 07:25:49',NULL,'2019-03-31 15:06:44',0,NULL,NULL,0,NULL,1),(8,'dinna','$2y$10$ZCoqKSqsnPcUYGQgb61NV.g0K/KHLkoZdDR167CWDi7Ps/hefuiEO','dinnarah@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-04-08 11:57:05',NULL,'2019-04-08 11:57:05',1,NULL,NULL,0,NULL,1),(9,'nurulhuda','$2y$10$FHfE5Vu4XqRPa0rGn/vWhOeIBrrM/6uh1pVJT5aWQO2JX/kuZtIvK','nurulhuda@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-08-24 10:23:07',NULL,'2019-08-30 12:25:23',0,NULL,NULL,0,NULL,1),(10,'ayusutiany','$2y$10$g.jR6hs4qTR/so0b7imP7OxA1eM/ywTSrd2JAshS9ykQBb3NM9igO','ayusutiany@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-08-25 13:39:34',NULL,'2019-08-30 12:27:14',0,NULL,NULL,0,NULL,1),(11,'mariatuntun','$2y$10$iyEPgkhBEsSC757.EYLbUuuADINdN.PiWM9ww/nf774RRCgk9IzKC','mariatuntun@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-08-25 14:02:41',NULL,'2019-08-25 14:02:41',1,NULL,NULL,0,NULL,1),(12,'fetus','$2y$10$v8UT0h6hUr30WWfe3SQXQeT.4lxPuLypPRXGuGlxEac5MuilQfefe','fetusola@gmail.com','','','',NULL,'NG','',NULL,NULL,'2019-08-25 14:06:12',NULL,'2019-08-31 13:09:58',0,NULL,NULL,0,NULL,1),(13,'ibraarayatullah','$2y$10$pkccGi.MPZnyrn01f29ofeAV2O9qplcGt/Abo51y3uaPNPo5z/ADm','ibraaraya@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-08-25 14:07:52',NULL,'2019-08-25 14:07:52',1,NULL,NULL,0,NULL,1),(14,'gitaindah','$2y$10$ZCE75T6ymCY1zP9xC14Ck.rd87OPOV6XxzWtnOUE8szF9crp2Dxa2','gitaindah@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-08-25 14:09:11',NULL,'2019-08-25 14:09:11',1,NULL,NULL,0,NULL,1),(15,'emaliakubarti','$2y$10$eIZdGCO3cwLv/j.Ge/nh1ufh53T7xWmxE7AK4SEWytHTzUi0KmZb.','amaliakubarti@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-08-25 14:10:47',NULL,'2019-08-25 14:10:47',0,NULL,NULL,0,NULL,1),(16,'jihanrahma','$2y$10$1sCOpYlhvPMU2YLyo7V2CeXt20.yZmUBjUrxDKIOuWxcXGgHpvZGW','jihanrahma@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-08-25 14:12:16',NULL,'2019-08-25 14:12:16',0,NULL,NULL,0,NULL,1),(17,'nadiyauswatun','$2y$10$cG6TbqoDPTxZ2bd1USrchuaK6LI1/SX/1ivcK3GU6Abi3e2VDAGCG','nadiyauswatun@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-08-25 14:16:05',NULL,'2020-02-17 13:32:57',0,NULL,NULL,0,NULL,1),(18,'yuliatri','$2y$10$nhQCbJmF1yHKMZ4K6grGfO5Tdl4QYIrLN2jY02GcX6EnRqW9vPJU6','yuliatri@gmail.com','','','',NULL,'ID','',NULL,NULL,'2019-08-25 14:17:24',NULL,'2020-02-19 07:20:04',0,NULL,NULL,0,NULL,1),(19,'sitimahmudah','$2y$10$/yHKrGpb.QdzcsjfZaIpsOEM8hL.YotyLEL5VWXgWCqetXuwt8VVC','mahmudahst@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-08-25 14:44:29',NULL,'2019-08-30 12:23:34',0,NULL,NULL,0,NULL,1),(20,'yusufatakan','$2y$10$.0260tJG1AMszP/YGKk5O.bDJf2MnHacp6oJn/Twin6uPhSd47Yz2','yusufbaltrak@gmail.com','','','',NULL,'TR','','',NULL,'2019-08-29 08:20:10',NULL,'2019-08-30 12:21:40',0,NULL,NULL,0,NULL,1),(21,'ayufahani','$2y$10$Hgp8tW3M3uwpQcUSqWrciuEvCdp5kwz00PZ7Z0BkoNemw3Tr7SS4y','ayufahani@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-08-31 08:30:06',NULL,'2019-08-31 08:40:18',0,NULL,NULL,0,NULL,1),(22,'galih','$2y$10$smR00vOg9lpyVuPpLW599ep0eJYNvVJsJmEVEjszuMiIZSLkkC02a','tes@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-09-12 20:07:34',NULL,'2019-09-12 20:07:34',0,NULL,NULL,0,NULL,1),(23,'dryab2747','$2y$10$HoSxgR6Nez5o0f06vAFLduDYefkhcQHvZg7zunCI4MsK5t/u9Jska','dratakanbaltrak@gmail.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2019-09-20 19:38:26',NULL,'2021-02-07 23:57:09',0,NULL,NULL,0,NULL,1),(24,'isnamurti19','$2y$10$OFPyq/E6s7ReIntjJjSK7eIFxpfWSjs6.lb.JgJdRDfrLnk90L/Yq','murtiisna@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2019-11-10 03:02:12',NULL,'2019-11-29 09:12:31',0,NULL,NULL,0,NULL,1),(25,'gunesbolatli','$2y$10$YkhTKjZIxYPCiuW9ncXcYOLepFtXwzEqKKpRn4xAou30oG.Rteoae','gunesbolatli83@gmail.com','','','',NULL,'TR','','',NULL,'2020-01-30 19:31:49',NULL,'2020-02-19 08:59:52',0,NULL,NULL,0,NULL,1),(26,'ozankocak','$2y$10$TlE0u7jsI6U.jVHYA.BfV.c6pSuBFaZmUjPqFsbFvhvbbgRWnlgvS','ozankocak79@gmail.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-01-31 15:19:33',NULL,'2020-09-08 19:43:47',0,NULL,NULL,0,NULL,1),(27,'kivancatilgan','$2y$10$sORZS4dCoyYXpfrB.Zom1OwMfoJqGoP9VJdWEqqJnjaqYPfHCKBt6','kivancatilgan@gmail.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-02-04 16:38:01',NULL,'2020-02-04 16:38:02',0,NULL,NULL,0,NULL,1),(28,'dryasintire','$2y$10$y7tk9KZRLax4WQc/XABuiuOJt/qE2Tz0.adc1ly6TH3Qah34tT.h6','dryasintire@hotmail.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-02-16 16:09:43',NULL,'2020-02-16 16:09:43',0,NULL,NULL,0,NULL,1),(29,'administrator','$2y$10$WbvynPLT24KS.rMtjWjR7uRkf/H2LNVoty1zaLlyp2ATaKOkBpbZS','Apinaga53@gmail.com','','','',NULL,'ID','',NULL,NULL,'2020-02-19 09:05:36',NULL,'2020-11-07 20:02:16',0,NULL,NULL,0,NULL,1),(30,'mehmet','$2y$10$VPEeKeDNyGD0r44oir1ZGeMVrO8oaYk0U0H5GzjtimjYYTQOA0rAm','mehmet21sargin@yahoo.com',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'2020-02-27 09:15:08',NULL,'2020-02-27 09:15:08',1,NULL,NULL,0,NULL,1),(31,'sevgi','$2y$10$7SYK2IltRVN07Km4dCY0.ubd0aoi0MTWXHUuCJQT4wcaawL7FjSuu','sevgi.gunes@siirt.edu.tr',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'2020-02-27 09:23:53',NULL,'2020-02-27 09:23:53',1,NULL,NULL,0,NULL,1),(32,'123yimenicioglu','$2y$10$SlKWUmkIOd0PuJy7JYfujeSid5RkuYL7vvLPhaDybv1Iac28ct7Cy','Yimenicioglu@gmail.com',NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'2020-02-28 07:52:14',NULL,'2020-02-28 07:52:14',1,NULL,NULL,0,NULL,1),(33,'haris','$2y$10$S.aSmqwwnEyLdkiqVYRjou3KIPi9y0KeshpofAeyzmXJHp2Xj9cdK','harisn@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2020-03-07 09:20:44',NULL,'2020-03-07 09:20:44',0,NULL,NULL,0,NULL,1),(34,'novina','$2y$10$6O9Ucu8au9Kb9IOjZYwf7uiG24sFqm8oZz/RJZadDW2ZdbTScaEXe','novina@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2020-03-19 09:18:51',NULL,'2020-03-19 09:18:52',0,NULL,NULL,0,NULL,1),(35,'makale18','$2y$10$hOhADmrhsK.CVsZ8GI.Hnea8Y9gUy85Gvfj9K9Z1jIHEB1HdwjeiC','turkan-gecer@hotmail.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-03-28 01:36:58',NULL,'2020-05-01 06:04:37',0,NULL,NULL,0,NULL,1),(36,'kemal','$2y$10$lgWXl8N2bRM7b46kyih99OGdCesSxro2.LIgPRkrYqXrZdFKDFyWe','kemal.atasayan@maltepe.edu.tr','','','',NULL,'TR','',NULL,NULL,'2020-03-28 09:07:37',NULL,'2020-03-28 09:07:37',1,NULL,NULL,0,NULL,1),(37,'savas','$2y$10$A6DlucpP5HgUr9GFigV8/e29mlxCArmg/maWQWgHghfk2Pk9ZsE9K','drsavaskaratas@yahoo.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-03-28 16:53:13',NULL,'2020-05-01 14:22:27',0,NULL,NULL,0,NULL,1),(38,'dursunhs','$2y$10$hflkgedd5H.oVDyuvCPMguaR6A3itFUB./8IdqtYnpgISyeNgkKhq','dursunhs@yahoo.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-04-20 15:46:16',NULL,'2020-04-21 12:58:18',0,NULL,NULL,0,NULL,1),(39,'tijen','$2y$10$szwwW34rva63cH7bWk9Rt.wx/MnCyM/JxAnfHdk8yTK.gJpEDo.VG','doc.dr.tijen.yesim@gmail.com','','','',NULL,'TR','',NULL,NULL,'2020-05-12 09:11:49',NULL,'2020-05-12 09:11:49',1,NULL,NULL,0,NULL,1),(40,'benedelu','$2y$10$uREonH/JGoftQWJ4qZNPaenVVSBeAwsZzYCUktT7zDPQiXh0bdaYa','onyedelu@yahoo.com','','','',NULL,'NG','','',NULL,'2020-05-21 05:29:49',NULL,'2020-10-07 17:36:19',0,NULL,NULL,0,NULL,1),(41,'christian','$2y$10$/uxoWvNhwfp8mw.zBTnrm.9GOBaT7g7MhctNiICH0qfXSv/qNT2T2','chrischikere@yahoo.com','','','',NULL,'NG','',NULL,NULL,'2020-06-17 10:26:45',NULL,'2020-06-17 10:26:45',1,NULL,NULL,0,NULL,1),(42,'agnina','$2y$10$04twbpXcJNNXhqdm/I15perdq85UddDcNOctaue/udC2d2/3zR/dG','agninalistya@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2020-07-26 09:44:34',NULL,'2020-07-26 09:44:34',0,NULL,NULL,0,NULL,1),(43,'refsouza','$2y$10$PmaPpfJmeKDwadfEZ55Ig.Z8d5iMcWpWGthKctN0RPXCxGC6YbMMe','refsouza@uol.com.br',NULL,NULL,NULL,NULL,'BR','',NULL,NULL,'2020-08-13 02:35:26',NULL,'2020-09-02 05:31:57',0,NULL,NULL,0,NULL,1),(44,'doloresfit','$2y$10$N7TbtUD69wm3NWl8NWq9Qud8PLNE2wagWOcFVYCH4XFG9NTGIa/RW','doloresfitchett@gmail.com',NULL,NULL,NULL,NULL,'DE','',NULL,NULL,'2020-08-14 07:45:39',NULL,'2020-08-14 07:45:40',0,NULL,NULL,0,NULL,1),(45,'editor','$2y$10$4y2L6SOAjGDerMu77L92mO5oB5lBieYyBmG8SMUNFC0u7DVWBZQam','editor@gmail.com','','','',NULL,'ID','',NULL,NULL,'2020-08-28 15:50:13',NULL,'2020-08-28 15:50:13',0,NULL,NULL,0,NULL,1),(46,'jesslynjelena','$2y$10$34ed123K8ogqjJMx61ow1.YCQm1GU2jjBf0KmPxDJPyVIyMAFNHhW','tomotansul66@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2020-09-01 13:51:23',NULL,'2020-09-01 13:51:23',0,NULL,NULL,0,NULL,1),(47,'sarahdina_kh','$2y$10$fV9TkIfAmm36/yoPpE2C7eQEOs8Q3zEm4RlGW.Tdw8N9ERWZgL/xW','sarahdina_kh@yahoo.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2020-09-05 20:35:00',NULL,'2020-09-05 20:35:01',0,NULL,NULL,0,NULL,1),(48,'nudia','$2y$10$HNGDq2M2FaPQzHeefpovxuDtSuqzbKAd8eYQDwDGwcuteua8Ovu0G','nudiakurniati@gmail.com','','','',NULL,'ID','',NULL,NULL,'2020-09-08 12:38:07',NULL,'2020-09-08 12:38:07',1,NULL,NULL,0,NULL,1),(49,'pebri','$2y$10$csHEUhbBtpYpkVbu1PshCefp3GZ0b.P2Y9eoThQDtYddUKaGjlYsu','pebrifitria@gmail.com','','','',NULL,'ID','',NULL,NULL,'2020-09-08 12:40:07',NULL,'2020-09-08 12:40:07',1,NULL,NULL,0,NULL,1),(50,'dwiintan','$2y$10$kqHVqjSzrol3iuMwvDKgDufDTOl7iSDmvEpiPVv2Biz3J.uiDLhLu','dwiintan@gmail.com','','','',NULL,'ID','',NULL,NULL,'2020-09-08 12:41:27',NULL,'2020-09-08 12:41:27',1,NULL,NULL,0,NULL,1),(51,'fadia','$2y$10$RPjELd5CTeiCCvX9956/deQ7V5p8jWEGmasElLBqvldW81rhgbe6O','fadiafadia@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2020-09-08 12:44:29',NULL,'2020-09-08 12:44:39',0,NULL,NULL,0,NULL,1),(52,'drdeniz','$2y$10$/j0w.b9UCB98QP15Ntr74eq7EsG1Cs4eZSrEu0SubyBLYuE3Kehme','denizimgs@windowslive.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-09-09 01:31:29',NULL,'2020-10-12 19:44:28',0,NULL,NULL,0,NULL,1),(53,'tahjcbvsxestarma','$2y$10$C/fc3Nc2.WUyyUQUcV588uBUaGPjTKdH/OeQs3vOoTQOvVWKdyC1u','iliashevavdei1994@gmail.com',NULL,NULL,NULL,NULL,'DM','',NULL,NULL,'2020-09-15 20:39:35',NULL,'2020-09-15 20:39:35',0,NULL,NULL,0,NULL,1),(54,'ttpyz','$2y$10$T16e5BEHYyw9NMRkdj0QRe2DFN/KomM.xr9xGXFtyfj/iO3.ndYem','t_yazicioglu@hotmail.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-09-16 19:47:53',NULL,'2020-09-16 19:47:54',0,NULL,NULL,0,NULL,1),(55,'zcebeci','$2y$10$vQydbKFRZTcu8jW44/4UpuDpAhic1Ithcy2KldAMLMYs9gQ48VzSO','cebeci@gmail.com','','','',NULL,'TR','',NULL,NULL,'2020-09-20 13:06:09',NULL,'2020-09-20 13:06:09',1,NULL,NULL,0,NULL,1),(56,'muhalefet','$2y$10$HRhsBLZju8Jx.UafDiy7je825RqWoL9N2ro/UDTkjKir7eWcBh4PK','muhalefet@hotmail.com',NULL,'','',NULL,'TR','en_US',NULL,NULL,'2020-09-21 11:53:44',NULL,'2021-01-29 15:20:46',0,NULL,NULL,0,NULL,1),(57,'erhanokuyan','$2y$10$VLFs5n3/TWZW/T713XlRFuLtSM91qDclXq3DMeSwhUVmUdA5WLCpC','dreo06@hotmail.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2020-10-06 11:40:25',NULL,'2020-11-18 17:24:23',0,NULL,NULL,0,NULL,1),(58,'ubi-isaac9','$2y$10$XzJWOHqkdhF/12FsqndlVedu3DtCNizFt3jweNFY8aS5F7rL6hJoe','isaacubi@crutech.edu.ng',NULL,NULL,NULL,NULL,'NG','',NULL,NULL,'2020-10-07 16:57:23',NULL,'2021-01-06 19:37:23',0,NULL,NULL,0,NULL,1),(59,'sari','$2y$10$tDAZV6vI6UPgTWyNmAgQR.mynR8Vki5Hj9XAWY8lU855uLNiDHjU.','dr.sari.s@hotmail.com',NULL,NULL,NULL,NULL,'SA','',NULL,NULL,'2020-10-22 02:45:52',NULL,'2020-11-10 18:43:10',0,NULL,NULL,0,NULL,1),(60,'mitunscut','$2y$10$j5vJHDzXgG4alz3aWxNRZeFG7a1boxmmW2bS8fbW5S5T5z9CsA0Wq','idellokastello@gmail.com',NULL,NULL,NULL,NULL,'EG','',NULL,NULL,'2020-11-03 21:56:16',NULL,'2020-11-03 21:56:16',0,NULL,NULL,0,NULL,1),(61,'uoibfrgief','$2y$10$Ym1Yhbt8O/ZV0aFCTjYqRu7R.DZN0aXtzN68ZuiJ.ZVQaAbpjdAZm','ea426e299b0f32acd1e5fbc3ff01e7cfprx@ssemarketing.net',NULL,NULL,NULL,NULL,'PL','',NULL,NULL,'2020-11-08 14:49:42',NULL,'2020-11-08 14:49:43',0,NULL,NULL,0,NULL,1),(62,'woobub','$2y$10$eEZtl86f0ucUiD5faN49VO/WrsQFTxLbDiyG2QVm46E8qdNPsEBcG','timgrubelson@gmail.com',NULL,NULL,NULL,NULL,'SE','',NULL,NULL,'2020-11-21 04:09:24',NULL,'2021-01-27 11:57:03',0,NULL,NULL,0,NULL,1),(63,'drmizzud','$2y$10$ik567SFBwCih6g9rJdTK8ebXpRUYDk7BMA/4QOmdDRHRBsDUaZZjq','drmizzud@gmail.com',NULL,NULL,NULL,NULL,'MY','',NULL,NULL,'2020-12-06 23:01:29',NULL,'2021-02-17 21:01:38',0,NULL,NULL,0,NULL,1),(64,'mamaligadoc','$2y$10$mKmwscakKQctIQ0Sb2nAe.oH3e38czmPXrtZW8OLZTj/ByJAAjPES','mamaligadoc-01@outlook.com',NULL,NULL,NULL,NULL,'DZ','',NULL,NULL,'2020-12-24 12:21:03',NULL,'2021-01-20 07:36:57',0,NULL,NULL,0,NULL,1),(65,'vonny','$2y$10$uk3/50zXWvAm0rBJghyOt.mOHMZrfTJ35rZp/xGcA1wxEjzp5Xhpq','vonnykhresna@gmail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2021-01-02 05:40:02',NULL,'2021-01-02 05:40:02',0,NULL,NULL,0,NULL,1),(66,'gizemberfin','$2y$10$NAeHqFIwHd9ZY7Mkm6nD1ugV1GzWTB5Bz6DOaZC7RjCarDvRn3ux6','berfinuluutku@yahoo.com',NULL,NULL,NULL,NULL,'TR','',NULL,NULL,'2021-01-23 22:58:20',NULL,'2021-02-22 23:24:56',0,NULL,NULL,0,NULL,1),(67,'tes123','$2y$10$C4j330aPxfvKUZiWZugXvOQ5XlyqGcwM9.NxRSlzvECnRtwd8Ba0W','apinaga53@ymail.com',NULL,NULL,NULL,NULL,'ID','',NULL,NULL,'2021-01-28 09:21:39',NULL,'2021-01-28 09:21:39',0,NULL,NULL,0,NULL,1),(68,'wazzchono','$2y$10$33w9RAsIxFMRmxa0c7uE9eMUf1xGBFmrCcIISr.QpsAtD5Q3kPa/6','kingofsimswarrior@gmail.com',NULL,NULL,NULL,NULL,'BZ','',NULL,NULL,'2021-02-06 06:48:27',NULL,'2021-02-11 14:18:13',0,NULL,NULL,0,NULL,1),(69,'spiderchono','$2y$10$jTCnDupcTy0oAewlYcIwNu2rev8OgjV0A0LHBoBmC.Lhcgl6cZVIS','andykoviguanta@gmail.com',NULL,NULL,NULL,NULL,'AR','',NULL,NULL,'2021-02-16 06:31:20',NULL,'2021-02-18 23:12:36',0,NULL,NULL,0,NULL,1),(70,'sellchono','$2y$10$7Wgnvald2G5gMbYF2G6idueZT15sicH48vku.X7etZUBg.r74WufK','marekadinewelos@gmail.com',NULL,NULL,NULL,NULL,'CU','',NULL,NULL,'2021-02-26 11:18:27',NULL,'2021-02-26 11:18:27',0,NULL,NULL,0,NULL,1);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `versions`
--

DROP TABLE IF EXISTS `versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `versions` (
  `major` int(11) NOT NULL DEFAULT 0,
  `minor` int(11) NOT NULL DEFAULT 0,
  `revision` int(11) NOT NULL DEFAULT 0,
  `build` int(11) NOT NULL DEFAULT 0,
  `date_installed` datetime NOT NULL,
  `current` tinyint(4) NOT NULL DEFAULT 0,
  `product_type` varchar(30) DEFAULT NULL,
  `product` varchar(30) DEFAULT NULL,
  `product_class_name` varchar(80) DEFAULT NULL,
  `lazy_load` tinyint(4) NOT NULL DEFAULT 0,
  `sitewide` tinyint(4) NOT NULL DEFAULT 0,
  UNIQUE KEY `versions_pkey` (`product_type`,`product`,`major`,`minor`,`revision`,`build`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `versions`
--

LOCK TABLES `versions` WRITE;
/*!40000 ALTER TABLE `versions` DISABLE KEYS */;
INSERT INTO `versions` VALUES (1,0,0,0,'2019-01-16 09:06:10',1,'plugins.metadata','dc11','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.metadata','openurl10','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.metadata','mods34','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.blocks','makeSubmission','MakeSubmissionBlockPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.blocks','information','InformationBlockPlugin',1,0),(1,1,0,0,'2019-01-16 09:06:10',1,'plugins.blocks','subscription','SubscriptionBlockPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.blocks','developedBy','DevelopedByBlockPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.blocks','languageToggle','LanguageToggleBlockPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.gateways','resolver','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','usageEvent','',0,0),(1,2,0,0,'2019-01-16 09:06:10',1,'plugins.generic','acron','AcronPlugin',1,1),(1,2,0,0,'2019-01-16 09:06:10',1,'plugins.generic','customBlockManager','CustomBlockManagerPlugin',1,0),(0,1,0,0,'2019-01-16 09:06:10',1,'plugins.generic','citationStyleLanguage','CitationStyleLanguagePlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','webFeed','WebFeedPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','recommendByAuthor','RecommendByAuthorPlugin',1,1),(1,2,0,0,'2019-01-16 09:06:10',1,'plugins.generic','staticPages','StaticPagesPlugin',1,0),(1,2,0,0,'2019-01-16 09:06:10',1,'plugins.generic','openAIRE','OpenAIREPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','googleAnalytics','GoogleAnalyticsPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','usageStats','UsageStatsPlugin',0,1),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','tinymce','TinyMCEPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',0,'plugins.generic','googleScholar','GoogleScholarPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',0,'plugins.generic','pdfJsViewer','PdfJsViewerPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','driver','DRIVERPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',0,'plugins.generic','lensGalley','LensGalleyPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','htmlArticleGalley','HtmlArticleGalleyPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',0,'plugins.generic','orcidProfile','OrcidProfilePlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.generic','dublinCoreMeta','DublinCoreMetaPlugin',1,0),(2,0,0,0,'2019-01-16 09:06:10',1,'plugins.importexport','datacite','',0,0),(1,1,0,0,'2019-01-16 09:06:10',1,'plugins.importexport','doaj','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.importexport','native','',0,0),(2,0,0,0,'2019-01-16 09:06:10',1,'plugins.importexport','medra','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.importexport','users','',0,0),(2,1,0,0,'2019-01-16 09:06:10',1,'plugins.importexport','crossref','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.importexport','pubmed','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.oaiMetadataFormats','marc','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.oaiMetadataFormats','marcxml','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.oaiMetadataFormats','dc','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.oaiMetadataFormats','rfc1807','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.paymethod','manual','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.paymethod','paypal','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.pubIds','doi','DOIPubIdPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.pubIds','urn','URNPubIdPlugin',1,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.reports','articles','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.reports','views','',0,0),(2,0,0,0,'2019-01-16 09:06:10',1,'plugins.reports','reviewReport','',0,0),(1,1,0,0,'2019-01-16 09:06:10',1,'plugins.reports','counterReport','',0,0),(1,0,0,0,'2019-01-16 09:06:10',1,'plugins.themes','default','DefaultThemePlugin',1,0),(3,1,1,4,'2019-01-16 09:06:10',0,'core','ojs2','',0,1),(1,0,4,0,'2019-03-23 14:53:40',1,'plugins.themes','healthSciences','HealthSciencesThemePlugin',1,0),(1,0,4,0,'2019-03-23 15:02:07',1,'plugins.importexport','quickSubmit','',0,0),(0,0,3,0,'2020-05-13 10:54:03',1,'plugins.importexport','copernicus','',0,0),(1,0,1,0,'2021-02-23 19:49:43',1,'plugins.blocks','browse','BrowseBlockPlugin',1,0),(1,1,2,8,'2021-02-23 19:49:43',1,'plugins.generic','orcidProfile','OrcidProfilePlugin',1,0),(1,0,1,0,'2021-02-23 19:49:43',1,'plugins.generic','pdfJsViewer','PdfJsViewerPlugin',1,0),(1,1,0,0,'2021-02-23 19:49:43',1,'plugins.generic','googleScholar','GoogleScholarPlugin',1,0),(1,0,1,0,'2021-02-23 19:49:43',1,'plugins.generic','lensGalley','LensGalleyPlugin',1,0),(1,0,0,0,'2021-02-23 19:49:43',1,'plugins.generic','recommendBySimilarity','RecommendBySimilarityPlugin',1,1),(1,0,0,0,'2021-02-23 19:49:43',1,'plugins.generic','announcementFeed','AnnouncementFeedPlugin',1,0),(1,0,0,0,'2021-02-23 19:49:43',1,'plugins.reports','subscriptions','',0,0),(3,3,0,3,'2021-02-23 19:49:39',1,'core','ojs2','',0,1);
/*!40000 ALTER TABLE `versions` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2021-02-26 22:28:54
